:root {
    --blue: #0000FF;
    --black: #111111;
    --white: #ffffff;
    --gray: #f7f7f7;
    --gray-mid: #ececec;
    --gray-light: #e0e0e0;
    --muted: rgba(17, 17, 17, 0.55);
    --border: rgba(0, 0, 0, 0.08);
    --font-sans: 'Work Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ticker-h: 28px;
    --header-main-h: 64px;
    --subnav-h: 44px;
    --header-h: calc(var(--ticker-h) + var(--header-main-h) + var(--subnav-h));
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 255, 0.12);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Ticker ── */
.ticker {
    background: var(--blue);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.5rem 0;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ticker__track {
    display: inline-flex;
    animation: ticker-scroll 35s linear infinite;
}

.ticker__track span {
    padding: 0 3rem;
}

.ticker__track span::after {
    content: '·';
    margin-left: 3rem;
    opacity: 0.5;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Header ── */
.header {
    position: fixed;
    top: var(--ticker-h);
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: top 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.is-scrolled {
    top: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.85rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    min-height: var(--header-main-h);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    color: var(--black);
}

.nav--left {
    display: flex;
    gap: 2rem;
}

.nav--left a,
.nav-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.25s;
}

.nav--left a:hover,
.nav--left a.is-active,
.nav-link:hover {
    color: var(--blue);
}

.header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.25s;
}

.btn-icon:hover {
    color: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.btn--primary {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn--lg {
    padding: 0.85rem 2.25rem;
    font-size: 0.7rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--black);
    transition: transform 0.3s;
}

/* ── Subnav categorías ── */
.subnav {
    position: relative;
    border-top: 1px solid var(--border);
    background: var(--white);
    z-index: 210;
}

.subnav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.subnav__inner::-webkit-scrollbar {
    display: none;
}

.subnav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-height: var(--subnav-h);
    white-space: nowrap;
}

.subnav__item {
    position: relative;
}

.subnav__row {
    display: flex;
    align-items: stretch;
}

.subnav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.subnav__caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.45;
    transform: translateY(1px);
    transition: transform 0.2s, opacity 0.2s;
}

.subnav__item--has-menu:hover .subnav__caret,
.subnav__item--has-menu:focus-within .subnav__caret {
    opacity: 0.85;
    transform: translateY(2px);
}

.subnav__caret--desktop {
    display: inline-block;
}

.subnav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0 0.5rem;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.subnav__toggle .subnav__caret {
    opacity: 0.7;
}

.subnav__item--open .subnav__toggle .subnav__caret {
    transform: rotate(180deg) translateY(-1px);
    opacity: 1;
}

.subnav__drawer {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--gray);
    max-height: 45vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.subnav__drawer.is-open {
    display: block;
}

.subnav__drawer .subnav__menu-all,
.subnav__drawer .subnav__club-link {
    min-height: 44px;
    display: flex;
    align-items: center;
}

.subnav__drawer .subnav__menu-all {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.subnav__drawer .subnav__clubs {
    padding: 0.25rem 0;
}

.subnav__drawer .subnav__club-link {
    padding: 0.75rem 1.25rem;
}

.subnav__link:hover,
.subnav__link.is-active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

/* Menú desplegable al hover */
.subnav__menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    max-width: 280px;
    padding: 0.65rem 0;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), visibility 0.22s, transform 0.22s var(--ease);
    z-index: 300;
}

.subnav__menu-inner {
    max-height: 320px;
    overflow-y: auto;
}

.subnav__menu-all {
    display: block;
    padding: 0.55rem 1rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.35rem;
    transition: background 0.2s;
}

.subnav__menu-all:hover {
    background: rgba(0, 0, 255, 0.04);
}

.subnav__clubs {
    list-style: none;
    padding: 0.15rem 0;
}

.subnav__club-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--black);
    transition: color 0.2s, background 0.2s;
}

.subnav__club-link:hover,
.subnav__club-link.is-active {
    color: var(--blue);
    background: rgba(0, 0, 255, 0.05);
}

.subnav__item--has-menu:hover .subnav__menu,
.subnav__item--has-menu:focus-within .subnav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 769px) {
    .subnav__inner {
        overflow: visible;
    }

    .header {
        overflow: visible;
    }
}

/* ── Subnav clubes por categoría (solo móvil) ── */
.clubs-subnav {
    border-top: 1px solid var(--border);
    background: var(--gray);
}

.clubs-subnav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.clubs-subnav__inner::-webkit-scrollbar {
    display: none;
}

.clubs-subnav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 38px;
    white-space: nowrap;
    padding: 0.35rem 0;
}

.clubs-subnav__link {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--muted);
    border: 1px solid transparent;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.clubs-subnav__link:hover,
