/* ============================================================
   ASTRALUX — Main Stylesheet
   Tesla Skate-inspired underground streetwear aesthetic
   Mobile-first / Dark mode base
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
    --bg:          #0d0d0d;
    --bg2:         #141414;
    --bg3:         #1c1c1c;
    --surface:     #202020;
    --border:      #2a2a2a;
    --white:       #f0ece4;
    --grey:        #888;
    --grey2:       #555;
    --accent:      #ffffff;
    --accent-glow: rgba(255,255,255,0.12);
    --purple:      #b47fd4;
    --purple-glow: rgba(180,127,212,0.15);
    --danger:      #ff4444;
    --success:     #22c55e;
    --radius:      2px;
    --radius-lg:   4px;
    --gap:         20px;
    --max-w:       1280px;
    --font-head:   'Bebas Neue', 'Barlow Condensed', sans-serif;
    --font-sub:    'Barlow Condensed', sans-serif;
    --font-body:   'Barlow', sans-serif;
    --transition:  200ms cubic-bezier(.4,0,.2,1);
    --transition-slow: 400ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.tag {
    display: inline-block;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid currentColor;
    line-height: 1.4;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--grey2); border-radius: 2px; }

/* ════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(13,13,13,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo — base */
.nav-logo, .header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    text-decoration: none;
}
.nav-logo img, .header-logo img {
    height: 48px;
    width: auto;
    display: block;
    margin: 0 auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    object-fit: contain;
    transition: opacity var(--transition);
}
.nav-logo:hover img, .header-logo:hover img { opacity: .75; }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* CTA button in nav */
.nav-cta {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1px solid var(--white);
    color: var(--white);
    transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--white); color: var(--bg); }

/* Mobile hamburger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.nav-burger span:nth-child(2) { width: 70%; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    padding: 40px 24px;
    gap: 32px;
    z-index: 998;
    border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    font-family: var(--font-head);
    font-size: 40px;
    letter-spacing: .04em;
    color: var(--white);
    line-height: 1;
}
.nav-mobile a:hover { color: var(--grey); }

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }

    /* Center logo absolutely so burger-left / lang-right don't push it */
    .nav-inner { position: relative; }
    .nav-logo, .header-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0;
        margin: 0;
    }
    .nav-logo img, .header-logo img {
        height: 48px !important;
        max-height: 52px !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
}

/* ════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
    background: var(--bg);
}

/* Noise grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .35;
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text { padding-block: 60px; }

.hero-eyebrow {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--grey);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(68px, 9vw, 120px);
    line-height: .92;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-title .line-alt {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--grey);
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary CTA button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px 28px;
    background: var(--white);
    color: var(--bg);
    border: 1px solid var(--white);
    transition: background var(--transition), color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    transform: translateX(-101%);
    transition: transform 300ms ease;
}
.btn-primary:hover { color: var(--white); }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey);
    padding: 14px 0;
    border-bottom: 1px solid var(--grey2);
    transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* Hero image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
}
.hero-image-wrap img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,.8));
    transition: transform var(--transition-slow);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50%       { transform: translateY(-18px) rotate(1deg); }
}

/* Decorative grid lines behind hero image */
.hero-grid {
    position: absolute;
    inset: -20px;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .2;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-text { padding-block: 40px 0; order: 2; }
    .hero-image { order: 1; justify-content: center; }
    .hero-image-wrap { max-width: 320px; }
    .hero-title { font-size: clamp(52px, 14vw, 80px); }
}

/* ── Hero marquee ticker ──────────────────────────────────── */
.hero-ticker,
.top-ticker-bar {
    position: sticky;
    top: 68px;
    margin-top: 68px;
    width: 100%;
    z-index: 998;
    background: #f3f0ea !important;
    background-color: #f3f0ea !important;
    color: #111111 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    animation: ticker 20s linear infinite;
}
.ticker-track span {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding-inline: 32px;
    color: #111111 !important;
}
.ticker-track span::before {
    content: '★  ';
    color: #111111 !important;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .hero-ticker,
    .top-ticker-bar {
        top: 64px;
        margin-top: 64px;
    }
}

