/** Shopify CDN: Minification failed

Line 868:12 Expected identifier but found whitespace
Line 868:24 Unexpected ";"

**/
/* ============================================
   RFLXNS — Cinematic Luxury Streetwear
   Design System & Styles
   ============================================ */
/* RFLXNS rollback marker: desktop nav experiment removed 2026-04-21 */

/* --- CSS Custom Properties --- */
:root {
    --color-bg: #0a0a0a;
    --color-surface: #111111;
    --color-text: #f5f0eb;
    --color-text-muted: #6b6b6b;
    --color-accent: #c8a97e;
    --color-accent-hover: #dbbf96;
    --color-border: #1f1f1f;

    --font-primary: var(--rflxns-font-body);
    --rflxns-header-logo-height: 44px;
    --rflxns-header-logo-height-mobile: 29px;
    --rflxns-header-logo-max-width-mobile: 132px;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slower: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

body {
    font-family: var(--font-primary);
    background-color: #000 !important;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.rfl-main-wrapper {
    opacity: 1;
    visibility: visible;
    min-height: 100vh;
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}

#MainContent {
    flex: 1 0 auto;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Dotted Font Buttons */
.nav-cta,
.shop-link,
.hero-cta,
.mobile-menu-link,
.mobile-menu-footer-link,
.section-label,
.mobile-close-text {
    font-family: var(--rflxns-font-accent) !important;
}

/* Search overlay typography — OffBit (accent) everywhere; no Jost, no Cormorant */

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

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

button,
input {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ============================================
   Slideshow Panel Base Styles
   ============================================ */
.panel, .split-categories, .card-gallery {
    min-height: 100dvh; /* Dynamic Viewport height for better mobile scaling */
    width: 100%;
    position: relative;
    background-color: var(--color-bg);
    overflow: hidden;
}

/* ============================================
   Film Grain Overlay
   ============================================ */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    animation: grainShift 0.5s steps(6) infinite;
}

@keyframes grainShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-5%, -10%);
    }

    20% {
        transform: translate(-15%, 5%);
    }

    30% {
        transform: translate(7%, -15%);
    }

    40% {
        transform: translate(-5%, 15%);
    }

    50% {
        transform: translate(-15%, 10%);
    }

    60% {
        transform: translate(15%, 0%);
    }

    70% {
        transform: translate(0%, 10%);
    }

    80% {
        transform: translate(3%, -15%);
    }

    90% {
        transform: translate(-10%, 10%);
    }
}

/* ============================================

   Navigation
   ============================================ */
/* Ensure Shopify's section wrapper doesn't trap fixed positioning */
#shopify-section-custom-header {
    position: unset !important;
    transform: none !important;
    will-change: auto !important;
    contain: none !important;
    overflow: visible !important;
    height: 0;
    width: 0;
}

.nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 64px;
    width: 100%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%),
        rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(20px) saturate(160%) contrast(110%);
    -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(110%);
    border: none;
    box-shadow: none;
    mix-blend-mode: normal;
    color: #ffffff;
    transition:
        background var(--transition-base),
        backdrop-filter var(--transition-base);
}

@media screen and (max-width: 768px) {
    .nav {
        padding: 0 1rem;
        height: calc(56px + env(safe-area-inset-top));
        align-items: center;
        mix-blend-mode: normal !important;
    }
}

.nav.scrolled {
    mix-blend-mode: normal !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%),
        rgba(14, 14, 14, 0.65) !important;
    backdrop-filter: blur(24px) saturate(180%) contrast(115%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) contrast(115%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

/* Homepage scrolled — same glass strip */
body.template-index .nav.scrolled {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%),
        rgba(14, 14, 14, 0.65) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    mix-blend-mode: normal !important;
}

body.template-index .nav.scrolled .nav-link,
body.template-index .nav.scrolled .nav-cta,
body.template-index .nav.scrolled .nav-icon {
    color: #ffffff !important;
}

body.template-index .nav.scrolled .logo-image {
    filter: none !important;
}

.nav.scrolled .nav-brand-pill {
    mix-blend-mode: normal;
}

.nav.scrolled .nav-link,
.nav.scrolled .nav-cta,
.nav.scrolled .nav-icon {
    color: #ffffff !important;
}

.nav.scrolled .nav-link::after {
    background: var(--color-accent);
}

.nav.scrolled .logo-image {
    filter: none !important;
}

.nav-brand-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    mix-blend-mode: normal;
    z-index: 3;
}

.nav-logo {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: var(--rflxns-header-logo-height);
    width: auto;
    max-width: min(180px, 32vw);
    object-fit: contain;
    transition: height var(--transition-base);
}

@media screen and (max-width: 768px) {
    .logo-image {
        height: var(--rflxns-header-logo-height-mobile);
        max-width: var(--rflxns-header-logo-max-width-mobile);
    }
}


.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.65rem;
    position: relative;
    z-index: 2;
}

.nav-right {
    margin-left: auto;
    justify-content: flex-end;
}

#cart-icon-bubble {
    margin-left: 0.45rem;
}

.nav-link {
    font-family: 'Jost', sans-serif !important;
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    color: #ffffff;
    transition: color var(--transition-base);
    position: relative;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.45), 0 12px 28px rgba(0, 0, 0, 0.42);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #ffffff;
    background: transparent;
    padding: 0.5rem 0;
    /* Removed horizontal padding so gap is equal */
    transition: color var(--transition-base), transform var(--transition-base);
}

.nav-cta:hover {
    color: var(--color-accent);
    transform: translateY(-1px);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFF0;
    /* Ivory */
    cursor: pointer;
    transition: color var(--transition-base), transform var(--transition-base);
    position: relative;
    background: none;
    border: none;
    padding: 0;
}

.nav-icon:hover {
    color: var(--color-text);
    transform: translateY(-1px);
}

.nav-icon.is-loading {
    opacity: 0.55;
    transform: scale(0.94);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.45rem;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Search Overlay — Bottom Sheet (Option B: Black/White Minimal)
   ============================================ */
.search-overlay {
    /* Pure B&W tokens */
    --search-accent: #ffffff;
    --search-fg: #ffffff;
    --search-dim: rgba(255, 255, 255, 0.28);

    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.72);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
        opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        visibility 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    .search-overlay {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* ── Bottom sheet panel ── */
.search-overlay .search-sheet {
    width: 100%;
    max-height: 88dvh;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

.search-overlay.active .search-sheet {
    transform: translateY(0);
}

/* Drag handle */
.search-sheet::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.18);
    margin: 10px auto 0;
    flex-shrink: 0;
}

/* ── Sheet header row ── */
.search-sheet__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.85rem 1.25rem 0.5rem;
    flex-shrink: 0;
}

/* Title hidden in Option B — input speaks for itself */
.search-sheet__title {
    display: none;
}

/* ── Scrollable content area ── */
.search-sheet__body {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.5rem 2.5rem;
}

.search-sheet__body::-webkit-scrollbar {
    display: none;
}

.account-transition-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), transparent 28%),
        rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 3000;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.account-transition-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.account-transition-shell {
    width: min(88vw, 420px);
    padding: 2rem 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.account-transition-icon-wrap {
    position: relative;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.account-transition-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transform: scale(0.86);
    opacity: 0.8;
}

.account-transition-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.account-transition-label {
    font-family: var(--rflxns-font-accent);
    font-size: 0.92rem;
    letter-spacing: 0.26em;
    color: #fff;
}

.account-transition-sub {
    font-family: var(--rflxns-font-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
}

.account-transition-track {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.account-transition-bar {
    display: block;
    width: 42%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.9), rgba(255,255,255,0));
    transform: translateX(-130%);
}

body.account-transition-is-active {
    overflow: hidden !important;
}

@media (prefers-reduced-motion: no-preference) {
    .account-transition-overlay.is-active .account-transition-pulse {
        animation: accountPulse 1.2s ease-out infinite;
    }

    .account-transition-overlay.is-active .account-transition-bar {
        animation: accountLoad 1.05s ease-in-out infinite;
    }

    .account-transition-overlay.is-active .account-transition-icon-wrap {
        animation: accountFloat 1.6s ease-in-out infinite;
    }
}

@keyframes accountPulse {
    0% {
        transform: scale(0.86);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

@keyframes accountLoad {
    0% {
        transform: translateX(-130%);
    }
    100% {
        transform: translateX(250%);
    }
}

@keyframes accountFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media screen and (max-width: 768px) {
    .account-transition-shell {
        width: min(90vw, 360px);
        padding: 1.75rem 1.2rem 1.2rem;
    }

    .account-transition-label {
        font-size: 0.82rem;
        letter-spacing: 0.22em;
    }

    .account-transition-sub {
        font-size: 0.82rem;
    }
}

.search-close {
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
    position: static;
}

.search-close:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.search-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Desktop: sheet becomes centered modal */
@media (min-width: 768px) {
    .search-overlay {
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.78);
    }

    .search-overlay .search-sheet {
        width: min(680px, 90vw);
        max-height: 80dvh;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
        transform: translateY(-20px) scale(0.97);
        transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
        opacity: 0;
    }

    .search-overlay.active .search-sheet {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (min-width: 1280px) {
    .search-overlay .search-sheet {
        width: min(820px, 88vw);
    }
}
.search-label {
    display: none; /* Option B — no label, input speaks for itself */
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1.6rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 0.5rem 0 0.8rem;
    transition: border-color 0.3s ease;
}

.search-input-wrapper:focus-within {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.search-input-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.search-input-icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.search-input-wrapper:focus-within .search-input-icon {
    color: rgba(255, 255, 255, 0.7);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 0.2rem 0;
    outline: none;
    caret-color: #ffffff;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.search-input:focus::placeholder {
    opacity: 0.6;
}

/* Flat underline — the wrapper border handles it */
.search-line {
    display: none;
}

.search-input-wrapper:focus-within .search-line {
    background: #ffffff;
}

/* Category chips — inverted B&W */
.search-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
}

.search-chips-label {
    display: none;
}

.search-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.search-chip:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: none;
}
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.85rem;
    border: 1px solid rgba(245, 240, 235, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 240, 235, 0.65);
    font-family: var(--rflxns-font-accent);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base), transform 0.2s ease;
}

.search-chip:hover {
    background: rgba(200, 169, 126, 0.12);
    border-color: rgba(200, 169, 126, 0.45);
    color: var(--search-accent);
    transform: translateY(-1px);
}

/* Keep chips visible when empty state is from a shortcut filter (Req 4.8) */
#search-overlay[data-empty-origin="shortcut"] #search-chips-row {
    display: flex !important;
}

