/** Shopify CDN: Minification failed

Line 2341:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:app-cross-sell (INDEX:3) */
.app-cross-sell {
    background: var(--acs-bg);
    color: var(--acs-text);
    width: 100%;
    padding: 72px 24px 80px;
  }
  .app-cross-sell__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .app-cross-sell__ugc {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .app-cross-sell__handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--acs-text);
    font-family: var(--acs-body-family);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;
    opacity: 0.92;
    align-self: flex-start;
  }
  .app-cross-sell__handle:hover {
    opacity: 1;
  }
  .app-cross-sell__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: 6px;
    overflow: hidden;
  }
  .app-cross-sell__tile {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    transition: transform 200ms ease;
  }
  .app-cross-sell__tile:hover {
    transform: scale(1.02);
    z-index: 1;
  }
  .app-cross-sell__tile-img,
  .app-cross-sell__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .app-cross-sell__tile-placeholder {
    color: var(--acs-text);
    opacity: 0.35;
  }
  .app-cross-sell__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .app-cross-sell__headline {
    font-family: var(--acs-heading-family);
    font-weight: var(--acs-heading-weight);
    font-style: var(--acs-heading-style);
    color: var(--acs-text);
    font-size: 44px;
    line-height: 1.0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
  }
  .app-cross-sell__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .app-cross-sell__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
    font-family: var(--acs-body-family);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .app-cross-sell__badge:hover {
    transform: translateY(-1px);
    filter: brightness(1.12);
  }
  .app-cross-sell__badge-img {
    display: block;
    max-height: 48px;
    width: auto;
  }
  .app-cross-sell__badge-stack {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
  }
  .app-cross-sell__badge-eyebrow {
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .app-cross-sell__badge-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  .app-cross-sell__promo {
    background: var(--acs-promo-bg);
    color: var(--acs-promo-fg);
    padding: 16px 20px;
    border-radius: 10px;
    font-family: var(--acs-body-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    width: 100%;
    max-width: 480px;
  }
  @media (max-width: 900px) {
    .app-cross-sell {
      padding: 56px 18px 64px;
    }
    .app-cross-sell__inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .app-cross-sell__headline {
      font-size: 34px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .app-cross-sell__tile,
    .app-cross-sell__badge {
      transition: none;
    }
    .app-cross-sell__tile:hover,
    .app-cross-sell__badge:hover {
      transform: none;
    }
  }
/* END_SECTION:app-cross-sell */

/* START_SECTION:best-sellers (INDEX:5) */
.best-sellers {
    background: var(--bs-bg);
    width: 100%;
    padding: 64px 16px;
  }
  .best-sellers__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .best-sellers__heading {
    font-family: var(--bs-heading-family);
    font-weight: var(--bs-heading-weight);
    font-style: var(--bs-heading-style);
    color: var(--bs-heading-color);
    font-size: var(--bs-heading-size);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 36px;
  }
  .best-sellers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .best-sellers__card {
    position: relative;
    background: var(--bs-card-bg);
    color: var(--bs-card-text);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
    will-change: transform;
    isolation: isolate;
  }
  .best-sellers__card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--bs-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 200ms ease;
    z-index: 3;
    pointer-events: none;
  }
  .best-sellers__card:hover,
  .best-sellers__card:focus-within {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  }
  .best-sellers__card:hover::after,
  .best-sellers__card:focus-within::after {
    transform: scaleX(1);
  }
  .best-sellers__form {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
  }
  .best-sellers__media-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bs-card-bg);
  }
  .best-sellers__media-link {
    display: block;
    width: 100%;
    height: 100%;
  }
  .best-sellers__image,
  .best-sellers__media-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
  }
  .best-sellers__card:hover .best-sellers__image {
    transform: scale(1.04);
  }
  .best-sellers__image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  }
  .best-sellers__quickbuy {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translate(-50%, 12px);
    opacity: 0;
    pointer-events: none;
    background: #ffffff;
    color: #000000;
    border: 0;
    height: 44px;
    padding: 0 22px;
    border-radius: 9999px;
    font-family: var(--bs-card-family);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 200ms ease, transform 200ms ease;
    z-index: 2;
  }
  .best-sellers__card:hover .best-sellers__quickbuy,
  .best-sellers__card:focus-within .best-sellers__quickbuy {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
  .best-sellers__body {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--bs-card-family);
    font-weight: var(--bs-card-weight);
    font-style: var(--bs-card-style);
  }
  .best-sellers__title {
    color: var(--bs-card-text);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .best-sellers__title:hover {
    text-decoration: underline;
  }
  .best-sellers__price {
    color: var(--bs-price);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: baseline;
  }
  .best-sellers__price-was {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 400;
  }
  .best-sellers__atc {
    margin-top: 8px;
    background: var(--bs-accent);
    color: #ffffff;
    border: 0;
    height: 44px;
    padding: 0 20px;
    border-radius: 9999px;
    font-family: var(--bs-card-family);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 160ms ease, transform 160ms ease;
  }
  .best-sellers__atc:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
  .best-sellers__atc[disabled] {
    background: #555;
    cursor: not-allowed;
    filter: none;
    transform: none;
  }
  .best-sellers__footer {
    margin-top: 36px;
    display: flex;
    justify-content: center;
  }
  .best-sellers__view-all {
    color: var(--bs-heading-color);
    font-family: var(--bs-card-family);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 200ms ease, color 200ms ease;
  }
  .best-sellers__view-all:hover {
    color: var(--bs-accent);
    border-bottom-color: var(--bs-accent);
  }
  .best-sellers__arrow {
    transition: transform 200ms ease;
  }
  .best-sellers__view-all:hover .best-sellers__arrow {
    transform: translateX(4px);
  }
  @media (max-width: 900px) {
    .best-sellers {
      padding: 48px 14px;
    }
    .best-sellers__heading {
      font-size: calc(var(--bs-heading-size) * 0.7);
    }
    .best-sellers__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .best-sellers__quickbuy {
      display: none;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .best-sellers__card,
    .best-sellers__image,
    .best-sellers__card::after,
    .best-sellers__quickbuy {
      transition: none;
    }
    .best-sellers__card:hover {
      transform: none;
    }
  }
/* END_SECTION:best-sellers */

/* START_SECTION:bundles-feature (INDEX:9) */
.bundles-feature {
    position: relative;
    background: var(--bf-bg);
    color: var(--bf-text);
    width: 100%;
    padding: 72px 24px 80px 36px;
    overflow: hidden;
    isolation: isolate;
  }
  .bundles-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: var(--bf-accent);
    z-index: 1;
  }
  .bundles-feature__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
  }
  .bundles-feature__header {
    max-width: 760px;
    margin: 0 0 44px;
  }
  .bundles-feature__heading {
    font-family: var(--bf-heading-family);
    font-weight: var(--bf-heading-weight);
    font-style: var(--bf-heading-style);
    color: var(--bf-text);
    font-size: var(--bf-heading-size);
    line-height: 0.98;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  .bundles-feature__sub {
    font-family: var(--bf-body-family);
    font-weight: var(--bf-body-weight);
    font-style: var(--bf-body-style);
    color: var(--bf-text);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    opacity: 0.88;
  }
  .bundles-feature__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .bundles-feature__card {
    position: relative;
    background: var(--bf-card-bg);
    color: var(--bf-text);
    border-radius: 10px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    overflow: hidden;
    isolation: isolate;
    transition: transform 200ms ease, box-shadow 200ms ease;
    will-change: transform;
    min-height: 220px;
  }
  .bundles-feature__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }
  .bundles-feature__media {
    display: block;
    margin: -28px -24px 14px;
    background: #ffffff;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .bundles-feature__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 300ms ease;
  }
  .bundles-feature__card:hover .bundles-feature__img {
    transform: scale(1.04);
  }
  .bundles-feature__save-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 9999px;
    overflow: hidden;
    background: var(--bf-accent);
    color: #000;
    font-family: var(--bf-body-family);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
  }
  .bundles-feature__save-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent 25%,
      rgba(255, 255, 255, 0.85) 50%,
      transparent 75%
    );
    transform: translateX(-100%);
    animation: bundles-feature-shimmer 2.4s linear infinite;
    pointer-events: none;
  }
  .bundles-feature__save-badge-text {
    position: relative;
    z-index: 1;
  }
  @keyframes bundles-feature-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  .bundles-feature__tier {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--bf-text);
    border-radius: 9999px;
    font-family: var(--bf-body-family);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
  }
  .bundles-feature__title-link {
    text-decoration: none;
    color: inherit;
  }
  .bundles-feature__title {
    font-family: var(--bf-heading-family);
    font-weight: var(--bf-heading-weight);
    color: var(--bf-text);
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 6px 0 0;
  }
  .bundles-feature__title-link:hover .bundles-feature__title {
    color: var(--bf-accent);
  }
  .bundles-feature__items {
    font-family: var(--bf-body-family);
    font-weight: 500;
    color: var(--bf-text);
    opacity: 0.75;
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.02em;
  }
  .bundles-feature__price {
    font-family: var(--bf-heading-family);
    font-weight: 800;
    font-size: 28px;
    color: var(--bf-text);
    margin: 4px 0 14px;
    display: flex;
    gap: 10px;
    align-items: baseline;
    letter-spacing: 0.01em;
  }
  .bundles-feature__price-was {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
  }
  .bundles-feature__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bf-cta);
    color: #fff;
    height: 44px;
    padding: 0 22px;
    border-radius: 9999px;
    font-family: var(--bf-body-family);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: filter 160ms ease, transform 160ms ease;
  }
  .bundles-feature__cta:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
  .bundles-feature__cta svg {
    transition: transform 160ms ease;
  }
  .bundles-feature__cta:hover svg {
    transform: translateX(3px);
  }
  @media (max-width: 900px) {
    .bundles-feature {
      padding: 56px 0 60px 18px;
    }
    .bundles-feature__inner {
      padding-right: 18px;
    }
    .bundles-feature__heading {
      font-size: calc(var(--bf-heading-size) * 0.62);
    }
    .bundles-feature__sub {
      font-size: 15px;
    }
    .bundles-feature__grid {
      grid-template-columns: none;
      grid-auto-flow: column;
      grid-auto-columns: 80%;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 8px;
      margin-right: -18px;
      padding-right: 18px;
    }
    .bundles-feature__grid::-webkit-scrollbar {
      display: none;
    }
    .bundles-feature__card {
      scroll-snap-align: start;
      min-height: 200px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .bundles-feature__save-badge::before {
      animation: none;
      transform: translateX(0);
      background: transparent;
    }
    .bundles-feature__card,
    .bundles-feature__cta,
    .bundles-feature__cta svg {
      transition: none;
    }
    .bundles-feature__card:hover {
      transform: none;
    }
  }
/* END_SECTION:bundles-feature */

/* START_SECTION:fitness-band-spotlight (INDEX:29) */
.fitness-band {
    background: var(--fb-bg);
    color: var(--fb-text);
    width: 100%;
    padding: 72px 24px 80px;
  }
  .fitness-band__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .fitness-band__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .fitness-band__media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fitness-band__media-asset,
  .fitness-band__media video,
  .fitness-band__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .fitness-band__placeholder {
    color: var(--fb-text);
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .fitness-band__placeholder-label {
    font-family: var(--fb-body-family);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .fitness-band__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .fitness-band__headline {
    font-family: var(--fb-heading-family);
    font-weight: var(--fb-heading-weight);
    font-style: var(--fb-heading-style);
    color: var(--fb-text);
    font-size: 48px;
    line-height: 1.0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 24px;
  }
  .fitness-band__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .fitness-band__bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--fb-body-family);
    font-weight: var(--fb-body-weight);
    font-style: var(--fb-body-style);
    color: var(--fb-text);
    font-size: 16px;
    line-height: 1.45;
  }
  .fitness-band__bullet-dot {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: var(--fb-accent);
    color: #ffffff;
    margin-top: 2px;
  }
  .fitness-band__buy {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .fitness-band__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    border-radius: 9999px;
    background: var(--fb-cta-bg);
    color: var(--fb-cta-fg);
    font-family: var(--fb-body-family);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
  }
  .fitness-band__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
  }
  .fitness-band__price {
    font-family: var(--fb-heading-family);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.01em;
    color: var(--fb-text);
  }
  .fitness-band__upsell {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: var(--fb-upsell-bg);
    color: var(--fb-upsell-fg);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
  }
  .fitness-band__upsell:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }
  .fitness-band__upsell-label {
    flex: 1;
    font-family: var(--fb-body-family);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
  }
  .fitness-band__upsell-price {
    font-family: var(--fb-heading-family);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.01em;
  }
  .fitness-band__upsell-arrow {
    transition: transform 160ms ease;
    flex-shrink: 0;
  }
  .fitness-band__upsell:hover .fitness-band__upsell-arrow {
    transform: translateX(4px);
  }
  @media (max-width: 900px) {
    .fitness-band {
      padding: 56px 18px 64px;
    }
    .fitness-band__split {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .fitness-band__media {
      aspect-ratio: 16 / 11;
      max-height: 340px;
    }
    .fitness-band__headline {
      font-size: 36px;
    }
    .fitness-band__upsell {
      flex-wrap: wrap;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .fitness-band__cta,
    .fitness-band__upsell,
    .fitness-band__upsell-arrow {
      transition: none;
    }
  }
/* END_SECTION:fitness-band-spotlight */

/* START_SECTION:fof-page (INDEX:31) */
.fp section { width: 100%; }
  .fp__inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .fp__heading {
    font-family: var(--fp-heading-family); font-weight: var(--fp-heading-weight);
    font-size: 44px; line-height: 1; letter-spacing: 0.01em; text-transform: uppercase;
    margin: 0 0 16px; text-align: center;
  }
  .fp__heading--dark { color: #0a0a0a; }
  .fp__heading--light { color: #fff; }
  .fp__lead {
    font-family: var(--fp-body-family); font-weight: 400; font-size: 17px; line-height: 1.55;
    color: #1a1a1a; max-width: 820px; margin: 0 auto 36px; text-align: center;
  }

  /* Section 2 - What Is It */
  .fp__what { background: #fff; padding: 72px 0; }
  .fp__features {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  }
  .fp__features li {
    background: #f6f7f5; padding: 24px 20px; border-radius: 10px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .fp__feature-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 9999px;
    background: var(--fp-green); color: #000;
  }
  .fp__features h3 {
    font-family: var(--fp-heading-family); font-weight: var(--fp-heading-weight);
    font-size: 22px; text-transform: uppercase; margin: 0;
  }
  .fp__features p {
    font-family: var(--fp-body-family); font-weight: 400; font-size: 14px;
    line-height: 1.5; color: #1a1a1a; margin: 0;
  }

  /* Section 3 - Age Groups */
  .fp__ages { background: #f0efea; padding: 72px 0; }
  .fp__age-scroll {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  }
  .fp__age-card {
    background: #fff; border-radius: 10px; padding: 24px 18px 20px;
    display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
  .fp__age-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.12); }
  .fp__age-letter {
    font-family: var(--fp-heading-family); font-weight: 900;
    color: var(--fp-red); font-size: 52px; line-height: 0.9;
    letter-spacing: -0.01em;
  }
  .fp__age-range {
    font-family: var(--fp-body-family); font-weight: 700; font-size: 14px;
    letter-spacing: 0.06em; text-transform: uppercase; margin: 0;
  }
  .fp__age-desc {
    font-family: var(--fp-body-family); font-weight: 400; font-size: 14px;
    line-height: 1.45; color: #1a1a1a; margin: 0;
  }
  .fp__age-price {
    font-family: var(--fp-heading-family); font-weight: 800; font-size: 20px;
    margin: 6px 0 0;
  }
  .fp__age-cta {
    margin-top: auto; padding-top: 8px;
    font-family: var(--fp-body-family); font-weight: 700; font-size: 13px;
    letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none;
    color: var(--fp-red);
  }
  .fp__age-cta:hover { text-decoration: underline; }

  /* Section 4 - Prizes */
  .fp__prizes { background: #0a0a0a; color: #fff; padding: 80px 0; }
  .fp__prizes-sub {
    font-family: var(--fp-body-family); font-size: 14px; opacity: 0.85;
    text-align: center; margin: 0 0 36px;
  }
  .fp__prize-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  .fp__prize-grid li {
    background: linear-gradient(160deg, rgba(176,234,77,0.08), rgba(255,193,7,0.04));
    border: 1px solid rgba(176,234,77,0.25);
    border-radius: 10px; padding: 28px 20px 24px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .fp__prize-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 9999px;
    background: rgba(176,234,77,0.16); color: var(--fp-gold);
  }
  .fp__prize-grid h3 {
    font-family: var(--fp-heading-family); font-weight: var(--fp-heading-weight);
    font-size: 18px; text-transform: uppercase; margin: 0; color: #fff;
    line-height: 1.2;
  }

  /* Section 5 - Events */
  .fp__events { background: #fff; padding: 72px 0; }
  .fp__event-grid {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
    margin-bottom: 32px;
  }
  .fp__event-card {
    background: #0a0a0a; color: #fff; border-radius: 12px; padding: 28px 28px 24px;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
    min-width: 320px; max-width: 480px; flex: 1 1 320px;
    border: 1px solid rgba(176,234,77,0.25);
  }
  .fp__event-card .fp__event-province {
    background: rgba(176,234,77,0.18); color: var(--fp-green);
  }
  .fp__event-card .fp__event-city { color: #fff; }
  .fp__event-card .fp__event-date { color: rgba(255,255,255,0.78); }
  .fp__event-card--tbc { opacity: 0.6; }
  .fp__event-province {
    font-family: var(--fp-body-family); font-weight: 700; font-size: 11px;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: rgba(0,0,0,0.08); padding: 4px 10px; border-radius: 9999px;
  }
  .fp__event-city {
    font-family: var(--fp-heading-family); font-weight: var(--fp-heading-weight);
    font-size: 28px; text-transform: uppercase; margin: 4px 0 0;
  }
  .fp__event-date {
    font-family: var(--fp-body-family); font-weight: 500; font-size: 14px;
    color: #555; margin: 0;
  }
  .fp__event-cta {
    margin-top: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    height: 44px; padding: 0 22px; border-radius: 9999px;
    background: var(--fp-green); color: #000;
    font-family: var(--fp-body-family); font-weight: 700; font-size: 13px;
    letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
  }
  .fp__event-cta:hover:not(.is-disabled) { transform: translateY(-1px); filter: brightness(1.08); }
  .fp__event-cta.is-disabled { background: rgba(0,0,0,0.12); color: rgba(0,0,0,0.45); cursor: not-allowed; }
  .fp__map { border-radius: 10px; overflow: hidden; }
  .fp__map iframe { display: block; width: 100%; }

  /* Section 6 - FAQ */
  .fp__faq { background: #f6f7f5; padding: 72px 0 0; }
  .fp__faqs { max-width: 800px; margin: 0 auto; }
  .fp__faq-item {
    background: #fff; border-radius: 8px; padding: 16px 20px; margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,0.06);
  }
  .fp__faq-item summary {
    cursor: pointer; list-style: none; display: flex; justify-content: space-between;
    align-items: center; gap: 12px;
    font-family: var(--fp-body-family); font-weight: 700; font-size: 15px;
    color: #0a0a0a;
  }
  .fp__faq-item summary::-webkit-details-marker { display: none; }
  .fp__faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; line-height: 1; }
  .fp__faq-item[open] summary::after { content: '−'; }
  .fp__faq-answer {
    font-family: var(--fp-body-family); font-weight: 400; font-size: 14px;
    line-height: 1.55; color: #1a1a1a; padding-top: 12px;
  }
  .fp__faq-answer p { margin: 0 0 8px; }

  /* Final CTA */
  .fp__final-cta { background: #0a0a0a; padding: 36px 24px; margin-top: 64px; }
  .fp__final-cta-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  }
  .fp__final-cta-text {
    font-family: var(--fp-heading-family); font-weight: var(--fp-heading-weight);
    font-size: 26px; text-transform: uppercase; color: #fff; margin: 0;
  }
  .fp__final-cta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 56px; padding: 0 32px; border-radius: 9999px;
    background: var(--fp-green); color: #000;
    font-family: var(--fp-body-family); font-weight: 700; font-size: 15px;
    letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
  }
  .fp__final-cta-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }

  @media (max-width: 1024px) {
    .fp__age-scroll {
      grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%;
      gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
      padding-bottom: 8px; margin: 0 -24px; padding-left: 24px; padding-right: 24px;
    }
    .fp__age-scroll::-webkit-scrollbar { display: none; }
    .fp__age-card { scroll-snap-align: start; }
    .fp__features { grid-template-columns: 1fr; }
    .fp__prize-grid { grid-template-columns: repeat(2, 1fr); }
    .fp__event-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .fp__heading { font-size: 32px; }
    .fp__prize-grid { grid-template-columns: 1fr; }
    .fp__event-grid { grid-template-columns: 1fr; }
    .fp__final-cta-inner { justify-content: center; text-align: center; }
    .fp__final-cta-text { font-size: 22px; }
  }
/* END_SECTION:fof-page */

/* START_SECTION:footer-custom (INDEX:33) */
.fc-footer {
    background: var(--fc-bg);
    color: var(--fc-text);
    width: 100%;
    padding: 72px 24px 24px;
  }
  .fc-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .fc-footer__cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .fc-footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .fc-footer__logo {
    max-width: 160px;
    height: auto;
    display: block;
  }
  .fc-footer__brand {
    font-family: var(--fc-heading-family);
    font-weight: var(--fc-heading-weight);
    color: var(--fc-text);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
  }
  .fc-footer__about {
    font-family: var(--fc-body-family);
    font-weight: var(--fc-body-weight);
    color: var(--fc-text);
    font-size: 14px;
    line-height: 1.55;
    max-width: 340px;
    margin: 0;
    opacity: 0.85;
  }
  .fc-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }
  .fc-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    border: 1px solid var(--fc-border);
    color: var(--fc-text);
    text-decoration: none;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
  }
  .fc-footer__social:hover {
    color: var(--fc-accent);
    border-color: var(--fc-accent);
  }
  .fc-footer__heading {
    font-family: var(--fc-heading-family);
    font-weight: var(--fc-heading-weight);
    color: var(--fc-accent);
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 6px;
  }
  .fc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .fc-footer__links a {
    color: var(--fc-text);
    text-decoration: none;
    font-family: var(--fc-body-family);
    font-weight: var(--fc-body-weight);
    font-size: 14px;
    line-height: 1.4;
    transition: color 160ms ease;
  }
  .fc-footer__links a:hover {
    color: var(--fc-accent);
  }
  .fc-footer__richtext {
    font-family: var(--fc-body-family);
    font-weight: var(--fc-body-weight);
    font-size: 14px;
    line-height: 1.55;
    color: var(--fc-text);
    opacity: 0.92;
  }
  .fc-footer__richtext p { margin: 0 0 6px; }
  .fc-footer__richtext strong { font-weight: 700; }
  .fc-footer__richtext a {
    color: var(--fc-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 160ms ease;
  }
  .fc-footer__richtext a:hover {
    color: var(--fc-accent);
  }
  .fc-footer__bottom {
    border-top: 1px solid var(--fc-border);
    padding: 22px 0 4px;
  }
  .fc-footer__legal {
    margin: 0;
    font-family: var(--fc-body-family);
    font-weight: var(--fc-body-weight);
    font-size: 12px;
    line-height: 1.5;
    color: var(--fc-text);
    opacity: 0.85;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .fc-footer__legal a {
    color: var(--fc-text);
    text-decoration: none;
    transition: color 160ms ease;
  }
  .fc-footer__legal a:hover {
    color: var(--fc-accent);
  }
  .fc-footer__sep {
    opacity: 0.5;
  }
  @media (max-width: 900px) {
    .fc-footer {
      padding: 56px 18px 20px;
    }
    .fc-footer__cols {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
  }
  @media (max-width: 540px) {
    .fc-footer__cols {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .fc-footer__social,
    .fc-footer__links a,
    .fc-footer__legal a {
      transition: none;
    }
  }
/* END_SECTION:footer-custom */

/* START_SECTION:future-of-football-promo (INDEX:35) */
.fof-promo {
    background: var(--fof-bg);
    color: var(--fof-text);
    width: 100%;
    padding: 88px 24px 96px;
    text-align: center;
    overflow: hidden;
  }
  .fof-promo__inner {
    max-width: 920px;
    margin: 0 auto;
  }
  .fof-promo__eyebrow {
    font-family: var(--fof-body-family);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fof-text);
    margin: 0 0 18px;
    opacity: 0.94;
  }
  .fof-promo__headline {
    font-family: var(--fof-heading-family);
    font-weight: var(--fof-heading-weight);
    font-style: var(--fof-heading-style);
    color: var(--fof-text);
    font-size: 72px;
    line-height: 0.98;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 28px;
  }
  .fof-promo__locations {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .fof-promo__pill {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--fof-text);
    border: 1px solid rgba(255, 255, 255, 0.42);
    font-family: var(--fof-body-family);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
  }
  .fof-promo__pill--muted {
    color: var(--fof-muted);
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.22);
    opacity: 0.7;
  }
  .fof-promo__countdown-wrap {
    margin: 0 0 36px;
  }
  .fof-promo__countdown-label {
    font-family: var(--fof-body-family);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 14px;
    opacity: 0.92;
  }
  .fof-countdown {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
  }
  .fof-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .fof-countdown__digits {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 8px;
    padding: 10px 12px;
    gap: 4px;
  }
  .fof-digit {
    position: relative;
    display: inline-block;
    width: 0.62em;
    height: 1em;
    overflow: hidden;
    vertical-align: top;
    font-family: var(--fof-heading-family);
    font-weight: var(--fof-heading-weight);
    font-size: 52px;
    line-height: 1;
    color: var(--fof-text);
  }
  .fof-digit__strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(calc(-1em * var(--digit, 0)));
    transition: transform 420ms cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }
  .fof-digit__strip > span {
    height: 1em;
    line-height: 1;
    display: block;
  }
  .fof-countdown__unit-label {
    font-family: var(--fof-body-family);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .fof-promo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    border-radius: 9999px;
    background: var(--fof-cta-bg);
    color: var(--fof-cta-fg);
    font-family: var(--fof-body-family);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
  }
  .fof-promo__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
  }
  @media (max-width: 720px) {
    .fof-promo {
      padding: 64px 18px 72px;
    }
    .fof-promo__headline {
      font-size: 48px;
    }
    .fof-digit {
      font-size: 38px;
    }
    .fof-countdown {
      gap: 10px;
    }
    .fof-countdown__digits {
      padding: 8px 9px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .fof-digit__strip {
      transition: none;
    }
    .fof-promo__cta {
      transition: none;
    }
  }
/* END_SECTION:future-of-football-promo */

/* START_SECTION:gymlive-collection (INDEX:36) */
.gc {
    background: var(--gc-body-bg);
    color: var(--gc-body-text);
    width: 100%;
  }
  .gc__hero {
    position: relative;
    width: 100%;
    height: var(--gc-hero-height);
    min-height: 240px;
    overflow: hidden;
    background: var(--gc-hero-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
  }
  .gc__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .gc__hero-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: var(--gc-hero-overlay-opacity);
    z-index: 1;
  }
  .gc__hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1280px;
  }
  .gc__hero-title {
    font-family: var(--gc-heading-family);
    font-weight: var(--gc-heading-weight);
    font-style: var(--gc-heading-style);
    color: var(--gc-hero-text);
    font-size: var(--gc-heading-size);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
  }
  .gc__body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px 64px;
  }
  .gc__crumbs ol {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: var(--gc-body-family);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--gc-body-text);
  }
  .gc__crumbs a {
    color: inherit;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 160ms ease, color 160ms ease;
  }
  .gc__crumbs a:hover {
    opacity: 1;
    color: var(--gc-accent);
  }
  .gc__crumbs [aria-current="page"] {
    font-weight: 700;
  }
  .gc__intro {
    font-family: var(--gc-body-family);
    font-weight: var(--gc-body-weight);
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 28px;
    max-width: 720px;
    color: var(--gc-body-text);
    opacity: 0.92;
  }
  .gc__filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px 0;
    margin-bottom: 28px;
  }
  .gc__count {
    font-family: var(--gc-body-family);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .gc__sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .gc__sort-label {
    font-family: var(--gc-body-family);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .gc__sort select {
    font-family: var(--gc-body-family);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 32px 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #fff;
    color: var(--gc-body-text);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
  }
  .gc__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .gc__pagination {
    margin-top: 36px;
    display: flex;
    justify-content: center;
  }
  .gc__pagination .pagination,
  .gc__pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .gc__pagination a,
  .gc__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--gc-body-text);
    font-family: var(--gc-body-family);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }
  .gc__pagination .active span,
  .gc__pagination [aria-current="page"] {
    background: var(--gc-body-text);
    color: var(--gc-body-bg);
    border-color: var(--gc-body-text);
  }
  .gc__empty {
    font-family: var(--gc-body-family);
    font-size: 16px;
    text-align: center;
    padding: 48px 0;
  }
  @media (max-width: 1024px) {
    .gc__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
  @media (max-width: 540px) {
    .gc__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
/* END_SECTION:gymlive-collection */

/* START_SECTION:gymlive-product (INDEX:37) */
.gp { background: var(--gp-bg); color: var(--gp-text); width: 100%; }
  .gp__inner { max-width: 1280px; margin: 0 auto; padding: 24px 24px 80px; }
  .gp__crumbs ol {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-family: var(--gp-body-family); font-weight: 500; font-size: 13px;
  }
  .gp__crumbs a { color: inherit; text-decoration: none; opacity: 0.75; transition: opacity 160ms, color 160ms; }
  .gp__crumbs a:hover { opacity: 1; color: var(--gp-accent); }
  .gp__crumbs [aria-current="page"] { font-weight: 700; }
  .gp__main { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .gp__gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 24px; }
  .gp__media {
    aspect-ratio: 1 / 1; background: rgba(0,0,0,0.04); border-radius: 8px; overflow: hidden;
  }
  .gp__media-img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 320ms ease;
  }
  .gp__media:hover .gp__media-img { transform: scale(1.12); }
  .gp__media-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #f0f0f0, #d9d9d9); }
  .gp__thumbs {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  }
  .gp__thumb {
    display: block; width: 100%; aspect-ratio: 1 / 1; padding: 0; border: 2px solid transparent;
    border-radius: 6px; overflow: hidden; cursor: pointer; background: rgba(0,0,0,0.04);
    transition: border-color 160ms ease;
  }
  .gp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gp__thumb.is-active { border-color: var(--gp-accent); }
  .gp__info { display: flex; flex-direction: column; gap: 18px; }
  .gp__title {
    font-family: var(--gp-heading-family); font-weight: var(--gp-heading-weight); font-style: var(--gp-heading-style);
    color: var(--gp-text); font-size: 36px; line-height: 1.05; letter-spacing: 0.01em; text-transform: uppercase;
    margin: 0;
  }
  .gp__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
  .gp__price-now {
    font-family: var(--gp-body-family); font-weight: 600; color: var(--gp-accent); font-size: 28px;
    letter-spacing: 0.01em;
  }
  .gp__price-was { color: rgba(0,0,0,0.45); font-family: var(--gp-body-family); font-size: 16px; font-weight: 400; }
  .gp__price-save {
    display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 9999px;
    background: var(--gp-savings); color: #000; font-family: var(--gp-body-family);
    font-weight: 700; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .gp__options { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
  .gp__option { display: flex; flex-direction: column; gap: 8px; }
  .gp__option-label {
    font-family: var(--gp-body-family); font-weight: 500; font-size: 14px; color: var(--gp-text);
  }
  .gp__pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .gp__pill {
    display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border-radius: 9999px;
    border: 1.5px solid rgba(0,0,0,0.18); color: var(--gp-text); background: #fff;
    font-family: var(--gp-body-family); font-weight: 600; font-size: 13px; letter-spacing: 0.02em;
    text-decoration: none; transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
    cursor: pointer;
  }
  .gp__pill:hover { border-color: var(--gp-text); }
  .gp__pill.is-selected { background: var(--gp-text); color: var(--gp-bg); border-color: var(--gp-text); }
  .gp__form { margin-top: 8px; }
  .gp__atc {
    display: inline-flex; align-items: center; justify-content: center; height: 56px;
    min-width: 220px; padding: 0 32px; border-radius: 9999px; border: 0;
    background: var(--gp-cta-bg); color: var(--gp-cta-fg);
    font-family: var(--gp-body-family); font-weight: 700; font-size: 15px; letter-spacing: 0.06em;
    text-transform: uppercase; cursor: pointer; transition: transform 160ms ease, filter 160ms ease;
  }
  .gp__atc:hover { transform: translateY(-1px); filter: brightness(1.08); }
  .gp__atc[disabled] { background: #555; cursor: not-allowed; filter: none; transform: none; }
  .gp__promo-strip {
    background: var(--gp-promo-bg); color: var(--gp-promo-fg);
    padding: 12px 16px; border-radius: 8px;
    font-family: var(--gp-body-family); font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  }
  .gp__description { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
  .gp__description-preview {
    font-family: var(--gp-body-family); font-weight: var(--gp-body-weight); font-size: 15px;
    line-height: 1.6; margin: 0;
  }
  .gp__details summary {
    cursor: pointer; font-family: var(--gp-body-family); font-weight: 700; font-size: 13px;
    letter-spacing: 0.04em; text-transform: uppercase; padding: 8px 0;
    list-style: none; display: inline-flex; align-items: center; gap: 6px;
    border-bottom: 1px solid currentColor;
  }
  .gp__details summary::-webkit-details-marker { display: none; }
  .gp__details[open] summary::after { content: '−'; }
  .gp__details summary::after { content: '+'; margin-left: 6px; font-weight: 400; }
  .gp__description-full {
    font-family: var(--gp-body-family); font-weight: var(--gp-body-weight); font-size: 15px;
    line-height: 1.6; padding-top: 12px;
  }
  .gp__description-full ul, .gp__description-full ol { padding-left: 20px; }
  .gp__description-full p { margin: 0 0 8px; }
  .gp__programme {
    background: rgba(0,0,0,0.04); border-left: 3px solid var(--gp-promo-bg);
    padding: 14px 16px; border-radius: 6px; display: flex; flex-direction: column; gap: 4px;
  }
  .gp__programme-heading {
    font-family: var(--gp-body-family); font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
    text-transform: uppercase; margin: 0; opacity: 0.85;
  }
  .gp__programme-text {
    font-family: var(--gp-body-family); font-weight: var(--gp-body-weight); font-size: 14px;
    line-height: 1.5; margin: 0;
  }
  .gp__programme-link {
    font-family: var(--gp-body-family); font-weight: 700; font-size: 13px; color: var(--gp-text);
    text-decoration: underline; text-underline-offset: 3px; margin-top: 4px;
  }
  .gp__trust {
    list-style: none; padding: 14px 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px;
    border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .gp__trust li {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--gp-body-family); font-weight: 500; font-size: 13px;
  }
  .gp__bundle { display: flex; flex-direction: column; gap: 18px; margin-top: 56px; }
  .gp__bundle-contents { background: rgba(0,0,0,0.03); padding: 16px 20px; border-radius: 8px; }
  .gp__bundle-contents summary { font-size: 16px; text-transform: none; letter-spacing: 0.01em; border-bottom: none; }
  .gp__bundle-body { padding-top: 8px; font-family: var(--gp-body-family); font-size: 15px; line-height: 1.6; }
  .gp__bundle-body ul { padding-left: 20px; margin: 8px 0; }
  .gp__bundle-callout {
    background: var(--gp-promo-bg); color: var(--gp-promo-fg);
    padding: 14px 18px; border-radius: 8px; font-family: var(--gp-body-family);
    font-weight: 500; font-size: 15px; line-height: 1.45;
  }
  .gp__build-own {
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
    background: #000; color: #fff; padding: 24px; border-radius: 8px;
  }
  .gp__build-own-head h3 {
    font-family: var(--gp-heading-family); font-weight: var(--gp-heading-weight);
    font-size: 24px; text-transform: uppercase; margin: 0 0 4px;
  }
  .gp__build-own-head p {
    font-family: var(--gp-body-family); font-weight: 400; font-size: 14px;
    line-height: 1.45; margin: 0; opacity: 0.85;
  }
  .gp__build-own-cta {
    display: inline-flex; align-items: center; height: 44px; padding: 0 22px;
    border-radius: 9999px; background: var(--gp-cta-bg); color: var(--gp-cta-fg);
    font-family: var(--gp-body-family); font-weight: 700; font-size: 13px;
    letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
    transition: filter 160ms ease, transform 160ms ease;
  }
  .gp__build-own-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }
  .gp__related { margin-top: 64px; }
  .gp__related-heading {
    font-family: var(--gp-heading-family); font-weight: var(--gp-heading-weight); font-size: 28px;
    text-transform: uppercase; margin: 0 0 18px;
  }
  .gp__related-scroll {
    display: grid; grid-auto-flow: column; grid-auto-columns: 220px;
    gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; padding-bottom: 8px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .gp__related-scroll::-webkit-scrollbar { display: none; }
  .gp__related-card {
    scroll-snap-align: start; display: flex; flex-direction: column; gap: 8px;
    text-decoration: none; color: var(--gp-text);
    background: rgba(0,0,0,0.03); border-radius: 8px; padding: 12px;
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
  .gp__related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.12); }
  .gp__related-img {
    aspect-ratio: 1 / 1; overflow: hidden; border-radius: 6px; background: rgba(0,0,0,0.05);
    display: flex; align-items: center; justify-content: center;
  }
  .gp__related-img-tag, .gp__related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gp__related-title {
    font-family: var(--gp-body-family); font-weight: 600; font-size: 14px; line-height: 1.3;
  }
  .gp__related-price {
    font-family: var(--gp-body-family); font-weight: 700; font-size: 14px; color: var(--gp-accent);
  }
  @media (max-width: 900px) {
    .gp__main { grid-template-columns: 1fr; gap: 28px; }
    .gp__gallery { position: static; }
    .gp__atc { width: 100%; min-width: 0; }
    .gp__title { font-size: 28px; }
    .gp__price-now { font-size: 24px; }
    .gp__trust { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    .gp__media-img, .gp__atc, .gp__related-card, .gp__build-own-cta, .gp__pill {
      transition: none;
    }
    .gp__media:hover .gp__media-img,
    .gp__atc:hover,
    .gp__related-card:hover { transform: none; }
  }
/* END_SECTION:gymlive-product */

/* START_SECTION:homepage-hero (INDEX:41) */
.homepage-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    isolation: isolate;
  }
  .homepage-hero__media,
  .homepage-hero__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .homepage-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.88) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .homepage-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px 96px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .homepage-hero__headline {
    font-family: var(--hero-headline-family);
    font-weight: var(--hero-headline-weight);
    font-style: var(--hero-headline-style);
    color: #fff;
    margin: 0 0 20px;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: clamp(64px, 8vw, 112px);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  }
  .homepage-hero__subheadline {
    font-family: var(--hero-sub-family);
    font-weight: var(--hero-sub-weight);
    font-style: var(--hero-sub-style);
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 0 36px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  }
  .homepage-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .homepage-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    border-radius: 9999px;
    font-family: var(--hero-sub-family);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
    will-change: transform;
  }
  .homepage-hero__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
  }
  .homepage-hero__btn--primary {
    background: var(--hero-primary-bg);
    color: var(--hero-primary-fg);
  }
  .homepage-hero__btn--secondary {
    background: var(--hero-secondary-bg);
    color: var(--hero-secondary-fg);
  }
  @keyframes homepage-hero-pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(var(--hero-primary-bg-rgb), 0.55);
    }
    50% {
      transform: scale(1.025);
      box-shadow: 0 0 0 14px rgba(var(--hero-primary-bg-rgb), 0);
    }
  }
  .homepage-hero__btn--pulse {
    animation: homepage-hero-pulse 2s ease-in-out infinite;
  }
  .homepage-hero__btn--pulse:hover {
    animation-play-state: paused;
  }
  @media (prefers-reduced-motion: reduce) {
    .homepage-hero__btn--pulse {
      animation: none;
    }
  }
  .homepage-hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: opacity 200ms ease, transform 200ms ease;
    animation: homepage-hero-bob 2.4s ease-in-out infinite;
  }
  .homepage-hero__scroll:hover {
    opacity: 1;
  }
  @keyframes homepage-hero-bob {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 6px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .homepage-hero__scroll {
      animation: none;
    }
  }
  @media (max-width: 640px) {
    .homepage-hero__content {
      padding: 0 20px 96px;
    }
    .homepage-hero__btn {
      width: 100%;
      max-width: 320px;
    }
  }