/* ════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════ */
.trust-strip {
    padding-block: 60px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: border-color var(--transition), background var(--transition);
}
.trust-item:hover {
    border-color: var(--white);
    background: var(--surface);
}
.trust-icon {
    font-size: 28px;
    line-height: 1;
}
.trust-title {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
}
.trust-desc {
    font-size: 13.5px;
    color: #D1D5DB !important;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   CATALOGUE / PRODUCTS GRID
   ════════════════════════════════════════════════════════════ */
.catalogue {
    padding-block: 80px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 20px;
    flex-wrap: wrap;
}
.section-label {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--grey2);
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .01em;
}

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

/* Product Card */
.product-card {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition);
    cursor: pointer;
}
.product-card:hover { border-color: rgba(255,255,255,.35); }

.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f5f0;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform var(--transition-slow), opacity var(--transition);
    transform-origin: center;
}
.product-card-image .img-main { opacity: 1; }
.product-card-image .img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    padding: 16px;
    object-fit: contain;
}
.product-card:hover .img-main { opacity: 0; transform: scale(1.04); }
.product-card:hover .img-hover { opacity: 1; transform: scale(1.04); }

.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--bg);
    color: var(--white);
    border: 1px solid currentColor;
    z-index: 2;
}

.product-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.product-card-colorway {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
}
.product-card-name {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--white);
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}
.product-card-price {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: .02em;
    color: var(--white);
}
.product-card-price span {
    font-size: 13px;
    color: var(--grey);
    font-weight: 400;
}
.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--bg);
    color: var(--white);
    border: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-view:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--bg);
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT SECTION (index page)
   ════════════════════════════════════════════════════════════ */