/* Results area */
.predictive-search-results {
    width: 100%;
    max-height: none; /* sheet's own scroll handles this */
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.predictive-search-results::-webkit-scrollbar {
    display: none;
}


.search-results-title {
    display: block;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.38);
    margin-bottom: 0.85rem;
}

/* 2-column product grid */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

/* Mobile base (375px and up) — already the default */

@media (min-width: 768px) {
    .search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .search-container {
        max-width: 720px;
    }
}

@media (min-width: 1280px) {
    .search-container {
        max-width: 860px;
    }
}

@media (min-width: 1440px) {
    .search-container {
        max-width: 960px;
    }
}

.search-result-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    transition:
        border-color 0.25s ease,
        transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.search-result-card:hover,
.search-result-card.is-kb-focused {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.search-result-card__media {
    position: relative;
    overflow: hidden;
}

.chapter-badge,
.scarcity-badge {
    position: absolute;
    font-family: var(--rflxns-font-accent);
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--search-accent);
    background: rgba(10, 10, 10, 0.7);
    padding: 0.2rem 0.4rem;
    border-radius: 2px;
    line-height: 1;
}
.chapter-badge {
    top: 0.4rem;
    left: 0.4rem;
}
.scarcity-badge {
    top: 0.4rem;
    right: 0.4rem;
}

.search-result-card__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    background: #0A0A0A;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-result-card:hover .search-result-card__img,
.search-result-card.is-kb-focused .search-result-card__img {
    transform: translateY(-5px) scale(1.03);
}

.search-result-card__body {
    padding: 0.55rem 0.65rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.search-result-card__name {
    font-family: var(--rflxns-font-accent);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(245, 240, 235, 0.72);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.search-result-card:hover .search-result-card__name,
.search-result-card.is-kb-focused .search-result-card__name {
    color: var(--color-text);
    opacity: 1;
}

.search-result-card__price {
    font-family: var(--rflxns-font-accent);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--search-accent);
}

/* ── Stagger entrance animation ── */
@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-in {
    animation: cardIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: calc(var(--i, 0) * 40ms);
}

/* ── Recent searches ── */
.search-recent-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.search-recent-label {
    font-family: 'Jost', sans-serif !important;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.35);
    flex-shrink: 0;
}

.search-recent-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.search-recent-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.22rem 0.65rem;
    border: 1px solid rgba(245, 240, 235, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(245, 240, 235, 0.48);
    font-family: 'Jost', sans-serif !important;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.search-recent-chip:hover {
    background: rgba(200, 169, 126, 0.1);
    border-color: rgba(200, 169, 126, 0.3);
    color: var(--search-accent);
}

.search-recent-chip svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.search-recent-section {
    margin-bottom: 1.2rem;
}

/* Legacy list items (fallback / default suggestions) */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: var(--color-text);
    transition: color var(--transition-base);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    color: var(--search-accent);
}

.search-result-image {
    width: 42px;
    height: 52px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}

.search-result-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(245, 240, 235, 0.88);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-family: 'Jost', sans-serif !important;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--search-accent);
    letter-spacing: 0.04em;
}

/* ============================================
   Search Overlay — Empty State
   ============================================ */
.search-empty-message {
    font-family: var(--rflxns-font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--search-dim);
    margin-bottom: 1rem;
    text-align: center;
}
.search-empty-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    border: 0.5px solid rgba(245,245,240,0.3);
    border-radius: 100px;
    font-family: var(--rflxns-font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--search-fg);
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.search-empty-cta:hover,
.search-empty-cta:focus-visible {
    border-color: var(--search-accent);
    background: rgba(200, 169, 126, 0.08);
    outline: none;
}
#search-empty-state {
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* ============================================
   Hero Marquee Strip
   ============================================ */
.rflxns-hero-marquee {
    position: absolute;
    bottom: clamp(5.5rem, 12vh, 9rem);
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    /* subtle gradient fade on edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.rflxns-hero-marquee__track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    will-change: transform;
    animation: heroMarquee 28s linear infinite;
}

.rflxns-hero-marquee__track span {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.58rem, 1.1vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    padding: 0 2.4rem;
    flex-shrink: 0;
}

/* Dot separators between items */
.rflxns-hero-marquee__track span::after {
    content: '·';
    margin-left: 2.4rem;
    opacity: 0.5;
}

@keyframes heroMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Slow down slightly on hover (desktop) */
@media (hover: hover) {
    .rflxns-hero-marquee:hover .rflxns-hero-marquee__track {
        animation-play-state: paused;
    }
}

/* ============================================
   Section 1: Hero
   ============================================ */
.hero-scroll-container {
    position: relative;
    height: 100dvh;
    width: 100%;
    background-color: transparent;
    transition: background-color var(--transition-slow);
    overflow: hidden;
}

body.scrolled .hero-scroll-container {
    background-color: transparent;
}

.hero {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    border-radius: 0;
    overflow: hidden;
    transform: translateZ(0);
}

body.scrolled .hero {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}

@media screen and (min-width: 769px) {
    body.scrolled .hero {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
    }
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Removing darken effect on wrapper */
.hero-image-wrapper::after {
    display: none;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    /* Moved content down from 100px to 40px */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-story {
    --hero-story-progress: 0.08;
    position: absolute;
    left: clamp(2rem, 4vw, 4.5rem);
    bottom: clamp(2.6rem, 5vw, 5rem);
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    row-gap: 0.85rem;
    width: min(28rem, calc(100% - 4rem));
    padding: 1.15rem 1.2rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(6, 10, 12, 0.34) 0%, rgba(3, 4, 5, 0.54) 100%);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.hero-story__beam {
    position: absolute;
    right: -14%;
    bottom: -28%;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(228, 147, 62, 0.38) 0%, rgba(228, 147, 62, 0.12) 38%, transparent 72%);
    filter: blur(18px);
    opacity: 0.32;
    transform: scale(0.88);
    pointer-events: none;
}

.hero-story__eyebrow {
    grid-column: 1 / -1;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: var(--rflxns-font-accent);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.64);
}

.hero-story__timeline {
    position: relative;
    width: 1px;
    min-height: 9.25rem;
    background: rgba(255, 255, 255, 0.12);
    margin-top: 0.1rem;
}

.hero-story__timeline-fill {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(var(--hero-story-progress) * 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(233, 164, 88, 0.96) 100%);
    box-shadow: 0 0 18px rgba(233, 164, 88, 0.4);
}

.hero-story__steps {
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
    position: relative;
    z-index: 1;
}

.hero-story__step {
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    gap: 0.9rem;
    align-items: start;
    opacity: 0.32;
    transform: translateY(0.45rem);
    transition: opacity 0.32s ease, transform 0.32s ease, color 0.32s ease;
}

.hero-story__step.is-past {
    opacity: 0.58;
    transform: translateY(0);
}

.hero-story__step.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hero-story__step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--rflxns-font-accent);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    line-height: 1;
}

.hero-story__step.is-active .hero-story__step-index {
    border-color: rgba(233, 164, 88, 0.56);
    background: rgba(233, 164, 88, 0.14);
    color: #fff0df;
    box-shadow: 0 0 20px rgba(233, 164, 88, 0.18);
}

.hero-story__step-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-story__step-copy strong {
    font-family: var(--rflxns-font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: rgba(255, 255, 255, 0.9);
}

.hero-story__step-copy span {
    font-family: var(--rflxns-font-body);
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.54);
    max-width: 16rem;
}

@media screen and (max-width: 768px) {
    .hero-content {
        bottom: 80px;
    }

    .hero-story {
        left: 1rem;
        right: 1rem;
        bottom: 8.6rem;
        width: auto;
        padding: 0.95rem 1rem 0.92rem;
        row-gap: 0.7rem;
    }

    .hero-story__beam {
        width: 16rem;
        height: 16rem;
        right: -24%;
        bottom: -34%;
        opacity: 0.28;
    }

    .hero-story__timeline {
        min-height: 7.6rem;
    }

    .hero-story__step {
        grid-template-columns: 1.9rem 1fr;
        gap: 0.72rem;
    }

    .hero-story__step-copy strong {
        font-size: 0.78rem;
    }

    .hero-story__step-copy span {
        font-size: 0.68rem;
        line-height: 1.45;
        max-width: none;
    }
}

.hero-overline {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--color-accent);
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 0.9;
    color: var(--color-text);
    text-shadow: 0 0 80px rgba(200, 169, 126, 0.08);
}

.hero-subtitle {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--color-text-muted);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.65rem;
    /* Increased font size for readability */
    font-weight: 600;
    /* Increased font weight slightly for readability */
    letter-spacing: 0.3em;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    /* Added subtle shadow to contrast against image */
    transition: color var(--transition-base), text-shadow var(--transition-base);
    cursor: pointer;
}

