/* ============================================
   KALAMARI | Streetwear — Weird Is The New Normal
   Brand system: Red (#E71F27) + Black + White
   Fonts: DK Longreach (display) · Source Sans (body)
   ============================================ */

/* ---------- BRAND DISPLAY FONT: DK LONGREACH ----------
   The font files were never added to assets/fonts/, so this @font-face was
   404ing on every page load with nothing to show for it — headlines already
   fall back to Archivo Black via the --font-display stack below. Uncomment
   once the real font files are dropped into assets/fonts/.
@font-face {
    font-family: 'DK Longreach';
    src: url('../assets/fonts/DKLongreach.woff2') format('woff2'),
         url('../assets/fonts/DKLongreach.woff') format('woff'),
         url('../assets/fonts/DKLongreach.otf') format('opentype'),
         url('../assets/fonts/DKLongreach.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Backgrounds — premium white */
    --bg-dark: #FFFFFF;
    --bg-darker: #F6F5F3;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FBFAF9;
    --bg-surface: #F4F3F1;
    --bg-elevated: #FFFFFF;

    /* Brand Colors (red used sparingly as accent) */
    --red: #E71F27;
    --red-dark: #C0141B;
    --red-light: #E71F27;
    --red-glow: rgba(231, 31, 39, 0.18);

    /* Text — ink on paper */
    --text-white: #16130F;
    --text-primary: #1F1B16;
    --text-secondary: #6B635A;
    --text-muted: #9B9389;
    --text-dark: #16130F;

    /* Accents */
    --gold: #B08D3E;
    --green: #1E9E5A;

    /* Gradients */
    --gradient-red: linear-gradient(135deg, #E71F27, #C0141B);
    --gradient-dark: linear-gradient(135deg, #FFFFFF 0%, #F1EEE8 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FAF8F4 100%);
    --gradient-hero: linear-gradient(135deg, #E71F27 0%, #C0141B 50%, #E71F27 100%);

    /* Borders */
    --border-subtle: rgba(22, 19, 15, 0.08);
    --border-light: rgba(22, 19, 15, 0.15);
    --border-red: rgba(231, 31, 39, 0.3);

    /* Shadows — soft on light */
    --shadow-sm: 0 2px 8px rgba(22, 19, 15, 0.05);
    --shadow-md: 0 10px 30px rgba(22, 19, 15, 0.08);
    --shadow-lg: 0 24px 60px rgba(22, 19, 15, 0.12);
    --shadow-red: 0 10px 30px rgba(231, 31, 39, 0.22);
    --shadow-glow: 0 0 40px rgba(231, 31, 39, 0.10);

    /* Fonts — Brand system: DK Longreach (display) + Source Sans (body) */
    --font-display: 'DK Longreach', 'Archivo Black', 'Syne', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-mono: 'Source Sans 3', sans-serif;

    /* Easing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.65;
}

::selection {
    background: var(--red);
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ---------- SHARED TYPOGRAPHY ---------- */
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    color: var(--red);
}

.section-tag.gradient {
    color: var(--red);
}

.section-tag.light {
    color: var(--red-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.08;
}

.section-title em {
    font-style: normal;
    color: var(--red);
}

.section-title.light {
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
    margin-top: 16px;
}

.section-subtitle.light {
    color: var(--text-secondary);
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gradient-text {
    color: var(--red);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    transition: var(--transition);
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-red);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231, 31, 39, 0.4);
    background: var(--red-light);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 14px 34px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    transition: var(--transition);
    text-transform: uppercase;
    cursor: pointer;
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-white);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-white);
    color: var(--text-dark);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    transition: var(--transition);
    text-transform: uppercase;
    cursor: pointer;
}

.btn-dark:hover {
    background: var(--red);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.view-all {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
}

.view-all:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(231, 31, 39, 0.06);
}

/* ---------- NAVBAR ---------- */
/* ---------- ANNOUNCEMENT BAR ---------- */
.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    z-index: 1001;
    background: #100D0A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.announce-msg {
    margin: 0;
    padding: 0 16px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.announce-short { display: none; }

.announce-track {
    display: flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
    animation: announceScroll 28s linear infinite;
    will-change: transform;
}

.announce-track span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.announce-dot {
    color: var(--red) !important;
    font-size: 0.5rem !important;
    letter-spacing: 0 !important;
}

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

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    max-width: 1400px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    padding: 0;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
    top: 10px;
    border-radius: 16px;
}

/* ---------- CENTERED-LOGO NAV (home) ---------- */
.nav-centered .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.nav-centered .nav-links { justify-self: start; }
.nav-centered .nav-logo { justify-self: center; }
.nav-centered .nav-icons { justify-self: end; }
.nav-centered .nav-logo {
    background: transparent;
    box-shadow: none;
}
.nav-centered .nav-logo img {
    width: 104px;
    height: auto;
}

/* ============================================
   DEADBEAR-STYLE FLAT NAV (home only)
   Transparent over hero → solid white on scroll
   ============================================ */
.navbar.nav-centered {
    top: 36px;            /* flush under the 36px announcement bar */
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.navbar.nav-centered .nav-inner {
    max-width: 1640px;
    padding: 9px 48px;
}

/* Links + icons: clean, airy, white over the dark hero (DEADBEAR style) */
.navbar.nav-centered .nav-links { gap: 2px; }
.navbar.nav-centered .nav-links a {
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border-color: transparent;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
}
.navbar.nav-centered .nav-links a:hover {
    color: #fff;
    background: transparent;
}
.navbar.nav-centered .nav-links a.active {
    color: #fff;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
/* thin red underline — grows on hover, stays on the active page */
.navbar.nav-centered .nav-links a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 1px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar.nav-centered .nav-links a:hover::after,
.navbar.nav-centered .nav-links a.active::after {
    transform: scaleX(1);
}
.navbar.nav-centered .nav-icon-btn { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; }
.navbar.nav-centered .nav-icon-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.navbar.nav-centered .nav-hamburger span { background: #fff; }

/* Scrolled → solid white bar (DEADBEAR style) */
.navbar.nav-centered.scrolled {
    top: 36px;
    background: #fff;
    border-radius: 0;
    border-bottom-color: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
}
.navbar.nav-centered.scrolled .nav-inner { padding: 9px 48px; }
.navbar.nav-centered.scrolled .nav-links a { color: var(--text-primary); }
.navbar.nav-centered.scrolled .nav-links a:hover {
    color: var(--red);
    background: transparent;
}
.navbar.nav-centered.scrolled .nav-icon-btn { color: var(--text-primary); }
.navbar.nav-centered.scrolled .nav-icon-btn:hover { color: var(--red); }
.navbar.nav-centered.scrolled .nav-hamburger span { background: var(--text-primary); }

/* Inner pages: same centered header, but SOLID by default (readable on any bg) */
.navbar.nav-centered.nav-solid {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.navbar.nav-centered.nav-solid .nav-links a { color: var(--text-primary); }
.navbar.nav-centered.nav-solid .nav-links a:hover { color: var(--red); background: transparent; }
.navbar.nav-centered.nav-solid .nav-icon-btn { color: var(--text-primary); }
.navbar.nav-centered.nav-solid .nav-icon-btn:hover { color: var(--red); }
.navbar.nav-centered.nav-solid .nav-hamburger span { background: var(--text-primary); }

.nav-inner {
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.nav-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-logo video {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    background: #fff;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 11px 22px;
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
    border: 1.5px solid transparent;
    position: relative;
}

.nav-links a:hover {
    color: var(--red);
    background: rgba(231, 31, 39, 0.07);
}

.nav-links a.active {
    color: #FFFFFF;
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 4px 14px rgba(231, 31, 39, 0.3);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-icon-btn {
    color: var(--text-primary);
    font-size: 1.15rem;
    padding: 8px;
    transition: var(--transition);
    position: relative;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-btn:hover {
    color: var(--red);
    background: rgba(231, 31, 39, 0.08);
}

/* custom squid-themed line icons */
.nav-icon-btn .ico {
    width: 21px;
    height: 21px;
    display: block;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-icon-btn:hover .ico { transform: scale(1.08); }
.cart-btn:hover .ico-squid-cart { transform: scale(1.08) rotate(-3deg); }

.cart-btn::after {
    content: attr(data-count);
    position: absolute;
    top: 4px; right: 4px;
    background: var(--red);
    color: var(--text-white);
    font-size: 0.55rem;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-mono);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ---------- 3. HERO ---------- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(40px) scale(0.97); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-slide-content {
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

.page-hero .container,
.about-hero-text {
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

.about-hero-grid .story-image {
    animation: fadeInRight 0.9s ease-out 2s both;
}

.hero {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--bg-darker);
}

/* ============================================
   HERO — DEADBEAR-STYLE PRODUCT STAGE
   Dark atmospheric hero, product centered,
   ghost words flanking, floating particles
   ============================================ */
.hero-drop {
    background:
        radial-gradient(120% 90% at 50% 38%, #2b2722 0%, #18150f 48%, #0d0b08 100%);
}

/* Soft red glow behind the product */
.hero-glow {
    position: absolute;
    top: 42%;
    left: 50%;
    width: 70vw;
    max-width: 900px;
    height: 70vh;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(231, 31, 39, 0.16) 0%, rgba(231, 31, 39, 0.04) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: heroGlowPulse 7s ease-in-out infinite;
}
@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* Floating particles layer */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    bottom: -10%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: heroFloat linear infinite;
    will-change: transform, opacity;
}
@keyframes heroFloat {
    0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10%  { opacity: 0.9; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-115vh) translateX(40px) scale(1.1); opacity: 0; }
}

/* Stage holds the absolutely-positioned slides */
.hero-stage {
    position: relative;
    width: 100%;
    height: 100dvh;
    z-index: 3;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ---- Full-bleed campaign banner slide ---- */
.hero-slide--banner { padding: 0; }
.hero-banner-link { position: absolute; inset: 0; z-index: 1; display: block; }
.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 1;
}
/* bloom slide keeps its original centring so the baked-in SHOP NOW button (bottom) is never cropped */
.hero-banner-link .hero-banner-img { object-position: center; }
/* soft top scrim so the white nav stays legible over lighter artwork */
.hero-slide--banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(rgba(0, 0, 0, 0.42), transparent);
    z-index: 2;
    pointer-events: none;
}

/* Ghost words flanking the product */
.hero-word {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3.5rem, 11vw, 13rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
    text-stroke: 2px rgba(255, 255, 255, 0.4);
    user-select: none;
    z-index: 4;
    white-space: nowrap;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}
.hero-word.left  { left: 2.5vw; }
.hero-word.right { right: 2.5vw; }

/* Product centerpiece */
.hero-product {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 60vw;
}
.hero-product img {
    width: auto;
    max-height: 82vh;
    max-width: 100%;
    object-fit: contain;
    /* feather the mockup's rectangular edge into the dark hero */
    -webkit-mask-image: radial-gradient(circle at 50% 46%, #000 52%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 46%, #000 52%, transparent 78%);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
    animation: heroProductBob 6s ease-in-out infinite;
}
@keyframes heroProductBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
.hero-product .hero-badge.accent {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.62rem;
}

/* Caption under product */
.hero-caption {
    position: absolute;
    bottom: 168px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: 100%;
}
.hero-caption-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}
.hero-caption-price {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* SHOP NOW button */
.hero-shop-now {
    position: absolute;
    bottom: 108px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #fff;
    padding: 14px 34px;
    border-radius: 100px;
    background: var(--red);
    box-shadow: 0 12px 30px rgba(231, 31, 39, 0.35);
    transition: var(--transition);
}
.hero-shop-now:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 18px 40px rgba(231, 31, 39, 0.5);
}
.hero-shop-now i { transition: transform 0.3s ease; }
.hero-shop-now:hover i { transform: translateX(5px); }

/* --- Hero Text (shared) --- */
.hero-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.06);
}

.hero-badge.accent {
    background: var(--red);
    border: none;
    color: var(--text-white);
    box-shadow: var(--shadow-red);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 0.92;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 28px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-title em {
    font-style: normal;
    color: var(--red);
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 44px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline.light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
}

.btn-outline.light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* --- Slider Navigation Dots --- */
.hero-slider-nav {
    position: absolute;
    bottom: 74px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 12;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: #FFFFFF;
}

/* --- Slider Arrows (side-positioned) --- */
.hero-arrow {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 11;
}
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

.hero-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(231, 31, 39, 0.4);
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 18px 40px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat span {
    display: block;
}

.hero-stat .stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.hero-stat .stat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ---------- 4. TICKER ---------- */
.ticker {
    background: var(--bg-surface);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.ticker.gradient {
    background: var(--red);
    border-color: var(--red);
}

.ticker-track {
    display: flex;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: tickerScroll 22s linear infinite;
}

.ticker-content span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
}

.ticker-star {
    font-size: 0.55rem !important;
    opacity: 0.5;
}

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

/* ---------- 5. SHOP THE LOOK ---------- */
.shop-look {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.look-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.look-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--border-subtle);
}

.look-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.look-img {
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
    position: relative;
}

.look-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.look-card:hover .look-img img {
    transform: scale(1.06);
}

.look-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15rem;
    font-weight: 600;
    padding: 8px 18px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: var(--text-white);
    border: 1px solid var(--border-light);
}

.look-info {
    padding: 28px 24px;
}

.look-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.look-items { margin-bottom: 16px; }

.look-items li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.look-items li span:last-child {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-white);
}

.look-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.look-total span:first-child {
    color: var(--text-white);
}

/* ---------- 6. CATEGORY PILLS ---------- */
.category-pills {
    padding: 0 0 80px;
    background: var(--bg-dark);
    overflow-x: auto;
    position: relative;
    z-index: 2;
}

.pills-track {
    display: flex;
    gap: 10px;
    padding: 0 32px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 1280px;
    margin: 0 auto;
}

.pills-track::-webkit-scrollbar { display: none; }

.pill {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
    padding: 11px 24px;
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.pill:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(231, 31, 39, 0.06);
}

.pill.active {
    background: var(--red);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

/* ---------- 7. BEST SELLERS ---------- */
.best-sellers {
    padding: 100px 0 120px;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.best-sellers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    z-index: 0;
}

.best-sellers .container {
    position: relative;
    z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--border-subtle);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.wishlist-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

.wishlist-btn i {
    font-size: 0.9rem;
    color: #fff;
    transition: var(--transition);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: var(--red);
    border-color: var(--red);
}

.wishlist-btn:hover i {
    color: #fff;
}

.wishlist-btn.active {
    background: var(--red);
    border-color: var(--red);
}

.wishlist-btn.active i {
    color: #fff;
}

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    padding: 6px 14px;
    z-index: 2;
    border-radius: 100px;
    color: var(--text-white);
}

.product-badge.hot { background: var(--red); }
.product-badge.new { background: var(--text-white); color: var(--text-dark); }
.product-badge.sale { background: var(--red); }
.product-badge.limited { background: var(--text-white); color: var(--text-dark); }

.add-to-bag {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    z-index: 2;
}

.product-card:hover .add-to-bag,
.drop-card:hover .add-to-bag {
    transform: translateY(0);
}

.btn-add-bag {
    width: 100%;
    background: var(--red);
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    padding: 13px;
    border: none;
    border-radius: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-bag:hover {
    background: var(--red-light);
    box-shadow: var(--shadow-red);
}

.product-info {
    padding: 16px 16px 20px;
}

.product-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 4px;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.product-price-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price-old {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin: 0;
}

/* ---------- 8. EDITORIAL BANNER ---------- */
.editorial-banner {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-darker);
    z-index: 2;
}

.editorial-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
}

.editorial-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(231, 31, 39, 0.15));
    z-index: 1;
}