.about-strip {
    padding-block: 80px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-quote {
    font-family: var(--font-head);
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: .96;
    text-transform: uppercase;
    letter-spacing: .01em;
    color: var(--white);
}
.about-quote em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}
.about-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-body p { font-size: 15px; color: var(--grey); line-height: 1.75; }
.about-stat {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.about-stat-item {}
.about-stat-num {
    font-family: var(--font-head);
    font-size: 48px;
    line-height: 1;
    color: var(--white);
}
.about-stat-label {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════════════════
   PRODUCT PAGE — GALLERY
   ════════════════════════════════════════════════════════════ */
.product-page {
    padding-top: 64px;
    min-height: 100vh;
}
.product-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 60px;
    padding-block: 60px;
    align-items: start;
}

/* Gallery */
.product-gallery {}
.gallery-main {
    position: relative;
    background: #f2efe8;
    overflow: hidden;
    margin-bottom: 12px;
}
.gallery-main-inner {
    position: relative;
    overflow: hidden;
}
.gallery-main-slides {
    display: flex;
    transition: transform 350ms cubic-bezier(.4,0,.2,1);
}
.gallery-main-slide {
    min-width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.gallery-main-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(13,13,13,.75);
    border: 1px solid var(--border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background var(--transition);
    z-index: 5;
}
.gallery-btn:hover { background: var(--bg); }
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: #f2efe8;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition);
    padding: 4px;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumb.active { border-color: var(--white); }

/* ════════════════════════════════════════════════════════════
   PRODUCT PAGE — INFO PANEL
   ════════════════════════════════════════════════════════════ */
.product-info { position: sticky; top: 84px; }

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-name {
    font-family: var(--font-head);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .01em;
    margin-bottom: 8px;
}
.product-colorway {
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 20px;
}
.product-price {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 36px;
    letter-spacing: .02em;
    color: var(--white);
    margin-bottom: 6px;
}
.product-price-note {
    font-size: 12px;
    color: var(--success);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-price-note::before { content: '✓'; font-weight: 700; }

.product-divider {
    height: 1px;
    background: var(--border);
    margin-block: 24px;
}

/* Size selector */
.size-label {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.size-guide-link {
    font-size: 11px;
    color: var(--grey2);
    border-bottom: 1px solid var(--grey2);
    transition: color var(--transition);
    cursor: pointer;
}
.size-guide-link:hover { color: var(--white); }

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.size-btn {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.size-btn:hover {
    border-color: var(--white);
    background: var(--bg3);
}
.size-btn.selected {
    background: var(--white);
    border-color: var(--white);
    color: var(--bg);
}

/* Specs accordion */
.specs-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 14px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    background: none;
    border-top: none; border-left: none; border-right: none;
}
.specs-toggle .chevron {
    transition: transform var(--transition);
    font-size: 16px;
    color: var(--grey);
}
.specs-toggle.open .chevron { transform: rotate(180deg); }

.specs-body {
    display: none;
    padding-block: 16px;
    border-bottom: 1px solid var(--border);
}
.specs-body.open { display: block; }
.spec-row {
    display: flex;
    gap: 16px;
    padding-block: 6px;
    font-size: 13px;
}
.spec-key {
    flex: 0 0 90px;
    color: var(--grey);
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding-top: 2px;
}
.spec-val { color: var(--white); line-height: 1.5; }

/* Product desc */
.product-desc {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .product-info { position: static; }
}

/* ════════════════════════════════════════════════════════════
   ORDER FORM
   ════════════════════════════════════════════════════════════ */
.order-section {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 32px;
    margin-top: 40px;
}
.order-title {
    font-family: var(--font-head);
    font-size: 28px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.order-subtitle {
    font-size: 13px;
    color: var(--grey);
    margin-bottom: 28px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-label {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
}
.form-control {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 12px 14px;
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}
.form-control:focus { border-color: var(--white); }
.form-control::placeholder { color: var(--grey2); }

/* Select arrow */
.select-wrap {
    position: relative;
}
.select-wrap::after {
    content: '▾';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
    pointer-events: none;
    font-size: 13px;
}
.form-control select, select.form-control {
    padding-right: 36px;
    cursor: pointer;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.order-note {
    font-size: 12px;
    color: var(--grey);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.55;
}
.order-note-icon { font-size: 16px; flex-shrink: 0; }

.btn-order {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 18px 32px;
    background: var(--white);
    color: var(--bg);
    border: 2px solid var(--white);
    transition: background var(--transition), color var(--transition);
    position: relative;
}
.btn-order:hover {
    background: transparent;
    color: var(--white);
}
.btn-order:disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.size-required-msg {
    font-size: 12px;
    color: var(--danger);
    margin-top: -10px;
    margin-bottom: 4px;
    display: none;
}

/* ════════════════════════════════════════════════════════════
   THANK YOU PAGE
   ════════════════════════════════════════════════════════════ */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    background: var(--bg);
}
.thankyou-inner { max-width: 560px; }
.thankyou-icon {
    font-size: 60px;
    margin-bottom: 24px;
    animation: pop .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes pop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.thankyou-title {
    font-family: var(--font-head);
    font-size: clamp(44px, 8vw, 72px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.thankyou-sub {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 40px;
}
.thankyou-order-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
}
.thankyou-order-box h3 {
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 16px;
}
.thankyou-detail {
    display: flex;
    justify-content: space-between;
    padding-block: 8px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.thankyou-detail:last-child { border-bottom: none; }
.thankyou-detail .key { color: var(--grey); }
.thankyou-detail .val { font-weight: 600; }

.thankyou-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 2px solid #25d366;
    transition: background var(--transition), color var(--transition);
    margin-bottom: 16px;
}
.thankyou-whatsapp:hover { background: transparent; color: #25d366; }

.thankyou-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    margin-bottom: 16px;
    text-decoration: none;
}
.thankyou-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    opacity: 0.95;
    color: #fff;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding-block: 56px 32px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
    height: 32px;
    width: auto;
    filter: invert(1);
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--grey);
    transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--white); color: var(--white); }

.footer-col-title {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
    font-size: 13px;
    color: var(--grey);
    transition: color var(--transition);
}
.footer-col-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--grey2);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   MISC / ANIMATIONS
   ════════════════════════════════════════════════════════════ */
/* Fade-in on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Error / flash messages */
.flash {
    padding: 14px 18px;
    font-size: 13px;
    margin-bottom: 16px;
    border: 1px solid;
}
.flash-error { background: rgba(255,68,68,.08); border-color: var(--danger); color: var(--danger); }
.flash-success { background: rgba(34,197,94,.08); border-color: var(--success); color: var(--success); }

/* Page breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey2);
    margin-bottom: 32px;
}
.breadcrumb a { color: var(--grey2); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--grey); }

/* ============================================================
   ASTRALUX — v2 Additions
   Language switcher · Colorway swatches · Logo resize
   Trust strip SVG refactor · RTL support
   ============================================================ */

/* ── Logo — enlarged (v2 override) ─────────────────────── */
.nav-logo img {
    height: 65px !important;   /* desktop — overrides base 65px (same, kept explicit) */
    width: auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: opacity var(--transition);
}
/* Mobile logo size handled by the @media (max-width:768px) block above */

/* ── Nav right cluster ──────────────────────────────────── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .nav-right { display: none; }
}

/* ── Language Switcher ──────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-btn {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey2);
    padding: 2px 0;
    border: none;
    background: none;
    transition: color var(--transition);
    text-decoration: none;
    line-height: 1;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active {
    color: var(--white);
    border-bottom: 1px solid var(--white);
}
.lang-sep {
    font-size: 10px;
    color: var(--grey2);
    line-height: 1;
    padding: 0 1px;
    pointer-events: none;
}

/* Mobile nav lang row */
.nav-mobile-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.nav-mobile-lang .lang-btn {
    font-size: 14px;
    color: var(--grey);
}
.nav-mobile-lang .lang-sep { font-size: 12px; }

/* ── Trust strip — SVG numbered redesign ───────────────── */
.trust-num {
    font-family: var(--font-head);
    font-size: 48px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -.02em;
    margin-bottom: 4px;
    transition: color var(--transition);
}
.trust-item:hover .trust-num { color: rgba(255, 255, 255, 0.3); }

.trust-icon-svg {
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.trust-icon-svg svg { display: block; }

/* Remove old emoji icon rule */
.trust-icon { display: none !important; }

/* ── Colorway / Variant Swatches ────────────────────────── */
.colorway-section {
    margin-bottom: 4px;
}
.colorway-swatches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 4px;
}
.colorway-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition);
}
.colorway-swatch:hover { transform: translateY(-2px); }

.colorway-swatch img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    padding: 6px;
    background: #f2efe8;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.colorway-swatch.active img {
    border-color: var(--white);
    box-shadow: 0 0 0 2px rgba(255,255,255,.25);
}
.colorway-swatch:hover img { border-color: rgba(255,255,255,.5); }

.swatch-label {
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey);
    max-width: 72px;
    text-align: center;
    line-height: 1.3;
    transition: color var(--transition);
}
.colorway-swatch.active .swatch-label { color: var(--white); }