.hero-cta svg {
    width: 16px;
    height: 16px;
    animation: floatDown 2s ease-in-out infinite;
}

.hero-cta:hover {
    color: var(--color-accent);
}

.hero-scroll-gesture {
    gap: 0.72rem;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.9);
}

.hero-scroll-label {
    font-family: var(--rflxns-font-display);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5), 0 10px 28px rgba(0, 0, 0, 0.48);
}

.hero-scroll-pulse {
    position: relative;
    display: block;
    overflow: hidden;
    width: 1px;
    height: 4.2rem;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-pulse::after {
    content: "";
    position: absolute;
    left: 0;
    top: -45%;
    width: 1px;
    height: 48%;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    animation: chapterScrollPulse 1.8s cubic-bezier(0.55, 0.08, 0.22, 0.99) infinite;
}

.hero-scroll-arrow {
    display: none;
}

.hero-scroll-gesture:hover,
.hero-scroll-gesture:focus-visible {
    color: #ffffff;
}

@keyframes chapterScrollPulse {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    100% {
        transform: translateY(9rem);
        opacity: 0;
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.hero-scroll-line {
    display: none;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 42px;
    }

    50% {
        opacity: 0.8;
        height: 80px;
    }
}

/* ============================================
   Chapter 01 Teaser
   ============================================ */
.chapter-teaser {
    position: relative;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 7.8rem 2rem 6.8rem;
    background:
        radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.11), transparent 18rem),
        radial-gradient(circle at 68% 60%, rgba(200, 169, 126, 0.08), transparent 24rem),
        linear-gradient(180deg, #000000 0%, #050505 42%, #020202 100%);
    isolation: isolate;
}

.chapter-teaser::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.45;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.chapter-teaser::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, transparent 24%, transparent 68%, rgba(0, 0, 0, 0.86) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 34%, rgba(0, 0, 0, 0.94) 100%);
}

.chapter-teaser__watermark {
    position: absolute;
    left: 50%;
    top: 49%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    color: rgba(255, 255, 255, 0.075);
    font-family: var(--rflxns-font-display);
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 900;
    letter-spacing: -0.085em;
    line-height: 0.78;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 64px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.chapter-teaser__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(19rem, 0.86fr) minmax(18rem, 0.46fr);
    align-items: end;
    gap: clamp(2.4rem, 7vw, 7rem);
    width: min(100%, 82rem);
    margin: 0 auto;
}

.chapter-teaser__media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(34rem, 58vw, 46rem);
}

.chapter-teaser__halo {
    position: absolute;
    left: 50%;
    top: 58%;
    width: min(42vw, 32rem);
    height: min(42vw, 32rem);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(200, 169, 126, 0.07) 38%, transparent 70%);
    filter: blur(24px);
    opacity: 0.64;
}

.chapter-teaser__lookbook {
    position: relative;
    z-index: 1;
    width: min(100%, 48rem);
    min-height: clamp(34rem, 58vw, 46rem);
}

.chapter-teaser__lookbook-card {
    position: absolute;
    bottom: 0;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.chapter-teaser__lookbook-card--front {
    left: 2%;
    z-index: 3;
    width: 52%;
}

.chapter-teaser__lookbook-card--back {
    right: 2%;
    z-index: 2;
    width: 52%;
}

.chapter-teaser__model {
    position: relative;
    display: block;
    width: 100%;
    max-height: 41rem;
    object-fit: contain;
    filter:
        grayscale(0.08)
        saturate(0.92)
        contrast(1.08)
        brightness(0.78)
        drop-shadow(0 30px 64px rgba(0, 0, 0, 0.54));
    opacity: 0.98;
    transform: none;
}

.chapter-teaser__model--front {
    max-height: 41rem;
    object-position: center bottom;
}

.chapter-teaser__model--back {
    max-height: 41rem;
    object-position: center bottom;
    filter:
        grayscale(0.08)
        saturate(0.92)
        contrast(1.08)
        brightness(0.72)
        drop-shadow(0 30px 64px rgba(0, 0, 0, 0.54));
}

.chapter-teaser__copy {
    position: relative;
    z-index: 2;
    max-width: 28rem;
    padding-bottom: clamp(2rem, 6vw, 5.5rem);
    color: #f5f0eb;
}

.chapter-teaser__copy::before {
    content: "";
    display: block;
    width: 4.8rem;
    height: 1px;
    margin-bottom: 1.4rem;
    background: rgba(245, 240, 235, 0.28);
}

.chapter-teaser__eyebrow {
    margin: 0 0 1rem;
    color: rgba(245, 240, 235, 0.62);
    font-family: var(--font-primary);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    line-height: 1;
    text-transform: uppercase;
}

.chapter-teaser__title {
    margin: 0;
    color: #f8f4ef;
    font-family: var(--rflxns-font-display);
    font-size: clamp(5.4rem, 9.2vw, 8.8rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.82;
    text-transform: uppercase;
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.32),
        0 28px 80px rgba(255, 255, 255, 0.08);
}

.chapter-teaser__meta {
    margin: 1.05rem 0 0;
    color: rgba(245, 240, 235, 0.86);
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    line-height: 1.4;
    text-transform: uppercase;
}

.chapter-teaser__body {
    margin: 1.6rem 0 0;
    max-width: 25rem;
    color: rgba(245, 240, 235, 0.6);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.9;
}

.chapter-teaser__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    margin-top: 2.2rem;
    padding: 0 1.25rem;
    border: 1px solid rgba(245, 240, 235, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 240, 235, 0.9);
    font-family: var(--rflxns-font-accent);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.chapter-teaser__cta:hover,
.chapter-teaser__cta:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(245, 240, 235, 0.86);
    background: rgba(245, 240, 235, 0.92);
    color: #050505;
}

@media screen and (max-width: 1100px) {
    .chapter-teaser__watermark {
        font-size: 12rem;
    }

    .chapter-teaser__shell {
        gap: 2.4rem;
    }

    .chapter-teaser__title {
        font-size: 5.8rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-scroll-label {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }

    .hero-scroll-pulse {
        height: 3.5rem;
    }

    .chapter-teaser {
        min-height: 96dvh;
        padding: 5.5rem 1.1rem 4.25rem;
    }

    .chapter-teaser__watermark {
        top: 36%;
        font-size: clamp(5.2rem, 18vw, 7.4rem);
        color: rgba(255, 255, 255, 0.095);
    }

    .chapter-teaser__shell {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        text-align: center;
    }

    .chapter-teaser__media {
        min-height: 25rem;
        order: 1;
    }

    .chapter-teaser__lookbook {
        width: min(100%, 31rem);
        min-height: 25rem;
    }

    .chapter-teaser__lookbook-card--front {
        left: -1%;
        width: 56%;
    }

    .chapter-teaser__lookbook-card--back {
        right: -1%;
        width: 56%;
    }

    .chapter-teaser__model--front {
        max-height: 25rem;
    }

    .chapter-teaser__model--back {
        max-height: 25rem;
    }

    .chapter-teaser__halo {
        width: 18rem;
        height: 18rem;
    }

    .chapter-teaser__copy {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .chapter-teaser__copy::before {
        margin-inline: auto;
    }

    .chapter-teaser__title {
        font-size: clamp(4rem, 17vw, 5.1rem);
        letter-spacing: -0.07em;
    }

    .chapter-teaser__body {
        max-width: 21rem;
        margin-inline: auto;
        font-size: 0.92rem;
    }
}

/* ============================================
   Section 1.5: Split Categories
   ============================================ */
.split-categories {
    display: flex;
    width: 100%;
    height: 100dvh;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.split-pane {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pane-left {
    background-image: var(--bg-men);
    background-color: #0a0a0a;
}

.pane-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.pane-right {
    background-image: var(--bg-women);
    background-color: #dbe4ea;
}

.pane-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.pane-right h2 {
    color: #fff;
}

.pane-right .shop-link {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.pane-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Spacing between title and SHOP */
    z-index: 2;
}

.split-pane h2 {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: var(--rflxns-font-accent);
    margin: 0;
}

.pane-left h2 {
    color: #fff;
}



.shop-link {
    font-size: 11px;
    /* Very small text based on ALMOST GODS screenshot */
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.pane-left .shop-link {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}



.shop-link:hover {
    opacity: 0.6;
}

@media (max-width: 900px) {
    .split-categories {
        flex-direction: column;
    }
    .split-pane {
        min-height: 50vh;
        width: 100%;
    }
}

/* ============================================
   Section 2: Product Collection
   ============================================ */
.catalog-lookbook {
    position: relative;
    padding: clamp(5rem, 8vw, 8rem) 1.75rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 28%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.96) 0%, rgba(10, 10, 10, 0.98) 100%);
    overflow: hidden;
}

.catalog-lookbook::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.05), transparent 22%);
    pointer-events: none;
}

.catalog-lookbook__shell {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
}

.catalog-lookbook__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.catalog-lookbook__heading-group {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.catalog-lookbook__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--rflxns-font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(244, 239, 231, 0.65);
}

.catalog-lookbook__title {
    margin: 0;
    font-family: var(--rflxns-font-display);
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: #f5efe6;
}

.catalog-lookbook__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.2rem;
    padding: 0 1.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.04);
    font-family: var(--rflxns-font-body);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f5efe6;
    text-decoration: none;
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease;
}

.catalog-lookbook__view-all:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
}

.catalog-lookbook__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 2vw, 2.2rem);
}

.catalog-lookbook__card {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    color: inherit;
    text-decoration: none;
}

.catalog-lookbook__stage-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.catalog-lookbook__stage {
    position: relative;
    aspect-ratio: 0.78;
    overflow: hidden;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(242, 238, 230, 0.92) 60%, rgba(228, 221, 209, 0.96) 100%);
    box-shadow:
        0 2rem 4rem rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-lookbook__panel {
    position: absolute;
    inset: 0;
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.45s ease;
}