.editorial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.editorial-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.35rem;
    color: var(--red);
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}

.editorial-content h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 0.95;
    margin-bottom: 36px;
}

.editorial-content h2 em {
    font-style: normal;
    color: var(--red);
}

/* ---------- 9. NEW DROPS ---------- */
.new-drops {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.drops-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    color: var(--red);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border-red);
    background: rgba(231, 31, 39, 0.08);
}

.live-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.drop-large { grid-column: span 2; }
.drop-large .product-img { aspect-ratio: 4/5; }
.drop-small .product-img { aspect-ratio: 3/4; }

.drop-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--border-subtle);
}

.drop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.drop-card:hover .product-img img {
    transform: scale(1.08);
}

/* ---------- 10. BRAND STORY ---------- */
.brand-story {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.brand-story::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -15%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.brand-story .container {
    position: relative;
    z-index: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 80px;
}

.story-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    max-width: 500px;
}

.story-text {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-top: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat {
    text-align: center;
    padding: 36px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-light);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--red);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.05rem;
}

/* ---------- 11. REVIEWS ---------- */
.reviews {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: var(--transition-slow);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.review-stars { margin-bottom: 16px; }

.review-stars i {
    color: #F59E0B;
    font-size: 0.88rem;
}

.review-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px; height: 44px;
    background: var(--red);
    color: var(--text-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

.review-author span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.review-author span i {
    color: var(--green);
    margin-right: 3px;
}

/* ---------- 12. INSTAGRAM UGC ---------- */
.instagram-ugc {
    padding: 120px 0 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.instagram-ugc .section-header { padding: 0 32px; }

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 48px;
}

.ugc-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-surface);
}

.ugc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.ugc-item:hover img {
    transform: scale(1.1);
}

.ugc-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(231, 31, 39, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ugc-item:hover .ugc-overlay { opacity: 1; }

.ugc-overlay i {
    color: var(--text-white);
    font-size: 1.3rem;
}

.ugc-overlay span {
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
}

/* ---------- 13. NEWSLETTER ---------- */
.newsletter {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.newsletter-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 72px 48px;
    border-radius: 32px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.08) 0%, transparent 70%);
}

.newsletter-box::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -20%;
    width: 50%; height: 100%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.05) 0%, transparent 70%);
}

.newsletter-box > * {
    position: relative;
    z-index: 1;
}

.newsletter-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 20px;
}

.newsletter-box h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.newsletter-box h2 em {
    font-style: normal;
    color: var(--red);
}

.newsletter-box > p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 100px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn-primary {
    flex-shrink: 0;
    border-radius: 100px;
    padding: 16px 28px;
    font-size: 0.72rem;
}

.newsletter-note {
    display: block;
    margin-top: 16px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ---------- 14. FOOTER ---------- */
.site-footer {
    background: var(--bg-darker);
    padding: 80px 0 0;
    color: var(--text-white);
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px; height: 42px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(231, 31, 39, 0.1);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--text-white);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    color: var(--text-muted);
    padding: 5px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

/* ---------- PREMIUM EFFECTS ---------- */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.02;
    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");
}

.product-card:hover,
.drop-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(231, 31, 39, 0.1);
}

.look-card:hover {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.shop-look::after,
.best-sellers::after,
.new-drops::after,
.reviews::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 2px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0.3;
}

.shop-look,
.best-sellers,
.new-drops,
.reviews {
    position: relative;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 50px; height: 50px;
    background: var(--red);
    border: none;
    border-radius: 16px;
    color: var(--text-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-red);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(231, 31, 39, 0.5);
}

/* ============================================
   PAGE: SHOP
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%; left: -20%;
    width: 70%; height: 130%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.08) 0%, transparent 50%);
    animation: floatShape 8s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -15%;
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.05) 0%, transparent 50%);
    animation: floatShape 10s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-title {
    color: var(--text-white);
}

.page-hero .section-subtitle {
    color: var(--text-secondary);
}

.page-hero .section-tag {
    color: var(--red);
}

.page-hero .section-tag.gradient {
    color: var(--red);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb i {
    font-size: 0.6rem;
}

/* Shop Filters */
.shop-filters {
    padding: 40px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.9);
}

.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 10px 22px;
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}

.filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.filter-btn.active {
    background: var(--red);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

.sort-select {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 10px 20px;
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    background: var(--bg-card);
    color: var(--text-secondary);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:hover {
    border-color: var(--red);
}

.shop-products {
    padding: 48px 0 120px;
    background: var(--bg-dark);
}

.products-count {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Shop CTA Banner */
.shop-cta-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.shop-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.08) 0%, transparent 60%);
}

.shop-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -15%;
    width: 50%; height: 100%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.05) 0%, transparent 60%);
}

.shop-cta-banner > * {
    position: relative;
    z-index: 1;
}

.shop-cta-banner h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.shop-cta-banner h3 em {
    font-style: normal;
    color: var(--red);
}

.shop-cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Strip */
.feature-strip {
    padding: 60px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-strip-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.feature-strip-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.feature-strip-icon {
    width: 56px; height: 56px;
    background: var(--red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--text-white);
}

.feature-strip-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.feature-strip-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   PAGE: ABOUT
   ============================================ */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(231, 31, 39, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(231, 31, 39, 0.04) 0%, transparent 60%);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text .section-title.light {
    margin-bottom: 24px;
}

/* About Mission Section */
.about-mission {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--border-subtle);
}

.mission-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.mission-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-light);
}

.mission-image-badge .float-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    font-size: 1rem;
}

.mission-image-badge span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}

.mission-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.mission-content h3 em {
    font-style: normal;
    color: var(--red);
}

.mission-content p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
}

.mission-content blockquote {
    border-left: 3px solid var(--red);
    padding-left: 20px;
    margin: 28px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.7;
}

.about-values {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.about-values .container {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition-slow);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.value-icon {
    width: 64px; height: 64px;
    background: var(--red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--text-white);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-timeline {
    padding: 120px 0;
    background: var(--bg-dark);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 6px;
    width: 14px; height: 14px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 4px rgba(231, 31, 39, 0.2);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: var(--red);
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(231, 31, 39, 0.1);
    padding: 4px 14px;
    border-radius: 100px;
}

.timeline-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    margin-top: 8px;
}

.timeline-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Team Section */
.about-team {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.about-team::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.06) 0%, transparent 60%);
}

.about-team .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.team-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-surface);
}

.team-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.team-card:hover .team-card-img img {
    transform: scale(1.06);
}

.team-card-info {
    padding: 24px;
    text-align: center;
}

.team-card-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.team-card-info span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--red);
    letter-spacing: 0.05rem;
    font-weight: 500;
}

/* About page — text-first layouts (no imagery) */
.about-hero-grid.single-col {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-grid.single-col .hero-cta-row {
    justify-content: center;
}

.mission-grid.single-col {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-grid.single-col .section-tag {
    display: inline-block;
    margin-bottom: 20px;
}

.mission-grid.single-col blockquote {
    border-left: none;
    padding: 0;
    margin: 32px auto 28px;
    max-width: 660px;
    text-align: center;
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    line-height: 1.6;
    position: relative;
}

.mission-grid.single-col blockquote::before {
    content: '\201C';
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.6;
    color: var(--red);
    opacity: 0.3;
    margin-bottom: 8px;
}

.team-card--text {
    padding: 44px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card--text .team-card-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--red);
    margin-bottom: 12px;
}

.team-card--text .team-card-info {
    padding: 0;
}

.team-card--text .team-card-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-card--text .team-card-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 8px 0 16px;
}

/* About hero — bigger title + credentials meta row */
.about-hero-grid.single-col .section-title.light {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.02;
}

.about-hero-grid.single-col .section-subtitle.light {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    color: var(--text-secondary);
}

.about-hero-meta i {
    color: var(--red);
    margin-right: 6px;
}

.about-hero-meta .dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--border-light);
}

/* Mission — elevated story card with accent bar + quote */
.mission-grid.single-col .mission-content {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: clamp(40px, 5vw, 68px) clamp(24px, 5vw, 64px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.mission-grid.single-col .mission-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.mission-grid.single-col .mission-content::after {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
    pointer-events: none;
}

/* Values — editorial numbered cards */
.value-card {
    position: relative;
    overflow: hidden;
}

.value-num {
    position: absolute;
    top: 14px; right: 24px;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-white);
    opacity: 0.07;
    pointer-events: none;
}

/* Timeline — fade the connecting line at the ends */
.about-timeline .timeline::before {
    background: linear-gradient(to bottom, transparent, var(--red) 12%, var(--red) 82%, transparent);
}

/* ============================================
   PAGE: CONTACT
   ============================================ */
.contact-section {
    padding: 0 0 120px;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.08) 0%, transparent 70%);
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 40%; height: 60%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.05) 0%, transparent 70%);
}

