/** Shopify CDN: Minification failed

Line 656:0 Unexpected "}"

**/
/* ============================================================
   FLO X MAIN — flo-x.css
   Upload to: Assets folder in Shopify theme editor
   ============================================================ */

:root {
  --fx-black:      #060606;
  --fx-ink:        #0d0d0d;
  --fx-surface:    #131313;
  --fx-card:       #1a1a1a;
  --fx-card2:      #202020;
  --fx-white:      #f0f0f0;
  --fx-white2:     #e0e0e0;
  --fx-muted:      #666;
  --fx-muted2:     #444;
  --fx-border:     rgba(255,255,255,0.08);
  --fx-border2:    rgba(255,255,255,0.15);
  --fx-display:    'Barlow Condensed', sans-serif;
  --fx-body:       'Barlow', sans-serif;
  --fx-radius:     2px;
  --fx-transition: 0.2s ease;
}

.fx-section,
.fx-section * {
  box-sizing: border-box;
}

.fx-section {
  font-family: var(--fx-body);
  -webkit-font-smoothing: antialiased;
  color: var(--fx-white);
}

/* ── COMPRESSED HEADLINE MIXIN ── */
.fx-h {
  font-family: var(--fx-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  transform: scaleX(0.42);
  transform-origin: left center;
}
.fx-h-center {
  transform: scaleX(0.42);
  transform-origin: center center;
}

/* ── LABEL ── */
.fx-label {
  font-family: var(--fx-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fx-muted);
  display: block;
}

/* ── BUTTONS ── */
.fx-btn {
  display: block;
  width: 100%;
  font-family: var(--fx-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  border-radius: var(--fx-radius);
  text-align: center;
  text-decoration: none;
  transition: background var(--fx-transition), transform var(--fx-transition);
  -webkit-tap-highlight-color: transparent;
}
.fx-btn:active { transform: scale(0.98); }
.fx-btn-primary { background: var(--fx-white); color: var(--fx-black); }
.fx-btn-primary:hover { background: var(--fx-white2); }
.fx-btn-secondary {
  background: transparent;
  color: var(--fx-white);
  border: 1px solid var(--fx-border2);
}
.fx-btn-secondary:hover { border-color: rgba(255,255,255,0.4); }

/* ── HERO ── */
.fx-hero {
  min-height: calc(100vh - 58px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--fx-black);
}
.fx-hero__img {
  background: var(--fx-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fx-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fx-hero__placeholder {
  width: 75%;
  height: 80%;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d, #161616);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.fx-hero__placeholder-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.fx-hero__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--fx-white);
  color: var(--fx-black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 1px;
}
.fx-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 60px;
  background: var(--fx-black);
  border-left: 1px solid var(--fx-border);
}
.fx-hero__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fx-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fx-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--fx-muted);
}
.fx-hero__h1 {
  font-family: var(--fx-display);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transform: scaleX(0.42);
  transform-origin: left center;
  color: var(--fx-white);
}
.fx-hero__h1-dim {
  display: block;
  font-weight: 900;
  font-size: 0.72em;
  letter-spacing: -0.01em;
  color: rgba(240,240,240,0.45);
  margin-top: 4px;
}
.fx-hero__sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,240,240,0.6);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 32px;
}
.fx-hero__specs {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.fx-hero__spec-val {
  display: block;
  font-family: var(--fx-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: scaleX(0.42);
  transform-origin: left center;
}
.fx-hero__spec-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fx-muted);
}
.fx-hero__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