.catalog-lookbook__panel img,
.catalog-lookbook__panel .placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: clamp(1.75rem, 3vw, 2.6rem);
}

.catalog-lookbook__panel--front {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.catalog-lookbook__panel--back {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    z-index: 1;
}

.catalog-lookbook__panel--single {
    display: none;
}

.catalog-lookbook__cta {
    position: absolute;
    left: 1.4rem;
    bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0 1.3rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.88);
    color: #f4efe7;
    font-family: var(--rflxns-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background-color 0.35s ease;
    z-index: 3;
}

.catalog-lookbook__card:hover .catalog-lookbook__stage,
.catalog-lookbook__card:focus-visible .catalog-lookbook__stage {
    transform: translateY(-8px);
    box-shadow:
        0 2.6rem 5rem rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.catalog-lookbook__card--has-back-face:hover .catalog-lookbook__panel--front,
.catalog-lookbook__card--has-back-face:focus-visible .catalog-lookbook__panel--front {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
}

.catalog-lookbook__card--has-back-face:hover .catalog-lookbook__panel--back,
.catalog-lookbook__card--has-back-face:focus-visible .catalog-lookbook__panel--back {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.catalog-lookbook__card:hover .catalog-lookbook__cta,
.catalog-lookbook__card:focus-visible .catalog-lookbook__cta {
    opacity: 1;
    transform: translateY(0);
}

.catalog-lookbook__meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.catalog-lookbook__eyebrow {
    margin: 0;
    font-family: var(--rflxns-font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(244, 239, 231, 0.62);
}

.catalog-lookbook__meta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-lookbook__product-title {
    margin: 0;
    font-family: var(--rflxns-font-display);
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 0.01em;
    color: #f5efe6;
}

.catalog-lookbook__product-title a {
    color: inherit;
    text-decoration: none;
}

.catalog-lookbook__price-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 0.8rem;
}

.catalog-lookbook__price {
    font-family: var(--rflxns-font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f5efe6;
}

.catalog-lookbook__price--compare {
    color: rgba(244, 239, 231, 0.45);
    text-decoration: line-through;
}

.catalog-lookbook__actions {
    width: 100%;
}

.catalog-lookbook__product-form,
.catalog-lookbook__form {
    width: 100%;
}

.catalog-lookbook__action-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.catalog-lookbook__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    width: 100%;
    padding: 0 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--rflxns-font-body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: none;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.catalog-lookbook__action::before,
.catalog-lookbook__action::after {
    border-radius: inherit;
    box-shadow: none;
}

.catalog-lookbook__action .loading__spinner {
    margin-left: 0.45rem;
}

.catalog-lookbook__action--primary {
    background: #f5efe6;
    color: #0f0d0a;
}

.catalog-lookbook__action--primary:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.catalog-lookbook__action--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
    color: #f5efe6;
}

.catalog-lookbook__action--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.catalog-lookbook__action--disabled {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(245, 239, 230, 0.45);
    cursor: not-allowed;
}

.catalog-lookbook__empty-state {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    max-width: 36rem;
    padding: 2.6rem 0 0;
}

.catalog-lookbook__empty-copy {
    margin: 0;
    font-family: var(--rflxns-font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(244, 239, 231, 0.72);
}

/* ============================================
   Section 4: Press Marquee
   ============================================ */
.press {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    z-index: 40;
}

.press-marquee {
    position: relative;
}

.press-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
}

.press-quote {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .press-quote {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
}

.press-quote em {
    color: var(--color-text);
    font-style: normal;
    font-weight: 500;
}

.press-divider {
    color: var(--color-accent);
    font-size: 0.6rem;
    flex-shrink: 0;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   Section 5: Founder Story (Full-screen Overlay)
   ============================================ */
.story {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

@media screen and (max-width: 768px) {
    .story {
        padding: 1.5rem;
    }
}

.story.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.story-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--color-text);
    cursor: pointer;
    z-index: 4001;
    padding: 10px;
    background: transparent;
    transition: transform 0.3s ease;
}

.story-close:hover {
    transform: rotate(90deg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.story-image-col {
    position: relative;
    overflow: hidden;
}

.story-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: saturate(0) brightness(0.8) contrast(1.1);
    transition: filter var(--transition-slow);
}

.story-image-col:hover .story-image {
    filter: saturate(0.2) brightness(0.9) contrast(1.05);
}

.story-text-col {
    padding-left: var(--space-lg);
}

.story-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.1;
    margin: var(--space-md) 0;
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-body p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.story-body em {
    color: var(--color-text);
    font-style: italic;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: var(--space-lg);
}

.signature-line {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.signature-name {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg);
    z-index: 70;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--color-accent);
}

.footer-copy {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    opacity: 0.5;
}

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

    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .story-text-col {
        padding-left: 0;
    }

    .story-image {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.25rem 1.5rem;
    }

    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }



    .collection {
        padding: var(--space-xl) var(--space-md);
    }

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

    .product-overlay {
        opacity: 1;
    }

    .story {
        padding: var(--space-xl) var(--space-md);
    }

    .footer-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 0.08em;
    }

    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.6rem;
    }

}

/* ============================================
   Intro Loading Animation
   ============================================ */
/* Base overlay properties now applied inline in theme.liquid for guaranteed visibility */

body.intro-active {
    overflow: hidden;
}

body.intro-active #intro-overlay {
    opacity: 1 !important;
    z-index: 2147483646 !important;
    /* Drop below nav once JS is ready */
    pointer-events: auto !important;
}

body.intro-animating #intro-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
}

body.intro-active .nav,
body.intro-animating .nav {
    z-index: 2147483647 !important;
}

body.intro-active .nav-left,
body.intro-active .nav-right {
    opacity: 0;
}

body.intro-animating .nav-left,
body.intro-animating .nav-right {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.intro-active .nav-logo {
    /* Manual JS transforms will handle scale/position here */
    transition: none;
}

body.intro-animating .nav-logo {
    /* Smooth cinematic shrinking & traveling */
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1) !important;
}

/* ============================================
   Mobile Navigation Menu
   ============================================ */
.mobile-only {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #000000;
    background-image: radial-gradient(ellipse at 50% 50%, rgba(180, 130, 50, 0.25) 0%, rgba(107, 0, 0, 0.1) 35%, transparent 65%);
    color: #f5f5f0;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Header — just close button top-right */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem 1.5rem 0;
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: rgba(245, 245, 240, 0.5);
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.mobile-menu-close-btn:hover {
    color: #f5f5f0;
}

/* Navigation — large uppercase links */
.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.8rem;
}

.mobile-menu-primary {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link--fog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(245, 245, 240, 0.06);
    text-decoration: none;
    color: #f5f5f0;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.mobile-menu-link--fog:first-child {
    border-top: 1px solid rgba(245, 245, 240, 0.06);
}

.mobile-menu-link--fog:hover {
    color: rgba(245, 245, 240, 0.5);
}

.mobile-menu-link--fog svg {
    opacity: 0.3;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu-link--fog:hover svg {
    opacity: 0.7;
    transform: translateX(3px);
}

/* Bottom secondary links */
.mobile-menu-bottom {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link--secondary {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: rgba(245, 245, 240, 0.35);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.mobile-menu-link--secondary:hover {
    color: rgba(245, 245, 240, 0.7);
}

/* ============================================
   Hamburger Button (User Provided)
   ============================================ */
#check {
  display: none !important;
}

.hamburger-button {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(236, 232, 223, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -1px 8px rgba(79, 66, 48, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-button div {
  width: 18px;
  height: 1.6px;
  background-color: #0f0f0f;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  margin-left: -9px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              margin-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger-button .line1 {
  top: 18px;
}

.hamburger-button .line2 {
  top: 25px;
}

.hamburger-button .line3 {
  top: 32px;
}

.hamburger-button:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.48),
      inset 0 -1px 8px rgba(79, 66, 48, 0.08);
}

.hamburger-button:hover div {
  width: 14px;
}

.hamburger-button:hover .line1 {
  transform: translate(6px, 5px) rotate(35deg);
  border-radius: 3px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.hamburger-button:hover .line3 {
  transform: translate(6px, -5px) rotate(-35deg);
  border-radius: 3px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Checked form - forms the opposite arrow or X based on user's code */
#check:checked ~ .hamburger-button .line1,
#check:checked ~ .hamburger-button:hover .line1 {
  transform: translate(0, 5px) rotate(-35deg);
  border-radius: 3px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

#check:checked ~ .hamburger-button .line3,
#check:checked ~ .hamburger-button:hover .line3 {
  transform: translate(0, -5px) rotate(35deg);
  border-radius: 3px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

#check:checked ~ .hamburger-button .line2,
#check:checked ~ .hamburger-button:hover .line2 {
  margin-left: 3px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0);
    /* Force black logo on white bg */
}

.mobile-menu-header-spacer {
    width: 36px;
    /* Balance the X button width */
}

/* Primary Nav Links */
.mobile-menu-primary {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 2.5rem 1.75rem 2rem;
    align-items: flex-start;
}

.mobile-menu-link--primary {
    font-family: 'Jost', var(--font-primary), sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s;
}

.mobile-menu-link--primary:hover {
    color: #888;
}

/* Category Links with + icons */
.mobile-menu-categories {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.75rem;
    border-top: 1px solid #eee;
}

.mobile-menu-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #333;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

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

.mobile-menu-category:hover {
    color: #000;
}

.mobile-menu-plus {
    font-size: 1.2rem;
    font-weight: 300;
    color: #999;
}

/* Footer Links */
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 2rem 1.75rem;
    margin-top: auto;
    /* Push to bottom */
    align-items: flex-start;
}

.mobile-menu-footer-link {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.2s;
}

.mobile-menu-footer-link:hover {
    color: #888;
}

/* Close Bar at bottom */
.mobile-menu-close-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 0.5rem;
    cursor: pointer;
}

.mobile-close-line {
    width: 48px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

.mobile-close-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #000;
    text-transform: none;
}

.home-mobile-dock {
    --dock-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: fixed;
    left: 50%;
    bottom: calc(1.4rem + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100vw - 2rem);
    padding: 0.32rem 0.46rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055)),
        rgba(8, 8, 8, 0.34);
    backdrop-filter: blur(22px) saturate(150%) contrast(128%);
    -webkit-backdrop-filter: blur(22px) saturate(150%) contrast(128%);
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    opacity: 1;
    transition:
        opacity 0.4s var(--dock-ease),
        transform 0.4s var(--dock-ease),
        visibility 0.4s var(--dock-ease),
        padding 0.35s var(--dock-ease),
        gap 0.35s var(--dock-ease),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    z-index: 1200;
}