.contact-info-card > * {
    position: relative;
    z-index: 1;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-card > p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 48px; height: 48px;
    background: rgba(231, 31, 39, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    flex-shrink: 0;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.contact-detail:hover .contact-detail-icon {
    background: rgba(231, 31, 39, 0.2);
    border-color: var(--border-red);
}

.contact-detail h5 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.92rem;
    color: var(--text-white);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-white);
    background: var(--bg-surface);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(231, 31, 39, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-error {
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--red);
}

.checkout-payment-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.checkout-payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
    cursor: pointer;
}

.checkout-payment-option input {
    accent-color: var(--red);
}

/* Checkout order summary */
.checkout-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    align-self: start;
}

.checkout-summary h3 {
    margin-bottom: 20px;
}

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
}

.checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-summary-item img,
.checkout-summary-item-noimg {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-surface);
}

.checkout-summary-item-mid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.checkout-summary-item-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.88rem;
}

.checkout-summary-item-size,
.checkout-summary-item-qty {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.checkout-summary-item-price {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-white);
    white-space: nowrap;
}

.checkout-summary-totals {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkout-summary-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
}

@media (max-width: 900px) {
    .checkout-summary {
        padding: 32px 24px;
    }
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.faq-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact Map Placeholder */
.contact-map {
    margin-top: 80px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/1;
    background: var(--bg-surface);
    position: relative;
    border: 1px solid var(--border-subtle);
}

.contact-map iframe {
    width: 100%; height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-surface);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--red);
}

