﻿/* ============================================================
   X SPOT BOUTIQUE — site.css
   Global stylesheet for shop.x_spot.co.za
   Fonts: Cormorant Garamond (serif) + Montserrat (sans)
   Loaded via Google Fonts in Site.Master <head>
   ============================================================ */

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ───────────────────────────────────────────── */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #8B6E2E;
    --copper: #B5651D;
    --copper-light: #D4824A;
    --black: #0A0A0A;
    --dark1: #111111;
    --dark2: #181818;
    --dark3: #222222;
    --dark4: #2A2A2A;
    --text-primary: #F0EAD6;
    --text-secondary: #A89880;
    --text-muted: #5A4E42;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
    --nav-height: 72px;
    --topbar-height: 38px;
    --max-width: 1400px;
    --page-pad: 3rem;
}

/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--text-primary);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button {
    font-family: var(--sans);
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ─────────────────────────────────────────────
   SCROLLBAR
   ───────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark1);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 2px;
}

/* ─────────────────────────────────────────────
   GRAIN OVERLAY
   ───────────────────────────────────────────── */
.grain-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

/* ─────────────────────────────────────────────
   SITE HEADER — sticky wrapper for top bar + nav
   The header is the sticky element. The nav inside
   it is position:static so it moves with the header.
   ───────────────────────────────────────────── */
#site-header {
    position: sticky;
    top: 0;
    z-index: 500;
}

/* ─────────────────────────────────────────────
   TOP BAR
   ───────────────────────────────────────────── */
.top-bar {
    background: var(--dark2);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    height: var(--topbar-height);
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
}

    .top-bar.hidden {
        height: 0;
        opacity: 0;
        pointer-events: none;
    }

.top-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.top-bar-msg {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.top-bar-close {
    position: absolute;
    right: var(--page-pad);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}

    .top-bar-close:hover {
        color: var(--gold);
    }

/* ─────────────────────────────────────────────
   MAIN NAV
   ───────────────────────────────────────────── */
.main-nav {
    position: static;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

    .main-nav.scrolled {
        background: rgba(10,10,10,0.98);
        border-bottom-color: rgba(201,168,76,0.22);
        box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    }

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.nav-logo-sub {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.nav-action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.3s;
    padding: 4px;
    position: relative;
}

    .nav-action-btn:hover {
        color: var(--gold);
    }

.nav-action-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    width: 32px;
    height: 32px;
}

.ham-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-secondary);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s;
    transform-origin: center;
}

.hamburger.open .ham-line-1 {
    transform: translateY(6.5px) rotate(45deg);
    background: var(--gold);
}

.hamburger.open .ham-line-2 {
    opacity: 0;
}

.hamburger.open .ham-line-3 {
    transform: translateY(-6.5px) rotate(-45deg);
    background: var(--gold);
}

/* ─────────────────────────────────────────────
   SEARCH BAR
   ───────────────────────────────────────────── */
.search-bar {
    height: 0;
    overflow: hidden;
    background: var(--dark2);
    border-top: 1px solid transparent;
    transition: height 0.35s ease;
}

    .search-bar.open {
        height: 60px;
        border-top-color: rgba(201,168,76,0.12);
    }

.search-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    height: 60px;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    padding: 8px 12px 8px 0;
    outline: none;
    transition: border-color 0.3s;
}

    .search-input::placeholder {
        color: var(--text-muted);
    }

    .search-input:focus {
        border-bottom-color: var(--gold);
    }

.search-submit,
.search-close {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 8px 12px;
    transition: color 0.3s;
    flex-shrink: 0;
}

    .search-submit:hover,
    .search-close:hover {
        color: var(--gold);
    }

.search-close {
    font-size: 20px;
    line-height: 1;
}

/* ─────────────────────────────────────────────
   MOBILE MENU
   ───────────────────────────────────────────── */
.mobile-menu {
    display: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none; /* not clickable or focusable when closed */
    transition: opacity 0.35s ease;
}

.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100dvh;
    background: var(--dark1);
    border-left: 1px solid rgba(201,168,76,0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 9000;
}

.mobile-menu.open .mobile-overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu.open .mobile-panel {
    transform: translateX(0);
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.mobile-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.mobile-logo-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.mobile-logo-sub {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 6px;
    transition: color 0.2s;
}

    .mobile-close:hover {
        color: var(--gold);
    }

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.6rem;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.06);
    transition: color 0.2s, background 0.2s;
}

    .mobile-nav-link:hover {
        color: var(--gold);
        background: rgba(201,168,76,0.04);
    }