/* ── Size buttons — larger for mobile thumb ─────────────── */
.size-btn {
    width: 56px !important;
    height: 56px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}
@media (max-width: 480px) {
    .size-btn { width: 52px !important; height: 52px !important; }
    .size-grid { gap: 10px; }
}

/* ── Specs chevron — SVG override ───────────────────────── */
.specs-toggle .chevron svg {
    transition: transform var(--transition);
}
.specs-toggle.open .chevron svg {
    transform: rotate(180deg);
}
/* hide the old text chevron if present */
.specs-toggle .chevron { font-size: 0; display: flex; align-items: center; }

/* ── Order note — SVG icon ──────────────────────────────── */
.order-note-icon {
    display: flex;
    align-items: flex-start;
    padding-top: 1px;
    color: var(--grey);
    flex-shrink: 0;
}

/* ── Thank-you icon — SVG ───────────────────────────────── */
.thankyou-icon {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}
.thankyou-icon svg {
    animation: pop .5s cubic-bezier(.175,.885,.32,1.275);
}

/* ── BTN arrow SVG ──────────────────────────────────────── */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── RTL overrides ──────────────────────────────────────── */
[dir="rtl"] .hero-eyebrow::before { display: none; }
[dir="rtl"] .hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--grey);
}
[dir="rtl"] .section-label::before { display: none; }
[dir="rtl"] .section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--grey2);
}
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .hero-inner { direction: rtl; }
[dir="rtl"] .about-inner { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .trust-grid { direction: rtl; }
[dir="rtl"] .product-layout { direction: rtl; }
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }
[dir="rtl"] .size-label { flex-direction: row-reverse; }
[dir="rtl"] .product-card-footer { flex-direction: row-reverse; }
[dir="rtl"] .colorway-swatches { flex-direction: row-reverse; }
[dir="rtl"] .form-row { direction: rtl; }
[dir="rtl"] .order-note { flex-direction: row-reverse; }
[dir="rtl"] .thankyou-order-box { text-align: right; }
[dir="rtl"] .thankyou-detail { flex-direction: row-reverse; }
[dir="rtl"] .about-stat { flex-direction: row-reverse; }