/* Dock alive — expands on hover (desktop only) */
@media (hover: hover) {
    .home-mobile-dock:hover {
        padding: 0.38rem 0.72rem;
        gap: 0.5rem;
        border-color: rgba(255, 255, 255, 0.28);
        box-shadow:
            0 24px 64px rgba(0, 0, 0, 0.42),
            inset 0 1px 0 rgba(255, 255, 255, 0.32),
            0 0 0 1px rgba(255, 255, 255, 0.06);
        transform: translateX(-50%) scale(1.03);
    }
}

.home-mobile-dock__indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    z-index: 0;
    pointer-events: none;
    transition: transform 150ms ease-out, width 150ms ease-out;
}

.home-mobile-dock.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(1.55rem) scale(0.98);
    pointer-events: none;
}

.home-mobile-dock__item {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 0 0 auto;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    width: 6rem;
    min-height: 3.8rem;
    padding: 0.48rem 0.7rem 0.42rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition:
        background 0.18s var(--dock-ease),
        color 0.18s var(--dock-ease),
        transform 0.25s var(--dock-ease),
        box-shadow 0.25s ease;
    cursor: pointer;
}

.home-mobile-dock__item:active {
    transform: scale(0.96);
}

@media (hover: hover) {
    .home-mobile-dock__item:hover,
    .home-mobile-dock__item:focus-visible {
        color: rgba(255, 255, 255, 0.96);
        transform: translateY(-4px) scale(1.05);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .home-mobile-dock__item:hover svg {
        transform: scale(1.12);
    }
}

.home-mobile-dock__item svg {
    width: 1.38rem;
    height: 1.38rem;
    flex-shrink: 0;
    transition: transform 0.25s var(--dock-ease);
}

.home-mobile-dock__item span {
    font-family: var(--rflxns-font-accent);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-mobile-dock__item--active,
.home-mobile-dock__item.is-active {
    background: rgba(255, 255, 255, 0.88);
    color: #050505;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

@media (min-width: 901px) {
    .home-mobile-dock {
        display: flex;
        bottom: clamp(1.4rem, 2.4vw, 2.35rem);
    }
}

@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-icon--mobile-hidden {
        display: none !important;
    }

    .logo-image {
        height: var(--rflxns-header-logo-height-mobile);
    }

    .nav,
    .nav.scrolled {
        padding: calc(0.66rem + env(safe-area-inset-top)) 0.8rem 0.6rem !important;
    }

    .mobile-menu {
        padding: 1.5rem 1.5rem;
    }

    .nav-right {
        gap: 0.95rem;
    }

    .nav-left {
        display: none !important;
    }

    .nav-brand-pill {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        justify-content: flex-start;
        gap: 0.62rem;
        margin-right: auto;
        padding: 0.32rem 0.92rem 0.32rem 0.32rem;
        background: rgba(255, 255, 255, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow:
            0 4px 16px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        mix-blend-mode: normal;
        isolation: isolate;
    }

    .hamburger-button {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.28rem 0.7rem 0.28rem 0.45rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 0.5px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        cursor: pointer;
        transition: background 0.25s ease, border-color 0.25s ease;
    }

    .hamburger-button:active {
        background: rgba(255, 255, 255, 0.22);
    }

    .hamburger-lines {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }

    .hamburger-lines span {
        display: block;
        width: 14px;
        height: 1.5px;
        background: #ffffff;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    #check:checked ~ .hamburger-button .hamburger-lines span:first-child {
        transform: translateY(2.75px) rotate(45deg);
    }

    #check:checked ~ .hamburger-button .hamburger-lines span:last-child {
        transform: translateY(-2.75px) rotate(-45deg);
    }

    .hamburger-label {
        font-family: var(--rflxns-font-accent);
        font-size: 0.5rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        color: #ffffff;
        text-transform: uppercase;
        line-height: 1;
    }

    #check:checked ~ .hamburger-button .hamburger-label {
        opacity: 0;
        width: 0;
        overflow: hidden;
    }

    .nav.scrolled .hamburger-button {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .hamburger-button .line1,
    .hamburger-button .line2,
    .hamburger-button .line3 {
        display: none;
    }

    .nav-logo {
        justify-content: flex-start;
    }

    #cart-icon-bubble {
        margin-left: 0;
    }

    .home-mobile-dock {
        display: flex;
    }
}

/* ============================================
  Catalog Pseudo-Card Backdrops
  ============================================ */
.catalog-pseudo-img {
    width: 100%;
    height: 100%;
    position: relative;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.catalog-pseudo-img--jacket {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(60, 45, 30, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(20, 20, 35, 0.7) 0%, transparent 55%),
        linear-gradient(160deg, #1c1612 0%, #0d0d0d 50%, #111319 100%);
}

.catalog-pseudo-img--hoodie {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(30, 28, 50, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 85%, rgba(15, 25, 20, 0.65) 0%, transparent 55%),
        linear-gradient(145deg, #111119 0%, #0a0a0a 45%, #131916 100%);
}

.catalog-pseudo-tag {
    display: inline-block;
    font-family: var(--rflxns-font-accent);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 0.3rem 0.65rem;
    opacity: 0.85;
}

/* ============================================
   Interactive Card Gallery
   ============================================ */
.card-gallery {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
}

/* Gallery context header */
.gallery-context-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.gallery-context-label {
    font-family: var(--rflxns-font-accent);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    color: var(--color-accent);
    text-transform: uppercase;
}

.gallery-context-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.05;
    color: var(--color-text);
    text-transform: uppercase;
}

/* Gallery CTA below stage */
.gallery-context-cta-row {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-context-cta {
    font-family: var(--rflxns-font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color var(--transition-base), gap var(--transition-base);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(245,240,235,0.12);
}

.gallery-context-cta:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    gap: 1.1rem;
}

.gallery-context-cta svg {
    transition: transform var(--transition-base);
}

.gallery-context-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .gallery-context-header {
        margin-bottom: 2rem;
    }
    .gallery-context-cta-row {
        margin-top: 2rem;
    }
}

.card-gallery-stage {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.gallery-card {
    position: absolute;
    width: 260px;
    height: 347px;
    /* 3:4 ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.85) rotate(0deg) translate(0px, 0px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s ease;
    will-change: transform, opacity;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gallery-card--center {
    width: 300px;
    height: 400px;
    z-index: 5;
}

/* Fan-out states */
.card-gallery.is-visible .gallery-card {
    opacity: 1;
}

.card-gallery.is-visible .gallery-card[data-card="0"] {
    z-index: 1;
    transition-delay: 0.4s;
}

.card-gallery.is-visible .gallery-card[data-card="1"] {
    z-index: 3;
    transition-delay: 0.2s;
}

.card-gallery.is-visible .gallery-card[data-card="2"] {
    z-index: 5;
    transition-delay: 0s;
}

.card-gallery.is-visible .gallery-card[data-card="3"] {
    z-index: 3;
    transition-delay: 0.2s;
}

.card-gallery.is-visible .gallery-card[data-card="4"] {
    z-index: 1;
    transition-delay: 0.4s;
}

.gallery-card:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .card-gallery {
        min-height: 500px;
        height: 80vh;
    }

    .card-gallery-stage {
        height: 380px;
        max-width: 100vw;
    }

    .gallery-card {
        width: 140px;
        height: 187px;
        border-radius: 8px;
    }

    .gallery-card--center {
        width: 170px;
        height: 227px;
    }
}

/* ============================================
   GSAP Initial States
   ============================================ */
html.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

@media screen and (max-width: 768px) {
    .reveal, .pane-left, .pane-right, .mock-card, .story-overlay, .panel {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        visibility: visible !important;
        will-change: auto !important;
    }
    
    .hero-image-wrapper {
        min-height: 100vh;
    }
}

/* ============================================
   Mock Products Grid (Inspirational)
   ============================================ */
.mock-products {
    padding: var(--space-2xl) var(--space-lg);
    background: #0a0a0a;
    position: relative;
    z-index: 20;
}

.mock-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.mock-card {
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.03);
    will-change: transform, box-shadow;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.5s ease;
}

.mock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Inspiration Gradients */
.mock-card-1 {
    background: radial-gradient(circle at top left, #1a2a1f 0%, #0d0d0d 100%);
}

.mock-card-2 {
    background: radial-gradient(circle at right, #1a1a24 0%, #0a0a0a 100%);
}

.mock-card-3 {
    background: radial-gradient(circle at bottom, #111a22 0%, #090b10 100%);
}

/* Glowing Orb */
.mock-glow-orb {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e88d30;
    filter: blur(18px);
    opacity: 0.6;
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
    z-index: 1;
}

.mock-card:hover .mock-glow-orb {
    opacity: 1;
    transform: scale(1.4);
    filter: blur(25px);
}

/* Typography elements */
.mock-text-wrapper {
    position: relative;
    z-index: 2;
}

.mock-title {
    font-family: var(--rflxns-font-accent);
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 0.05em;
}

.mock-price {
    font-family: var(--rflxns-font-accent);
    font-size: 0.95rem;
    color: #b86e27;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .mock-products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mock-card {
        aspect-ratio: 1 / 1;
    }
}

/* ============================================
   Interactive Cinematic Footer
   ============================================ */

.footer-interactive {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    background-color: #000;
    overflow: hidden;
    z-index: 50;
    display: flex;
    align-items: center;
}

.footer-interactive-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: filter 0.8s ease;
}

.footer-interactive-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Script Logo Style */
.footer-brand-script-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-brand-script {
    font-family: var(--rflxns-font-display);
    font-size: clamp(8rem, 20vw, 18rem);
    line-height: 1;
    color: #8b0000;
    /* Dark Crimson */
    margin: 0;
    cursor: pointer;
    transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s ease;
    will-change: color, text-shadow, transform;
    /* Subtle initial shadow to separate from background */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    padding-bottom: 2rem;
}

/* Hover: The Electric Glow */
.footer-brand-script:hover {
    color: #ffffff;
    transform: scale(1.02);
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ffb3c6,
        0 0 40px #ff0055,
        0 0 80px #ff0055,
        0 0 90px #ff0055,
        0 0 100px #ff0055,
        0 0 150px #ff0055;
}

/* Hover Effect: Lower opacity of background behind it slightly */
.footer-interactive:has(.footer-brand-script:hover) .footer-interactive-bg {
    filter: brightness(0.6) saturate(1.2);
}

/* Secondary Digital Text */
.footer-secondary-text {
    display: flex;
    gap: 3vw;
    padding-right: 2vw;
    margin-top: 5rem;
}

.glitch-target {
    font-family: var(--rflxns-font-accent);
    font-size: 0.9rem;
    color: #d1d5db;
    /* Pale grey */
    letter-spacing: 0.15em;
    font-weight: 500;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: opacity 0.1s;
}

@media (max-width: 900px) {
    .footer-interactive-content {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
    }

    .footer-secondary-text {
        margin-top: 0;
        padding-right: 0;
        gap: 4vw;
    }
}

/* ============================================
   Reference Visual Section
   ============================================ */
.reference-visual {
    padding: 0;
    margin: 0;
    background: #000;
}

.reference-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.full-width-reference {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-static {
    width: 100%;
    margin: 0;
    padding: 0 0 24px;
    background: #000;
    line-height: 1.4;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    z-index: 70;
    overflow: hidden;
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-static::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.05), transparent 28%);
    pointer-events: none;
}

/* --- FINAL MOBILE & LANDSCAPE OPTIMIZATIONS --- */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: clamp(3.5rem, 12vw, 8rem);
    }
    
    .nav-left, .nav-right {
        gap: 1rem;
    }
    
    .catalog-lookbook {
        padding: 4.5rem 1.25rem;
    }

    .catalog-lookbook__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
    }

    .catalog-lookbook__view-all {
        min-height: 3.7rem;
        padding: 0 1.45rem;
    }

    .catalog-lookbook__grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .catalog-lookbook__cta {
        opacity: 1;
        transform: translateY(0);
    }

    .catalog-lookbook__meta-row {
        flex-direction: column;
    }

    .catalog-lookbook__price-group {
        justify-content: flex-start;
    }

    .catalog-lookbook__action-group {
        grid-template-columns: 1fr;
    }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100svh;
        padding-top: 60px;
    }
    
    .hero-content {
        bottom: 20px;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        display: none; /* Hide subtitle in landscape to save vertical space */
    }
    
    .nav {
        padding: 0.8rem 1.5rem;
    }
}