.clubs-subnav__link.is-active {
    color: var(--blue);
    background: rgba(0, 0, 255, 0.06);
    border-color: rgba(0, 0, 255, 0.2);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - var(--header-main-h) - var(--ticker-h));
    max-height: calc(100dvh - var(--header-main-h) - var(--ticker-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-nav__section {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.mobile-nav__section:last-child {
    border-bottom: none;
}

.mobile-nav__heading {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    transition: color 0.25s;
}

.mobile-nav__link--sub {
    padding-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.mobile-nav__link--cart {
    color: var(--blue);
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
    color: var(--blue);
}

.mobile-nav__group {
    border-bottom: 1px solid var(--border);
}

.mobile-nav__group:last-child {
    border-bottom: none;
}

.mobile-nav__accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0.5rem 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    text-align: left;
    cursor: pointer;
}

.mobile-nav__accordion-icon {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.mobile-nav__accordion[aria-expanded="true"] .mobile-nav__accordion-icon {
    transform: rotate(-135deg);
}

.mobile-nav__panel {
    padding: 0 0 0.5rem 0.75rem;
}

.mobile-nav__panel-all,
.mobile-nav__panel-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--muted);
}

.mobile-nav__panel-all {
    font-weight: 600;
    color: var(--blue);
}

.mobile-nav__panel-link:active,
.mobile-nav__panel-all:active {
    color: var(--blue);
}

.mobile-nav.is-open {
    display: flex;
}

body.nav-open {
    overflow: hidden;
}

.nav-toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle.is-active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* ── Shared accents ── */
.hero__line {
    width: 48px;
    height: 2px;
    background: var(--blue);
    margin: 0 auto 1.5rem;
}

.hero__badge {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    margin-bottom: 1.5rem;
}

.hero__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 2.5rem;
}

.hero__dots--center {
    margin-top: 2rem;
}

.hero__dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    animation: dot-pulse 2s ease-in-out infinite;
}

.hero__dots span:nth-child(2) { animation-delay: 0.3s; }
.hero__dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dot-pulse {
    0%, 100% { opacity: 0.25; transform: scale(0.85); }
    50%      { opacity: 1;    transform: scale(1.15); }
}

.link-arrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s, opacity 0.3s;
}

.link-arrow:hover {
    border-bottom-color: var(--blue);
}

.link-arrow--white {
    color: var(--white);
}

.link-arrow--white:hover {
    border-bottom-color: var(--white);
}

/* ── Hero (full-bleed Equinox style) ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.6) 45%, rgba(10,10,10,0.88) 100%),
        radial-gradient(ellipse 70% 60% at 50% 35%, rgba(0,0,0,0.15) 0%, rgba(10,10,10,0.55) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: calc(var(--header-h) + 4rem) 2rem 4rem;
    color: var(--white);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero__subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 440px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero__terms {
    margin-top: 1.25rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}

.hero__terms a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.25s, border-color 0.25s;
}

.hero__terms a:hover {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

/* ── Statement ── */
.statement {
    position: relative;
    text-align: center;
    padding: 7rem 2rem;
    overflow: hidden;
}

.statement__bg {
    position: absolute;
    inset: 0;
}

.statement__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.statement__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
}

.statement__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.statement__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
}

.statement__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.statement__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ── Banner ── */
.banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner__media {
    position: absolute;
    inset: 0;
}

.banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.75) 100%),
        radial-gradient(ellipse 50% 80% at 50% 50%, rgba(0,0,0,0.2) 0%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}

.banner__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 4rem 2rem;
    color: var(--white);
}

.banner__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.banner__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ── Modules grid ── */
.modules {
    padding: 2rem 0 6rem;
    background: var(--gray);
}