/* Arabic font boost — Arabic text reads better at slightly larger size */
[lang="ar"] body { font-size: 16px; }
[lang="ar"] .nav-links a,
[lang="ar"] .nav-cta,
[lang="ar"] .lang-btn { letter-spacing: 0; }
[lang="ar"] .hero-title { line-height: 1.05; }
[lang="ar"] .trust-title,
[lang="ar"] .section-title,
[lang="ar"] .product-name,
[lang="ar"] .order-title { letter-spacing: 0; }

/* ============================================================
   ASTRALUX — v3 Critical Fixes
   Colorway swatches · Logo size · Nav visibility · Lookbook
   ============================================================ */

/* ── LOGO: Correct final size, force height override ─────── */
.site-header { height: 68px !important; }

.nav-logo img, .header-logo img {
    height: 48px !important;
    width: auto !important;
    max-height: 52px !important;
    max-width: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}
@media (max-width: 768px) {
    .site-header { height: 64px !important; }
}

/* Also push product page / content below new header height */
.product-page { padding-top: 72px !important; }
@media (max-width: 768px) { .product-page { padding-top: 64px !important; } }

/* ── NAV RIGHT: ensure always visible on desktop ─────────── */
/* Override the old rule that hides .nav-cta globally */
@media (min-width: 769px) {
    .nav-links { display: flex !important; }
    .nav-cta   { display: inline-flex !important; align-items: center; }
    .nav-right { display: flex !important; align-items: center; gap: 20px; }
    .nav-burger { display: none !important; }
}
@media (max-width: 768px) {
    .nav-right { display: none !important; }
    .nav-links { display: none !important; }
    .nav-burger { display: flex !important; }
}

/* ── COLORWAY SWATCHES: Compact horizontal row fix ───────── */
/* Full reset of the broken v2 rules */
.colorway-swatches {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    align-items: flex-start !important;
}

.colorway-swatch {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transform: none !important;
    flex-shrink: 0 !important;
}
.colorway-swatch:hover {
    transform: translateY(-1px) !important;
}

/* Compact square swatch image — streetwear style, NOT circle */
.colorway-swatch img {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: cover !important;
    padding: 0 !important;
    border-radius: 2px !important;       /* square, slight corner, skate style */
    background: #1a1a1a !important;
    border: 2px solid var(--border) !important;
    box-shadow: none !important;
    display: block !important;
    transition: border-color 200ms ease !important;
}

/* Active state — white outline */
.colorway-swatch.active img {
    border: 2px solid var(--white) !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,.18) !important;
}