.reflections-footer {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1960px);
    margin: auto auto 0;
}

.reflections-footer__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.6rem, 3.2vw, 3.2rem);
    border-radius: 34px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #f7f6f2 0%, #efede6 100%);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.reflections-footer__panel::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 33px;
    border: 1px solid rgba(17, 17, 17, 0.05);
    pointer-events: none;
}

.reflections-footer__text {
    margin: 0;
    font-family: var(--rflxns-font-body);
    font-size: 0.94rem;
    line-height: 1.48;
    color: rgba(17, 17, 17, 0.68);
}

.reflections-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(320px, 1.35fr);
    gap: clamp(1.2rem, 2.4vw, 2.4rem);
    align-items: stretch;
}

.reflections-footer__column {
    display: flex;
    flex-direction: column;
    gap: 0.68rem;
}

.reflections-footer__heading {
    margin: 0;
    font-family: var(--rflxns-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
}

.reflections-footer__link {
    font-family: var(--rflxns-font-body);
    font-size: 0.96rem;
    line-height: 1.3;
    color: #111;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.reflections-footer__link:hover {
    color: rgba(17, 17, 17, 0.6);
    transform: translateX(2px);
}

.reflections-footer__feature {
    min-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(0.8rem, 2vw, 1.8rem);
    padding-left: clamp(0rem, 1vw, 1rem);
}

.reflections-footer__feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    max-width: 340px;
}

.reflections-footer__feature-logo {
    width: min(100%, 280px);
    height: auto;
    object-fit: contain;
    opacity: 0.72;
    filter: brightness(0);
}

.reflections-footer__feature-text {
    margin: 0;
    font-family: var(--rflxns-font-body);
    font-size: 0.94rem;
    line-height: 1.48;
    color: rgba(17, 17, 17, 0.58);
}

.reflections-footer__feature-visual {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex: 1;
}

.reflections-footer__feature-art {
    width: clamp(96px, 9vw, 145px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(17, 17, 17, 0.14));
    transform: translateY(12px);
}

.reflections-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: clamp(1.35rem, 2.4vw, 1.9rem);
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.reflections-footer__bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.76rem;
    margin-right: auto;
}

.reflections-footer__tooltip-dock {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
}

.reflections-footer ul {
    list-style: none;
}

.reflections-footer .example-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(233, 228, 216, 0.96) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    padding: 8px 12px;
    min-height: 58px;
    width: 300px;
    margin: 0;
    box-shadow:
        0 16px 30px rgba(17, 17, 17, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.reflections-footer .example-1 .icon-content {
    margin: 0 6px;
    position: relative;
    font-weight: 700;
}

.reflections-footer .example-1 .icon-content .tooltip {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(17, 17, 17, 0.95);
    color: #f7f5ef;
    padding: 7px 11px;
    border-radius: 999px;
    opacity: 0;
    visibility: hidden;
    font-family: var(--rflxns-font-body);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    transition: all 0.28s ease;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.15);
}

.reflections-footer .example-1 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -42px;
}