/* END_SECTION:homepage-hero */

/* START_SECTION:supplements-strip (INDEX:104) */
.supplements-strip {
    background: var(--ss-bg);
    color: var(--ss-text);
    width: 100%;
    padding: 56px 0 60px;
  }
  .supplements-strip__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .supplements-strip__eyebrow {
    font-family: var(--ss-body-family);
    font-weight: 700;
    color: var(--ss-eyebrow);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 22px;
    text-align: center;
  }
  .supplements-strip__scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -24px 28px;
    padding: 4px 24px;
  }
  .supplements-strip__scroll::-webkit-scrollbar {
    display: none;
  }
  .supplements-strip__thumb {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 16px;
    border-radius: 10px;
    background: var(--ss-thumb-bg);
    color: var(--ss-text);
    text-decoration: none;
    scroll-snap-align: start;
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
  }
  .supplements-strip__thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
  }
  .supplements-strip__thumb-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .supplements-strip__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .supplements-strip__thumb-placeholder {
    color: var(--ss-text);
    opacity: 0.5;
  }
  .supplements-strip__thumb-label {
    font-family: var(--ss-body-family);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    color: var(--ss-text);
  }
  .supplements-strip__cta-wrap {
    display: flex;
    justify-content: center;
  }
  .supplements-strip__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    border-radius: 9999px;
    background: var(--ss-cta-bg);
    color: var(--ss-cta-fg);
    font-family: var(--ss-body-family);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
  }
  .supplements-strip__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
  }
  @media (min-width: 1100px) {
    .supplements-strip__scroll {
      justify-content: center;
      margin-left: 0;
      margin-right: 0;
      padding-left: 0;
      padding-right: 0;
    }
  }
  @media (max-width: 720px) {
    .supplements-strip {
      padding: 44px 0 48px;
    }
    .supplements-strip__thumb {
      width: 150px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .supplements-strip__thumb,
    .supplements-strip__cta {
      transition: none;
    }
    .supplements-strip__thumb:hover {
      transform: none;
    }
  }
/* END_SECTION:supplements-strip */

/* START_SECTION:testing-services (INDEX:107) */
.testing-services {
    background: var(--ts-bg);
    width: 100%;
    padding: 72px 24px 80px;
  }
  .testing-services__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .testing-services__heading {
    font-family: var(--ts-heading-family);
    font-weight: var(--ts-heading-weight);
    font-style: var(--ts-heading-style);
    color: var(--ts-heading-color);
    font-size: var(--ts-heading-size);
    line-height: 1.0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 44px;
  }
  .testing-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .testing-services__card {
    background: var(--ts-card-bg);
    color: var(--ts-card-text);
    border-radius: 10px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 240px;
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
  .testing-services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  }
  .testing-services__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ts-price);
  }
  .testing-services__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }
  .testing-services__name {
    font-family: var(--ts-heading-family);
    font-weight: var(--ts-heading-weight);
    font-style: var(--ts-heading-style);
    color: var(--ts-card-text);
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
  }
  .testing-services__price {
    font-family: var(--ts-heading-family);
    font-weight: 800;
    color: var(--ts-price);
    font-size: 24px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .testing-services__desc {
    font-family: var(--ts-body-family);
    font-weight: var(--ts-body-weight);
    font-style: var(--ts-body-style);
    color: var(--ts-card-text);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.88;
  }
  .testing-services__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 9999px;
    background: var(--ts-cta-bg);
    color: var(--ts-cta-fg);
    font-family: var(--ts-body-family);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease;
  }
  .testing-services__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
  }
  @media (max-width: 720px) {
    .testing-services {
      padding: 56px 18px 64px;
    }
    .testing-services__heading {
      font-size: calc(var(--ts-heading-size) * 0.72);
    }
    .testing-services__grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .testing-services__head {
      flex-wrap: wrap;
      gap: 6px;
    }
    .testing-services__price {
      font-size: 20px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .testing-services__card,
    .testing-services__cta {
      transition: none;
    }
    .testing-services__card:hover {
      transform: none;
    }
  }
/* END_SECTION:testing-services */

/* START_SECTION:trust-bar (INDEX:109) */
.trust-bar {
    background: var(--trust-bg);
    color: var(--trust-fg);
    width: 100%;
    padding: 18px 16px;
  }
  .trust-bar__list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 28px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1280px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .trust-bar__list::-webkit-scrollbar {
    display: none;
  }
  .trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
    scroll-snap-align: start;
    font-family: var(--trust-family);
    font-weight: var(--trust-weight);
    font-style: var(--trust-style);
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--trust-fg);
  }
  .trust-bar__icon svg {
    display: block;
    width: 22px;
    height: 22px;
  }
  @media (max-width: 900px) {
    .trust-bar__list {
      justify-content: flex-start;
      padding-left: 4px;
      padding-right: 4px;
    }
    .trust-bar__item {
      font-size: 13px;
    }
  }
/* END_SECTION:trust-bar */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product-card (INDEX:198) */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap');
  .gl-promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 9999px;
    background: #B0EA4D;
    color: #000;
    font-family: 'League Spartan', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  }
  .product-card {
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease;
    will-change: transform;
  }
  .product-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #FF3131;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 200ms ease;
    z-index: 3;
    pointer-events: none;
  }
  .product-card:hover,
  .product-card:focus-within {
    transform: scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    z-index: 2;
  }
  .product-card:hover::after,
  .product-card:focus-within::after {
    transform: scaleX(1);
  }
  @media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-card::after {
      transition: none;
    }
    .product-card:hover {
      transform: none;
    }
  }
  .gl-bestseller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 9999px;
    background: #000;
    color: #fff;
    font-family: 'League Spartan', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  }
/* END_SNIPPET:product-card */