/* ── FEATURE STRIP ── */
.fx-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
  background: var(--fx-surface);
}
.fx-feature {
  padding: 22px 28px;
  border-right: 1px solid var(--fx-border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.fx-feature:last-child { border-right: none; }
.fx-feature__icon { font-size: 20px; opacity: 0.35; flex-shrink: 0; }
.fx-feature__title { display: block; font-size: 12px; font-weight: 600; color: var(--fx-white); margin-bottom: 2px; }
.fx-feature__sub { display: block; font-size: 11px; font-weight: 400; color: var(--fx-muted); }

/* ── PROBLEM SOLUTION ── */
.fx-problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 40px;
  gap: 80px;
  align-items: start;
}
.fx-prob__title {
  font-family: var(--fx-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
  transform: scaleX(0.42);
  transform-origin: left center;
}
.fx-prob__body {
  font-size: 13px;
  font-weight: 400;
  color: rgba(240,240,240,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}
.fx-prob__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--fx-border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.fx-prob__item:last-child { border-bottom: none; }
.fx-prob__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--fx-muted);
}
.fx-prob__icon--check {
  background: var(--fx-white);
  color: var(--fx-black);
  border-color: var(--fx-white);
}
.fx-prob__text { font-size: 13px; font-weight: 400; color: rgba(240,240,240,0.7); }

/* ── PRODUCT SECTION ── */
.fx-collection { padding: 0 0 80px; background: var(--fx-black); }
.fx-collection__head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--fx-border);
}
.fx-collection__title {
  font-family: var(--fx-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  transform: scaleX(0.42);
  transform-origin: left center;
  color: var(--fx-white);
  margin-top: 8px;
}
.fx-collection__note {
  font-size: 12px;
  font-weight: 400;
  color: var(--fx-muted);
  text-align: right;
  max-width: 200px;
  line-height: 1.6;
}
.fx-grid {
  max-width: 1400px;
  margin: 2px auto 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2px;
  background: var(--fx-border);
}
.fx-card {
  background: var(--fx-card);
  display: flex;
  flex-direction: column;
  transition: background var(--fx-transition);
  cursor: pointer;
}
.fx-card:hover { background: var(--fx-card2); }
.fx-card__img { position: relative; overflow: hidden; flex-shrink: 0; }
.fx-card--featured .fx-card__img { height: 380px; }
.fx-card--single .fx-card__img { height: 240px; }
.fx-card__img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #181818, #0d0d0d, #161616);
}
.fx-card__ph {
  background: linear-gradient(145deg, #222, #181818, #1e1e1e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fx-card--featured .fx-card__ph { width: 220px; height: 300px; }
.fx-card--single .fx-card__ph { width: 160px; height: 200px; }
.fx-card__ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,255,255,0.009) 2px, rgba(255,255,255,0.009) 3px);
}
.fx-card__ph-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}
.fx-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
}
.fx-badge-solid { background: var(--fx-white); color: var(--fx-black); }
.fx-badge-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(240,240,240,0.7); }
.fx-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.fx-card--featured .fx-card__body { padding: 28px 28px 30px; }
.fx-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.fx-card__type { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fx-muted); padding-top: 3px; }
.fx-card__price { font-family: var(--fx-display); font-size: 22px; font-weight: 700; letter-spacing: 0.02em; }
.fx-card__name {
  font-family: var(--fx-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
  transform: scaleX(0.42);
  transform-origin: left center;
}
.fx-card--featured .fx-card__name { font-size: clamp(22px, 2.5vw, 32px); }
.fx-card__desc { font-size: 12.5px; font-weight: 400; color: rgba(240,240,240,0.5); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.fx-save-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.fx-save-pill { font-size: 11px; font-weight: 700; padding: 4px 10px; background: rgba(240,240,240,0.1); color: var(--fx-white); border-radius: 1px; }
.fx-was-price { font-size: 12px; font-weight: 400; color: var(--fx-muted); text-decoration: line-through; }
.fx-sizes { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 16px; }
.fx-size {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--fx-muted);
  cursor: pointer;
  border-radius: 1px;
  background: none;
  transition: all var(--fx-transition);
  -webkit-tap-highlight-color: transparent;
}
.fx-size:hover, .fx-size.on { border-color: rgba(255,255,255,0.5); color: var(--fx-white); background: rgba(255,255,255,0.05); }
.fx-atc {
  width: 100%;
  font-family: var(--fx-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  cursor: pointer;
  border-radius: var(--fx-radius);
  transition: all var(--fx-transition);
  margin-bottom: 8px;
  -webkit-tap-highlight-color: transparent;
}
.fx-atc:active { transform: scale(0.98); }
.fx-atc--primary { background: var(--fx-white); color: var(--fx-black); }
.fx-atc--primary:hover { background: var(--fx-white2); }
.fx-atc--secondary { background: transparent; color: var(--fx-white); border: 1px solid var(--fx-border2); }
.fx-atc--secondary:hover { border-color: rgba(255,255,255,0.4); }
.fx-card__micro { font-size: 10.5px; font-weight: 400; color: var(--fx-muted2); text-align: center; }

/* ── SPONSORSHIP ── */
.fx-sponsor {
  background: var(--fx-surface);
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
  padding: 80px 40px;
}
.fx-sponsor__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.fx-sponsor__title {
  font-family: var(--fx-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 20px;
  transform: scaleX(0.42);
  transform-origin: left center;
}
.fx-sponsor__body {
  font-size: 13px;
  font-weight: 400;
  color: rgba(240,240,240,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 380px;
}
.fx-sport-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.fx-sport-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,240,240,0.6);
  border-radius: 1px;
}
.fx-sponsor__cards { display: flex; flex-direction: column; gap: 2px; }
.fx-sponsor__card {
  background: var(--fx-card);
  padding: 24px 28px;
  border-left: 2px solid var(--fx-white);
}
.fx-sponsor__card-title {
  font-family: var(--fx-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  transform: scaleX(0.42);
  transform-origin: left center;
}
.fx-sponsor__card-body { font-size: 12px; font-weight: 400; color: rgba(240,240,240,0.5); line-height: 1.7; }

/* ── FAQ ── */
.fx-faq {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.fx-faq__title {
  font-family: var(--fx-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  transform: scaleX(0.42);
  transform-origin: left center;
}
.fx-faq__items { display: flex; flex-direction: column; }
.fx-faq__item { border-bottom: 1px solid var(--fx-border); padding: 20px 0; cursor: pointer; }
.fx-faq__q { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 500; color: var(--fx-white); }
.fx-faq__arrow { font-size: 18px; opacity: 0.4; transition: transform 0.2s; flex-shrink: 0; margin-left: 16px; }
.fx-faq__item.open .fx-faq__arrow { transform: rotate(45deg); opacity: 0.8; }
.fx-faq__a { font-size: 13px; font-weight: 400; color: rgba(240,240,240,0.5); line-height: 1.75; margin-top: 12px; display: none; }
.fx-faq__item.open .fx-faq__a { display: block; }

/* ── EMAIL ── */
.fx-email {
  background: var(--fx-ink);
  border-top: 1px solid var(--fx-border);
  padding: 80px 40px;
  text-align: center;
}
.fx-email__title {
  font-family: var(--fx-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 16px;
  transform: scaleX(0.42);
  transform-origin: center center;
  overflow: hidden;
  width: 100%;
}
.fx-email__sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(240,240,240,0.5);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.fx-email__form { display: flex; max-width: 480px; margin: 0 auto; }
.fx-email__input {
  flex: 1;
  background: var(--fx-card);
  border: 1px solid var(--fx-border2);
  border-right: none;
  color: var(--fx-white);
  font-family: var(--fx-body);
  font-size: 13px;
  padding: 14px 20px;
  outline: none;
  border-radius: 2px 0 0 2px;
}
.fx-email__input::placeholder { color: var(--fx-muted); }
.fx-email__submit {
  background: var(--fx-white);
  color: var(--fx-black);
  font-family: var(--fx-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  white-space: nowrap;
  transition: background var(--fx-transition);
}
.fx-email__submit:hover { background: var(--fx-white2); }

/* ── REVEAL ── */
.fx-reveal { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media screen and (max-width: 1024px) {
  .fx-grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 768px) {
.fx-hero {
  grid-template-columns: 1fr;
  min-height: auto;
}
.fx-hero__img {
  display: none;
}
.fx-hero__copy {
  padding: 48px 20px 56px;
  border-left: none;
  border-top: none;
}
.fx-hero__h1 {
  font-size: clamp(44px, 11vw, 68px);
  transform: scaleX(0.62);
  transform-origin: left center;
}
.fx-hero__btns {
  max-width: 100%;
}
.fx-btn {
  font-size: 14px;
  padding: 17px 24px;
  width: 100%;
}
  .fx-email {
  overflow: hidden;
}
.fx-email__title {
  font-size: clamp(36px, 10vw, 56px);
  transform: scaleX(0.55);
}
}
  .fx-features { grid-template-columns: 1fr 1fr; }
  .fx-feature:nth-child(even) { border-right: none; }
  .fx-feature:nth-child(n+3) { border-top: 1px solid var(--fx-border); }
  .fx-problem { grid-template-columns: 1fr; gap: 40px; margin: 48px auto; padding: 0 20px; }
  .fx-collection__head { flex-direction: column; align-items: flex-start; gap: 8px; padding: 40px 20px 28px; }
  .fx-grid { grid-template-columns: 1fr; }
  .fx-card--featured .fx-card__img { height: 280px; }
  .fx-card--single .fx-card__img { height: 200px; }
  .fx-sponsor { padding: 56px 20px; }
  .fx-sponsor__inner { grid-template-columns: 1fr; gap: 40px; }
  .fx-faq { grid-template-columns: 1fr; gap: 32px; margin: 48px auto; padding: 0 20px; }
  .fx-email { padding: 56px 20px; }
  .fx-email__form { flex-direction: column; }
  .fx-email__input { border-right: 1px solid var(--fx-border2); border-bottom: none; border-radius: 2px 2px 0 0; }
  .fx-email__submit { border-radius: 0 0 2px 2px; }
}

@media screen and (max-width: 480px) {
  .fx-features { grid-template-columns: 1fr; }
  .fx-feature { border-right: none; border-bottom: 1px solid var(--fx-border); }
  .fx-feature:last-child { border-bottom: none; }
}