.map-placeholder span {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    border-bottom: 1px solid rgba(231, 31, 39, 0.3);
    padding: 10px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.announce-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.announce-content {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: announceScroll 25s linear infinite;
}

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

.announce-item {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    color: var(--text-primary);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.announce-item i {
    color: var(--red);
    font-size: 0.8rem;
}

.announce-urgent strong {
    color: var(--red);
    font-weight: 800;
}

.announce-sep {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.announce-close {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 4px;
    margin-left: 12px;
    transition: var(--transition);
    flex-shrink: 0;
}

.announce-close:hover {
    color: var(--text-white);
}

/* Offset navbar when announcement is visible */
body:has(.announcement-bar:not(.hidden)) .navbar {
    top: 52px;
}

body:has(.announcement-bar:not(.hidden)) .navbar.scrolled {
    top: 42px;
}

/* ---------- STOCK COUNTER ---------- */
.stock-counter {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: #FF6B35;
    margin-top: 4px;
    letter-spacing: 0.02rem;
    animation: stockPulse 2s ease-in-out infinite;
}

.stock-counter i {
    font-size: 0.7rem;
}

.stock-critical {
    color: var(--red) !important;
    animation: stockUrgent 1s ease-in-out infinite;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes stockUrgent {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* ---------- SOCIAL PROOF TOAST ---------- */
.social-proof-toast {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 900;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    max-width: 340px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-proof-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.toast-text strong {
    color: var(--red);
}

.toast-time {
    font-size: 0.68rem;
    color: #999;
    font-family: var(--font-mono);
}

.toast-close {
    color: #ccc;
    font-size: 0.85rem;
    padding: 4px;
    align-self: flex-start;
    transition: var(--transition);
}

.toast-close:hover {
    color: #666;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 800;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.6rem;
    color: #FFFFFF;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- SPIN TO WIN WHEEL ---------- */
.spin-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.spin-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.spin-modal {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    display: flex;
    max-width: 780px;
    width: 90%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spin-overlay.visible .spin-modal {
    transform: scale(1) translateY(0);
}

.spin-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 8px;
    transition: var(--transition);
}

.spin-close:hover {
    color: var(--text-white);
}

.spin-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--bg-surface);
}

.wheel-container {
    position: relative;
    width: 260px;
    height: 260px;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 0 30px rgba(200, 165, 92, 0.2);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    right: 0;
    transform-origin: bottom left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    padding-bottom: 30px;
}

.wheel-segment span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05rem;
    transform: rotate(15deg);
    text-align: center;
}

.seg-1 { background: var(--red); transform: rotate(0deg) skewY(-30deg); }
.seg-2 { background: #1a1a4e; transform: rotate(60deg) skewY(-30deg); }
.seg-3 { background: #E71F27; transform: rotate(120deg) skewY(-30deg); }
.seg-4 { background: #333; transform: rotate(180deg) skewY(-30deg); }
.seg-5 { background: var(--gold); transform: rotate(240deg) skewY(-30deg); }
.seg-6 { background: #0A0A0A; transform: rotate(300deg) skewY(-30deg); }

.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1rem;
    z-index: 5;
}

.spin-right {
    flex: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spin-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.spin-right h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.spin-right h2 em {
    color: var(--red);
    font-style: italic;
}

.spin-right p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.spin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spin-form input {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-white);
    outline: none;
    transition: var(--transition);
}

.spin-form input:focus {
    border-color: var(--red);
}

.spin-result {
    text-align: center;
}

.spin-result h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--green);
    margin-bottom: 8px;
}

.spin-result p {
    text-align: center;
}

.spin-result strong {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    font-family: var(--font-mono);
}

/* ---------- EXIT INTENT POPUP ---------- */
.exit-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.exit-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.exit-modal {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.exit-overlay.visible .exit-modal {
    transform: scale(1) translateY(0);
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 8px;
    transition: var(--transition);
}

.exit-close:hover {
    color: var(--text-white);
}

.exit-content {
    padding: 48px 36px 36px;
    text-align: center;
}

.exit-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.exit-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.exit-content h2 em {
    color: var(--red);
    font-style: italic;
}

.exit-content > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.exit-content > p strong {
    color: var(--red);
    font-size: 1.3rem;
}

.exit-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-surface);
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 8px;
}

.exit-code {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.3rem;
}

.exit-copy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.exit-copy:hover {
    color: var(--text-white);
    border-color: var(--text-white);
}

.exit-no-thanks {
    display: block;
    margin: 16px auto 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: underline;
    transition: var(--transition);
}

.exit-no-thanks:hover {
    color: var(--text-secondary);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .navbar {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        border-radius: 18px;
    }

    .nav-inner {
        padding: 12px 24px;
    }

    .nav-logo img {
        height: 60px;
    }

    .nav-logo video {
        height: 60px;
        mix-blend-mode: multiply;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 24px;
        color: var(--text-primary);
        border-radius: 12px;
    }

    .nav-hamburger { display: flex; }

    .nav-hamburger.open span:first-child {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-hamburger.open span:nth-child(2) { opacity: 0; }

    .nav-hamburger.open span:last-child {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* Announcement bar mobile */
    .announcement-bar {
        padding: 8px 12px;
    }

    .announce-item {
        font-size: 0.62rem;
    }

    body:has(.announcement-bar:not(.hidden)) .navbar {
        top: 44px;
    }

    /* Spin modal mobile */
    .spin-modal {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .spin-left {
        padding: 24px;
    }

    .wheel-container {
        width: 200px;
        height: 200px;
    }

    .spin-right {
        padding: 24px;
    }

    .spin-right h2 {
        font-size: 1.5rem;
    }

    /* Social proof toast mobile */
    .social-proof-toast {
        bottom: 80px;
        left: 12px;
        right: 12px;
        max-width: none;
    }

    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }

    .hero-slide-content {
        padding: 0 24px;
        padding-top: 80px;
    }

    .hero-slider-nav {
        bottom: 100px;
    }

    .hero-stats-bar {
        gap: 32px;
        padding: 20px 24px;
    }

    /* Hero (DEADBEAR-style) — tablet */
    .hero-word { font-size: clamp(3rem, 12vw, 8rem); }
    .hero-product { max-width: 72vw; }
    .hero-product img { max-height: 70vh; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .look-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .drops-grid { grid-template-columns: repeat(2, 1fr); }
    .drop-large { grid-column: span 1; }

    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ugc-grid { grid-template-columns: repeat(3, 1fr); }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .form-row { grid-template-columns: 1fr; }

    .section-header.split {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .hero-slider,
    /* The banners are 16:9, but a phone is portrait — filling 100dvh with
       object-fit:cover scaled them to ~1512px wide behind a 390px window, so only
       ~26% of the artwork survived. A shorter hero is a less extreme box to cover:
       at 70dvh the image scales to ~1058px, showing ~37%. Still edge-to-edge, no
       letterbox bands. .hero-shop-now and .hero-slider-nav are bottom-anchored, so
       they ride up with it. */
    .hero {
        min-height: 70vh; /* fallback: the base height is dvh-only, so if dvh is */
        min-height: 70dvh; /* unsupported both rules drop and the hero collapses */
    }

    .hero-stage {
        height: 70vh;
        height: 70dvh;
    }

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

    .hero-stats-bar {
        gap: 20px;
        flex-wrap: wrap;
        padding: 16px 20px;
    }

    .hero-slider-nav {
        bottom: 70px;
    }

    .hero-slider-arrows {
        display: none;
    }

    /* Hero (DEADBEAR-style) — mobile */
    .hero-arrow { display: none; }
    .hero-word {
        font-size: clamp(2.4rem, 15vw, 5rem);
        -webkit-text-stroke-width: 1px;
        text-stroke-width: 1px;
    }
    .hero-word.left  { left: 4vw;  top: 28%; }
    .hero-word.right { right: 4vw; top: 66%; }
    .hero-product { max-width: 92vw; }
    .hero-product img {
        max-height: 54vh;
        -webkit-mask-image: radial-gradient(circle at 50% 46%, #000 56%, transparent 84%);
        mask-image: radial-gradient(circle at 50% 46%, #000 56%, transparent 84%);
    }
    .hero-caption { bottom: 150px; }
    .hero-caption-name { font-size: 1.1rem; }
    .hero-shop-now { bottom: 90px; font-size: 0.6rem; letter-spacing: 0.12rem; gap: 6px; padding: 9px 18px; }
    .announce-track span { font-size: 0.62rem; letter-spacing: 0.12rem; }
    .announce-msg { font-size: 0.6rem; letter-spacing: 0.14rem; padding: 0 12px; }
    .announce-full { display: none; }
    .announce-short { display: block; }

    .hero-slide-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            transparent 100%
        );
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-info { padding: 12px 12px 16px; }
    .product-info h4 { font-size: 0.8rem; }
    .product-price { font-size: 0.88rem; }

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

    .editorial-banner {
        height: 55vh;
        min-height: 350px;
    }

    .editorial-content h2 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .newsletter-box { padding: 48px 24px; }

    .newsletter-form {
        flex-direction: column;
        border-radius: 16px;
        gap: 8px;
        border: none;
        background: none;
    }

    .newsletter-form input {
        border: 1px solid var(--border-light);
        border-radius: 100px;
        background: rgba(255,255,255,0.03);
    }

    /* Two link columns rather than one long stack: 14 links stacked single-file
       made the footer taller than the phone screen. Brand spans the full width
       and centres above them; the 3rd column simply starts a new row.
       The grid lives on .container, not .footer-grid, so that .footer-bottom —
       a *sibling* of .footer-grid in the markup — can share it and drop into the
       cell COMPANY leaves empty. display:contents dissolves the .footer-grid box
       so its four children become items of that same grid. Auto-placement then
       gives: brand (row 1, full width), SHOP | HELP (row 2), COMPANY | bottom
       (row 3). No markup change, which matters — this footer is copy-pasted into
       all five pages. */
    .site-footer .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-grid {
        display: contents;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social { justify-content: center; }

    /* now a grid cell beside COMPANY, not a full-width bar: drop the rule, the
       centring and the spacing that only made sense underneath the columns */
    .footer-bottom {
        display: block;
        border-top: 0;
        margin-top: 0;
        padding: 0;
        text-align: left;
    }

    .footer-bottom p {
        margin-bottom: 10px;
    }

    .payment-methods {
        flex-wrap: wrap;
        gap: 6px;
    }

    .payment-methods span {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    .ugc-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .container { padding: 0 20px; }

    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .feature-strip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feature-strip-item { padding: 24px 12px; }

    .page-hero { padding: 130px 0 60px; }

    .contact-map { aspect-ratio: 2/1; }

    .shop-cta-banner { padding: 48px 24px; border-radius: 24px; }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card { border-radius: 14px; }

    .btn-primary { padding: 14px 28px; font-size: 0.72rem; }

    .stat { padding: 24px 12px; border-radius: 16px; }
    .stat-number { font-size: 2rem; }

    .hero-badge { font-size: 0.6rem; padding: 6px 14px; }
    .hero-badge-row { gap: 8px; }

    .review-card { padding: 24px; border-radius: 16px; }
}

/* ========== MOBILE APP EXPERIENCE ========== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {

    /* --- APP SHELL --- */
    html {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none;
    }

    body {
        /* Clears .mobile-bottom-nav, which grows by the safe-area inset on iPhones —
           a flat 72px left the last few px of the footer under the tab bar. */
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        -webkit-font-smoothing: antialiased;
    }

    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* --- BOTTOM TAB BAR (iOS/Android style) --- */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding: 6px 0 2px;
        padding-bottom: env(safe-area-inset-bottom, 6px);
        justify-content: space-around;
        align-items: center;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        text-decoration: none;
        color: #AAAAAA;
        font-family: var(--font-mono);
        font-size: 0.55rem;
        letter-spacing: 0.02rem;
        font-weight: 500;
        padding: 4px 14px;
        transition: color 0.15s ease, transform 0.15s ease;
        position: relative;
    }

    .mobile-nav-item i {
        font-size: 1.3rem;
        line-height: 1;
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-nav-item.active {
        color: var(--red);
    }

    .mobile-nav-item.active i {
        transform: scale(1.1);
    }

    .mobile-nav-item:active i {
        transform: scale(0.85);
    }

    /* --- TOP NAV BAR (clean, minimal) --- */
    .nav-links {
        display: none !important;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        top: 8px;
        border-radius: 14px;
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
    }

    .nav-inner {
        padding: 10px 18px;
    }

    .nav-logo img {
        height: 52px;
    }

    .nav-logo video {
        height: 52px;
        mix-blend-mode: multiply;
    }

    .nav-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

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

    .nav-icons {
        gap: 4px;
    }

    /* --- HOME APP TOP BAR (flush, centered logo) --- */
    .navbar.nav-centered {
        top: 36px;                 /* flush under the announcement bar */
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Home only: the bar rides transparent over the hero art, then materialises
       as the white bar above once main.js adds .scrolled (past 50px). Every
       inner page carries .nav-solid and stays white — it has no hero to sit
       over. Both :not()s are load-bearing: without them this would also strip
       the inner-page bars and the scrolled state back to transparent. */
    .navbar.nav-centered:not(.nav-solid):not(.scrolled) {
        /* !important only to beat the blanket `.navbar { background: … !important }`
           in this same block — specificity alone can't reach past it. */
        background: transparent !important;
        box-shadow: none;
        border-bottom-color: transparent;
    }

    /* White over the artwork — the hero's 150px top scrim is what makes these
       legible, so they only flip while the bar is over the hero. */
    .navbar.nav-centered:not(.nav-solid):not(.scrolled) .nav-icon-btn,
    .navbar.nav-centered:not(.nav-solid):not(.scrolled) .nav-icon-btn:hover {
        color: #fff;
    }
    .navbar.nav-centered .nav-inner {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        padding: 7px 14px;
        max-width: 100%;
    }
    /* logo locked to true center; icons hug the right edge */
    .navbar.nav-centered .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .navbar.nav-centered .nav-logo img { width: 80px; }
    .navbar.nav-centered .nav-icons { margin-left: auto; gap: 2px; }
    /* icons must be dark + visible on the white bar */
    .navbar.nav-centered .nav-icon-btn {
        color: var(--text-primary);
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .navbar.nav-centered .nav-icon-btn:hover { background: transparent; }
    /* wishlist already lives in the bottom tab bar — keep the top bar clean */
    .navbar.nav-centered .nav-icon-btn[aria-label="Wishlist"] { display: none; }

    /* --- SECTIONS: APP SPACING --- */
    section {
        scroll-margin-top: 56px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .section-tag {
        font-size: 0.6rem;
    }

    /* --- HERO: FULL SCREEN APP FEEL --- */
    .hero-slide-content {
        padding: 0 20px;
        padding-top: 60px;
        justify-content: flex-end;
        padding-bottom: 130px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .hero-sub {
        font-size: 0.88rem;
        max-width: 100%;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 5px 12px;
    }

    .hero-badge-row {
        gap: 6px;
        margin-bottom: 16px;
    }

    .hero-cta-row {
        gap: 10px;
    }

    .hero-cta-row .btn-primary {
        font-size: 0.7rem;
        padding: 12px 22px;
    }

    .hero-cta-row .btn-outline {
        font-size: 0.7rem;
        padding: 12px 22px;
    }

    .hero-stats-bar {
        gap: 0;
        padding: 12px 0;
        justify-content: space-around;
    }

    .hero-stat .stat-num {
        font-size: 1.1rem;
    }

    .hero-stat .stat-lbl {
        font-size: 0.6rem;
    }

    .hero-slider-nav {
        bottom: 74px;
    }

    .hero-slider-arrows {
        display: none;
    }

    /* --- PRODUCT CARDS: APP GRID --- */
    .product-card {
        border-radius: 14px;
        overflow: hidden;
    }

    .product-card:active {
        transform: scale(0.97);
        transition: transform 0.15s ease;
    }

    .product-info {
        padding: 10px 10px 14px;
    }

    .product-info h4 {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .product-badge {
        font-size: 0.55rem;
        padding: 4px 8px;
    }

    .wishlist-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    /* Touch devices have no hover, so the slide-up pill has to stay put. It used
       to do that with position:relative — but every other child of .product-img
       is absolute, so that made it the only in-flow child and parked it at the
       TOP of the image, on top of the Sale badge. Pin it bottom-right as a round
       icon button instead: no collision, and a proper 44px tap target. */
    .add-to-bag {
        position: absolute;
        inset: auto 10px 10px auto;
        transform: none;
        padding: 0;
        z-index: 4;
    }

    /* font-size:0 hides the label without touching markup — main.js rewrites this
       button's innerHTML on add ('ADDED! <i class="bi bi-check-lg">') and restores
       it 1.4s later, so anything markup-based would be clobbered. The <i> sets its
       own size, so the bag-plus → check swap keeps working as the confirmation.
       The label stays in the DOM, so screen readers still announce "ADD TO BAG". */
    .btn-add-bag {
        width: 44px;
        height: 44px;
        padding: 0;
        gap: 0;
        border-radius: 50%;
        font-size: 0;
        /* Must be 0, not just inherited: the base 0.08rem is absolute, so it survives
           font-size:0 and gives the hidden label ~14px of width (11 chars x 1.28px).
           That text node is an anonymous flex item, and it pushed the icon off-centre. */
        letter-spacing: 0;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    }

    .btn-add-bag i {
        font-size: 1.15rem;
    }

    /* --- HORIZONTAL SCROLL CARDS (Category Pills) --- */
    .category-pills {
        padding: 12px 0;
    }

    .pills-track {
        padding: 0 16px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .pill {
        font-size: 0.7rem;
        padding: 8px 16px;
        white-space: nowrap;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* Home > Shop earns nothing on a phone: the bottom tab bar already marks where
       you are, and the OS back gesture handles the rest. Scoped to --shop, since
       Contact and Product share the plain .page-hero and keep theirs. */
    .page-hero--shop .breadcrumb {
        display: none;
    }

    /* --- SHOP FILTERS: STICKY --- */
    .shop-filters {
        position: sticky;
        top: 52px;
        z-index: 50;
        background: var(--bg-dark);
        padding: 10px 0;
    }

    .filters-bar {
        flex-direction: column;
        /* stretch, or the base align-items:center would shrink the pill strip to
           its content width and there'd be nothing for overflow-x to scroll in */
        align-items: stretch;
        gap: 10px;
    }

    .filter-group {
        display: flex;
        /* The base sets flex-wrap:wrap. Without this reset the pills wrap to a
           second row instead of overflowing, so overflow-x below has nothing to
           scroll and the whole strip is inert — which is what was happening. */
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        /* bleed past .container's 20px so the strip scrolls edge to edge, while the
           first and last pill still clear the screen edge */
        margin: 0 -20px;
        padding: 0 20px 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        font-size: 0.68rem;
        padding: 8px 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .sort-select {
        font-size: 0.75rem;
        padding: 8px 12px;
        width: 100%;
    }

    /* --- REVIEWS: HORIZONTAL SCROLL --- */
    /* 120px top and bottom is desktop spacing; on a phone it's a dead screenful. */
    .reviews {
        padding: 56px 0;
    }

    .reviews-grid {
        display: flex !important;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        /* A definite basis is the whole fix. With only min-width + flex-shrink:0,
           flex-basis stayed `auto` = max-content — the review on ONE line — and
           shrink:0 forbade it coming back. Each card grew to ~1000px, so you saw
           one giant card running off-screen instead of three swipeable ones.
           76vw leaves the next card peeking, which is what shows it scrolls. */
        flex: 0 0 76vw;
        max-width: 340px;
        min-width: 0;
        scroll-snap-align: start;
        padding: 20px;
        border-radius: 16px;
    }

    /* --- LOOK CARDS: FULL WIDTH STACK --- */
    .look-grid {
        gap: 16px;
    }

    .look-card {
        border-radius: 16px;
    }

    .look-info {
        padding: 20px 16px;
    }

    .look-info h3 {
        font-size: 1.1rem;
    }

    /* --- UGC: SWIPE CAROUSEL ---
       This grid lives outside .container (hence .instagram-ugc .section-header's
       own padding), so it's full-bleed: at 2 columns the tiles ran edge to edge
       with a 3px seam and no breathing room. On phones it becomes a snapping
       swipe strip with real gaps and its own side padding. 62vw leaves the next
       tile peeking, which is what tells you it scrolls. */
    .ugc-grid {
        display: flex;
        gap: 12px;
        margin-top: 28px;
        padding: 0 20px 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px; /* or snapped tiles hide under the padding */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ugc-grid::-webkit-scrollbar {
        display: none;
    }

    .ugc-item {
        /* basis, not min-width: these must not shrink to fit the flex line */
        flex: 0 0 62vw;
        scroll-snap-align: start;
        border-radius: 16px;
    }

    /* --- EDITORIAL BANNER --- */
    .editorial-banner {
        min-height: 50vh;
        border-radius: 0;
    }

    .editorial-content h2 {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }

    /* --- STORY SECTION --- */
    .story-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* --- NEWSLETTER: COMPACT --- */
    .newsletter {
        padding: 64px 0;
    }

    .newsletter-box {
        padding: 36px 20px;
        border-radius: 20px;
    }

    .newsletter-emoji {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .newsletter-box h2 {
        font-size: 1.6rem;
    }

    .newsletter-box p {
        font-size: 0.82rem;
        margin-bottom: 22px;
    }

    .newsletter-form input {
        padding: 12px 18px;
        font-size: 0.82rem;
    }

    .newsletter-form .btn-primary {
        padding: 12px 20px;
        font-size: 0.66rem;
    }

    .newsletter-note {
        margin-top: 12px;
        font-size: 0.68rem;
    }

    /* --- FOOTER: CLEAN MOBILE --- */
    .site-footer {
        padding: 56px 0 24px;
    }

    /* The global reset sets img{display:block}, and a block-level img ignores the
       text-align:center on .footer-brand — it just sits at the left edge while the
       tagline and socials centre fine. Auto margins are what actually centre it. */
    .footer-logo img {
        height: 64px;
        margin: 0 auto;
    }

    .footer-brand p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .footer-col h5 {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    /* inline-block so the vertical padding actually builds a tappable box —
       on an inline <a> it paints but doesn't affect layout, which left these
       links ~13px tall.
       Selector matches the base `.footer-col ul li a` so the font-size lands;
       as `.footer-col li a` it was less specific and silently lost.
       Keep the padding modest: body's unitless line-height:1.65 already gives
       each link a ~22px line box, so 6px a side lands at ~34px — tappable
       without the airy gaps that 10px produced. */
    .footer-col ul li a {
        display: inline-block;
        font-size: 0.82rem;
        padding: 6px 0;
    }

    /* the padding above already spaces the rows */
    .footer-col ul li { margin-bottom: 0; }

    /* --- BUTTONS: BIGGER TOUCH TARGETS --- */
    .btn-primary {
        padding: 14px 24px;
        font-size: 0.72rem;
        min-height: 44px;
    }

    .btn-outline {
        padding: 14px 24px;
        font-size: 0.72rem;
        min-height: 44px;
    }

    /* --- STATS BAR: COMPACT --- */
    .stats-grid {
        gap: 8px;
    }

    .stat {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* --- FEATURE STRIP: 2x2 --- */
    .feature-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .feature-strip-item {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .feature-strip-item h4 {
        font-size: 0.8rem;
    }

    .feature-strip-item p {
        font-size: 0.7rem;
    }

    /* --- FAQ CARDS --- */
    .faq-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .faq-card h4 {
        font-size: 0.9rem;
    }

    .faq-card p {
        font-size: 0.82rem;
    }

    /* --- CONTACT: COMPACT --- */
    .contact-info-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .contact-form-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-control {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    /* --- PAGE HERO: TIGHTER --- */
    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero .section-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .breadcrumb {
        font-size: 0.72rem;
    }

    /* --- DROPS GRID --- */
    .drops-grid {
        gap: 8px;
    }

    .drops-live-badge {
        font-size: 0.65rem;
    }

    /* --- TICKER --- */
    .ticker {
        padding: 12px 0;
    }

    .ticker-content span {
        font-size: 0.65rem;
    }

    /* --- ABOUT PAGE --- */
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero-text .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .about-hero-text .section-subtitle {
        font-size: 0.88rem;
    }

    .mission-content h3 {
        font-size: 1.3rem;
    }

    .mission-content p,
    .mission-content blockquote {
        font-size: 0.88rem;
    }

    .timeline-item h3 {
        font-size: 1rem;
    }

    .timeline-item p {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.82rem;
    }

    /* --- FLOATING BUTTONS ---
       Both sit on the right edge, so they have to be stacked explicitly:
       WhatsApp clears .mobile-bottom-nav (fixed at bottom:0), and back-to-top
       clears WhatsApp (76 + its 50px height + a 10px gap). */
    .whatsapp-float {
        bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    .back-to-top {
        bottom: calc(136px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* --- SMOOTH ACTIVE STATES --- */
    .look-card:active,
    .value-card:active,
    .faq-card:active,
    .stat:active,
    .feature-strip-item:active,
    .team-card:active {
        transform: scale(0.97);
        transition: transform 0.12s ease;
    }

}

/* ============================================
   YOUTH ENERGY — GLITCH, QUIZ, COUNTDOWN,
   CUSTOM CURSOR, NEON BORDERS, FIRST 100
   ============================================ */

/* ---------- CUSTOM CURSOR (disabled — use the normal system cursor) ---------- */

.custom-cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    transform: translate(-50%, -50%);
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px; height: 40px;
    border: 2px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    opacity: 0.4;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    display: none;
}

@media (pointer: fine) {
    .custom-cursor, .cursor-follower { display: none; }
}

body.cursor-active .custom-cursor.hovering {
    width: 50px; height: 50px;
    background: rgba(231, 31, 39, 0.15);
    border: 2px solid var(--red);
    mix-blend-mode: normal;
}

body.cursor-active .cursor-follower.hovering {
    width: 60px; height: 60px;
    opacity: 0;
}

/* ---------- GLITCH TEXT ---------- */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.glitch-text::before {
    color: #0ff;
    animation: glitch1 3s infinite linear alternate-reverse;
    clip-path: inset(0 0 80% 0);
}

.glitch-text::after {
    color: #f0f;
    animation: glitch2 2.5s infinite linear alternate-reverse;
    clip-path: inset(80% 0 0 0);
}

@keyframes glitch1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 2px); }
    40% { transform: translate(3px, -1px); }
    60% { transform: translate(-1px, 3px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch2 {
    0% { transform: translate(0); }
    25% { transform: translate(2px, -3px); }
    50% { transform: translate(-3px, 1px); }
    75% { transform: translate(1px, 2px); }
    100% { transform: translate(0); }
}

/* ---------- DROP COUNTDOWN ---------- */
.drop-countdown {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.countdown-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.countdown-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 64px;
    overflow: hidden;
}

.countdown-inner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 80%; height: 150%;
    background: radial-gradient(circle, rgba(231, 31, 39, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.countdown-title em {
    font-style: normal;
    color: var(--red);
}

.countdown-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.countdown-timer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.countdown-unit {
    text-align: center;
    background: rgba(231, 31, 39, 0.08);
    border: 1px solid var(--border-red);
    border-radius: 16px;
    padding: 20px 16px;
    min-width: 80px;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(231, 31, 39, 0.3);
}

.countdown-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15rem;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red);
    font-weight: 800;
    animation: countdownBlink 1s ease-in-out infinite;
}

@keyframes countdownBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.countdown-cta {
    width: 100%;
    justify-content: center;
}

/* ---------- WEIRD QUIZ ---------- */
.weird-quiz {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.quiz-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(231, 31, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(231, 31, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.quiz-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.quiz-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-red);
}

.quiz-progress {
    position: relative;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--gradient-red);
    border-radius: 3px;
    width: 14.28%;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-progress-text {
    position: absolute;
    right: 0; top: -24px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08rem;
}

.quiz-question {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 28px;
    line-height: 1.3;
    text-transform: lowercase;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    border-color: var(--red);
    background: rgba(231, 31, 39, 0.06);
    color: var(--text-white);
    transform: translateX(6px);
}

.quiz-option.selected {
    border-color: var(--red);
    background: rgba(231, 31, 39, 0.1);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(231, 31, 39, 0.1);
}

/* Quiz Result */
.quiz-result {
    text-align: center;
}

.quiz-result-badge {
    padding: 48px 32px;
    margin-bottom: 32px;
}

.result-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.quiz-result-badge h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

.quiz-result-badge p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto;
}

/* Result tiers */
.quiz-result-badge.tier-normal h3 { color: var(--text-muted); }
.quiz-result-badge.tier-strange h3 { color: #0ea5e9; }
.quiz-result-badge.tier-kalamari h3 {
    color: var(--red);
    text-shadow: 0 0 30px rgba(231, 31, 39, 0.4);
}

.quiz-result-badge.tier-kalamari {
    background: rgba(231, 31, 39, 0.04);
    border-radius: 24px;
    border: 1px solid var(--border-red);
    position: relative;
    overflow: hidden;
}

.quiz-result-badge.tier-kalamari::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: conic-gradient(from 0deg, var(--red), transparent, var(--red), transparent, var(--red));
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

.quiz-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- NEON GLOW PRODUCT CARDS ---------- */
.product-card {
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: conic-gradient(from var(--card-angle, 0deg), transparent 60%, var(--red) 80%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover::before {
    opacity: 1;
    animation: neonSpin 3s linear infinite;
}

@keyframes neonSpin {
    to { --card-angle: 360deg; }
}

@property --card-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* ---------- THE FIRST 100 ---------- */
.first-100 {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.first-100::before {
    content: '';
    position: absolute;
    top: -30%; left: -15%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.first100-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
}

.first100-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 20px;
}

.first100-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.first100-stat {
    text-align: center;
}

.first100-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
    line-height: 1;
}

.first100-num.highlight {
    color: var(--red);
    text-shadow: 0 0 20px rgba(231, 31, 39, 0.3);
}

.first100-lbl {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15rem;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.first100-progress-wrap {
    margin-top: 20px;
}

.first100-progress {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.first100-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.first100-bar::after {
    content: '';
    position: absolute;
    right: 0; top: -2px;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(200, 165, 92, 0.6);
    animation: barPulse 1.5s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(200, 165, 92, 0.6); }
    50% { box-shadow: 0 0 24px rgba(200, 165, 92, 0.9); }
}

.first100-pct {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold);
    display: block;
    text-align: right;
    margin-top: 8px;
}

/* First 100 Card Stack */
.first100-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.first100-card-stack {
    position: relative;
    width: 260px;
    height: 340px;
    perspective: 1000px;
}

.first100-preview-card {
    position: absolute;
    width: 240px;
    height: 320px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.first100-preview-card.c1 {
    background: linear-gradient(145deg, #0A0A0A, #1A1A1A);
    border-color: var(--gold);
    z-index: 3;
    transform: rotate(-3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(200, 165, 92, 0.1);
}

.first100-preview-card.c2 {
    background: linear-gradient(145deg, #111, #1E1E1E);
    border-color: var(--red);
    z-index: 2;
    transform: rotate(4deg) translateX(20px) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.first100-preview-card.c3 {
    background: linear-gradient(145deg, #161616, #222);
    border-color: rgba(255,255,255,0.15);
    z-index: 1;
    transform: rotate(-8deg) translateX(-15px) translateY(15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.first100-card-stack:hover .c1 { transform: rotate(0deg) translateY(-10px); }
.first100-card-stack:hover .c2 { transform: rotate(8deg) translateX(30px) translateY(0); }
.first100-card-stack:hover .c3 { transform: rotate(-12deg) translateX(-25px) translateY(20px); }

.preview-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(200, 165, 92, 0.2);
}

.preview-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3rem;
    color: var(--gold);
    text-transform: uppercase;
}

/* ---------- FLOATING PARTICLES ---------- */
.countdown-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100px) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-200px) scale(1.5); }
}

/* ---------- RESPONSIVE: YOUTH SECTIONS ---------- */
@media (max-width: 991px) {
    .countdown-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    .countdown-sub { margin: 0 auto; }
    .first100-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .first100-visual { order: -1; }
}

@media (max-width: 767px) {
    .drop-countdown { padding: 48px 0; }
    .countdown-inner { padding: 28px 16px; border-radius: 20px; }
    .countdown-title { font-size: 1.6rem; }
    /* The four units share whatever width the card has, instead of demanding it:
       min-width:60px made the timer ~336px, wider than a 390px phone can give,
       and since the 1fr column can't shrink below its min-content that pushed
       the SEC unit and the full-width CTA off the right edge. */
    .countdown-timer { gap: 6px; }
    .countdown-unit { flex: 1 1 0; min-width: 0; padding: 14px 4px; border-radius: 12px; }
    .countdown-num { font-size: clamp(1.3rem, 6vw, 2rem); }
    .countdown-label { font-size: 0.5rem; letter-spacing: 0.04rem; }
    .countdown-sep { font-size: 1.2rem; }

    .weird-quiz { padding: 80px 0; }
    .quiz-container { padding: 28px 20px; border-radius: 20px; }
    .quiz-question { font-size: 1.15rem; }
    .quiz-option { padding: 14px 18px; font-size: 0.88rem; border-radius: 12px; }

    .first-100 { padding: 80px 0; }
    .first100-num { font-size: 2rem; }
    .first100-card-stack { width: 200px; height: 260px; }
    .first100-preview-card { width: 180px; height: 240px; border-radius: 18px; }
    .preview-number { font-size: 2.5rem; }

    .glitch-text::before,
    .glitch-text::after { display: none; }

    .custom-cursor, .cursor-follower { display: none !important; }
}

/* ============================================
   TEE PRODUCT CARDS — front/back hover + click-to-view
   ============================================ */
.product-card[data-product],
.drop-card[data-product] { cursor: pointer; }

/* Tee mockup image treatment */
.product-img.tee {
    background: linear-gradient(160deg, #161616 0%, #0a0a0a 100%);
    aspect-ratio: 1 / 1;
}
.drop-large .product-img.tee { aspect-ratio: 3 / 2; }

.product-img.tee img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-img.tee .tee-back,
.product-img.tee .tee-extra {
    opacity: 0;
    transition: opacity 0.55s var(--ease);
}
.product-card:hover .product-img.tee .tee-back,
.drop-card:hover .product-img.tee .tee-back {
    opacity: 1;
}
/* JS-driven step-through (arrows / mobile auto-flip, see main.js initCardImageNav)
   cycles through every image — front, back, and any gallery shots — and always
   wins over the CSS-only hover-to-back fallback above. */
.product-img.tee img.tee-active { opacity: 1 !important; }
.product-img.tee img.tee-hidden { opacity: 0 !important; }

/* Quick-view hint */
.tee-zoom {
    position: absolute;
    top: 58px; right: 12px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(-6px);
    transition: var(--transition);
    pointer-events: none;
}
.product-card:hover .tee-zoom,
.drop-card:hover .tee-zoom {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRODUCT QUICK-VIEW MODAL
   ============================================ */
.product-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.product-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.product-modal {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    width: min(960px, 100%);
    max-height: 92vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    transform: scale(0.94) translateY(16px);
    transition: transform 0.45s var(--ease);
}
.product-overlay.visible .product-modal {
    transform: scale(1) translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 10;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    color: var(--text-white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}
.product-modal-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

/* Gallery */
.pm-gallery {
    background: linear-gradient(160deg, #161616 0%, #0a0a0a 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pm-main {
    position: relative;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #0b0b0b;
    aspect-ratio: 1 / 1;
}
.pm-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.pm-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--red);
    color: var(--text-white);
}
.pm-thumbs {
    display: flex;
    gap: 10px;
}
.pm-thumb {
    width: 66px; height: 66px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #0b0b0b;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}
.pm-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.pm-thumb.active { border-color: var(--red); }
.pm-thumb:hover { border-color: var(--border-light); }

/* Details */
.pm-details {
    padding: 34px 34px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.pm-collection {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    color: var(--red-light);
}
.pm-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1.1;
    color: var(--text-white);
    margin: 10px 0 12px;
}
.pm-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.pm-stars { color: var(--gold); letter-spacing: 1px; }
.pm-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.pm-price {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}
.pm-stock {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--red-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pm-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.pm-block { margin-bottom: 20px; }
.pm-row-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.pm-color-val { color: var(--text-white); text-transform: none; letter-spacing: 0; }
.pm-row-label a { color: var(--text-secondary); text-decoration: underline; text-transform: none; letter-spacing: 0; }
.pm-row-label a:hover { color: var(--text-white); }

.pm-size-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pm-size {
    flex: 1;
    min-width: 46px;
    padding: 13px 0;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-primary);
    border-radius: 12px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.pm-size:hover { border-color: var(--text-white); }
.pm-size.active {
    background: var(--text-white);
    color: var(--text-dark);
    border-color: var(--text-white);
}
.pm-size-warn {
    display: none;
    color: var(--red-light);
    font-size: 0.74rem;
    margin-top: 10px;
}

.pm-buy-row {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}
.pm-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
}
.pm-qty button {
    width: 44px; height: 52px;
    background: transparent;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}
.pm-qty button:hover { background: var(--bg-surface); }
.pm-qty span {
    min-width: 38px;
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--text-white);
}
.pm-add {
    flex: 1;
    background: var(--red);
    color: var(--text-white);
    border: none;
    border-radius: 14px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.pm-add:hover { background: var(--red-light); box-shadow: var(--shadow-red); }
.pm-wish {
    width: 52px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: transparent;
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.pm-wish:hover { border-color: var(--text-white); }
.pm-wish.active { background: var(--red); border-color: var(--red); }

.pm-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 18px;
    margin-top: auto;
}
.pm-feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.82rem;
}
.pm-feats i { color: var(--green); font-size: 1rem; }

@media (max-width: 820px) {
    .product-overlay { padding: 0; align-items: flex-end; }
    .product-modal {
        grid-template-columns: 1fr;
        width: 100%;
        max-height: 94vh;
        overflow-y: auto;
        border-radius: 24px 24px 0 0;
    }
    .pm-main { aspect-ratio: 4 / 3; }
    .pm-details { padding: 26px 22px 24px; }
    .pm-name { font-size: 1.45rem; }
}

/* ============================================
   LIGHT / EDITORIAL THEME — overrides for spots
   that hardcoded dark or invert on a light palette
   ============================================ */

/* Selection keeps white text on red */
::selection { background: var(--red); color: #fff; }

/* Buttons ---------------------------------- */
/* Dark CTA (was white-on-white) -> ink button */
.btn-dark { background: var(--text-dark); color: #fff; }
.btn-dark:hover { background: var(--red); color: #fff; }

/* Base outline button on light sections */
.btn-outline { border-color: var(--border-light); color: var(--text-white); }
.btn-outline:hover { background: var(--text-dark); color: #fff; border-color: var(--text-dark); }

/* .light outline sits over PHOTOS in hero + editorial — keep white there.
   On light sections (quiz, brand story) make it ink. */
.weird-quiz .btn-outline.light,
.brand-story .btn-outline.light {
    border-color: var(--border-light);
    color: var(--text-white);
}
.weird-quiz .btn-outline.light:hover,
.brand-story .btn-outline.light:hover {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

/* On-photo text must stay light (palette flip turned --text-white dark) */
.editorial-content h2 { color: #fff; }

/* Product badges: white-bg variants -> ink chips */
.product-badge.new,
.product-badge.limited { background: var(--text-dark); color: #fff; }

/* Category pills */
.pill.active { color: #fff; }

/* Stat cards (were faint white-on-dark) */
.stat { background: var(--bg-card); border: 1px solid var(--border-subtle); }

/* Quiz: tracks + options were translucent-white (invisible on light) */
.quiz-progress-bar,
.quiz-progress { background: rgba(22, 19, 15, 0.08); }
.quiz-progress-bar { background: var(--gradient-red); }
.quiz-option { background: var(--bg-surface); }
.quiz-bg-grid { opacity: 0.4; }

/* First-100 progress track */
.first100-progress { background: rgba(22, 19, 15, 0.08); }

/* Newsletter input */
.newsletter-form input { background: var(--bg-surface); }

/* Spin/exit overlays removed from markup — make sure any stray CSS can't show */
.spin-overlay, .exit-overlay, .social-proof-toast { display: none !important; }

/* Product quick-view modal: active size swatch (ink, not white-on-white) */
.pm-size.active { background: var(--text-dark); color: #fff; border-color: var(--text-dark); }

/* Footer logo: art is dark ink — keep it on a light footer (no change needed),
   but ensure the wrapped nav logo box stays crisp on light */
.nav-logo { box-shadow: 0 1px 4px rgba(22,19,15,0.06); }

/* The Drops — all 7 drops in a horizontal scroll-snap carousel
   (bluorng-style latest-drops strip; handles 7 cards cleanly) */
.drops-grid {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 14px 2px 18px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
    -webkit-overflow-scrolling: touch;
}
.drops-grid::-webkit-scrollbar { height: 6px; }
.drops-grid::-webkit-scrollbar-track { background: transparent; }
.drops-grid::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 100px; }
.drops-grid .drop-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
}
.drops-grid .product-img.tee { aspect-ratio: 1 / 1; }
@media (max-width: 600px) {
    .drops-grid { grid-template-columns: none; }
    .drops-grid .drop-card { flex-basis: 80%; }
}

/* ============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================ */
.pdp { padding: 120px 0 80px; }
.pdp .breadcrumb { margin-bottom: 30px; }

.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

/* Gallery */
.pdp-gallery { position: sticky; top: 96px; display: flex; flex-direction: row-reverse; align-items: flex-start; gap: 14px; }
.pdp-gallery > .pdp-main { flex: 1; min-width: 0; }
.pdp-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, #161616 0%, #0a0a0a 100%);
    border: 1px solid var(--border-subtle);
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pdp-main .product-badge { top: 16px; left: 16px; }

.pdp-thumbs { display: flex; flex-direction: column; gap: 10px; width: 80px; flex-shrink: 0; max-height: calc(100vh - 130px); overflow-y: auto; }
.pdp-thumb {
    width: 80px; height: 80px; flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(160deg, #161616 0%, #0a0a0a 100%);
    padding: 0; cursor: pointer;
    transition: var(--transition);
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--red); }
.pdp-thumb:hover { border-color: var(--border-light); }

/* Info */
.pdp-info { padding-top: 6px; }
.pdp-name { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; color: var(--text-white); margin: 12px 0 14px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 0.85rem; color: var(--text-secondary); }
.pdp-stars { color: var(--gold); letter-spacing: 1px; }
.pdp-price-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pdp-price { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 700; color: var(--text-white); }
.pdp-stock { font-family: var(--font-mono); font-size: 0.8rem; color: var(--red-light); display: flex; align-items: center; gap: 6px; }
.pdp-desc { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.75; margin-bottom: 26px; max-width: 52ch; }
.pdp-block { margin-bottom: 22px; }
.pdp-label { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08rem; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 12px; }
.pdp-color-val { color: var(--text-white); text-transform: none; letter-spacing: 0; }
.pdp-label a { color: var(--text-secondary); text-decoration: underline; text-transform: none; letter-spacing: 0; }
.pdp-label a:hover { color: var(--text-white); }

.pdp-size-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-size { flex: 1; min-width: 54px; padding: 14px 0; border: 1px solid var(--border-light); background: var(--bg-card); color: var(--text-primary); border-radius: 12px; font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.pdp-size:hover { border-color: var(--text-white); }
.pdp-size.active { background: var(--text-white); color: var(--bg-card); border-color: var(--text-white); }
.pdp-size-warn { display: none; color: var(--red-light); font-size: 0.76rem; margin-top: 10px; }

.pdp-buy-row { display: flex; gap: 12px; margin-bottom: 26px; }
.pdp-qty { display: flex; align-items: center; border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; background: var(--bg-card); }
.pdp-qty button { width: 46px; height: 54px; background: transparent; color: var(--text-white); font-size: 1.25rem; cursor: pointer; transition: var(--transition); border: none; }
.pdp-qty button:hover { background: var(--bg-surface); }
.pdp-qty span { min-width: 40px; text-align: center; font-family: var(--font-mono); font-weight: 700; color: var(--text-white); }
.pdp-add { flex: 1; background: var(--red); color: #fff; border: none; border-radius: 14px; font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); }
.pdp-add:hover { background: var(--red-dark); box-shadow: var(--shadow-red); }
.pdp-wish { width: 54px; border: 1px solid var(--border-light); border-radius: 14px; background: var(--bg-card); color: var(--text-white); font-size: 1.15rem; cursor: pointer; transition: var(--transition); }
.pdp-wish:hover { border-color: var(--text-white); }
.pdp-wish.active { background: var(--red); border-color: var(--red); color: #fff; }

.pdp-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--border-subtle); padding-top: 22px; }
.pdp-feats li { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.86rem; }
.pdp-feats i { color: var(--green); font-size: 1.05rem; }

/* PDP info accordion (spec / wash care / shipping / returns) */
.pdp-accordion { margin-top: 26px; border-top: 1px solid var(--border-subtle); }
.pdp-acc-item { border-bottom: 1px solid var(--border-subtle); }
.pdp-acc-item summary { list-style: none; cursor: pointer; padding: 16px 2px; font-family: var(--font-display, inherit); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-primary); display: flex; align-items: center; justify-content: space-between; }
.pdp-acc-item summary::-webkit-details-marker { display: none; }
.pdp-acc-item summary::after { content: "+"; font-size: 1.25rem; font-weight: 400; line-height: 1; color: var(--red); transition: transform 0.25s ease; }
.pdp-acc-item[open] summary::after { content: "\2212"; }
.pdp-acc-item ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pdp-acc-item ul li { position: relative; padding-left: 18px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.pdp-acc-item ul li::before { content: ""; position: absolute; left: 2px; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.pdp-acc-soon { color: var(--text-secondary); font-size: 0.9rem; margin: 0 0 18px; font-style: italic; opacity: 0.75; }

/* Related */
.pdp-related { margin-top: 90px; }

@media (max-width: 860px) {
    .pdp { padding: 100px 0 60px; }
    .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
    .pdp-gallery { position: static; top: auto; flex-direction: column; }
    .pdp-thumbs { flex-direction: row; width: auto; max-height: none; overflow: visible; flex-wrap: wrap; }
    .pdp-related { margin-top: 60px; }
}

/* ---- Interactive layered design stage ---- */
.pdp-main.has-design {
    background: #fff;
    aspect-ratio: 1198 / 1685;
    overflow: visible;
    border: 1px solid var(--border-subtle);
}
.pdp-stage { position: absolute; inset: 0; }
.pdp-design-base,
.pdp-flyer {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
}
.pdp-design-base { z-index: 0; pointer-events: none; }
.pdp-flyer {
    z-index: 1;
    cursor: pointer;
    transform-origin: 58% 52%;
    will-change: transform, opacity;
}
.pdp-stage:not(.played) .pdp-flyer { animation: pdpGlow 3s ease-in-out infinite; }
.pdp-flyer:hover { filter: drop-shadow(0 12px 24px rgba(10, 72, 240, 0.45)); }
@keyframes pdpGlow {
    0%, 100% { filter: drop-shadow(0 6px 14px rgba(10, 72, 240, 0.16)); }
    50%      { filter: drop-shadow(0 12px 24px rgba(10, 72, 240, 0.42)); }
}

.pdp-stage-hint {
    position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
    z-index: 2;
    background: rgba(22, 21, 105, 0.92); color: #fff;
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04rem;
    padding: 8px 15px; border-radius: 100px;
    display: inline-flex; align-items: center; gap: 7px;
    pointer-events: none; white-space: nowrap;
    box-shadow: var(--shadow-md);
    transition: opacity 0.4s var(--ease);
}
.pdp-stage.played .pdp-stage-hint { opacity: 0; }

.pdp-stage-reset {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    background: rgba(22, 21, 105, 0.92); color: #fff; border: none;
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04rem;
    padding: 9px 15px; border-radius: 100px;
    display: none; align-items: center; gap: 7px; cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.pdp-stage-reset:hover { background: var(--red); }
.pdp-stage.played .pdp-stage-reset { display: inline-flex; }

/* ---- Cursor-driven disassemble stage ---- */
.pdp-disasm { cursor: crosshair; }
.pdp-disasm-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pdp-disasm-svg svg { width: 100%; height: 100%; display: block; }

/* ---- Click-to-dismantle layered stage ---- */
.pdp-dismantle { cursor: pointer; }
.pdp-text-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.pdp-layer {
    position: absolute;
    display: block;
    object-fit: contain;
    will-change: transform, opacity, filter;
    -webkit-user-drag: none;
    user-select: none;
}
/* let pieces leave the frame and recede into the page when dismantled */
.pdp-dismantle { overflow: visible; }
.pdp-main.has-design { overflow: visible; }
.pdp-thumb-print {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1b1a6b 0%, #0a0a0a 100%);
    color: #fff;
    font-size: 1.2rem;
}

/* ============================================
   FLOATING CART (bottom-center pill that grows into the panel)
   ============================================ */
.fc-scrim {
    position: fixed; inset: 0; z-index: 1199;
    background: rgba(10, 8, 6, 0.28);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.fc-scrim.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* the wrap only centers — keeping translateX off the resizable/bump element
   below means GSAP can scale-bump it without clobbering the centering */
.floating-cart-wrap {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 1200;
    transform: translateX(-50%);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.floating-cart-wrap.visible { opacity: 1; visibility: visible; pointer-events: auto; }

.floating-cart {
    width: 216px;
    max-width: 88vw;
    background: var(--red);
    border-radius: 100px;
    box-shadow: var(--shadow-red), 0 12px 32px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.4s ease, box-shadow 0.5s ease;
    animation: fcGlow 2.6s ease-in-out infinite;
}
.floating-cart.open {
    width: min(88vw, 420px);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
    animation: none;
}
.floating-cart.fc-bump { animation: fcGlow 2.6s ease-in-out infinite, fcBump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.floating-cart.open.fc-bump { animation: fcBump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes fcGlow {
    0%, 100% { box-shadow: var(--shadow-red), 0 12px 32px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(231, 31, 39, 0.45); }
    50% { box-shadow: var(--shadow-red), 0 12px 32px rgba(0, 0, 0, 0.22), 0 0 0 12px rgba(231, 31, 39, 0); }
}
@keyframes fcBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.fc-pill-row {
    display: flex; align-items: center; gap: 10px;
    width: 100%; border: none; background: transparent; color: #fff; cursor: pointer;
    padding: 13px 20px 13px 10px;
    font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.03rem; white-space: nowrap;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, padding 0.4s ease;
}
.floating-cart.open .fc-pill-row {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
}
.fc-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.fc-count {
    background: #fff; color: var(--red); flex-shrink: 0;
    min-width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.66rem; padding: 0 5px;
}
.fc-arrow { font-size: 0.7rem; opacity: 0.85; margin-left: auto; }

.fc-panel {
    display: flex; flex-direction: column;
    max-height: 0; opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.floating-cart.open .fc-panel { max-height: min(74vh, 620px); opacity: 1; transition-delay: 0.05s; }

@media (max-width: 767px) {
    /* clears the fixed bottom tab bar (72px + safe area) */
    .floating-cart-wrap { bottom: calc(72px + env(safe-area-inset-bottom, 6px) + 12px); }

    /* On phones, 88vw/74vh reads as a full-screen takeover with barely any page
       visible around it. Pin the open panel to a fixed side margin and a shorter
       max-height instead, so it stays a contained bottom sheet with the dimmed
       page (and its scrim) clearly showing above and beside it. */
    .floating-cart.open {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }
    .floating-cart.open .fc-panel { max-height: 56vh; }
    .floating-cart .cart-head { padding: 18px 18px 10px; }
    .floating-cart .cart-body { padding: 4px 18px; }
    .floating-cart .cart-foot { padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 380px) {
    .floating-cart.open .fc-panel { max-height: 50vh; }
}

.cart-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px; border-bottom: 1px solid rgba(0, 0, 0, 0.07); flex-shrink: 0;
}
.cart-head h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; margin: 0; letter-spacing: 0.02em; }
.cart-close { font-size: 1.7rem; line-height: 1; color: var(--text-primary); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-close:hover { background: rgba(0, 0, 0, 0.06); color: var(--red); }
.cart-body { flex: 1; overflow-y: auto; padding: 6px 24px; }
.cart-empty { text-align: center; padding: 64px 20px; color: var(--text-secondary); }
.cart-empty i { font-size: 2.4rem; color: rgba(0, 0, 0, 0.16); display: block; margin-bottom: 14px; }
.cart-empty .btn-primary { margin-top: 20px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.cart-item-img { width: 64px; height: 78px; border-radius: 10px; object-fit: cover; background: #f2efe9; }
.cart-item-mid { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.92rem; color: var(--text-primary); line-height: 1.25; }
.cart-item-size { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1rem; text-transform: uppercase; color: var(--text-secondary); }
.cart-item-price { font-weight: 700; font-size: 0.9rem; color: var(--red); margin-top: 1px; }
.cart-qty { display: inline-flex; align-items: center; margin-top: 7px; border: 1px solid rgba(0, 0, 0, 0.13); border-radius: 100px; width: max-content; }
.cart-qty button { width: 28px; height: 26px; font-size: 1rem; color: var(--text-primary); display: flex; align-items: center; justify-content: center; }
.cart-qty button:hover { color: var(--red); }
.cart-qty span { min-width: 26px; text-align: center; font-size: 0.8rem; font-weight: 700; }
.cart-item-right { display: flex; align-items: flex-start; justify-content: flex-end; }
.cart-remove { color: var(--text-muted); font-size: 0.9rem; padding: 4px; transition: var(--transition); }
.cart-remove:hover { color: var(--red); transform: scale(1.12); }
.cart-foot { padding: 20px 24px; padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid rgba(0, 0, 0, 0.08); flex-shrink: 0; }
.cart-foot.is-empty { display: none; }
.cart-sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.cart-sub span:first-child { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12rem; text-transform: uppercase; color: var(--text-secondary); }
.cart-sub-amt { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: var(--text-primary); }
.cart-ship { font-size: 0.72rem; color: var(--text-muted); margin: 0 0 14px; }
.cart-checkout { width: 100%; background: var(--red); color: #fff; font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.12rem; padding: 15px; border-radius: 100px; text-transform: uppercase; font-size: 0.78rem; transition: var(--transition); box-shadow: var(--shadow-red); cursor: pointer; }
.cart-checkout:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cart-checkout:disabled { opacity: 0.85; cursor: default; transform: none; }
body.cart-open { overflow: hidden; }
@media (max-width: 480px) { .cart-item-img { width: 56px; height: 68px; } }

/* ============================================
   ADD TO BAG: success morph + fly-to-cart
   ============================================ */
.btn-add-bag,
.pdp-add {
    position: relative;
    overflow: hidden;
}
.btn-add-bag.is-added,
.pdp-add.is-added {
    background: linear-gradient(135deg, #22C55E, #16A34A) !important;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}
.btn-add-bag.is-added i,
.pdp-add.is-added i { display: inline-block; animation: addCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes addCheckPop {
    0% { transform: scale(0) rotate(-90deg); opacity: 0; }
    60% { transform: scale(1.25) rotate(8deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}

.fly-to-cart {
    position: fixed;
    z-index: 1400;
    border-radius: 10px;
    overflow: hidden;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    will-change: transform, opacity;
}
.fly-to-cart img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================
   FLOATING CART: item enter/leave + qty pulse
   ============================================ */
.cart-item { transition: opacity 0.26s ease, transform 0.26s ease; }
.cart-item.cart-item--leaving { opacity: 0; transform: translateX(24px); }
.cart-item.cart-item--new { animation: cartItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes cartItemIn {
    from { opacity: 0; transform: translateX(28px) scale(0.97); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
.cart-qty span.qty-pulse { display: inline-block; animation: qtyPulse 0.35s ease; }
@keyframes qtyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); color: var(--red); }
    100% { transform: scale(1); }
}

/* PDP model gallery — portrait fit so full-body photoshoot images show head-to-toe */
.pdp-main.pdp-main--model { aspect-ratio: 4 / 5; background: #e9e6e1; }
.pdp-main--model #pdpMainImg { object-position: center top; }
/* flat tee mockup view: show the whole tee (contain) on its dark studio bg */
.pdp-main--model:has(#pdpMainImg.pdp-img-contain) { background: linear-gradient(160deg, #161616 0%, #0a0a0a 100%); }
.pdp-main--model #pdpMainImg.pdp-img-contain { object-fit: contain; object-position: center; }

/* ============================================
   PDP IMAGE ZOOM
   In-frame magnifier (desktop hover) + click/tap
   fullscreen lightbox with a second zoom level.
   Scoped to #pdpMainImg so interactive design
   stages are never affected.
   ============================================ */
.pdp-main.pdp-zoomable:not(.has-design) { cursor: zoom-in; }
.pdp-main.pdp-zoomable > #pdpMainImg { transition: transform 0.18s ease; will-change: transform; }
.pdp-main.pdp-zoomable.is-zooming > #pdpMainImg { transform: scale(2.3); }

.pdp-zoom-hint {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 100px;
    background: rgba(15, 15, 15, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--font-mono, monospace);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.pdp-main.is-zooming .pdp-zoom-hint { opacity: 0; }
.pdp-main.has-design .pdp-zoom-hint { display: none; }
/* touch: show grab cursor while zoomed in place */
.pdp-main.pdp-zoomable.is-zooming:not(.has-design) { cursor: zoom-out; }

/* ---- PDP colourway swatches ---- */
.pdp-swatches { display: flex; align-items: center; gap: 11px; margin-top: 14px; }
.pdp-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sw, #999);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.18s var(--ease, ease), box-shadow 0.18s ease;
}
.pdp-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22);
}
.pdp-swatch.active {
    box-shadow: 0 0 0 2px var(--bg-dark, #F7F5F1), 0 0 0 4px var(--text-primary, #1F1B16);
}
.pdp-swatch:focus-visible { outline: none; }
/* the scroll-reveal clips its block to the border box (animations.css) — that cropped the
   active swatch ring, which sits just outside the dot. Exempt the colour block from the clip. */
.pdp-block[data-reveal].is-in:has(.pdp-swatches) { clip-path: none !important; }

/* ============================================
   MOST WANTED — best-sellers showcase
   Reference-style: edge-to-edge colour tiles + white "Sale" pill.
   Scoped to #best-sellers so shop/product pages are untouched.
   ============================================ */
/* premium white section (was cream) */
.best-sellers { background: #FFFFFF; }
.best-sellers::before {
    background: linear-gradient(to bottom, var(--bg-dark), #FFFFFF);
}

/* heading gets a small page gutter */
.best-sellers .bs-head {
    padding: 0 clamp(20px, 4vw, 56px);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* heading actions: slider arrows + view all */
.best-sellers .bs-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mw-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.mw-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}
.mw-arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
    box-shadow: none;
}

/* 4-per-row grid, wraps to the next line */
.best-sellers .mw-carousel { position: relative; }
.best-sellers .product-grid--bleed.mw-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 22px;
    width: 100%;
    margin: 0;
    padding: 6px clamp(20px, 4vw, 56px);
    overflow: visible;
}

.best-sellers .mw-track .product-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(22, 19, 15, 0.08);
}
.best-sellers .mw-track .product-card:hover {
    box-shadow: 0 18px 44px rgba(22, 19, 15, 0.14);
    transform: translateY(-4px);
}

.best-sellers .product-card {
    position: relative;
    background: #fff;
    border: none;
    border-radius: 0;
    transition: transform 0.5s var(--ease);
}
.best-sellers .product-card::before { display: none; }   /* kill neon-spin border */
.best-sellers .product-card:hover { z-index: 2; }

/* clean dark tee tile — no colour tint */
.best-sellers .product-img.tee {
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, #17140f 0%, #0a0a0a 100%);
    border-radius: 0;
}
.best-sellers .product-img.tee img { object-fit: cover; }

/* strip the busy overlay controls for the clean reference look */
.best-sellers .wishlist-btn,
.best-sellers .tee-zoom,
.best-sellers .stock-counter { display: none; }

/* white "Sale" pill, top-right */
.best-sellers .product-badge {
    top: 16px;
    right: 16px;
    left: auto;
    background: #fff;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 7px 18px;
    border-radius: 100px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
    z-index: 4;
}

/* clean white info below each tile */
.best-sellers .product-info {
    background: #fff;
    padding: 16px 16px 18px;
    text-align: left;
}
.best-sellers .product-info h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #16130f;
    margin-bottom: 7px;
}
.best-sellers .product-price-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.best-sellers .product-price {
    color: #16130f;
    font-size: 1rem;
    font-weight: 700;
}
.best-sellers .product-price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.best-sellers .add-to-bag { padding: 14px; }
.best-sellers .btn-add-bag { border-radius: 12px; }

/* in-card image arrows — step through front / back / gallery (see main.js) */
.best-sellers .product-img.tee .tee-back,
.best-sellers .product-img.tee .tee-extra {
    transition: opacity 0.45s var(--ease);
}

.card-img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    color: #16130f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 5;
    opacity: 0.55;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
    transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
}
.card-img-nav.prev { left: 12px; }
.card-img-nav.next { right: 12px; }
.best-sellers .product-card:hover .card-img-nav { opacity: 1; }
.card-img-nav:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.card-img-nav:active { transform: translateY(-50%) scale(0.94); }
/* touch devices have no hover — keep arrows visible */
@media (hover: none) {
    .card-img-nav { opacity: 0.9; }
}

/* responsive — 4 → 3 → 2 columns */
@media (max-width: 1100px) {
    .best-sellers .product-grid--bleed.mw-track { grid-template-columns: repeat(3, 1fr); }
    .best-sellers .bs-head { padding: 0 clamp(16px, 4vw, 32px); }
    .best-sellers .product-grid--bleed.mw-track { padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px); }
}
@media (max-width: 760px) {
    /* 100px/120px is desktop breathing room; on a phone it reads as a dead gap
       above the heading, on top of the countdown's own 48px below it. */
    .best-sellers { padding: 56px 0 72px; }
    /* the dark->white fade must stay inside the padding, or it bleeds onto the cards */
    .best-sellers::before { height: 64px; }
    .best-sellers .bs-head { margin-bottom: 20px; }

    /* minmax(0, 1fr), not 1fr: `1fr` means minmax(auto, 1fr) and `auto` floors at
       min-content, so the nowrap price row (~144px) stopped the columns shrinking
       and the grid overflowed the viewport, clipping the right card on ~320px
       phones. minmax(0, ...) lets the track win instead of the content. */
    .best-sellers .product-grid--bleed.mw-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }
    .best-sellers .product-info { padding: 12px 12px 14px; }
    .best-sellers .product-info h4 { font-size: 0.98rem; }
    /* and let the prices wrap, so the freed-up column can't clip them instead */
    .best-sellers .product-price-group { flex-wrap: wrap; gap: 2px 8px; }
    .best-sellers .product-badge { top: 12px; right: 12px; padding: 6px 15px; font-size: 0.76rem; }
}

/* The desktop best-sellers look sets padding/radius at (0,2,0), which outranks the
   round-button rules in the 767px block above — restate them here at the same
   specificity so the compact + wins. 767 to match that block, not the 760 above. */
@media (max-width: 767px) {
    .best-sellers .add-to-bag { padding: 0; }
    .best-sellers .btn-add-bag { border-radius: 50%; }

    /* Front/back is cycled by the auto-flip timer in main.js on phones, so the
       arrows are redundant clutter over an already-small card. Kept in the DOM
       (not removed) so resizing back to desktop restores them instantly. */
    .card-img-nav { display: none; }
}

/* ============================================
   SHOP FILTER DRAWER (mobile only)
   The phone header's left cell is free (.nav-links and .nav-hamburger are both
   display:none there), so a trigger goes in it and the sticky filter bar becomes
   an off-canvas panel. It reuses the SAME .filters-bar markup rather than
   duplicating it, so initFilterButtons() keeps working untouched.
   Lives at the end of the file deliberately: it has to outrank the sticky-bar
   and horizontal-pill-strip rules in the 767px blocks above.
   ============================================ */
.shop-filter-toggle,
.filters-head,
.shop-filter-backdrop,
.sort-list { display: none; } /* .sort-list is built by JS on every page width */

@media (max-width: 767px) {
    /* Absolute, never a grid child — .nav-centered .nav-inner is `1fr auto 1fr`
       for exactly three items and a fourth would wrap to a new row. .navbar is
       position:fixed, so it is this button's containing block. */
    .shop-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        padding: 0;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: var(--text-primary);
        font-size: 1.15rem;
        cursor: pointer;
        z-index: 2;
    }
    .shop-filter-toggle:active { background: rgba(0, 0, 0, 0.06); }

    /* sticky inline bar -> off-canvas panel */
    .shop-filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(84vw, 320px);
        z-index: 1201;
        transform: translateX(-100%);
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        padding: 20px 0 calc(20px + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-bottom: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 12px 0 44px rgba(0, 0, 0, 0.2);
    }
    .shop-filters.open { transform: translateX(0); }

    .filters-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }
    .filters-head h3 {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 800;
        margin: 0;
        color: var(--text-primary);
    }
    .filters-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        background: transparent;
        color: var(--text-primary);
        font-size: 1rem;
        cursor: pointer;
    }
    .filters-close:active { background: rgba(0, 0, 0, 0.06); }

    /* undo the horizontal swipe strip — in a drawer these read as a list */
    .filter-group {
        flex-direction: column;
        flex-wrap: nowrap;
        overflow: visible;
        margin: 0;
        padding: 0;
        gap: 6px;
    }
    .filter-btn {
        width: 100%;
        text-align: left;
        font-size: 0.85rem;
        padding: 12px 16px;
        border-radius: 10px;
        white-space: normal;
    }
    /* the OS-drawn dropdown can't be contained — buttons take over here */
    .sort-select { display: none; }

    .sort-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--border-subtle);
    }

    .sort-opt {
        width: 100%;
        text-align: left;
        font-family: var(--font-mono);
        font-size: 0.85rem;
        font-weight: 500;
        padding: 12px 16px;
        border: 1.5px solid var(--border-light);
        border-radius: 10px;
        background: transparent;
        color: var(--text-secondary);
        cursor: pointer;
        transition: var(--transition);
    }

    .sort-opt.active {
        background: var(--red);
        color: var(--text-white);
        border-color: transparent;
    }

    .shop-filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1200;
        background: rgba(10, 8, 6, 0.5);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .shop-filter-backdrop.open { opacity: 1; visibility: visible; }
}

/* ============================================
   CART: BOTTOM NAV ON PHONES
   The cart moves out of the header and into the tab bar. No JS needed — the
   open handler is delegated on .cart-btn (main.js) and syncBadge() writes
   data-count to every .cart-btn, so the class alone wires up both.
   ============================================ */
/* A red "0" on a fresh cart is noise; it was tolerable on one header icon but
   the tab bar shows it on every page. Hide the badge until there's something in it. */
.cart-btn[data-count="0"]::after { display: none; }

@media (max-width: 767px) {
    /* Scoped to .nav-icons — a bare .cart-btn would also hit the new tab. */
    .nav-icons .cart-btn { display: none; }

    /* the tab is a <button>, the others are <a>: strip the UA chrome */
    .mobile-bottom-nav .cart-btn {
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 0.55rem; /* buttons don't inherit font-size */
        letter-spacing: 0.02rem;
        font-weight: 500;
    }

    /* .mobile-nav-item is position:relative, so the badge anchors to the tab.
       Nudged in from the header's top/right 4px to sit on the icon, not the label. */
    .mobile-bottom-nav .cart-btn::after {
        top: 0;
        right: 8px;
        width: 15px;
        height: 15px;
    }
}

/* ============================================
   PRIVACY POLICY / LEGAL PAGE
   ============================================ */
.policy-section {
    padding: 80px 0 120px;
    background: var(--bg-dark);
}

.policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

/* jump links ride along on desktop; 90px clears the fixed navbar */
.policy-toc {
    position: sticky;
    top: 90px;
}
.policy-toc h5 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.policy-toc ul { list-style: none; }
.policy-toc li { margin-bottom: 2px; }
.policy-toc a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 7px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: var(--transition);
}
.policy-toc a:hover {
    color: var(--red);
    background: rgba(231, 31, 39, 0.06);
    border-left-color: var(--red);
}

.policy-updated {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.policy-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-bottom: 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

/* scroll-margin so a jump link doesn't park the heading under the fixed navbar */
.policy-block {
    padding-top: 36px;
    scroll-margin-top: 90px;
}
.policy-block h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.policy-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
}
.policy-block p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.policy-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.policy-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 10px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    transition: var(--transition);
}
.policy-contact a:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(231, 31, 39, 0.06);
}

@media (max-width: 991px) {
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    /* one column now — sticky would pin it over the text it links to */
    .policy-toc {
        position: static;
        padding: 18px 20px;
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        background: var(--bg-card);
    }
    /* horizontal chip strip instead of a tall list eating the first screen */
    .policy-toc ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        margin: 0 -20px;
        padding: 0 20px;
        scrollbar-width: none;
    }
    .policy-toc ul::-webkit-scrollbar { display: none; }
    .policy-toc li { margin-bottom: 0; }
    .policy-toc a {
        white-space: nowrap;
        border: 1px solid var(--border-light);
        border-left: 1px solid var(--border-light);
        border-radius: 100px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    .policy-toc a:hover { border-left-color: var(--red); }
}

@media (max-width: 767px) {
    .policy-section { padding: 40px 0 72px; }
    .policy-intro { font-size: 0.92rem; }
    .policy-block { padding-top: 28px; }
    .policy-block h2 { font-size: 1.12rem; }
    .policy-block p { font-size: 0.88rem; }
    .policy-contact a { flex: 1 1 auto; justify-content: center; }
}