.mobile-nav-count {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--dark3);
    padding: 2px 8px;
    border-radius: 10px;
}

.mobile-divider {
    height: 1px;
    background: rgba(201,168,76,0.08);
    margin: 0.5rem 1.6rem;
}

.mobile-account-list {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.mobile-account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.6rem;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

    .mobile-account-link:hover {
        color: var(--gold);
    }

.mobile-footer-list {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

    .mobile-footer-list a {
        display: block;
        padding: 0.6rem 1.6rem;
        font-size: 11px;
        font-weight: 300;
        color: var(--text-muted);
        text-decoration: none;
        letter-spacing: 0.04em;
        transition: color 0.2s;
    }

        .mobile-footer-list a:hover {
            color: var(--text-secondary);
        }

.mobile-trust {
    margin-top: auto;
    padding: 1.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(201,168,76,0.08);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────
   CART NOTIFICATION TOAST
   ───────────────────────────────────────────── */
.cart-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 20px;
    z-index: 10000;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    max-width: 320px;
}

    .cart-notification.show {
        transform: translateY(0);
        opacity: 1;
    }

/* ─────────────────────────────────────────────
   SECTION COMMONS
   ───────────────────────────────────────────── */
section {
    padding: 6rem var(--page-pad);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

    .section-title em {
        font-style: italic;
        color: var(--gold);
    }

.gold-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gold-light);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .btn-primary span {
        position: relative;
        z-index: 1;
    }

    .btn-primary:hover::before {
        transform: scaleX(1);
    }

.btn-ghost {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(201,168,76,0.35);
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

    .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* ─────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────── */
.marquee-strip {
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 28s linear infinite;
    padding: 14px 0;
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2.5rem;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

    .marquee-item .dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
    }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.4s ease;
}

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.15) 100%);
    }

/* Update paths to match your /assets/images/ folder */
.hero-slide-1 {
    background-image: url('/assets/images/Hero-1.webp');
    background-position: center 20%;
}
.hero-slide-2 {
    background-image: url('/assets/images/Hero-2.webp');
    background-position: center 20%;
}

.hero-slide-3 {
    background-image: url('/assets/images/Hero-3.webp');
    background-position: center top;
}

.hero-slide-4 {
    background-image: url('/assets/images/hero-4.webp');
    background-position: center top;
}

.hero-slide-5 {
    background-image: url('/assets/images/hero-5.webp');
    background-position: center center;
}