/* Hover on inactive */
.colorway-swatch:not(.active):hover img {
    border-color: rgba(255,255,255,.45) !important;
}

/* Swatch label — tight, mono-spaced feel */
.swatch-label {
    font-family: var(--font-sub) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    color: var(--grey2) !important;
    text-align: center !important;
    line-height: 1.2 !important;
    max-width: 64px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.colorway-swatch.active .swatch-label {
    color: var(--white) !important;
}

/* ── LOOKBOOK SECTION ─────────────────────────────────────── */
.lookbook {
    padding-block: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

/* Full-width cinematic banner — first image */
.lookbook-banner {
    position: relative;
    height: clamp(300px, 55vw, 620px);
    overflow: hidden;
}
.lookbook-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(.75) contrast(1.05);
    transition: transform 8s ease;
}
.lookbook-banner:hover img { transform: scale(1.03); }

.lookbook-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,13,13,.72) 0%,
        rgba(13,13,13,.12) 55%,
        transparent 100%
    );
    display: flex;
    align-items: center;
}
[dir="rtl"] .lookbook-banner-overlay {
    background: linear-gradient(
        to left,
        rgba(13,13,13,.72) 0%,
        rgba(13,13,13,.12) 55%,
        transparent 100%
    );
    justify-content: flex-end;
}

.lookbook-banner-text {
    padding: 0 clamp(24px, 6vw, 80px);
    max-width: 560px;
}
[dir="rtl"] .lookbook-banner-text { text-align: right; }

.lookbook-eyebrow {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lookbook-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.4);
    flex-shrink: 0;
}
[dir="rtl"] .lookbook-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .lookbook-eyebrow::before { display: none; }
[dir="rtl"] .lookbook-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.4);
    flex-shrink: 0;
}

.lookbook-headline {
    font-family: var(--font-head);
    font-size: clamp(40px, 6vw, 80px);
    line-height: .95;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: .01em;
    margin-bottom: 20px;
}
.lookbook-headline .stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.lookbook-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-bottom: 3px;
    transition: border-color 200ms ease, color 200ms ease;
}
.lookbook-cta:hover { border-color: var(--white); }

/* Grid of 3 smaller editorial images */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-top: 2px solid var(--bg);
}
.lookbook-cell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: default;
}
.lookbook-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.72) saturate(.9);
    transition: transform 600ms ease, filter 600ms ease;
}
.lookbook-cell:hover img {
    transform: scale(1.05);
    filter: brightness(.85) saturate(1.05);
}
.lookbook-cell-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(transparent, rgba(13,13,13,.8));
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    pointer-events: none;
}

@media (max-width: 640px) {
    .lookbook-grid { grid-template-columns: 1fr 1fr; }
    .lookbook-grid .lookbook-cell:last-child { display: none; }
}
@media (max-width: 420px) {
    .lookbook-grid { grid-template-columns: 1fr; }
    .lookbook-grid .lookbook-cell:last-child { display: block; }
    .lookbook-grid .lookbook-cell { aspect-ratio: 4/3; }
}

/* ════════════════════════════════════════════════════════════
   PRODUCT PAGE — REDESIGNED COD LAYOUT
   ════════════════════════════════════════════════════════════ */

/* ── Price Block ─────────────────────────────────────────── */
.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 14px 0 10px;
    flex-wrap: wrap;
}
.product-price-current {
    font-family: var(--font-head);
    font-size: 36px;
    letter-spacing: .02em;
    color: var(--white);
    line-height: 1;
}
.product-price-current .price-currency { font-size: 18px; opacity: .7; }
.product-price-compare {
    font-size: 16px;
    color: var(--grey);
    text-decoration: line-through;
    opacity: .6;
}
.product-price-save {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--success);
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.25);
    padding: 2px 7px;
}

/* ── Free Shipping Badge ─────────────────────────────────── */
.product-ship-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--success);
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.2);
    padding: 5px 12px;
    margin-bottom: 16px;
}

