/* ==========================================================================
   AURAANIX — Frontend (Navbar + Hero)
   Bootstrap 5 + Custom CSS
   ========================================================================== */

:root {
    --ax-black: #0a0a0a;
    --ax-dark: #0e0e0e;
    --ax-white: #ffffff;
    --ax-ink: #141414;
    --ax-muted: #cfcfcf;
    --ax-gray: #8a8a8a;
    --ax-gold: #c9974d;
    --ax-border: #ececec;
    --ax-max: 1440px;
}

* { box-sizing: border-box; }

html, body {
    max-width: 100%;
    /* clip (not hidden) prevents horizontal scroll without creating a
       scroll container, so position: sticky keeps working */
    overflow-x: clip;
}

/* Prevent any section/div from causing horizontal scroll */
section, .ax-container,
.ax-hero__overlay, .ax-hero__buttons, .ax-hero__stats {
    max-width: 100%;
}

body {
    margin: 0;
    background: var(--ax-black);
    color: var(--ax-white);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ==========================================================================
   PROMO / ANNOUNCEMENT BAR
   ========================================================================== */
.ax-promobar {
    background: #0b0b0b;
    color: #f0e6d2;
    border-bottom: 1px solid rgba(201, 151, 77, .35);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.ax-promobar__track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: ax-promo-scroll 22s linear infinite;
}
.ax-promobar:hover .ax-promobar__track { animation-play-state: paused; }
.ax-promobar__msg {
    display: inline-block;
    padding: 8px 48px;
    font-size: 12.5px;
    letter-spacing: .02em;
    color: #e9dcc2;
}
.ax-promobar__msg strong { color: var(--ax-gold, #c9974d); font-weight: 700; }
.ax-promobar__code {
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 1px 6px;
    border: 1px dashed rgba(201, 151, 77, .55);
    border-radius: 4px;
}
.ax-promobar__msg em { color: #9a9a9a; font-style: normal; font-size: 11px; }
@keyframes ax-promo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ax-promobar__track { animation: none; justify-content: center; width: 100%; }
    .ax-promobar__msg + .ax-promobar__msg { display: none; }
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.ax-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.ax-header__top {
    background: linear-gradient(180deg, #262f3d 0%, #1b222e 100%);
}

.ax-header__inner {
    max-width: var(--ax-max);
    margin: 0 auto;
    height: 88px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.ax-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.ax-logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* Search */
.ax-search {
    position: relative;
    flex: 1 1 auto;
    max-width: 470px;
    margin: 0 auto;
}

.ax-search__input {
    width: 100%;
    height: 48px;
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    padding: 0 60px 0 24px;
    font-size: 14px;
    color: #333;
    outline: none;
    background: #fff;
}

.ax-search__input::placeholder { color: #9b9b9b; }

.ax-search__btn {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    width: 52px;
    border: 0;
    border-radius: 26px;
    background: var(--ax-ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Actions */
.ax-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.ax-action {
    position: relative;
    color: #fff;
    display: inline-flex;
    transition: color 0.2s ease;
}

.ax-action:hover { color: var(--ax-gold); }

.ax-action__badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 9px;
    background: #fff;
    color: var(--ax-ink);
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

/* Account action: icon + name inline when logged in */
.ax-action--account {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ax-action--account:hover { color: var(--ax-gold); }

.ax-action__name {
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Login button (guest) — silver pill, shown on both desktop and mobile */
.ax-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 99px;
    min-height: 40px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #949494 0%, #ffffff 51%, #949494 100%);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ax-login-btn svg { flex: 0 0 auto; }
.ax-login-btn:hover {
    color: #1a1a1a;
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Hamburger */
.ax-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.ax-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
}

/* Primary nav row */
.ax-nav {
    border-top: 1px solid var(--ax-border);
    border-bottom: 1px solid var(--ax-border);
    background: #fff;
    /* Navbar typography per Figma: Inter (inherited by the mega menu too). */
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.ax-nav__list {
    max-width: var(--ax-max);
    margin: 0 auto;
    padding: 0 40px;
    list-style: none;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 73px;
}

.ax-nav__list a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.ax-nav__list a:hover { color: var(--ax-gold); }

/* Active page highlight (Task 016) — gold text only, no underline. */
.ax-nav__item.is-active > a { color: var(--ax-gold); position: relative; }

.ax-caret {
    width: 8px;
    height: 8px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

/* Desktop: keep nav visible despite the .collapse class */
@media (min-width: 992px) {
    .ax-nav__collapse.collapse:not(.show) { display: block !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ax-hero {
    position: relative;
    background: var(--ax-black);
    overflow: hidden;
}

.ax-hero__img {
    display: block;
    width: 100%;
    height: auto;
}

.ax-hero__overlay {
    position: absolute;
    left: 6%;
    bottom: 6.5%;
    width: 46%;
}

/* ==========================================================================
   BANNER SLIDER (page-wise banners — only rendered when 2+ images exist).
   A single banner keeps the original markup, so the UI is unchanged.
   ========================================================================== */
.ax-bslider { position: relative; overflow: hidden; width: 100%; line-height: 0; }
.ax-bslider__track { display: flex; transition: transform 0.6s ease; will-change: transform; }
.ax-bslider__slide { flex: 0 0 100%; min-width: 100%; }
.ax-bslider__slide img { display: block; width: 100%; height: auto; }
.ax-bslider__slide a { display: block; }
.ax-bslider__dots {
    position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 4; line-height: 0;
}
.ax-bslider__dot {
    width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.45); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.ax-bslider__dot.is-active { background: #fff; transform: scale(1.15); }

/* Hero buttons */
.ax-hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 5%;
}

.ax-hero__btn {
    padding: 13px 34px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: filter 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* Metallic silver "Shop Men" */
.ax-hero__btn--solid {
    background: linear-gradient(180deg, #f6f6f6 0%, #cfcfcf 48%, #a9a9a9 100%);
    color: #161616;
    border: 1px solid #cdcdcd;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.ax-hero__btn--solid:hover { filter: brightness(1.05); }

/* Outlined "Shop Women" */
.ax-hero__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
}
.ax-hero__btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* Hero stats */
.ax-hero__stats {
    display: flex;
    align-items: center;
}

.ax-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 26px;
}

.ax-stat__sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.28);
    margin-right: 26px;
}

.ax-stat__ico {
    width: 65px;
    height: 65px;
    object-fit: contain;
    flex: 0 0 auto;
    display: block;
}

.ax-stat__text {
    display: flex;
    flex-direction: column;
    color: var(--ax-muted);
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
}
.ax-stat__text strong {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* ==========================================================================
   FEATURE STRIP — infinite right-to-left marquee
   ========================================================================== */

@keyframes ax-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ax-features {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;          /* clips the scrolling track */
    display: flex;             /* two tracks side-by-side */
    margin-top: 0;
    touch-action: pan-y;       /* allow vertical page scroll over the marquee (mobile) */
}

/* Each track is a flex row of items that scrolls left */
.ax-features__track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 20px 0;
    animation: ax-marquee 60s linear infinite;
    will-change: transform;
    pointer-events: none;      /* non-interactive — let touches scroll the page */
}

/* Pause on hover — only on devices that actually hover (not touch, where it sticks) */
@media (hover: hover) {
    .ax-features:hover .ax-features__track { animation-play-state: paused; }
}

.ax-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    flex-shrink: 0;
}

.ax-feature__ico {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex: 0 0 auto;
}

.ax-feature span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ax-feature__sep {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet & below */
@media (max-width: 991.98px) {
    .ax-header__inner {
        height: 70px;
        padding: 0 18px;
        gap: 14px;
    }

    .ax-toggler { display: flex; order: 1; }
    .ax-logo { order: 2; }
    .ax-actions { order: 3; margin-left: auto; gap: 14px; }
    .ax-logo img { height: 42px; }

    /* Hero: overlay stacks below image */
    .ax-hero { overflow: visible; display: block; }
    .ax-hero__overlay {
        position: static;
        width: 100%;
        background: var(--ax-black);
        padding: 20px 18px 0;
        box-sizing: border-box;
        margin-bottom: 0;
    }
    .ax-hero__buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    .ax-hero__btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
        box-sizing: border-box;
    }
    .ax-hero__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        align-items: start;
        margin-bottom: 22px;
        width: 100%;
    }
    .ax-stat__sep { display: none; }
    .ax-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-right: 0;
        gap: 6px;
        min-width: 0;              /* prevent grid blow-out on tiny screens */
    }
    .ax-stat__ico { width: 38px; height: 38px; }
    .ax-stat__text {
        align-items: center;
        text-align: center;
        white-space: normal;       /* let long labels wrap neatly */
        font-size: 11px;
    }
    .ax-stat__text strong { font-size: 17px; }

    /* Feature strip: marquee still runs on mobile — just smaller icons/text */
    .ax-features { overflow: hidden; }
    .ax-features__track { animation-duration: 45s; padding: 14px 0; }
    .ax-feature { padding: 0 20px; gap: 8px; }
    .ax-feature__ico { width: 36px !important; height: 36px !important; }
    .ax-feature span { font-size: 11px; letter-spacing: 0.5px; }
}

/* Mobile ≤575px */
@media (max-width: 575.98px) {
    .ax-actions { gap: 12px; }
    .ax-login-btn { min-width: auto; min-height: 36px; padding: 0 16px; font-size: 13px; gap: 5px; }

    /* Trust stats: compact on phones so 3 columns fit cleanly */
    .ax-hero__stats { gap: 4px; }
    .ax-stat { gap: 4px; }
    .ax-stat__ico { width: 30px; height: 30px; }
    .ax-stat__text { font-size: 10px; line-height: 1.25; }
    .ax-stat__text strong { font-size: 15px; }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR (mobile / tablet only)
   ========================================================================== */
.ax-bottombar { display: none; }

@media (max-width: 991.98px) {
    .ax-bottombar {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 1035;
        background: #fff;
        border-top: 1px solid var(--ax-border);
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
        padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    }
    .ax-bottombar__item {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 4px 0;
        color: #6a6a6a;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .2px;
        text-decoration: none;
        transition: color .15s ease;
    }
    .ax-bottombar__item svg { width: 22px; height: 22px; }
    .ax-bottombar__item.is-active { color: var(--ax-ink); }
    .ax-bottombar__item:active { color: var(--ax-gold); }
    .ax-bottombar__ico { position: relative; display: inline-flex; }
    .ax-bottombar__badge {
        position: absolute; top: -5px; right: -8px;
        min-width: 15px; height: 15px; padding: 0 4px;
        border-radius: 9px; background: var(--ax-gold); color: #1a1a1a;
        font-size: 9px; font-weight: 700; line-height: 15px; text-align: center;
    }
    .ax-bottombar__badge[hidden] { display: none; }

    /* keep page content clear of the fixed bottom bar */
    body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }
}

/* ==========================================================================
   MOBILE LEFT DRAWER
   ========================================================================== */

/* Hide desktop nav bar on mobile */
@media (max-width: 991.98px) {
    .ax-nav--desktop { display: none; }
}

/* Backdrop */
.ax-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.55);
    transition: opacity 0.3s ease;
    opacity: 0;
}
.ax-drawer-backdrop.is-open {
    display: block;
    opacity: 1;
}

/* Drawer panel */
.ax-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: 1045;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.ax-drawer.is-open {
    transform: translateX(0);
}

/* Drawer header */
.ax-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(180deg, #262f3d 0%, #1b222e 100%);
    flex-shrink: 0;
}
.ax-drawer__logo img {
    height: 38px;
    width: auto;
    display: block;
}
.ax-drawer__close {
    background: transparent;
    border: none;
    color: #fff;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.ax-drawer__close:hover { opacity: 1; }

/* Drawer nav */
.ax-drawer__nav {
    flex: 1 1 auto;
    overflow-y: auto;
}
.ax-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each top-level row */
.ax-drawer__item {
    border-bottom: 1px solid #ebebeb;
}
.ax-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #1b222e;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
    transition: color 0.2s, background 0.2s;
}
.ax-drawer__link:hover { color: var(--ax-gold, #b8922a); background: #fafafa; }

/* Caret */
.ax-drawer__caret {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.ax-drawer__item--has-children.is-open > .ax-drawer__toggle .ax-drawer__caret {
    transform: rotate(225deg);
}

/* Submenu */
.ax-drawer__sub {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #f7f7f7;
    transition: max-height 0.3s ease;
}
.ax-drawer__item--has-children.is-open > .ax-drawer__sub {
    max-height: 500px;
}
.ax-drawer__sublink {
    display: block;
    padding: 11px 20px 11px 32px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #efefef;
    transition: color 0.2s, background 0.2s;
}
.ax-drawer__sublink:last-child { border-bottom: 0; }
.ax-drawer__sublink:hover { color: var(--ax-gold, #b8922a); background: #f0f0f0; }
/* Active category (matches the current page) */
.ax-drawer__sublink.is-active {
    color: var(--ax-gold, #b8922a); background: #f0f0f0; font-weight: 700;
    box-shadow: inset 3px 0 0 var(--ax-gold, #b8922a);
}
.ax-drawer__item--has-children.is-open > .ax-drawer__toggle { color: var(--ax-gold, #b8922a); }

/* Drawer footer */
.ax-drawer__foot {
    border-top: 1px solid #e5e5e5;
    padding: 16px 20px;
    flex-shrink: 0;
    background: #fff;
}
.ax-drawer__foot-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1b222e;
    text-decoration: none;
    transition: color 0.2s;
}
.ax-drawer__foot-link:hover { color: var(--ax-gold, #b8922a); }

/* ==========================================================================
   MOBILE SEARCH ICON + OVERLAY
   ========================================================================== */

/* Mobile search icon button — strip all browser button defaults, match .ax-action style */
.ax-mob-search-btn {
    display: none; /* shown only on mobile via media query below */
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

.ax-mob-search-btn:hover,
.ax-mob-search-btn:focus { color: var(--ax-gold); }

/* Hide desktop search bar on mobile; show search icon instead */
@media (max-width: 991.98px) {
    .ax-search { display: none; }
    .ax-mob-search-btn { display: inline-flex; }
}

/* On desktop the icon is hidden and the search bar is visible */
@media (min-width: 992px) {
    .ax-mob-search-btn { display: none !important; }
}

/* Full-screen search overlay */
.ax-mob-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(27, 34, 46, 0.97);
    flex-direction: column;
    align-items: stretch;
}

.ax-mob-search-overlay.is-open {
    display: flex;
}

.ax-mob-search-overlay__inner {
    width: 100%;
    padding: 14px 16px 10px;
    background: #1b222e;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ax-mob-search-overlay__form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ax-mob-search-overlay__back {
    flex: 0 0 auto;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ax-mob-search-overlay__input {
    flex: 1 1 auto;
    height: 46px;
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    padding: 0 50px 0 20px;
    font-size: 15px;
    color: #333;
    outline: none;
    background: #fff;
}

.ax-mob-search-overlay__input::placeholder { color: #9b9b9b; }

.ax-mob-search-overlay__btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 44px;
    border: 0;
    border-radius: 22px;
    background: #1b222e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Results list below the input */
.ax-mob-search-overlay__results {
    background: #fff;
    border-radius: 12px;
    margin-top: 8px;
    overflow-y: auto;
    max-height: calc(100dvh - 120px);
}

.ax-mob-search-overlay__results .ax-sresult {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: inherit;
    text-decoration: none;
}

.ax-mob-search-overlay__results .ax-sresult:last-child { border-bottom: 0; }
.ax-mob-search-overlay__results .ax-sresult__img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.ax-mob-search-overlay__results .ax-sresult__name {
    font-size: 14px;
    font-weight: 500;
    color: #1b222e;
    display: block;
}

.ax-mob-search-overlay__results .ax-sresult__price {
    font-size: 13px;
    color: var(--ax-gold, #b8922a);
    font-weight: 600;
    display: block;
}

.ax-mob-search-overlay__results .ax-search__all {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1b222e;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
}

.ax-mob-search-overlay__results .ax-search__empty {
    padding: 18px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* ==========================================================================
   SHARED SECTION SHELL
   ========================================================================== */
.ax-container {
    max-width: var(--ax-max);
    margin: 0 auto;
    padding: 0 40px;
}

.ax-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.ax-sec-title {
    position: relative;
    margin: 0;
    padding-bottom: 12px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ax-ink);
}
.ax-sec-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--ax-gold);
}
.ax-sec-title--light { color: #fff; }

.ax-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ax-gold);
    text-transform: uppercase;
}

.ax-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ax-ink);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.ax-explore span { font-size: 20px; line-height: 1; }
.ax-explore:hover { color: var(--ax-gold); }

/* ==========================================================================
   SHOP BY CATEGORY
   ========================================================================== */
.ax-category {
    background: #fff;
    padding: 60px 0;
}
.ax-category .ax-container { max-width: 100%; }

.ax-cat-grid { display: grid; gap: 20px; }
.ax-cat-grid--2 { grid-template-columns: 1fr 1fr; margin-bottom: 20px; }
.ax-cat-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ax-cat {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}
.ax-cat img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 657 / 281;
    transition: transform 0.4s ease;
}
.ax-cat--sm img { aspect-ratio: 319 / 210; }
.ax-cat:hover img { transform: scale(1.03); }

.ax-cat__shop {
    position: absolute;
    left: 3.8%;
    bottom: 9%;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--ax-ink);
}
.ax-cat__shop i { font-style: normal; font-size: 15px; }
.ax-cat--sm .ax-cat__shop { left: 6.5%; bottom: 8%; }

/* ==========================================================================
   TOP PICKS THIS WEEK
   ========================================================================== */
.ax-picks {
    background: #0a0a0a;
    padding: 54px 0 60px;
}

.ax-sec-head--dark .ax-sec-title { color: #fff; }

.ax-picks__nav { display: flex; gap: 12px; }
.ax-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.ax-arrow--next { background: #fff; color: #111; border-color: #fff; }
.ax-arrow:hover { background: var(--ax-gold); color: #111; border-color: var(--ax-gold); }

.ax-picks__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.ax-picks__track::-webkit-scrollbar { display: none; }

/* Product card */
.ax-product {
    position: relative;
    flex: 0 0 236px;
    background: #f3f3f3;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hover: zoom the image only (card stays put) */
.ax-product__img img { transition: transform 0.45s ease; }
.ax-product__img:hover img { transform: scale(1.08); }

.ax-product__wish {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--ax-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.15s ease;
}
/* Active = solid red. Hover only nudges the icon — never turns it red — so that
   toggling a heart OFF is visible instantly even while the cursor (desktop) or a
   sticky mobile :hover still rests on the button. Using the active red for hover
   made a just-removed heart look unchanged until the next refresh. */
.ax-product__wish:hover { transform: scale(1.12); }
.ax-product__wish.is-active { color: #d3322a; }
.ax-acc__wish.is-active { color: #d3322a; background: rgba(255, 255, 255, 0.25); }
/* Fill the heart solid red when active (the SVG is an outline by default). */
.ax-acc__wish.is-active svg { fill: #d3322a; stroke: #d3322a; }

.ax-product__img {
    background: #fff;
    overflow: hidden;
    margin: -14px -14px 12px;
    aspect-ratio: 1 / 1;
}
.ax-product__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ax-product__brand {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ax-gold);
}
.ax-product__name {
    margin: 3px 0 9px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ax-ink);
}

/* Card title / image links inherit the design colour (no default link blue) */
.ax-product__name a,
.ax-product__img,
.ax-acc__name a,
.ax-acc__img {
    color: inherit;
    text-decoration: none;
}

.ax-product__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}
.ax-product__pricewrap { display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.ax-product__price { font-size: 18px; font-weight: 700; color: var(--ax-ink); }
.ax-product__mrp { font-size: 13px; font-weight: 500; color: #9a9a9a; text-decoration: line-through; }
.ax-product__off { font-size: 12px; font-weight: 700; color: #2e9e5b; }
.ax-product--dark .ax-product__mrp { color: #7a7a7a; }
.ax-product__rating { display: inline-flex; align-items: center; gap: 1px; color: #e6a92e; }
.ax-product__rating svg { width: 13px; height: 13px; }
.ax-product__rating em {
    margin-left: 5px;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    color: #5a5a5a;
}

.ax-product__opts {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}
.ax-colors__label { display: block; margin-bottom: 7px; font-size: 11px; color: #777; }
.ax-colors__dots { display: flex; gap: 6px; }
.ax-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.ax-swatch:hover { transform: scale(1.15); }
.ax-swatch:focus-visible { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ax-ink); }
.ax-swatch.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ax-ink); }

.ax-sizes { display: flex; gap: 5px; }
.ax-sizes span {
    min-width: 25px;
    height: 25px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.ax-sizes span:hover { border-color: var(--ax-ink); }
.ax-sizes span:focus-visible { outline: none; border-color: var(--ax-ink); }
.ax-sizes span.is-active { background: var(--ax-ink); color: #fff; border-color: var(--ax-ink); }

.ax-product__btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ax-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px;
    border-radius: 6px;
    transition: background 0.2s ease;
}
.ax-product__btn i { font-style: normal; }
.ax-product__btn:hover { background: #000; color: #fff; }

/* ==========================================================================
   RESPONSIVE — category + picks
   ========================================================================== */
@media (max-width: 991.98px) {
    .ax-container { padding: 0 18px; }
    .ax-category { padding: 40px 0; }
    .ax-cat-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .ax-sec-title { font-size: 22px; }
}

@media (max-width: 575.98px) {
    .ax-cat-grid--2 { grid-template-columns: 1fr; }
    .ax-cat-grid--4 { grid-template-columns: 1fr 1fr; }
    .ax-product { flex-basis: 78%; }
    .ax-sec-head { flex-wrap: wrap; gap: 14px; }
}

/* ==========================================================================
   NOT JUST GYMWEAR (banner + overlay button)
   ========================================================================== */
.ax-lifestyle {
    position: relative;
    background: #f1efec;
    line-height: 0;
}
.ax-lifestyle img {
    display: block;
    width: 100%;
    height: auto;
}
.ax-lifestyle__btn {
    position: absolute;
    left: 8.6%;
    bottom: 13%;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    padding: 14px 26px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #161616;
    background: linear-gradient(180deg, #f6f6f6 0%, #cfcfcf 48%, #a9a9a9 100%);
    border: 1px solid #cdcdcd;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: filter 0.2s ease;
}
.ax-lifestyle__btn:hover { filter: brightness(1.05); }

/* ==========================================================================
   PRODUCT SHOWCASE (Compression T-Shirt)
   ========================================================================== */
.ax-showcase {
    background: #0a0a0a;
}
.ax-showcase__frame {
    display: flex;
    border-top: 1px solid var(--ax-gold);
    border-bottom: 1px solid var(--ax-gold);
    background: #0a0a0a;
    overflow: hidden;
}
.ax-showcase__left {
    flex: 0 0 59.3%;
    line-height: 0;
}
.ax-showcase__left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* White spec panel */
.ax-showcase__panel {
    flex: 1;
    background: #fff;
    border-left: 1px solid var(--ax-gold);
    padding: 46px 50px;
}

.ax-pd__brand {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--ax-gold);
}
.ax-pd__name {
    position: relative;
    margin: 10px 0 0;
    padding-bottom: 16px;
    font-size: 40px;
    font-weight: 700;
    color: var(--ax-ink);
}
.ax-pd__name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    background: var(--ax-gold);
}
.ax-pd__price {
    margin: 20px 0 12px;
    font-size: 33px;
    font-weight: 700;
    color: var(--ax-ink);
}
.ax-pd__rating { display: flex; align-items: center; gap: 2px; color: #e6a92e; }
.ax-pd__rating svg { width: 19px; height: 19px; }
.ax-pd__rating svg.is-half { clip-path: inset(0 50% 0 0); margin-right: -19px; }
.ax-pd__rating em {
    margin-left: 8px;
    font-style: normal;
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

.ax-pd__hr {
    border: 0;
    border-top: 1px solid #e6e6e6;
    margin: 20px 0;
}

.ax-pd__label {
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ax-ink);
}
.ax-pd__swatches { display: flex; gap: 16px; }
.ax-pd__swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
}
.ax-pd__swatch.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ax-ink); }

.ax-pd__sizes { display: flex; gap: 11px; margin-top: 20px; }
.ax-pd__sizes span {
    min-width: 42px;
    height: 42px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2d2d2;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}
.ax-pd__sizes span.is-active { background: #ededed; border-color: #bdbdbd; color: var(--ax-ink); }

.ax-pd__head {
    margin: 0 0 9px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--ax-ink);
}
.ax-pd__text {
    margin: 0 0 24px;
    font-size: 15.5px;
    line-height: 1.55;
    color: #555;
}
.ax-pd__features {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}
.ax-pd__features li {
    margin-bottom: 8px;
    font-size: 15.5px;
    line-height: 1.45;
    color: #444;
}

@media (max-width: 767.98px) {
    .ax-showcase__frame { flex-direction: column; }
    .ax-showcase__left { flex-basis: auto; }
    .ax-showcase__panel { border-left: 0; border-top: 1px solid var(--ax-gold); padding: 28px 22px; }
}

/* ==========================================================================
   YOU'RE STRONGER (banner)
   ========================================================================== */
.ax-stronger {
    background: #0a0a0a;
    line-height: 0;
}
.ax-stronger img {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive button scale */
@media (max-width: 767.98px) {
    .ax-lifestyle__btn {
        padding: 9px 14px;
        font-size: 11px;
        bottom: 11%;
    }
}
@media (max-width: 479.98px) {
    .ax-lifestyle__btn {
        padding: 6px 9px;
        font-size: 8px;
        letter-spacing: 0.3px;
    }
}

/* ==========================================================================
   COMPRESSION T-SHIRT (banner)
   ========================================================================== */
.ax-compression {
    background: #0a0a0a;
    line-height: 0;
}
.ax-compression img {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   DESIGN STUDIO — BUILD YOUR KIT
   ========================================================================== */
.ax-studio {
    position: relative;
    overflow: hidden;
    padding: 62px 0 72px;
    background: linear-gradient(135deg, #f7f7f5 0%, #ececec 100%);
}
.ax-studio::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(125deg, rgba(0,0,0,0.018) 0 2px, transparent 2px 60px);
    pointer-events: none;
}
.ax-studio .ax-container { position: relative; z-index: 1; }

.ax-studio__head { text-align: center; margin-bottom: 42px; }
.ax-studio__eyebrow {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #2a2a2a;
}
.ax-studio__title {
    margin: 0 0 16px;
    font-size: 38px;
    font-weight: 800;
    color: #161616;
}
.ax-studio__title span { color: var(--ax-gold); }
.ax-studio__sub {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.ax-studio__grid {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 22px;
    align-items: stretch;
}

/* Cards */
.ax-panel {
    background: linear-gradient(160deg, #1d1d1d 0%, #0e0e0e 100%);
    border: 1px solid #2b2b2b;
    border-radius: 16px;
    padding: 18px;
}
.ax-panel__bar {
    position: relative;
    overflow: hidden;
    margin: 0 0 14px;
    padding: 11px 14px;
    background: #242424;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e8e8e8;
}
.ax-panel > .ax-panel__bar:not(:first-child) { margin-top: 16px; }
.ax-panel__bar::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 55%;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1.4px);
    background-size: 7px 7px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000);
    mask-image: linear-gradient(90deg, transparent, #000);
}

/* Product selector (kit) */
.ax-kitselect { margin: 0 0 14px; }
.ax-kitselect__label {
    display: block; font-size: 11px; letter-spacing: .5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 6px;
}
.ax-kitselect__input {
    width: 100%; height: 44px; padding: 0 12px;
    background: #1a1a1a; color: #fff; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
    font-size: 13.5px; outline: none;
}
.ax-kitselect__input:focus { border-color: var(--ax-gold, #c9974d); }
.ax-kitselect__input option { background: #1a1a1a; color: #fff; }

/* Customization rows */
.ax-cust {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 13px 14px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    cursor: pointer;
}
.ax-cust__ic {
    width: 38px; height: 38px;
    flex: 0 0 auto;
    border: 1px solid var(--ax-gold);
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.ax-cust__ic svg { width: 18px; height: 18px; }
.ax-cust__label { flex: 1; text-align: left; color: #fff; font-size: 14px; font-weight: 500; }
.ax-cust__arrow { color: #9a9a9a; font-size: 16px; }

/* Color palette */
.ax-palette { display: grid; grid-template-columns: repeat(8, 1fr); gap: 9px; transition: opacity 0.2s ease; }
.ax-palette__dot {
    width: 100%; aspect-ratio: 1;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    cursor: pointer;
}
.ax-palette__dot.is-active { box-shadow: 0 0 0 2px #141414, 0 0 0 3px #fff; }

/* Locked until a font is selected — the colour applies to the text/font. */
.ax-palette.is-locked { opacity: 0.4; pointer-events: none; filter: grayscale(0.4); }
.ax-palette__hint {
    margin: 8px 0 0;
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--ax-gold, #c9974d);
    opacity: 0.85;
}

/* Fonts */
.ax-fonts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ax-font {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    cursor: pointer;
}
.ax-font__aa { font-size: 22px; line-height: 1; color: #fff; }
.ax-font__name { font-size: 13px; color: #9a9a9a; }
.ax-font--display .ax-font__aa { font-family: 'Oswald', sans-serif; font-weight: 700; }
.ax-font--sans .ax-font__aa { font-family: 'Montserrat', sans-serif; }
.ax-font--serif .ax-font__aa { font-family: Georgia, 'Times New Roman', serif; }
.ax-font--mono .ax-font__aa { font-family: 'Courier New', monospace; }

/* Preview */
.ax-preview {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 430px;
    background: radial-gradient(circle at 50% 38%, #181818 0%, #000 78%);
}
.ax-preview__controls {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    display: flex; gap: 10px;
}
.ax-preview__controls button {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.ax-preview__controls img { width: 15px; height: 15px; filter: invert(1) brightness(2); }
.ax-preview__controls svg { width: 16px; height: 16px; }
.ax-preview__jersey {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 24px;
}
.ax-preview__thumbs {
    position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
    display: flex; gap: 8px;
    padding: 8px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    backdrop-filter: blur(2px);
}
.ax-preview__thumb {
    width: 54px; height: 48px;
    padding: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
}
.ax-preview__thumb.is-active { border-color: var(--ax-gold); }
.ax-preview__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Order summary */
.ax-summary { display: flex; flex-direction: column; }
.ax-summary__head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 6px;
    padding-bottom: 14px;
    font-size: 14px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: #fff;
}
.ax-summary__ic {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: #242424;
    color: var(--ax-gold);
    display: flex; align-items: center; justify-content: center;
}
.ax-summary__ic svg { width: 16px; height: 16px; }
.ax-summary__row {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 13px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px; color: #9a9a9a;
}
.ax-summary__row > span:first-child { flex: none; }
.ax-summary__val { color: #fff; font-weight: 500; text-align: right; min-width: 0; }

/* Product / Type selectors inside the order summary */
.ax-summary__selrow { padding: 11px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.ax-summary__selrow label {
    display: block; font-size: 12px; letter-spacing: .3px; color: #9a9a9a; margin-bottom: 6px;
}
.ax-summary__sel {
    width: 100%; height: 42px; padding: 0 12px;
    background: #1a1a1a; color: #fff; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
    font-size: 13.5px; outline: none;
}
.ax-summary__sel:focus { border-color: var(--ax-gold, #c9974d); }
.ax-summary__sel option { background: #1a1a1a; color: #fff; }
.ax-summary__colors { display: flex; gap: 6px; }
.ax-summary__dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); }
.ax-qty { display: flex; align-items: center; gap: 12px; }
.ax-qty__btn {
    width: 24px; height: 24px;
    border-radius: 6px;
    background: #242424; border: 1px solid #333;
    color: #fff; font-size: 15px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.ax-qty__val { min-width: 20px; text-align: center; color: #fff; font-weight: 600; }
.ax-qty--sm { gap: 8px; }
.ax-qty--sm .ax-qty__btn { width: 22px; height: 22px; font-size: 13px; }

/* Per-size quantity grid */
.ax-summary__row--sizehead { color: #8a8a8a; font-size: 12px; letter-spacing: .4px; text-transform: uppercase; padding-bottom: 2px; }
.ax-sizeqty { display: flex; flex-direction: column; gap: 8px; margin: 2px 0 10px; }
.ax-sizeqty__row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 9px;
}
.ax-sizeqty__label { color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .5px; }
.ax-summary__total {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 14px;
    padding: 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, #242424, #1a1a1a);
    border: 1px solid #333;
    font-size: 16px; font-weight: 600; color: #fff;
}
.ax-summary__totalval { font-size: 22px; font-weight: 700; }
.ax-summary__btn {
    margin-top: 16px;
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    background: linear-gradient(180deg, #f7f7f7 0%, #d4d4d4 50%, #b4b4b4 100%);
    color: #161616; font-size: 15px; font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    cursor: pointer;
}
.ax-summary__btn svg { width: 18px; height: 18px; }

@media (max-width: 991.98px) {
    .ax-studio__grid { grid-template-columns: 1fr; }
    .ax-studio__title { font-size: 30px; }
    .ax-preview { min-height: 400px; }
}

/* Phones — tighten the studio's vertical rhythm so there isn't a big dead gap
   between it and the full-bleed banners above/below, and less space between the
   stacked customization / preview / summary panels. */
@media (max-width: 767.98px) {
    .ax-studio { padding: 26px 0 30px; }
    .ax-studio__head { margin-bottom: 20px; }
    .ax-studio__title { font-size: 26px; }
    .ax-studio__sub { font-size: 14px; line-height: 1.5; }
    .ax-studio__grid { gap: 14px; }
}

/* ==========================================================================
   ENGINEERED FOR HER (banner)
   ========================================================================== */
.ax-her { background: #0a0a0a; line-height: 0; border-top: 44px solid #fff; }
.ax-her img { display: block; width: 100%; height: auto; }

/* Fixed "Shop Now" call-to-action overlaid on a banner */
.ax-banner--cta { position: relative; }
.ax-banner-cta {
    position: absolute;
    left: 7.5%;
    bottom: 12%;
    z-index: 3;
    display: inline-block;
    padding: 13px 40px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    color: #161616;
    background: linear-gradient(180deg, #f6f6f6 0%, #cfcfcf 48%, #a9a9a9 100%);
    border: 1px solid #cdcdcd;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 6px 18px rgba(0,0,0,0.35);
    transition: filter 0.2s ease;
}
.ax-banner-cta:hover { filter: brightness(1.06); }
@media (max-width: 768px) {
    .ax-banner-cta { left: 6%; bottom: 8%; padding: 10px 26px; font-size: 13px; }
}

/* ==========================================================================
   WOMEN'S GYM WEAR
   ========================================================================== */
.ax-women {
    position: relative;
    overflow: hidden;
    padding: 58px 0 64px;
    background: linear-gradient(135deg, #f7f7f5 0%, #ececec 100%);
}
.ax-women::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(125deg, rgba(0,0,0,0.018) 0 2px, transparent 2px 60px);
    pointer-events: none;
}
.ax-women .ax-container { position: relative; z-index: 1; max-width: 100%; }
.ax-women .ax-sec-title { text-transform: none; }
.ax-women__eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ax-gold);
}

.ax-women__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.ax-women__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ax-women__card img { aspect-ratio: 304 / 277; }

.ax-women__shop {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-block;
    padding: 7px 15px;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.ax-women__card:hover .ax-women__shop,
.ax-women__feature:hover .ax-women__shop { background: rgba(18, 18, 18, 0.85); }

/* Shop Now on the large feature card (POWER IN EVERY MOVE / STRINGERS) —
   same size as the small cards; just ensure it sits above the image. */
.ax-women__shop--feature { z-index: 2; }

/* Feature (POWER IN EVERY MOVE) */
.ax-women__feature {
    position: relative;
    display: block;
    height: 100%;
    min-height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
}
.ax-women__feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 991.98px) {
    .ax-women__grid { grid-template-columns: 1fr; }
    .ax-women__feature { height: auto; min-height: 0; aspect-ratio: 672 / 592; }
}
@media (max-width: 575.98px) {
    .ax-women__cards { grid-template-columns: 1fr 1fr; }
    .ax-women__feature { aspect-ratio: 16 / 11; }
}

/* ==========================================================================
   PRODUCT CARD — DARK VARIANT (Women's Top Picks)
   ========================================================================== */
.ax-product--dark {
    background: #15151c;
    border: 1px solid #262633;
}
.ax-product--dark .ax-product__img { background: transparent; }
.ax-product--dark .ax-product__name,
.ax-product--dark .ax-product__price { color: #fff; }
.ax-product--dark .ax-product__rating em { color: #9a9a9a; }
.ax-product--dark .ax-colors__label { color: #9a9a9a; }
.ax-product--dark .ax-sizes span {
    background: #1f1f29;
    border-color: #34343f;
    color: #cfcfcf;
}
.ax-product--dark .ax-sizes span.is-active { background: #fff; color: #141414; border-color: #fff; }
.ax-product--dark .ax-product__wish { background: #0e0e14; color: #fff; }
/* Only the active heart is red on dark cards; hover just nudges (see note above). */
.ax-product--dark .ax-product__wish.is-active { color: #d3322a; }
.ax-product--dark .ax-product__btn {
    background: #0e0e14;
    border: 1px solid #3a3a47;
}
.ax-product--dark .ax-product__btn:hover { background: #000; }

/* ==========================================================================
   PICKS — LIGHT SECTION VARIANT (Women's Top Picks)
   ========================================================================== */
.ax-picks--light {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f7f5 0%, #ececec 100%);
}
.ax-picks--light::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(125deg, rgba(0,0,0,0.018) 0 2px, transparent 2px 60px);
    pointer-events: none;
}
.ax-picks--light .ax-container { position: relative; z-index: 1; }
.ax-picks--light .ax-arrow { border-color: #cfcfcf; color: #141414; }
.ax-picks--light .ax-arrow--next { background: #141414; color: #fff; border-color: #141414; }
.ax-picks--light .ax-arrow:hover { background: var(--ax-gold); color: #111; border-color: var(--ax-gold); }

/* ==========================================================================
   AURAANIX BRAND BAND
   ========================================================================== */
.ax-brandband {
    position: relative;
    line-height: 0;
    background: #0a0a0a;
    overflow: hidden;
}
.ax-brandband img { display: block; width: 100%; height: auto; }
.ax-brandband__word {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(42px, 11vw, 168px);
    letter-spacing: 0.07em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.92);
    text-stroke: 2px rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   GEAR THAT GOES WITH YOU
   ========================================================================== */
.ax-gear {
    position: relative;
    overflow: hidden;
    padding: 54px 0 60px;
    background: linear-gradient(135deg, #f7f7f5 0%, #ececec 100%);
}
.ax-gear::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(125deg, rgba(0,0,0,0.018) 0 2px, transparent 2px 60px);
    pointer-events: none;
}
.ax-gear .ax-container { position: relative; z-index: 1; }
.ax-gear .ax-arrow { border-color: #cfcfcf; color: #141414; }
.ax-gear .ax-arrow--next { background: #141414; color: #fff; border-color: #141414; }
.ax-gear .ax-arrow:hover { background: var(--ax-gold); color: #111; border-color: var(--ax-gold); }

.ax-gear__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.ax-gear__track::-webkit-scrollbar { display: none; }

/* Accessory card */
.ax-acc {
    position: relative;
    flex: 0 0 236px;
    border-radius: 10px;
    overflow: hidden;
    background: #16213a;
}
.ax-acc__link { display: block; color: inherit; text-decoration: none; }
.ax-acc__img { display: block; width: 100%; height: auto; }
.ax-acc__wish {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ax-acc__wish:hover { background: rgba(255, 255, 255, 0.25); }
.ax-acc__info {
    position: absolute;
    left: 16px;
    bottom: 15px;
    z-index: 2;
}
.ax-acc__brand {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ax-gold);
}
.ax-acc__name {
    margin: 3px 0 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* ==========================================================================
   MEMBERSHIP — SHOP MORE, SAVE MORE
   ========================================================================== */
.ax-member {
    position: relative;
    padding: 56px 0 50px;
    background: #0a0a0a url('../../images/frontend/membership/bg.png') center / cover no-repeat;
}
.ax-member::before { content: ""; position: absolute; inset: 0; background: rgba(8, 8, 8, 0.62); }
.ax-member__head { position: relative; z-index: 1; text-align: center; margin-bottom: 34px; }
.ax-member__eyebrow { display: block; margin-bottom: 12px; font-size: 13px; font-weight: 600; letter-spacing: 6px; color: #c8a45d; text-transform: uppercase; }
.ax-member__title { margin: 0; font-size: 34px; font-weight: 700; color: #fff; }
.ax-member__title span { color: #c8a45d; }

.ax-member__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.ax-tier {
    position: relative;
    padding: 30px 26px;
    text-align: center;
    border: 1px solid #2c2c2c;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(30,30,30,0.94) 0%, rgba(14,14,14,0.96) 100%);
}
.ax-tier--popular { border-color: #c8a45d; transform: translateY(-12px); box-shadow: 0 22px 44px rgba(0,0,0,0.5); }
.ax-tier__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px; border-radius: 14px;
    background: linear-gradient(180deg, #e8c879, #c8a45d);
    color: #1a1a1a; font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.ax-tier__badge img { width: 16px; height: 16px; }
.ax-tier__ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 8px; color: #c8a45d; }
.ax-tier__ic svg { width: 30px; height: 30px; }
.ax-tier__name { margin: 4px 0 6px; font-size: 20px; font-weight: 700; letter-spacing: 0.5px; color: #fff; }
.ax-tier__sub { margin: 0 0 16px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #c8a45d; }
.ax-tier__price { margin-bottom: 20px; font-size: 30px; font-weight: 700; color: #fff; }
.ax-tier__price span { font-size: 13px; font-weight: 500; color: #9a9a9a; }
.ax-tier__list { list-style: none; margin: 0 0 24px; padding: 0; text-align: left; }
.ax-tier__list li { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 13.5px; color: #d2d2d2; }
.ax-tier__list svg { flex: 0 0 auto; width: 18px; height: 18px; color: #c8a45d; }
.ax-tier__btn { display: block; padding: 13px; border: 1px solid #4a4a4a; border-radius: 8px; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; transition: background 0.2s, color 0.2s; }
.ax-tier__btn:hover { background: #fff; color: #141414; }
.ax-tier--popular .ax-tier__btn { background: linear-gradient(180deg, #e8c879, #c8a45d); border-color: #c8a45d; color: #1a1a1a; }
.ax-tier--popular .ax-tier__btn:hover { filter: brightness(1.05); color: #1a1a1a; }

.ax-member__benefits {
    position: relative; z-index: 1; margin-top: 34px;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
    padding: 20px 26px; border: 1px solid #2a2a2a; border-radius: 12px; background: rgba(18,18,18,0.55);
}
.ax-benefit { display: flex; align-items: center; gap: 12px; }
.ax-benefit img { width: 30px; height: 30px; object-fit: contain; }
.ax-benefit__title { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.4px; color: #fff; }
.ax-benefit__sub { display: block; font-size: 11.5px; color: #9a9a9a; }

/* ==========================================================================
   POWERED BY REAL PEOPLE — CREATORS
   ========================================================================== */
.ax-creators {
    position: relative;
    background: #eeede9;
    padding: 0;
}

/* ---- Background layer ---- */
.ax-creators__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ax-creators__watermark {
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(64px, 8vw, 118px);
    line-height: 1.05;
    letter-spacing: 3px;
    text-align: right;
    color: rgba(0, 0, 0, 0.07);
    white-space: nowrap;
    user-select: none;
    padding-top: 10px;
    padding-right: 20px;
}

/* Models image — right side, natural size, bottom-anchored */
.ax-creators__models-img {
    position: absolute;
    right: 77px;
    bottom: 261px;
    height: 97%;          /* fills the top section height */
    width: auto;
    max-width: 42%;        /* never exceeds half the section */
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
}

/* ---- Foreground ---- */
.ax-creators__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Intro text — left ~48%, top area */
.ax-creators__intro {
    width: 48%;
    padding: 50px 0 40px 60px;
}

.ax-creators__title {
    position: relative;
    margin: 8px 0 18px;
    padding-bottom: 16px;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 800;
    line-height: 1.1;
    color: #141414;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ax-creators__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #c8a45d;
}

.ax-creators__sub {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ---- Cards row ---- */
.ax-creators__cards-wrap {
    position: relative;
    padding: 0 60px 52px 60px;
    overflow: hidden;   /* clips any card that slides off-screen */
}

.ax-creators__track {
    /* Single horizontal row: 4 cards visible, the rest scroll off-screen.
       Flexbox + fixed flex-basis keeps every card in ONE row (no wrapping,
       no collapsing) regardless of how many creators admin adds. */
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: stretch;
    /* Allow the JS arrow to scroll, but hide the scrollbar */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ax-creators__track::-webkit-scrollbar { display: none; }
/* Each card snaps cleanly */
.ax-ccard { scroll-snap-align: start; }

/* ---- Individual card ---- */
.ax-ccard {
    position: relative;
    /* 4 cards visible per view; never shrink so they stay one row + scroll */
    flex: 0 0 calc((100% - 16px * 3) / 4);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 309 / 448;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    display: block;   /* ensure anchor behaves as block for aspect-ratio */
}
.ax-ccard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.30);
}

.ax-ccard__img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ax-ccard:hover .ax-ccard__img {
    transform: scale(1.04);
}

/* Dark gradient overlay at bottom */
.ax-ccard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.92) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Stretched product link — makes the whole card clickable.
   Sits above the gradient but below the info, so social links stay usable. */
.ax-ccard__link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* VIEW PRODUCT → pill — top right */
.ax-ccard__view {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    pointer-events: none;   /* clicks fall through to the stretched product link */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: #141414;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s, color 0.2s;
}
.ax-ccard:hover .ax-ccard__view {
    background: #c8a45d;
    color: #fff;
}

/* Bottom info: name, role, followers, social */
.ax-ccard__info {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 4;
    /* Let clicks on the text fall through to the product link; only the
       social icons (re-enabled below) capture their own clicks. */
    pointer-events: none;
    /* Guard against content overflowing the card */
    max-height: calc(100% - 60px);
    overflow: hidden;
}

.ax-ccard__name {
    margin: 0 0 4px;
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ax-ccard__role {
    display: block;
    width: fit-content;
    max-width: 100%;
    font-size: 12px;
    color: #cfcfcf;
    padding-bottom: 8px;
    border-bottom: 2px solid #c8a45d;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ax-ccard__followers {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.ax-ccard__social {
    display: flex;
    gap: 10px;
    align-items: center;
    /* Re-enable clicks (parent .ax-ccard__info disables them) so the
       Instagram / Facebook / YouTube links work over the product link. */
    pointer-events: auto;
}
.ax-ccard__social a { display: inline-flex; }
.ax-ccard__social svg {
    width: 15px;
    height: 15px;
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.ax-ccard__social svg:hover { opacity: 1; }

/* ---- Next arrow ---- */
.ax-creators__arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #bbb;
    background: #fff;
    color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ax-creators__arrow:hover {
    background: #c8a45d;
    border-color: #c8a45d;
    color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    /* Hide the watermark + models image block on mobile — keep the section clean */
    .ax-creators__bg { display: none; }
    .ax-creators__intro { padding-top: 28px; }
    .ax-creators__intro {
        width: 100%;
        padding: 32px 20px 28px;
    }
    .ax-creators__title { font-size: 24px; }
    .ax-creators__cards-wrap { padding: 0 16px 36px; }
    .ax-creators__track { gap: 12px; }
    .ax-ccard { flex: 0 0 calc((100% - 12px) / 2); }
    .ax-ccard__name { font-size: 16px; }
    .ax-creators__arrow { right: 4px; }
}

@media (max-width: 575.98px) {
    .ax-ccard__view { font-size: 10px; padding: 5px 10px; }
    .ax-ccard__name { font-size: 14px; }
    .ax-ccard__role { font-size: 11px; }
    .ax-creators__arrow { display: none; }
}

/* Phones — remove the big dead gaps between full-bleed banners and the light
   content sections. Placed after the section rules above so it wins at ≤767px. */
@media (max-width: 767.98px) {
    /* "Engineered For Her" banner: shrink the white strip above it. */
    .ax-her { border-top-width: 14px; }
    /* Athletes & Creators — tighter intro + card padding. */
    .ax-creators__intro { padding: 22px 18px 16px; }
    .ax-creators__cards-wrap { padding: 0 14px 24px; }
}

/* ==========================================================================
   #TEAMAURAANIX
   ========================================================================== */
.ax-team { background: #fff; padding: 50px 0; }
/* Full-width section on desktop (overrides the constrained .ax-container) */
.ax-team__inner { max-width: 100%; display: flex; align-items: center; gap: 40px; }
.ax-team__left { flex: 0 0 280px; }
.ax-team__title { margin: 0 0 10px; font-size: 30px; font-weight: 800; color: #141414; }
.ax-team__movement { margin: 0 0 22px; font-size: 20px; font-weight: 500; color: #333; }
.ax-team__btn { display: inline-block; padding: 13px 26px; border-radius: 6px; background: #141414; color: #fff; font-size: 14px; font-weight: 600; }
.ax-team__btn:hover { background: #000; }
.ax-team__grid { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ax-team__tile { border-radius: 6px; overflow: hidden; aspect-ratio: 1; }
.ax-team__tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ax-team__tile:hover img { transform: scale(1.05); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ax-footer { background: #0a0a0a; color: #cfcfcf; }
.ax-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr; gap: 30px; padding: 54px 40px 42px; }
.ax-footer__logo { height: 56px; margin-bottom: 16px; }
.ax-footer__brand p { max-width: 290px; font-size: 14px; line-height: 1.6; color: #a8a8a8; }
.ax-footer__social { display: flex; gap: 14px; margin-top: 18px; }
.ax-footer__social a { width: 38px; height: 38px; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #cfcfcf; }
.ax-footer__social a:hover { border-color: #c8a45d; color: #c8a45d; }
.ax-footer__col h4 { margin: 0 0 18px; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; color: #fff; }
.ax-footer__col a { display: block; padding: 6px 0; font-size: 14px; color: #a8a8a8; }
.ax-footer__col a:hover { color: #c8a45d; }
.ax-footer__news h3 { margin: 0 0 10px; font-size: 26px; font-weight: 800; line-height: 1.15; color: #fff; }
.ax-footer__news h3 span { color: #c8a45d; }
.ax-footer__news p { margin: 0 0 16px; font-size: 13.5px; color: #a8a8a8; }
.ax-footer__form { display: flex; max-width: 330px; }
.ax-footer__form input { flex: 1; padding: 12px 14px; border: 1px solid #333; border-right: 0; background: transparent; color: #fff; font-size: 13px; outline: none; }
.ax-footer__form input::placeholder { color: #888; letter-spacing: 1px; }
.ax-footer__form button { width: 48px; border: 0; background: linear-gradient(135deg, #e8c879, #c8a45d); color: #1a1a1a; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ax-footer__bar { border-top: 1px solid #1f1f1f; }
.ax-footer__bar-inner { display: flex; justify-content: space-between; padding: 20px 0; font-size: 13px; color: #8a8a8a; }

/* ==========================================================================
   RESPONSIVE — closing sections
   ========================================================================== */
@media (max-width: 991.98px) {
    .ax-member__grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0 auto; }
    .ax-tier--popular { transform: none; }
    .ax-member__benefits { gap: 16px; }
    .ax-benefit { flex: 1 1 45%; }

    .ax-team__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .ax-team__left { flex: none; width: 100%; }
    .ax-team__grid { width: 100%; }

    .ax-footer__top { grid-template-columns: 1fr 1fr; padding: 44px 18px 32px; }
    .ax-footer__brand, .ax-footer__news { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
    .ax-member__title { font-size: 26px; }

    /* Membership cards — horizontal scroll carousel on mobile */
    .ax-member__grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 4px 16px 16px;
        margin: 0 -16px;
        grid-template-columns: unset;
        scroll-snap-type: x mandatory;
    }
    .ax-member__grid::-webkit-scrollbar { display: none; }
    .ax-tier {
        flex: 0 0 82vw;
        max-width: 300px;
        min-width: 260px;
        scroll-snap-align: start;
    }
    .ax-tier--popular { transform: none; }

    .ax-benefit { flex: 1 1 100%; }
    .ax-team__grid { grid-template-columns: 1fr 1fr; }
    .ax-footer__top { grid-template-columns: 1fr; }
    .ax-footer__bar-inner { flex-direction: column; gap: 6px; }

    /* Ensure all containers stay within viewport */
    .ax-container { padding-left: 16px !important; padding-right: 16px !important; }
    /* Membership scroll container — allow overflow out of ax-container */
    .ax-member .ax-container { overflow: visible; }
    img { max-width: 100%; height: auto; }
}

/* ==========================================================================
   REFINEMENTS — logo watermark backgrounds, icon sizing, creators
   ========================================================================== */

/* AURAANIX logo watermark behind Top Picks (men + women) and Gear */
.ax-picks, .ax-gear { position: relative; overflow: hidden; }
.ax-picks::after, .ax-gear::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url('../../images/frontend/watermark.png') center / contain no-repeat;
    pointer-events: none;
    z-index: 0;
}
/* Dark men's Top Picks → faint white logo */
.ax-picks:not(.ax-picks--light)::after { opacity: 0.10; }
/* Light sections → use the silver logo as-is (light, subtle) */
.ax-picks--light::after, .ax-gear::after { opacity: 0.75; }

/* keep content above the watermark + go full width */
.ax-picks > .ax-container, .ax-gear > .ax-container { position: relative; z-index: 1; max-width: 100%; }

/* Membership — uniform benefit icon width + tier shield sizing */
.ax-benefit img { width: 40px; height: auto; object-fit: contain; }
.ax-tier__shield { width: 36px; height: auto; display: block; }


/* ============================================================
   Dynamic category dropdowns (navbar)
   ============================================================ */
.ax-nav__list li { position: relative; }

.ax-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--ax-border);
    border-radius: 12px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 70;
}
/* invisible hover bridge so the menu doesn't close in the gap */
.ax-dropdown::before {
    content: "";
    position: absolute;
    top: -12px; left: 0; right: 0; height: 12px;
}
.ax-nav__item.has-children:hover > .ax-dropdown,
.ax-nav__item.has-children:focus-within > .ax-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.ax-dropdown li { width: 100%; }
.ax-dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--ax-ink);
    border-radius: 8px;
}
.ax-dropdown a:hover { background: #faf6ef; color: var(--ax-gold); }

/* ============================================================
   Live search results dropdown
   ============================================================ */
.ax-search__results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 380px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--ax-border);
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    padding: 6px;
    z-index: 80;
}
/* Category-grouped search results (Task 021) */
.ax-search__grouphead {
    padding: 8px 10px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #a08a5e;
}
.ax-search__group + .ax-search__group .ax-search__grouphead { border-top: 1px solid var(--ax-border); margin-top: 4px; }

.ax-sresult {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--ax-ink);
}
.ax-sresult:hover { background: #faf6ef; }
.ax-sresult__img {
    width: 46px; height: 46px;
    border-radius: 8px;
    object-fit: cover;
    background: #f3f3f3;
    flex: 0 0 auto;
}
.ax-sresult__body { min-width: 0; display: flex; flex-direction: column; }
.ax-sresult__name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ax-sresult__price { font-size: 12.5px; color: var(--ax-gold); font-weight: 600; }
.ax-search__empty { padding: 18px; text-align: center; color: var(--ax-gray); font-size: 13px; }
.ax-search__all {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--ax-ink);
    border-top: 1px solid var(--ax-border);
}
.ax-search__all:hover { color: var(--ax-gold); }

/* Mobile: dropdowns become inline, stacked lists inside the collapsed menu */
@media (max-width: 991.98px) {
    .ax-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        /* Accordion: collapsed by default, expands when the parent is tapped */
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 14px;
        transition: max-height .3s ease;
    }
    .ax-dropdown::before { display: none; }
    .ax-dropdown a {
        text-transform: none;
        padding: 10px 10px;
        border-bottom: 1px solid var(--ax-border);
    }
    .ax-dropdown li:last-child a { border-bottom: 0; }

    /* Open state */
    .ax-nav__item.has-children.is-open > .ax-dropdown {
        max-height: 540px;
        padding: 2px 0 8px 14px;
    }

    /* Caret flips up when open */
    .ax-nav__item.has-children > a .ax-caret { transition: transform .25s ease; }
    .ax-nav__item.has-children.is-open > a .ax-caret { transform: translateY(2px) rotate(-135deg); }
}

/* ==========================================================================
   Address type selector (Home / Office / Work) — Bug 003
   ========================================================================== */
.ax-addrtype { display: flex; gap: 10px; flex-wrap: wrap; }
.ax-addrtype__opt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid #d8d8d8;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    user-select: none;
}
.ax-addrtype__opt input { position: absolute; opacity: 0; pointer-events: none; }
.ax-addrtype__opt:hover { border-color: #c8a45d; }
.ax-addrtype__opt.is-active,
.ax-addrtype__opt:has(input:checked) {
    border-color: #c8a45d;
    background: rgba(200, 164, 93, 0.12);
    color: #8a6a23;
}

/* ==========================================================================
   Searchable address dropdowns — State / City / Pincode (Bug 002)
   ========================================================================== */
.ax-combo { position: relative; }
.ax-combo > input { width: 100%; }
.ax-combo__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 60;
    max-height: 248px;
    overflow-y: auto;
    background: #1c1c1c;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
    padding: 4px;
}
.ax-combo__opt {
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 13.5px;
    color: #e8e8e8;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ax-combo__opt:hover,
.ax-combo__opt.is-active {
    background: rgba(200, 164, 93, 0.18);
    color: #fff;
}
.ax-combo__opt--hint {
    color: #888;
    font-style: italic;
    cursor: default;
}
.ax-combo__opt--hint:hover { background: transparent; color: #888; }
.ax-combo__menu::-webkit-scrollbar { width: 8px; }
.ax-combo__menu::-webkit-scrollbar-thumb { background: #444; border-radius: 8px; }

/* ==========================================================================
   Toast notifications (Bugs 005 / 006)
   ========================================================================== */
.ax-toast-wrap {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.ax-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    max-width: 360px;
    padding: 13px 16px;
    border-radius: 12px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    transform: translateX(120%);
    opacity: 0;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), opacity .3s;
}
.ax-toast.is-show { transform: translateX(0); opacity: 1; }
.ax-toast__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: #2ecc71;
    color: #fff;
}
.ax-toast--error { background: #2a1414; }
.ax-toast--error .ax-toast__icon { background: #e74c3c; }
.ax-toast__msg { line-height: 1.3; }

@media (max-width: 575.98px) {
    .ax-toast-wrap { top: auto; bottom: 78px; right: 12px; left: 12px; }
    .ax-toast { min-width: 0; max-width: none; }
}

/* ==========================================================================
   AUTH MODAL (in-page OTP login / register)
   ========================================================================== */
.ax-authm { position: fixed; inset: 0; z-index: 100060; display: none; align-items: center; justify-content: center; padding: 20px; }
.ax-authm.is-open { display: flex; }
.ax-authm__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.ax-authm__dialog {
    position: relative; width: 100%; max-width: 500px; max-height: 92vh; overflow: auto;
    background: #14141a; color: #fff; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 40px 42px; box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}
.ax-authm__close {
    position: absolute; top: 10px; right: 14px; background: none; border: 0;
    font-size: 28px; line-height: 1; color: #9a9a9a; cursor: pointer;
}
.ax-authm__close:hover { color: #fff; }
.ax-authm__brand { text-align: center; margin-bottom: 16px; }
.ax-authm__brand img { height: 30px; width: auto; }
.ax-authm__tabs { display: flex; gap: 8px; background: rgba(255,255,255,0.05); border-radius: 10px; padding: 5px; margin-bottom: 18px; }
.ax-authm__tab {
    flex: 1; padding: 9px 0; background: none; border: 0; cursor: pointer; border-radius: 7px;
    color: #9a9a9a; font-size: 13.5px; font-weight: 600; letter-spacing: .3px;
}
.ax-authm__tab.is-active { background: var(--ax-gold, #c9974d); color: #1a1a1a; }
.ax-authm__pane { display: none; }
.ax-authm__pane.is-active { display: block; }
.ax-authm__hint { font-size: 13px; color: #b6b6b6; margin: 0 0 16px; line-height: 1.5; }
.ax-authm__hint strong { color: #fff; }
.ax-authm__label { display: block; font-size: 12px; color: #9a9a9a; margin: 0 0 6px; }
.ax-authm__inwrap { display: flex; align-items: center; margin-bottom: 16px; background: #1d1d24; border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; overflow: hidden; }
.ax-authm__prefix { padding: 0 12px; color: #9a9a9a; font-size: 14px; border-right: 1px solid rgba(255,255,255,0.12); height: 46px; display: flex; align-items: center; }
.ax-authm__input { flex: 1; height: 46px; padding: 0 14px; background: transparent; border: 0; color: #fff; font-size: 14px; outline: none; }
.ax-authm__input--full { width: 100%; background: #1d1d24; border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; margin-bottom: 16px; }
.ax-authm__inwrap:focus-within, .ax-authm__input--full:focus { border-color: var(--ax-gold, #c9974d); }
.ax-authm__btn {
    width: 100%; height: 48px; margin-top: 4px; border: 0; border-radius: 10px; cursor: pointer;
    background: var(--ax-gold, #c9974d); color: #1a1a1a; font-size: 14px; font-weight: 700; letter-spacing: .3px;
}
.ax-authm__btn:hover { filter: brightness(1.05); }
.ax-authm__btn:disabled { opacity: .6; cursor: default; }
.ax-authm__otp { display: flex; gap: 10px; justify-content: center; margin: 4px 0 18px; }
.ax-authm__digit {
    width: 52px; height: 56px; text-align: center; font-size: 22px; font-weight: 700;
    background: #1d1d24; border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; color: #fff; outline: none;
}
.ax-authm__digit:focus { border-color: var(--ax-gold, #c9974d); }
.ax-authm__switch { display: flex; justify-content: space-between; margin: 14px 0 0; }
.ax-authm__link { background: none; border: 0; cursor: pointer; color: var(--ax-gold, #c9974d); font-size: 13px; font-weight: 600; }
.ax-authm__error { background: rgba(211,50,42,0.12); border: 1px solid rgba(211,50,42,0.4); color: #ff9a93; font-size: 13px; border-radius: 8px; padding: 9px 12px; margin-bottom: 14px; }
.ax-authm__terms { font-size: 11.5px; color: #8a8a8a; text-align: center; margin: 18px 0 0; line-height: 1.6; }
.ax-authm__terms a { color: var(--ax-gold, #c9974d); }
@media (max-width: 420px) {
    .ax-authm__digit { width: 46px; height: 50px; font-size: 20px; }
}