@media (max-width: 832px) {
    .hero-slide-1 {
        background-image: url('/assets/images/Hero-1-832.webp');
        background-position: center 20%;
    }

    .hero-slide-2 {
        background-image: url('/assets/images/Hero-2-832.webp');
        background-position: center 20%;
    }

    .hero-slide-3 {
        background-image: url('/assets/images/Hero-3-832.webp');
        background-position: center top;
    }

    .hero-slide-4 {
        background-image: url('/assets/images/hero-4-832.webp');
        background-position: center top;
    }

    .hero-slide-5 {
        background-image: url('/assets/images/hero-5-832.webp');
        background-position: center center;
    }
}

    .hero-content {
        position: relative;
        z-index: 10;
        padding: 0 var(--page-pad);
        max-width: 680px;
    }

    .hero-eyebrow {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.2rem;
        opacity: 0;
        animation: fadeUp 0.9s 0.3s forwards;
    }

    .hero-title {
        font-family: var(--serif);
        font-size: clamp(3rem, 6vw, 5.5rem);
        font-weight: 300;
        line-height: 1.05;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        opacity: 0;
        animation: fadeUp 0.9s 0.5s forwards;
    }

        .hero-title em {
            font-style: italic;
            color: var(--gold);
        }

    .hero-subtitle {
        font-size: 13px;
        font-weight: 300;
        letter-spacing: 0.08em;
        color: var(--text-secondary);
        line-height: 1.8;
        max-width: 420px;
        margin-bottom: 2.5rem;
        opacity: 0;
        animation: fadeUp 0.9s 0.7s forwards;
    }

    .hero-ctas {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeUp 0.9s 0.9s forwards;
    }

    .hero-dots {
        position: absolute;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .hero-dot {
        width: 28px;
        height: 2px;
        background: rgba(201,168,76,0.3);
        cursor: pointer;
        transition: background 0.3s, width 0.3s;
    }

        .hero-dot.active {
            background: var(--gold);
            width: 48px;
        }

    .hero-scroll {
        position: absolute;
        bottom: 2.5rem;
        right: var(--page-pad);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        z-index: 10;
        opacity: 0;
        animation: fadeIn 1s 1.5s forwards;
    }

        .hero-scroll span {
            font-size: 8px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--text-muted);
            writing-mode: vertical-rl;
        }

    .hero-scroll-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(180deg, var(--gold-dim), transparent);
        animation: scrollPulse 2s ease infinite;
    }

    /* ─────────────────────────────────────────────
   CATEGORIES
   ───────────────────────────────────────────── */
    .categories-section {
        background: var(--dark1);
        padding: 6rem var(--page-pad);
    }

    .cat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5px;
        max-width: var(--max-width);
        margin: 0 auto;
    }

    .cat-tile {
        position: relative;
        overflow: hidden;
        aspect-ratio: 3/4;
        background: var(--dark3);
        display: block;
        text-decoration: none;
    }

        .cat-tile-featured,
        .cat-tile:first-child {
            grid-column: 1 / 3;
            aspect-ratio: 2/1;
        }

    .cat-tile-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .cat-tile-bg-inner {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
    }

    .cat-tile:nth-child(1) .cat-tile-bg {
        background: linear-gradient(135deg, #1a0d05 0%, #2d1810 30%, #1a0a0a 60%, #0d0d0d 100%);
    }

    .cat-tile:nth-child(2) .cat-tile-bg {
        background: linear-gradient(135deg, #0a0a14 0%, #0d0d1f 40%, #080810 100%);
    }

    .cat-tile:nth-child(3) .cat-tile-bg {
        background: linear-gradient(135deg, #110a05 0%, #1f1008 50%, #120a04 100%);
    }

    .cat-tile:nth-child(4) .cat-tile-bg {
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1005 40%, #0f0f0f 100%);
    }

    .cat-tile:nth-child(5) .cat-tile-bg {
        background: linear-gradient(135deg, #080812 0%, #10081a 50%, #0a0a0a 100%);
    }

    .cat-tile-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.45) 40%, rgba(10,10,10,0.1) 100%);
        transition: background 0.5s ease;
    }

    .cat-tile:hover .cat-tile-bg {
        transform: scale(1.06);
    }

    .cat-tile:hover .cat-tile-overlay {
        background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.15) 100%);
    }

    .cat-tile-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem 2.5rem;
    }

    .cat-tile-count {
        font-size: 9px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 0.5rem;
        display: block;
        opacity: 0;
        transform: translateY(8px);
        transition: all 0.4s ease 0.05s;
    }

    .cat-tile:hover .cat-tile-count {
        opacity: 1;
        transform: translateY(0);
    }

    .cat-tile-name {
        font-family: var(--serif);
        font-size: 1.8rem;
        font-weight: 300;
        color: var(--text-primary);
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }

    .cat-tile-featured .cat-tile-name,
    .cat-tile:first-child .cat-tile-name {
        font-size: 2.4rem;
    }

    .cat-tile-arrow {
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s, gap 0.3s;
    }

        .cat-tile-arrow::after {
            content: '→';
        }

    .cat-tile:hover .cat-tile-arrow {
        color: var(--gold);
        gap: 14px;
    }

    /* ─────────────────────────────────────────────
   PRODUCTS GRID
   ───────────────────────────────────────────── */
    .featured-section {
        background: var(--black);
        padding: 6rem var(--page-pad);
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        max-width: var(--max-width);
        margin: 0 auto 3rem;
    }

    .product-card {
        background: var(--dark1);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: block;
        transition: background 0.3s;
    }

        .product-card:hover {
            background: var(--dark2);
        }

    .product-img-wrap {
        position: relative;
        aspect-ratio: 3/4;
        overflow: hidden;
        background: var(--dark3);
    }

    .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .product-card:hover .product-img {
        transform: scale(1.04);
    }

    .product-img-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .product-img-placeholder svg {
            width: 40px;
            height: 40px;
            opacity: 0.15;
        }

    .product-img-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(10,10,10,0);
        transition: background 0.4s ease;
        pointer-events: none;
    }

    .product-card:hover .product-img-wrap::after {
        background: rgba(10,10,10,0.2);
    }

    .product-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 8px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 4px 10px;
        z-index: 2;
    }

    .badge-new {
        background: var(--gold);
        color: var(--black);
    }

    .badge-hot {
        background: var(--copper);
        color: #fff;
    }

    .product-quick-add {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 10px;
        background: rgba(10,10,10,0.9);
        border: 1px solid rgba(201,168,76,0.4);
        color: var(--gold);
        font-family: var(--sans);
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        text-align: center;
        transform: translateY(60px);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 3;
        cursor: pointer;
    }

    .product-card:hover .product-quick-add {
        transform: translateY(0);
        opacity: 1;
    }

    .product-info {
        padding: 1.2rem 1.4rem;
        border-top: 1px solid rgba(201,168,76,0.08);
    }

    .product-brand {
        font-size: 8px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold-dim);
        margin-bottom: 0.4rem;
        display: block;
    }

    .product-name {
        font-family: var(--serif);
        font-size: 1.05rem;
        font-weight: 400;
        color: var(--text-primary);
        line-height: 1.3;
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price {
        font-size: 14px;
        font-weight: 500;
        color: var(--gold);
        letter-spacing: 0.05em;
    }

    .product-availability {
        font-size: 9px;
        color: var(--text-muted);
        letter-spacing: 0.1em;
        margin-top: 0.3rem;
        display: block;
    }

    .view-all-wrap {
        text-align: center;
        margin-top: 2.5rem;
    }

    /* ─────────────────────────────────────────────
   EDITORIAL SPLIT
   ───────────────────────────────────────────── */
    .editorial-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
        background: var(--dark1);
    }

    .editorial-image {
        position: relative;
        overflow: hidden;
    }

    .editorial-img-bg {
        position: absolute;
        inset: 0;
        background: url('/assets/images/hero-couple.webp') center center / cover no-repeat;
        transition: transform 0.8s ease;
    }

    .editorial-image:hover .editorial-img-bg {
        transform: scale(1.04);
    }

    .editorial-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 60%, var(--dark1) 100%);
    }

    .editorial-text {
        background: var(--dark1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 5rem 5rem 4rem;
        position: relative;
    }

        .editorial-text::before {
            content: '';
            position: absolute;
            top: 4rem;
            left: 0;
            width: 1px;
            height: 80px;
            background: linear-gradient(180deg, transparent, var(--gold), transparent);
        }

    .editorial-quote {
        font-family: var(--serif);
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        font-weight: 300;
        font-style: italic;
        color: var(--text-primary);
        line-height: 1.4;
        margin-bottom: 2rem;
    }

        .editorial-quote em {
            font-style: normal;
            color: var(--gold);
        }

    .editorial-body {
        font-size: 13px;
        font-weight: 300;
        color: var(--text-secondary);
        line-height: 1.9;
        margin-bottom: 2.5rem;
        max-width: 440px;
    }

    /* ─────────────────────────────────────────────
   BRANDS STRIP
   ───────────────────────────────────────────── */
    .brands-section {
        background: var(--dark2);
        padding: 4rem var(--page-pad);
        border-top: 1px solid rgba(201,168,76,0.1);
        border-bottom: 1px solid rgba(201,168,76,0.1);
    }

    .brands-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .brand-pill {
        padding: 0.7rem 2rem;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--text-muted);
        border-right: 1px solid rgba(201,168,76,0.1);
        text-decoration: none;
        white-space: nowrap;
        transition: color 0.3s;
    }

        .brand-pill:last-child {
            border-right: none;
        }

        .brand-pill:hover {
            color: var(--gold);
        }

    /* ─────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────── */
    .trust-section {
        background: var(--dark1);
        padding: 4rem var(--page-pad);
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        max-width: 1200px;
        margin: 0 auto;
        border: 1px solid rgba(201,168,76,0.1);
    }

    .trust-item {
        padding: 2.5rem 2rem;
        text-align: center;
        background: var(--dark2);
        border-right: 1px solid rgba(201,168,76,0.08);
        transition: background 0.3s;
    }

        .trust-item:last-child {
            border-right: none;
        }

        .trust-item:hover {
            background: var(--dark3);
        }

    .trust-icon {
        color: var(--gold);
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .trust-title {
        font-family: var(--serif);
        font-size: 1.1rem;
        font-weight: 400;
        color: var(--text-primary);
        margin-bottom: 0.4rem;
    }

    .trust-desc {
        font-size: 11px;
        font-weight: 300;
        color: var(--text-muted);
        line-height: 1.7;
        letter-spacing: 0.03em;
    }

    /* ─────────────────────────────────────────────
   NEWSLETTER
   ───────────────────────────────────────────── */
    .newsletter-section {
        background: var(--black);
        padding: 6rem var(--page-pad);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

    .newsletter-title {
        font-family: var(--serif);
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 300;
        color: var(--text-primary);
        margin-bottom: 0.8rem;
        position: relative;
    }

        .newsletter-title em {
            font-style: italic;
            color: var(--gold);
        }

    .newsletter-sub {
        font-size: 12px;
        font-weight: 300;
        color: var(--text-secondary);
        letter-spacing: 0.06em;
        margin-bottom: 2.5rem;
    }

    .newsletter-form {
        display: flex;
        max-width: 440px;
        margin: 0 auto;
    }

    .newsletter-input {
        flex: 1;
        padding: 14px 20px;
        background: var(--dark2);
        border: 1px solid rgba(201,168,76,0.2);
        border-right: none;
        color: var(--text-primary);
        font-family: var(--sans);
        font-size: 12px;
        font-weight: 300;
        letter-spacing: 0.05em;
        outline: none;
        transition: border-color 0.3s;
    }

        .newsletter-input::placeholder {
            color: var(--text-muted);
        }

        .newsletter-input:focus {
            border-color: var(--gold);
        }

    .newsletter-btn {
        padding: 14px 28px;
        background: var(--gold);
        color: var(--black);
        font-family: var(--sans);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        border: 1px solid var(--gold);
        cursor: pointer;
        transition: background 0.3s;
        white-space: nowrap;
    }

        .newsletter-btn:hover {
            background: var(--gold-light);
        }

    .newsletter-privacy {
        font-size: 10px;
        color: var(--text-muted);
        margin-top: 1rem;
        letter-spacing: 0.05em;
    }

    .newsletter-msg {
        margin-top: 0.8rem;
        font-size: 12px;
    }

    .newsletter-msg--success {
        color: #7dbd8a;
    }

    .newsletter-msg--error {
        color: #cc6666;
    }

    /* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
    .site-footer {
        background: var(--dark1);
        border-top: 1px solid rgba(201,168,76,0.12);
    }

    .footer-newsletter {
        background: var(--dark2);
        padding: 2.5rem var(--page-pad);
        border-bottom: 1px solid rgba(201,168,76,0.08);
    }

    .footer-nl-inner {
        max-width: var(--max-width);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-nl-eyebrow {
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-bottom: 0.3rem;
    }

    .footer-nl-title {
        font-family: var(--serif);
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--text-primary);
    }

    .footer-nl-form {
        display: flex;
        flex-shrink: 0;
    }

    .footer-nl-input {
        padding: 11px 18px;
        background: var(--dark3);
        border: 1px solid rgba(201,168,76,0.2);
        border-right: none;
        color: var(--text-primary);
        font-family: var(--sans);
        font-size: 12px;
        font-weight: 300;
        width: 240px;
        outline: none;
        transition: border-color 0.3s;
    }

        .footer-nl-input::placeholder {
            color: var(--text-muted);
        }

        .footer-nl-input:focus {
            border-color: var(--gold);
        }

    .footer-nl-btn {
        padding: 11px 22px;
        background: var(--gold);
        color: var(--black);
        font-family: var(--sans);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        border: 1px solid var(--gold);
        cursor: pointer;
        transition: background 0.3s;
        white-space: nowrap;
    }

        .footer-nl-btn:hover {
            background: var(--gold-light);
        }

    .footer-main {
        padding: 4rem var(--page-pad) 3rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        max-width: var(--max-width);
        margin: 0 auto;
    }

    .footer-logo {
        display: inline-block;
        text-decoration: none;
        margin-bottom: 1rem;
    }

    .footer-logo-name {
        font-family: var(--serif);
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--gold);
        letter-spacing: 0.08em;
    }

    .footer-logo-img {
        width: 320px;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .footer-brand-desc {
        font-size: 12px;
        font-weight: 300;
        color: var(--text-muted);
        line-height: 1.8;
        max-width: 280px;
        margin-bottom: 1.5rem;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social-link {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
        display: flex;
        align-items: center;
    }

        .footer-social-link:hover {
            color: var(--gold);
        }

    .footer-col-title {
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.2rem;
        display: block;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

        .footer-links a {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-muted);
            text-decoration: none;
            letter-spacing: 0.04em;
            transition: color 0.3s;
        }

            .footer-links a:hover {
                color: var(--gold);
            }

    .footer-bottom {
        border-top: 1px solid rgba(201,168,76,0.08);
        padding: 1.5rem var(--page-pad);
    }

    .footer-bottom-inner {
        max-width: var(--max-width);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-copy {
        font-size: 10px;
        font-weight: 300;
        color: var(--text-muted);
        letter-spacing: 0.08em;
    }

    .footer-bottom-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-popia {
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-muted);
        border: 1px solid rgba(201,168,76,0.15);
        padding: 3px 10px;
    }

    /* ─────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

    .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    .reveal-delay-4 {
        transition-delay: 0.4s;
    }

    /* ─────────────────────────────────────────────
   KEYFRAMES
   ───────────────────────────────────────────── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @keyframes scrollPulse {
        0%, 100% {
            opacity: 0.4;
            transform: scaleY(1);
        }

        50% {
            opacity: 1;
            transform: scaleY(1.2);
        }
    }

    /* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (max 1024px)
   ───────────────────────────────────────────── */
    @media (max-width: 1024px) {
        :root {
            --page-pad: 2rem;
        }

        .nav-links {
            gap: 1.6rem;
        }

        .nav-action-label {
            display: none;
        }

        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .footer-col-brand {
            grid-column: 1 / -1;
        }
    }

    /* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (max 768px)
   ───────────────────────────────────────────── */
    @media (max-width: 768px) {
        :root {
            --page-pad: 1.2rem;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .mobile-menu {
            display: block;
        }

        .nav-action-btn:not(.cart-btn) {
            display: none;
        }

        .hero {
            min-height: 90dvh;
        }

        .hero-scroll {
            display: none;
        }

        .cat-grid {
            grid-template-columns: 1fr 1fr;
        }

        .cat-tile-featured, .cat-tile:first-child {
            grid-column: 1 / -1;
            aspect-ratio: 16/9;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .editorial-section {
            grid-template-columns: 1fr;
        }

        .editorial-image {
            min-height: 300px;
        }

        .editorial-text {
            padding: 3rem var(--page-pad);
        }

        .editorial-image::after {
            background: linear-gradient(to bottom, transparent 60%, var(--dark1) 100%);
        }

        .trust-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-col-brand {
            grid-column: auto;
        }

        .footer-nl-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-nl-form {
            width: 100%;
        }

        .footer-nl-input {
            flex: 1;
            width: auto;
        }
    }

    /* ─────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (max 480px)
   ───────────────────────────────────────────── */
    @media (max-width: 480px) {
        .cat-grid {
            grid-template-columns: 1fr;
        }

        .cat-tile-featured, .cat-tile:first-child {
            grid-column: auto;
            aspect-ratio: 4/3;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }

        .trust-grid {
            grid-template-columns: 1fr;
        }

        .hero-ctas {
            flex-direction: column;
            align-items: flex-start;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-input {
            border-right: 1px solid rgba(201,168,76,0.2);
            border-bottom: none;
        }
    }

    /* ============================================================
   PATCH FIXES
   Fix 2:  Mobile menu z-index (above hero)
   Fix 4:  Hero logo intro frame animation
   Fix 5:  Hero split layout — image panel right on desktop
   Fix 6:  Philosophy section logo
   Fix 8:  About page shop button
   Fix 11: Honeypot field hidden
   Fix 12: Nav always sticky (already position:sticky — confirmed)
   ============================================================ */

    /* ── Fix 4: Logo intro frame ──────────────────────────────── */
    .hero-logo-frame {
        position: absolute;
        inset: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--black);
        pointer-events: none;
        opacity: 0; /* starts hidden — JS controls visibility */
    }

        .hero-logo-frame.intro-active {
            opacity: 1;
            pointer-events: auto;
        }

    /* Logo scales from large down to nothing over 1.8s */
    @keyframes logoShrink {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        70% {
            transform: scale(0.85);
            opacity: 1;
        }

        100% {
            transform: scale(0);
            opacity: 0;
        }
    }

    .hero-logo-intro {
        width: min(480px, 72vw);
        height: auto;
        display: block;
        /* Animation triggered by JS adding .playing class */
    }

    .hero-logo-frame.intro-playing .hero-logo-intro {
        animation: logoShrink 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Whole frame fades out after logo shrinks */
    @keyframes frameFade {
        0% {
            opacity: 1;
        }

        85% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    .hero-logo-frame.intro-playing {
        animation: frameFade 2s ease forwards;
    }


    /* ── Fix 8: Ensure btn-primary inside static-cta renders correctly ── */
    .static-cta .btn-primary {
        display: inline-flex;
    }

    /* ── Fix 11: Honeypot field — visually hidden, not display:none
   (display:none can itself be a bot tell) ───────────────────── */
    .hp-field {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        tab-size: 0;
    }