/* ── Quantity Stepper ────────────────────────────────────── */
.bundle-section { margin: 0 0 4px; }
.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    margin-bottom: 14px;
    height: 40px;
}
.qty-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: background var(--transition);
}
.qty-btn:hover { background: var(--bg3); }
.qty-display {
    width: 40px;
    text-align: center;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 17px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 40px;
}

/* ── Bundle Cards ────────────────────────────────────────── */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.bundle-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 8px 10px;
    border: 1px solid var(--border);
    background: var(--bg2);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    text-align: center;
}
.bundle-option:hover { border-color: var(--grey2); background: var(--bg3); }
.bundle-option.selected { border-color: var(--accent); background: rgba(255,255,255,.04); }
.bundle-badge {
    position: absolute;
    top: -1px; right: -1px;
    font-family: var(--font-sub);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 2px 5px;
    background: var(--grey2);
    color: var(--white);
    transition: background var(--transition), color var(--transition);
}
.bundle-qty {
    font-family: var(--font-sub);
    font-size: 13px; font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--grey);
}
.bundle-price {
    font-family: var(--font-head);
    font-size: 20px;
    letter-spacing: .02em;
    color: var(--white);
}
.bundle-note { font-size: 10px; color: var(--success); letter-spacing: .04em; text-transform: uppercase; }

/* ── Main COD Button ─────────────────────────────────────── */
.btn-order-cod {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: var(--white);
    color: #0d0d0d;
    font-family: var(--font-head);
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform 80ms;
    margin-bottom: 12px;
}
.btn-order-cod:hover { background: #0d0d0d; color: var(--white); }
.btn-order-cod:active { transform: scale(.99); }

/* ── Trust Micro Strip ───────────────────────────────────── */
.cod-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 6px;
}
.cod-trust-strip span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-sub);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--grey);
}

/* ── Description block below CTA ────────────────────────── */
.product-desc-block { margin: 4px 0 0; }
.product-desc-block .product-desc { font-size: 14px; color: var(--grey); line-height: 1.7; }
/* Rich HTML description rendered from admin */
.product-desc-html { font-size: 14px; color: var(--grey); line-height: 1.8; }
.product-desc-html p { margin-bottom: 12px; }
.product-desc-html img.desc-img,
.product-desc-html img { max-width: 100%; height: auto; display: block; margin: 16px 0; border: 1px solid var(--border); }
.product-desc-html strong, .product-desc-html b { color: var(--white); font-weight: 600; }
.product-desc-html a { color: var(--white); border-bottom: 1px solid var(--grey2); }
.product-desc-html h2, .product-desc-html h3 { font-family: var(--font-sub); font-weight: 700; font-size: 16px; letter-spacing:.04em; text-transform: uppercase; color: var(--white); margin: 18px 0 8px; }
/* COD modal field error state */
.cod-input.field-error { border-color: var(--danger) !important; }
.cod-field-msg { font-size: 11px; color: var(--danger); margin-top: 4px; display: none; }
.cod-field-msg.visible { display: block; }

/* ════════════════════════════════════════════════════════════
   COD MODAL POPUP
   ════════════════════════════════════════════════════════════ */
.cod-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
}
.cod-modal-overlay.open { opacity: 1; pointer-events: all; }
@media (min-width: 600px) { .cod-modal-overlay { align-items: center; } }

.cod-modal {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 96vh;
    overflow-y: auto;
    background: #161616;
    border: 1px solid var(--border);
    border-bottom: none;
    padding: 28px 24px 32px;
    transform: translateY(40px);
    transition: transform 280ms ease;
}
.cod-modal-overlay.open .cod-modal { transform: translateY(0); }
@media (min-width: 600px) { .cod-modal { border-bottom: 1px solid var(--border); } }

.cod-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--grey);
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}
.cod-modal-close:hover { color: var(--white); border-color: var(--grey2); }