.modules__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.module {
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.module__media {
    aspect-ratio: 375 / 563;
    position: relative;
    overflow: hidden;
    background: var(--gray-mid);
    transition: transform 0.6s var(--ease);
}

.module__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.module:hover .module__media {
    transform: scale(1.02);
}

.module__media--1 { background: linear-gradient(160deg, #f0f0f0, #e8e8f5); }
.module__media--2 { background: linear-gradient(160deg, #ececec, #f0eaf5); }
.module__media--3 { background: linear-gradient(160deg, #e8e8e8, #eaeaf5); }
.module__media--4 { background: linear-gradient(160deg, #f2f2f2, #ececf0); }
.module__media--5 { background: linear-gradient(160deg, #ededed, #e8e8f0); }
.module__media--6 { background: linear-gradient(160deg, #f0f0f0, #ebebf0); }

.module__media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.module:hover .module__media::after {
    transform: scaleX(1);
}

.module__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--blue);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    z-index: 2;
}

.module__body {
    padding: 2rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.module__title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.module__text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* ── Featured products ── */
.featured {
    padding: 6rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.featured__header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured__subtitle {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product {
    display: flex;
    flex-direction: column;
}

.product__info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product__media {
    aspect-ratio: 3 / 4;
    background: var(--gray-mid);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    transition: opacity 0.4s;
}

.product__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product__media::after {
    content: attr(data-team);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: rgba(0, 0, 255, 0.12);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 0;
}

.product__media--has-image::after {
    display: none;
}

.product:hover .product__media {
    opacity: 0.85;
}

.products__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 3rem 1rem;
    font-size: 0.9375rem;
}

.featured-pagination {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.featured-pagination__info {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.featured-pagination__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.featured-pagination__link:hover {
    background: rgba(0, 0, 255, 0.05);
}

.product__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--blue);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    z-index: 1;
}

.product__badge--new {
    background: var(--white);
    color: var(--black);
}

.product__league {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.4rem;
}

.product__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product__price {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.product__price s {
    color: rgba(17, 17, 17, 0.35);
    font-size: 0.8rem;
    margin-left: 0.4rem;
}

.product__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.product__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.product__sizes-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.product__sizes-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.product__size {
    min-width: 2.25rem;
    padding: 0.35rem 0.55rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.product__size:hover:not(.is-disabled),
.product__size.is-selected {
    border-color: var(--blue);
    background: rgba(0, 0, 255, 0.08);
}

.product__size.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.product__specs {
    list-style: none;
    margin: 0.5rem 0 0.75rem;
    padding: 0;
    font-size: 0.6875rem;
    line-height: 1.45;
    color: var(--muted);
}

.product__specs li {
    position: relative;
    padding-left: 0.75rem;
}

.product__specs li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--blue);
}

.product__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--blue);
    background: rgba(0, 0, 255, 0.06);
    padding: 0.3rem 0.55rem;
    border-radius: 2px;
}

.product__tag-icon {
    flex-shrink: 0;
}

.product__footer-hint {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.02em;
    min-height: 1em;
    transition: color 0.2s;
}

.product__footer-hint.is-ready {
    color: var(--black);
}

.product__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 46px;
    padding: 0.8rem 1.25rem;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s, transform 0.15s, opacity 0.25s;
}

.product__cta:hover:not(:disabled):not(.is-loading) {
    background: var(--black);
    border-color: var(--black);
}

.product__cta:active:not(:disabled):not(.is-loading) {
    transform: scale(0.985);
}

.product__cta:disabled {
    background: var(--gray);
    border-color: var(--gray-light);
    color: rgba(17, 17, 17, 0.38);
    cursor: not-allowed;
}

.product__cta.is-loading {
    pointer-events: none;
    opacity: 0.82;
}

.product__cta.is-success {
    background: #15803d;
    border-color: #15803d;
    pointer-events: none;
}

.product__cta-icon {
    flex-shrink: 0;
}

.product__stock--out {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dc2626;
    margin-top: 0.25rem;
}

/* ── Checkout modal ── */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.checkout-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.checkout-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.checkout-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    padding: 2rem 1.5rem 1.5rem;
}

.checkout-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.checkout-modal__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.checkout-modal__summary {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.checkout-field span {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.checkout-field input,
.checkout-field textarea {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--black);
    padding: 0.625rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.checkout-stock-note {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: -0.25rem;
}

.checkout-form__error {
    color: #fca5a5;
    font-size: 0.875rem;
}

.checkout-form__success {
    color: #86efac;
    font-size: 0.875rem;
}

.btn--block {
    width: 100%;
    margin-top: 0.5rem;
}

/* ── Tagline ── */
.tagline {
    text-align: center;
    padding: 7rem 2rem;
    background: var(--gray);
}

.tagline p {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--black);
}

.tagline em {
    font-family: var(--font-sans);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--blue);
}

/* ── Footer ── */
.footer {
    padding: 3rem 2.5rem 2.5rem;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 3rem;
}

.footer__links a {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.25s;
}

.footer__links a:hover {
    color: var(--blue);
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
}

.footer__copy {
    font-size: 0.7rem;
    color: var(--muted);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.25s;
}

.footer__legal a:hover {
    color: var(--blue);
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .modules__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .clubs-subnav {
        display: none;
    }
}

@media (max-width: 768px) {
    .subnav__menu {
        display: none !important;
    }

    .subnav__caret--desktop {
        display: none;
    }

    .subnav__toggle {
        display: inline-flex;
    }

    .subnav__item--open .subnav__link {
        color: var(--blue);
        border-bottom-color: var(--blue);
    }

    .subnav__link {
        flex: 1;
        min-height: 44px;
        align-items: center;
    }

    .clubs-subnav__link {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        padding: 0.45rem 0.75rem;
        font-size: 0.72rem;
    }

    .btn-icon--cart {
        min-width: 44px;
        min-height: 44px;
    }

    .product__size {
        min-height: 44px;
        min-width: 44px;
    }

    .product__cta {
        min-height: 48px;
        font-size: 0.7rem;
    }

    .header__inner {
        grid-template-columns: 1fr auto;
        padding: 0.75rem 1.25rem;
    }

    .subnav__link {
        padding: 0.55rem 0.65rem;
        font-size: 0.62rem;
    }

    .nav--left,
    .header__right .nav-link,
    .header__right .btn {
        display: none;
    }

    .logo {
        text-align: left;
        font-size: 1rem;
    }

    .header__right {
        gap: 0.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero__content {
        padding-top: calc(var(--header-h) + 2rem);
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero__title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .modules__grid {
        grid-template-columns: 1fr;
    }

    .products {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .statement,
    .tagline {
        padding: 5rem 1.5rem;
    }

    .featured {
        padding: 4rem 1.25rem;
    }

    .footer {
        padding: 2.5rem 1.25rem 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