.reflections-footer .example-1 .icon-content .link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #f7f5ef;
    background:
        linear-gradient(180deg, rgba(24, 24, 24, 0.96) 0%, rgba(9, 9, 9, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, background-color 0.28s ease;
    font-weight: 700;
    box-shadow:
        0 10px 18px rgba(17, 17, 17, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.reflections-footer .example-1 .icon-content .link:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 28px rgba(17, 17, 17, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.reflections-footer .example-1 .icon-content .link svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.reflections-footer .example-1 .icon-content .link[data-social="spotify"]:hover {
    color: #7db7ff;
}

.reflections-footer .example-1 .icon-content .link[data-social="pinterest"]:hover {
    color: #ff73ba;
}

.reflections-footer .example-1 .icon-content .link[data-social="dribbble"]:hover {
    color: #d3c1a6;
}

.reflections-footer .example-1 .icon-content .link[data-social="telegram"]:hover {
    color: #8ecb74;
}

.reflections-footer__meta {
    margin: 0;
    font-family: var(--rflxns-font-body);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(17, 17, 17, 0.62);
}

.reflections-footer__audio-dock {
    transform: scale(0.7225);
    transform-origin: left center;
}

.reflections-footer__audio-dock input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.reflections-footer__audio-dock .toggleSwitch {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 40px;
    background-color: rgb(199, 199, 199);
    border-radius: 20px;
    cursor: pointer;
    transition-duration: .3s;
    box-shadow: 0 12px 20px rgba(17, 17, 17, 0.1);
}

.reflections-footer__audio-dock .toggleSwitch::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    left: 0;
    background: conic-gradient(rgb(104, 104, 104), white, rgb(104, 104, 104), white, rgb(104, 104, 104));
    border-radius: 50%;
    transition-duration: .3s;
    box-shadow: 5px 2px 7px rgba(8, 8, 8, 0.308);
}

.reflections-footer__audio-dock input:checked + .toggleSwitch::after {
    transform: translateX(100%);
    transition-duration: .3s;
}

.reflections-footer__audio-dock input:checked + .toggleSwitch {
    background-color: rgb(153, 197, 151);
    transition-duration: .3s;
}

.footer-back-to-top {
    display: none !important;
}

@media screen and (max-width: 1180px) {
    .reflections-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reflections-footer__feature {
        grid-column: 1 / -1;
        padding-left: 0;
        border-top: 1px solid rgba(17, 17, 17, 0.08);
        padding-top: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-static {
        min-height: auto;
        padding-top: 38px;
    }

    .reflections-footer {
        width: calc(100% - 12px);
    }

    .reflections-footer__panel {
        padding: 1.4rem 1.1rem 1.1rem;
        border-radius: 20px;
    }

    .reflections-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 2rem;
        padding-bottom: 1rem;
    }

    .reflections-footer__column:first-child {
        display: none;
    }

    .reflections-footer__heading {
        font-size: 0.55rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(17, 17, 17, 0.35);
        margin-bottom: 0.7rem;
        padding-bottom: 0.4rem;
        border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    }

    .reflections-footer__link {
        font-size: 0.74rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        padding: 0.32rem 0;
        color: rgba(17, 17, 17, 0.75);
    }

    .reflections-footer__text {
        display: none;
    }

    .reflections-footer__feature {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0 0.5rem;
        margin-top: 0.2rem;
        border-top: 1px solid rgba(17, 17, 17, 0.06);
    }

    .reflections-footer__feature-copy {
        max-width: none;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .reflections-footer__feature-logo {
        width: 80px !important;
        max-width: 80px;
        opacity: 0.8;
        flex-shrink: 0;
    }

    .reflections-footer__feature-text {
        font-size: 0.74rem;
        font-weight: 400;
        letter-spacing: 0.01em;
        line-height: 1.4;
        color: rgba(17, 17, 17, 0.5);
        margin: 0;
        text-align: left;
    }

    .reflections-footer__feature-visual {
        display: none;
    }

    .reflections-footer__feature-art {
        display: none;
    }

    .reflections-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
        padding-top: 0.9rem;
        margin-top: 0.6rem;
        border-top: 1px solid rgba(17, 17, 17, 0.06);
    }

    .reflections-footer__bottom-left {
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .reflections-footer__audio-dock {
        transform: scale(0.5);
        transform-origin: right center;
        margin-left: auto;
        opacity: 0.35;
        transition: opacity 0.3s ease;
    }

    .reflections-footer__audio-dock:hover,
    .reflections-footer__audio-dock:has(input:checked) {
        opacity: 0.8;
    }

    .reflections-footer__tooltip-dock {
        width: auto;
        justify-content: center;
    }

    .reflections-footer .example-1 {
        width: auto;
        max-width: none;
        gap: 0;
    }

    .reflections-footer .example-1 .icon-content {
        margin: 0 4px;
    }

    .reflections-footer .example-1 .icon-content .link {
        width: 30px;
        height: 30px;
        background: rgba(17, 17, 17, 0.06);
        border: 0;
    }

    .reflections-footer .example-1 .icon-content .link svg {
        width: 13px;
        height: 13px;
        color: rgba(17, 17, 17, 0.5);
    }

    .reflections-footer .example-1 .icon-content .tooltip {
        display: none;
    }

    .reflections-footer__meta {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
        color: rgba(17, 17, 17, 0.3);
        text-transform: uppercase;
    }
}

/* ============================================
   Brand Pages Styling (About, Contact, FAQ, etc.)
   ============================================ */
.page-container {
    padding-top: 180px; /* Accounts for fixed nav */
    padding-bottom: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    min-height: 80vh;
}

.page-header {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.page-title {
    font-family: var(--rflxns-font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

/* Accordion (FAQ) */
.accordion {
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-md);
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-header {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.accordion-header:hover {
    color: var(--color-accent);
}

.accordion-icon {
    transition: transform 0.4s ease;
    width: 20px;
}

.accordion-item.is-active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.is-active .accordion-content {
    max-height: 500px;
}

.accordion-inner {
    padding-bottom: 2rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Size Guide Table */
.size-table-wrapper {
    overflow-x: auto;
    margin: var(--space-md) 0;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--rflxns-font-accent);
}

.size-table th, 
.size-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.size-table th {
    color: var(--color-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.size-table td {
    color: var(--color-text);
    font-size: 0.9rem;
}

/* Contact Form Overrides */
.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.field-group {
    margin-bottom: 2rem;
}

.field-label {
    display: block;
    font-family: var(--rflxns-font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.field-input {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid var(--color-border);
    padding: 1rem;
    color: #fff;
    transition: border-color 0.4s ease;
}

.field-input:focus {
    border-color: var(--color-accent);
    outline: none;
}

@media (max-width: 900px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
    }
    
    .page-container {
        padding-top: 120px;
    }
}

/* RFLXNS — cart success micro-interaction — added 2026-04-30 */
.rflxns-cart-signal {
    position: fixed;
    right: clamp(1rem, 2vw, 2rem);
    bottom: clamp(1rem, 2vw, 2rem);
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    max-width: min(34rem, calc(100vw - 2rem));
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 42%),
        rgba(8, 8, 8, 0.86);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #f7f4ef;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transition:
        opacity 0.26s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.rflxns-cart-signal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.rflxns-cart-signal__mark {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: #f7f4ef;
    box-shadow: 0 0 0 0 rgba(247, 244, 239, 0.42);
    animation: rflxnsCartSignalPulse 1.4s ease-out infinite;
}

.rflxns-cart-signal__copy {
    display: grid;
    gap: 0.15rem;
}

.rflxns-cart-signal strong,
.rflxns-cart-signal small {
    font-family: var(--rflxns-font-accent);
    text-transform: uppercase;
}

.rflxns-cart-signal strong {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.rflxns-cart-signal small {
    color: rgba(247, 244, 239, 0.58);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
}

@keyframes rflxnsCartSignalPulse {
    100% {
        box-shadow: 0 0 0 0.85rem rgba(247, 244, 239, 0);
    }
}

@media (max-width: 749px) {
    .rflxns-cart-signal {
        right: 1rem;
        bottom: 6.8rem;
        left: 1rem;
        justify-content: center;
    }
}

/* ============================================================
   RFLXNS — DROP RAIL + SIGNAL DRAWER — added 2026-05-12
   ============================================================ */

/* --- Drop Section Wrapper --- */
.rflxns-drop-section {
    position: relative;
    background: #050505;
    padding: 5rem 0 4rem;
    overflow: hidden;
    z-index: 20;
}

/* --- Drop Header --- */
.rflxns-drop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.rflxns-drop-header__left {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rflxns-drop-header__eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    color: var(--color-accent);
    text-transform: uppercase;
}

.rflxns-drop-header__title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.88;
    color: #f5f0eb;
    margin: 0;
    text-transform: uppercase;
}

.rflxns-drop-header__right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.rflxns-drop-rail-hint {
    font-family: var(--rflxns-font-accent);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.rflxns-drop-rail-hint__arrow {
    display: inline-block;
    animation: railHintPulse 1.8s ease-in-out infinite alternate;
}

.rflxns-drop-rail-hint__arrow:last-child {
    animation-delay: 0.9s;
}

@keyframes railHintPulse {
    from { opacity: 0.2; transform: translateX(0); }
    to   { opacity: 0.7; transform: translateX(3px); }
}

.rflxns-drop-view-all {
    font-family: var(--rflxns-font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(245, 240, 235, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(245, 240, 235, 0.15);
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.rflxns-drop-view-all:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* --- Horizontal Rail --- */
.rflxns-drop-rail-wrapper {
    overflow: hidden;
    position: relative;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.rflxns-drop-rail-wrapper.is-dragging {
    cursor: grabbing;
}

.rflxns-drop-rail {
    display: flex;
    gap: 2px;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
    will-change: transform;
    /* Hardware accelerate the rail */
    transform: translateZ(0);
    /* Prevent flash of unstyled content */
    min-height: 72vh;
}

/* --- Drop Card --- */
.rflxns-drop-card {
    flex: 0 0 clamp(280px, 34vw, 440px);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.rflxns-drop-card:focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 2px;
}

/* Card Image Wrap */
.rflxns-drop-card__img-wrap {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 60vh;
    background: #111;
}

.rflxns-drop-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
                filter 0.5s ease;
    filter: grayscale(0.12) contrast(1.04) brightness(0.88);
    will-change: transform;
    pointer-events: none;
    -webkit-user-drag: none;
}

.rflxns-drop-card:hover .rflxns-drop-card__img {
    transform: scale(1.04);
    filter: grayscale(0) contrast(1.06) brightness(0.96);
}

/* Placeholder when no image */
.rflxns-drop-card__img--placeholder {
    background: radial-gradient(circle at 40% 30%, #1a1a1a 0%, #080808 100%);
    min-height: 60vh;
}

/* Hover Overlay */
.rflxns-drop-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.24) 50%,
        rgba(0, 0, 0, 0.0) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.38s ease;
    z-index: 2;
}

.rflxns-drop-card:hover .rflxns-drop-card__overlay {
    opacity: 1;
}

.rflxns-drop-card__signal-label {
    font-family: var(--rflxns-font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    transform: translateY(8px);
    transition: transform 0.38s ease;
}

.rflxns-drop-card:hover .rflxns-drop-card__signal-label {
    transform: translateY(0);
}

/* Edition Counter Badge */
.rflxns-drop-card__edition {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--rflxns-font-accent);
    font-size: 0.52rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.4);
    z-index: 3;
}

/* Sale / Sold Out Tags */
.rflxns-drop-card__sale-tag,
.rflxns-drop-card__sold-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--rflxns-font-accent);
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    padding: 0.28rem 0.6rem;
    text-transform: uppercase;
    z-index: 3;
}

.rflxns-drop-card__sale-tag {
    background: var(--color-accent);
    color: #000;
}

.rflxns-drop-card__sold-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Card Footer */
.rflxns-drop-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 4;
}

.rflxns-drop-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

.rflxns-drop-card__name {
    font-family: var(--rflxns-font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0ebe4;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rflxns-drop-card__pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rflxns-drop-card__price {
    font-family: var(--rflxns-font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(245, 240, 235, 0.7);
}

.rflxns-drop-card__compare {
    font-family: var(--rflxns-font-body);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: line-through;
}

/* Quick-view + button */
.rflxns-drop-card__quick-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.rflxns-drop-card__quick-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(200, 169, 126, 0.08);
}

/* Empty state */
.rflxns-drop-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    flex: 1;
    font-family: var(--rflxns-font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

/* --- Progress Bar --- */
.rflxns-drop-progress {
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem) 0;
}

.rflxns-drop-progress__track {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.rflxns-drop-progress__fill {
    height: 100%;
    background: var(--color-accent);
    width: 0%;
    transform-origin: left;
    transition: width 0.1s linear;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .rflxns-drop-section {
        padding: 3.5rem 0 2.5rem;
    }
    .rflxns-drop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }
    .rflxns-drop-header__right {
        gap: 1.25rem;
    }
    .rflxns-drop-card {
        flex: 0 0 82vw;
    }
    .rflxns-drop-card__img-wrap,
    .rflxns-drop-card__img--placeholder {
        min-height: 58vw;
    }
    .rflxns-drop-rail-hint {
        display: none;
    }
}

/* ============================================================
   SIGNAL Quick-View Drawer
   ============================================================ */

/* Scrim */
.rflxns-signal-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.36s ease;
}

.rflxns-signal-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Drawer Shell */
.rflxns-signal-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4001;
    background: #0c0c0c;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px 12px 0 0;
    max-height: 92dvh;
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rflxns-signal-drawer.is-open {
    transform: translateY(0);
}

/* Handle */
.rflxns-signal-drawer__handle {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    margin: 0.85rem auto 0;
    flex-shrink: 0;
}

/* Close Button */
.rflxns-signal-drawer__close {
    position: absolute;
    top: 1.1rem;
    right: 1.4rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.rflxns-signal-drawer__close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Drawer Body (split layout) */
.rflxns-signal-drawer__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

/* Left: Media */
.rflxns-signal-drawer__media {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
}

.rflxns-signal-drawer__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 55vh;
}

.rflxns-signal-drawer__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease, opacity 0.3s ease;
    filter: grayscale(0.08) contrast(1.04);
}

.rflxns-signal-drawer__img.is-loading {
    opacity: 0;
}

/* Grain overlay on image */
.rflxns-signal-drawer__img-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* Right: Details Panel */
.rflxns-signal-drawer__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 2rem 2rem;
    overflow-y: auto;
    scrollbar-width: none;
}

.rflxns-signal-drawer__details::-webkit-scrollbar {
    display: none;
}

.rflxns-signal-drawer__top {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rflxns-signal-drawer__eyebrow {
    font-family: var(--rflxns-font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin: 0;
}

.rflxns-signal-drawer__title {
    font-family: var(--rflxns-font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: #f5f0eb;
    text-transform: uppercase;
    margin: 0;
    transition: opacity 0.2s ease;
}

.rflxns-signal-drawer__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.rflxns-signal-drawer__price {
    font-family: var(--rflxns-font-body);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(245, 240, 235, 0.9);
}

.rflxns-signal-drawer__compare {
    font-family: var(--rflxns-font-body);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: line-through;
}

/* Size Options */
.rflxns-signal-drawer__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rflxns-signal-drawer__option-label {
    font-family: var(--rflxns-font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.rflxns-signal-drawer__option-label span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.rflxns-signal-drawer__size-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rflxns-signal-size-btn {
    min-width: 44px;
    height: 38px;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(245, 240, 235, 0.6);
    font-family: var(--rflxns-font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    position: relative;
}

.rflxns-signal-size-btn.is-active {
    border-color: rgba(245, 240, 235, 0.8);
    color: #f5f0eb;
    background: rgba(245, 240, 235, 0.06);
}

.rflxns-signal-size-btn:hover:not(.is-active):not(.is-sold-out) {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(245, 240, 235, 0.85);
}

.rflxns-signal-size-btn.is-sold-out {
    opacity: 0.28;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Actions */
.rflxns-signal-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ATC button */
.rflxns-signal-drawer__atc {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f0eb;
    color: #0a0a0a;
    font-family: var(--rflxns-font-accent);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rflxns-signal-drawer__atc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0s;
}

.rflxns-signal-drawer__atc.is-loading::after {
    animation: signalAtcSheen 0.8s ease infinite;
}

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

.rflxns-signal-drawer__atc.is-success {
    background: #1a2a1f;
    color: rgba(245, 240, 235, 0.9);
}

.rflxns-signal-drawer__atc:disabled,
.rflxns-signal-drawer__atc.is-loading {
    opacity: 0.65;
    cursor: not-allowed;
}

.rflxns-signal-drawer__atc.is-unavailable {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

/* Full link */
.rflxns-signal-drawer__full-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--rflxns-font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
    letter-spacing: 0.04em;
}

.rflxns-signal-drawer__full-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Trust Strip */
.rflxns-signal-drawer__trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}

.rflxns-signal-drawer__trust li {
    font-family: var(--rflxns-font-body);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.24);
    letter-spacing: 0.04em;
    padding-left: 1rem;
    position: relative;
}

.rflxns-signal-drawer__trust li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 0.5rem;
}

/* --- Mobile Drawer: Stack vertically --- */
@media (max-width: 768px) {
    .rflxns-signal-drawer__body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .rflxns-signal-drawer__img-wrap {
        min-height: 52vw;
        max-height: 52vw;
    }

    .rflxns-signal-drawer__details {
        padding: 1.5rem 1.2rem 2rem;
        gap: 1.1rem;
        overflow-y: visible;
    }

    .rflxns-signal-drawer__title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
}

/* RFLXNS — global announcement bar guard — added 2026-05-11 */
.rflxns-announcement-bar {
    display: none !important;
    overflow: hidden;
    max-height: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.template-product .rflxns-announcement-bar {
    display: none !important;
}

/* RFLXNS — header rhythm refinement — added 2026-05-12 */
.nav {
    align-items: center;
}

.nav-left,
.nav-right {
    transform: translateY(-2px);
}

.nav-brand-pill {
    transform: translate(-50%, -52%);
}

.nav-link {
    font-family: 'Jost', sans-serif !important;
    font-size: clamp(0.56rem, 0.61vw, 0.67rem);
    font-weight: 560;
    letter-spacing: 0.105em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.nav-link:hover::after {
    width: 0;
}

.nav-icon {
    transform: translateY(0);
}

.nav-icon:hover {
    transform: translateY(-1px);
}

.rflxns-announcement-bar,
.rflxns-announcement-bar__track {
    max-height: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* RFLXNS — header logo/mobile dock fit fix — added 2026-05-13 */
.nav-brand-pill {
    transform: translate(-50%, -38%);
}

.logo-image {
    height: var(--rflxns-header-logo-height) !important;
    width: auto;
    max-width: min(180px, 32vw);
    object-fit: contain;
}

.hero-content {
    bottom: clamp(8.5rem, 13vh, 11rem);
}

@media (max-width: 900px) {
    .nav-brand-pill {
        max-width: calc(100vw - 5.75rem);
        overflow: hidden;
        padding: 0.28rem 0.72rem 0.28rem 0.28rem;
        transform: none;
    }

    .nav-logo {
        min-width: 0;
        overflow: hidden;
    }

    .logo-image {
        height: var(--rflxns-header-logo-height-mobile) !important;
        max-width: var(--rflxns-header-logo-max-width-mobile);
        object-fit: contain;
        opacity: 1;
        filter: brightness(0) invert(1);
    }

    .nav-right #cart-icon-bubble {
        display: none !important;
    }

    .hero-content {
        bottom: calc(8.8rem + env(safe-area-inset-bottom));
    }

    .hero-scroll-gesture {
        gap: 0.52rem;
    }

    .hero-scroll-pulse {
        height: 3rem;
    }

    .hero-scroll-arrow {
        font-size: 0.78rem;
    }
}

/* ============================================
   RFLXNS — Homepage scroll header (glass strip, all pages consistent)
   ============================================ */
body.template-index .nav.scrolled {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%),
        rgba(14, 14, 14, 0.65) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    mix-blend-mode: normal !important;
}
body.template-index .nav.scrolled .nav-link,
body.template-index .nav.scrolled .nav-cta,
body.template-index .nav.scrolled .nav-icon {
    color: #ffffff !important;
}
body.template-index .nav.scrolled .logo-image {
    filter: none !important;
}
body.template-index .nav.scrolled .hamburger-button {
    border-color: rgba(255, 255, 255, 0.25) !important;
}
body.template-index .nav.scrolled .hamburger-label {
    color: #ffffff !important;
}
body.template-index .nav.scrolled .hamburger-lines span {
    background: #ffffff !important;
}

/* Force nav to normal blend mode on mobile — kills all color inversion */
@media screen and (max-width: 900px) {
    .nav,
    .nav.scrolled,
    body.template-index .nav,
    body.template-index .nav.scrolled {
        mix-blend-mode: normal !important;
    }
    .nav-brand-pill,
    .nav.scrolled .nav-brand-pill {
        mix-blend-mode: normal !important;
    }
    .logo-image,
    .nav.scrolled .logo-image {
        filter: brightness(0) invert(1) !important;
        opacity: 1 !important;
    }
    .hamburger-label {
        color: #ffffff !important;
    }
    .hamburger-lines span {
        background: #ffffff !important;
    }
}

/* Push footer to the very bottom — no gap below it */
.footer-static {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.reflections-footer {
    margin-bottom: 0 !important;
}
.reflections-footer__panel {
    margin-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body > main,
body > .shopify-section:not(:last-child) {
    flex: 1;
}

/* Reorganized footer bottom bar */
.reflections-footer__social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reflections-footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.06);
    color: rgba(17, 17, 17, 0.5);
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
}
.reflections-footer__social-icon:hover {
    background: rgba(17, 17, 17, 0.1);
    color: rgba(17, 17, 17, 0.8);
}
.reflections-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}
.reflections-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.reflections-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* Hide old tooltip dock styles */
.reflections-footer__tooltip-dock,
.reflections-footer .example-1 {
    display: none;
}