.cod-modal-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-right: 40px;
}
.cod-modal-thumb {
    width: 70px; height: 70px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg3);
    border: 1px solid var(--border);
}
.cod-modal-summary-info { flex: 1; min-width: 0; }
.cod-modal-product-name {
    font-family: var(--font-sub);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cod-modal-meta {
    font-size: 12px;
    color: var(--grey);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.modal-dot { opacity: .4; }
.cod-modal-total { font-family: var(--font-head); font-size: 22px; letter-spacing: .03em; margin-top: 6px; }
.cod-modal-divider { height: 1px; background: var(--border); margin: 0 0 22px; }

.cod-form-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.cod-form-group { display: flex; flex-direction: column; gap: 6px; }
.cod-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cod-label {
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
}
.cod-input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
    resize: none;
}
.cod-input:focus { border-color: var(--grey2); }
.cod-input::placeholder { color: var(--grey2); }

.btn-cod-confirm {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    color: #0d0d0d;
    font-family: var(--font-head);
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: opacity var(--transition), transform 80ms;
    margin-bottom: 10px;
}
.btn-cod-confirm:hover { opacity: .88; }
.btn-cod-confirm:disabled { opacity: .5; cursor: not-allowed; }
.cod-modal-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    color: var(--grey);
    text-align: center;
}

/* Out-of-stock variant button */
.size-btn-oos {
    opacity: .38;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}

@media (max-width: 400px) {
    .bundle-grid { grid-template-columns: 1fr 1fr; }
    .bundle-option:last-child { grid-column: 1 / -1; }
    .cod-form-row { grid-template-columns: 1fr; }
}

/* ── Editorial Brand Section (Built for the Concrete) ── */
.editorial-section {
    min-height: auto;
    padding-block: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.editorial-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

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

.editorial-text .hero-title {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
}

.editorial-media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.editorial-sneaker-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
    transition: transform var(--transition);
}

.editorial-media:hover .editorial-sneaker-img {
    transform: scale(1.02);
}

.editorial-overlay {
    display: none;
}

/* Responsive Card Overlay on Mobile (@media (max-width: 768px)) */
@media (max-width: 768px) {
    .editorial-section {
        padding-block: 40px !important;
        min-height: auto !important;
    }

    .editorial-inner {
        position: relative !important;
        min-height: 480px !important;
        overflow: hidden !important;
        border-radius: 8px !important;
        margin: 0 16px !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        border: 1px solid var(--border);
    }

    .editorial-media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        display: block !important;
    }

    .editorial-media .editorial-sneaker-img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        filter: none !important;
    }

    .editorial-overlay {
        display: block !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(to top, rgba(0,0,0,0.92) 15%, rgba(0,0,0,0.4) 60%, transparent 100%) !important;
        z-index: 2 !important;
        pointer-events: none !important;
    }

    .editorial-text {
        position: relative !important;
        z-index: 3 !important;
        padding: 24px 20px !important;
        align-self: flex-end !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .editorial-text .hero-title {
        font-size: clamp(32px, 8vw, 44px) !important;
        margin-bottom: 12px !important;
    }

    .editorial-text .hero-sub {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        color: #D1D5DB !important;
    }
}

/* ════════════════════════════════════════════════════════════
   GLOBAL CONTRAST & SECONDARY TEXT COLOR (#D1D5DB)
   ════════════════════════════════════════════════════════════ */
p, .text-muted, .subtitle, .subtext, .product-description,
.footer-links a, .footer-desc, .benefit-desc, .tagline,
.footer-tagline, .footer-col-links a, .footer-bottom, .footer-bottom span,
.hero-sub, .lookbook-eyebrow, .trust-desc {
    color: #D1D5DB !important;
}

h1, h2, h3, h4, .title-bold, .footer-col-title, .trust-title {
    color: #FFFFFF !important;
}

.footer-col-links a:hover,
.footer-links a:hover,
.footer-social a:hover {
    color: #FFFFFF !important;
}

