:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #d4af37;
    --accent-hover: #b8941f;
    --light: #f8f9fa;
    --dark: #0f0f1a;
    --text: #333;
    --text-light: #666;
    --glass-border: rgba(255, 255, 255, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { color: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
    color: var(--accent); text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: #fff; text-decoration: none; font-weight: 500; font-size: 0.95rem;
    position: relative; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.cart-btn { position: relative; background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; }
.cart-btn:hover { color: var(--accent); }
.cart-count {
    position: absolute; top: -8px; right: -8px; background: var(--accent); color: var(--primary);
    font-size: 0.7rem; font-weight: 700; width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Page header (non-home pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--dark) 100%);
    padding: 10rem 2rem 4rem; text-align: center; color: #fff;
}
.page-header h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.7); }

/* Hero (home) */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--dark) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding-top: 80px;
}
.hero-content {
    max-width: 1400px; margin: 0 auto; padding: 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-text h1 { font-size: 4rem; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-text h1 span { color: var(--accent); display: block; }
.hero-text p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2rem; line-height: 1.8; }
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem;
    background: var(--accent); color: var(--primary); text-decoration: none; border: none;
    border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-size: 1rem;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
/* ============ CINEMATIC HERO (premium 3D experience) ============ */
:root {
    --noir: #0a0a0c;
    --off-white: #f5f2ec;
    --champagne: #cbb389;
    --champagne-dim: rgba(203, 179, 137, 0.5);
}

.hero-cinematic {
    position: relative; min-height: 100vh; background: var(--noir);
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    padding-top: 80px;
}
/* Mobile browsers resize the visible viewport as their address bar shows/hides,
   but 100vh doesn't account for that -- it's fixed to the tallest possible
   state, leaving a gap once the address bar reappears. 100dvh tracks the
   *current* visible viewport instead, so the hero always fills the screen. */
@supports (height: 100dvh) {
    .hero-cinematic { min-height: 100dvh; }
}
/* On a tall, narrow phone screen, a full-height hero forces the background
   photo (never taller than it is wide, since these are ordinary product
   photos) to be cropped down to a sliver -- looking like an extreme,
   meaningless zoom no matter how well the crop math matches the screen.
   Capping the hero's own height on small screens keeps its box closer to
   the photo's real proportions, so far less of it needs to be cropped away. */
@media (max-width: 600px) {
    .hero-cinematic { min-height: 65vh; }
    @supports (height: 100dvh) {
        .hero-cinematic { min-height: 65dvh; }
    }
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.3s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.72) 55%, rgba(10,10,12,0.92) 100%);
}

.hero-cinematic-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 2rem; }
.hero-label {
    display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.72rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--champagne);
    margin-bottom: 1.6rem; opacity: 0;
}
.hero-headline {
    font-family: 'Playfair Display', serif; font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.1; color: var(--off-white);
    margin-bottom: 1.6rem; letter-spacing: -0.01em;
}
.hero-headline .reveal-line { display: block; overflow: hidden; }
.hero-headline .reveal-line span { display: inline-block; transform: translateY(110%); }
.hero-sub {
    font-family: 'Inter', sans-serif; font-size: 1.05rem; color: rgba(245,242,236,0.62);
    max-width: 460px; margin: 0 auto 2.6rem; line-height: 1.85; opacity: 0;
}
.hero-cta-row { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; opacity: 0; }
.btn-cinematic {
    position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1.05rem 2.3rem; font-family: 'Inter', sans-serif; font-size: 0.82rem;
    letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
    border-radius: 2px; transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.btn-cinematic-primary { background: var(--champagne); color: var(--noir); border: 1px solid var(--champagne); }
.btn-cinematic-primary:hover { background: transparent; color: var(--champagne); }
.btn-cinematic-outline { background: transparent; color: var(--off-white); border: 1px solid rgba(245,242,236,0.28); }
.btn-cinematic-outline:hover { border-color: var(--off-white); }

.hero-dots {
    position: absolute; z-index: 2; bottom: 6.6rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.6rem;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 4px; background: rgba(245,242,236,0.35);
    cursor: pointer; transition: all 0.35s ease;
}
.hero-dot:hover { background: rgba(245,242,236,0.6); }
.hero-dot.active { width: 24px; background: var(--champagne); }

.scroll-cue {
    position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 2; opacity: 0;
}
.scroll-cue span { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(245,242,236,0.55), transparent); animation: scrollCue 2.6s ease-in-out infinite; }
.scroll-cue small { font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(245,242,236,0.4); }
@keyframes scrollCue {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 900px) {
    .hero-product-float { position: relative; right: auto; top: auto; transform: none; width: 55%; margin: 2.2rem auto 0; }
    .hero-cinematic-content { padding-top: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-headline .reveal-line span { transform: none; }
}

/* Minimal custom cursor (desktop only, restrained per luxury motion principles) */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; background: var(--champagne); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid var(--champagne-dim); transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease; }
.cursor-ring.hovering { width: 54px; height: 54px; border-color: rgba(203,179,137,0.9); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }

/* Animated hero stage: floating product, pulsing glow, rotating ring */
.hero-tagline-wrap { transition: opacity 0.4s ease; }
.hero-tagline-wrap span { color: var(--accent); display: block; }

.hero-stage {
    position: relative; width: 100%; max-width: 480px; aspect-ratio: 1/1; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.hero-glow, .gallery-stage::before {
    content: ''; position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, rgba(212,175,55,0) 70%);
    animation: glowPulse 4s ease-in-out infinite;
}
.hero-glow { width: 70%; height: 70%; }
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.15); opacity: 1; } }

.hero-ring {
    position: absolute; width: 85%; height: 85%; border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.3);
    animation: ringRotate 20s linear infinite;
}
.hero-ring::before {
    content: ''; position: absolute; top: -3px; left: 50%; width: 8px; height: 8px;
    background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px 3px rgba(212,175,55,0.8);
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-pedestal {
    position: absolute; bottom: 8%; width: 55%; height: 14px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 75%);
    filter: blur(2px);
}
.hero-floating-product {
    position: relative; max-width: 78%; max-height: 78%; object-fit: contain; border-radius: 12px;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.45));
    animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

@media (max-width: 900px) {
    .hero-stage { max-width: 340px; margin-top: 2rem; }
}

/* ============ SHOP BY CATEGORY (tile strip) ============ */
.category-section {
    position: relative; background: var(--noir); color: var(--off-white);
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 10vw, 7rem);
}
.category-head { text-align: center; max-width: 640px; margin: 0 auto clamp(3rem, 7vw, 4.5rem); }
.category-head .editorial-eyebrow::before { display: none; } /* no left rule when centered */

.category-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 4vw, 2.8rem); }
.category-tile {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    text-decoration: none; width: 150px;
}
.category-tile-img {
    width: 150px; height: 150px; border-radius: 14px; overflow: hidden;
    background: #131318; border: 1px solid rgba(245,242,236,0.08);
    transition: border-color 0.4s ease, transform 0.4s ease;
}
.category-tile:hover .category-tile-img { border-color: var(--champagne); transform: translateY(-6px); }
.category-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-tile:hover .category-tile-img img { transform: scale(1.08); }
.category-tile-name {
    font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--off-white); text-align: center;
}
@media (max-width: 600px) {
    .category-tile, .category-tile-img { width: 104px; height: 104px; }
}

/* Product grids used by New Arrivals / Best Sellers / per-category sections
   on the homepage -- a fixed 4-across (2 rows of 4 = 8 products), separate
   from .products-grid (used on the shop page) so its auto-fill/responsive
   rules don't fight with this one. */
.home-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .home-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
@media (max-width: 400px) { .home-product-grid { gap: 0.8rem; } }

/* ============ CINEMATIC COLLECTION — editorial rows (Phase 2) ============ */
/* Magazine-style alternating rows replace the old card grid on the homepage.
   Stays on the noir/champagne palette so the hero flows straight into it. */
.editorial-collection {
    position: relative; background: var(--noir); color: var(--off-white);
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 10vw, 7rem); overflow: hidden;
}
/* soft champagne bloom so the section doesn't read as a flat black slab */
.editorial-collection::before {
    content: ''; position: absolute; top: -8%; left: 50%; transform: translateX(-50%);
    width: 70vw; height: 55vh; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(203,179,137,0.07) 0%, rgba(203,179,137,0) 70%);
}
.editorial-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }

.editorial-head { max-width: 720px; margin-bottom: clamp(3.5rem, 8vw, 6rem); }
.editorial-eyebrow {
    display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1.4rem;
}
.editorial-eyebrow::before {
    content: ''; display: inline-block; width: 38px; height: 1px;
    background: var(--champagne-dim); vertical-align: middle; margin-right: 1rem;
}
.editorial-title {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(2.1rem, 5vw, 3.9rem); line-height: 1.14; letter-spacing: -0.015em;
    color: var(--off-white); margin-bottom: 1.5rem;
}
.editorial-title em { font-style: italic; color: var(--champagne); }
.editorial-intro {
    font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.9;
    color: rgba(245,242,236,0.55); max-width: 470px;
}

.editorial-rows { display: flex; flex-direction: column; gap: clamp(4.5rem, 11vw, 8.5rem); }
.editorial-row {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    align-items: center; gap: clamp(2rem, 6vw, 5.5rem);
}
.editorial-row:nth-child(even) .editorial-media { order: 2; }
.editorial-row:nth-child(even) .editorial-copy { order: 1; }

.editorial-media { position: relative; }
.editorial-media-frame {
    position: relative; overflow: hidden; aspect-ratio: 4 / 5;
    background: #131318; border-radius: 2px;
}
.editorial-media-frame img {
    position: absolute; top: -6%; left: 0; width: 100%; height: 112%;
    object-fit: cover; display: block; filter: saturate(0.94) contrast(1.04);
    transform: scale(1.03); will-change: transform;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}
.editorial-row:hover .editorial-media-frame img { transform: scale(1.1); filter: saturate(1) contrast(1.06); }
/* when GSAP owns the transform (parallax), hand it over cleanly */
.editorial-media-frame.js-parallax img { transition: filter 0.8s ease; }
/* hairline that draws itself across the image on hover */
.editorial-media-frame::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 2;
    background: var(--champagne); transform: scaleX(0); transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-row:hover .editorial-media-frame::after { transform: scaleX(1); }

.editorial-index {
    position: absolute; top: -1.7rem; left: -0.7rem; z-index: 2;
    font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 5.4rem); line-height: 1;
    color: rgba(203,179,137,0.10); -webkit-text-stroke: 1px rgba(203,179,137,0.32);
    pointer-events: none; user-select: none;
}
.editorial-row:nth-child(even) .editorial-index { left: auto; right: -0.7rem; }

.editorial-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 3;
    background: rgba(10,10,12,0.72); backdrop-filter: blur(6px);
    border: 1px solid var(--champagne-dim); color: var(--champagne); border-radius: 2px;
    font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 0.45rem 0.85rem;
}

.editorial-copy { max-width: 460px; }
.editorial-cat {
    display: block; font-family: 'Inter', sans-serif; font-size: 0.64rem;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1.1rem;
}
.editorial-name {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.2;
    color: var(--off-white); margin-bottom: 1rem;
}
.editorial-desc {
    font-family: 'Inter', sans-serif; font-size: 0.94rem; line-height: 1.9;
    color: rgba(245,242,236,0.5); margin-bottom: 1.4rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.editorial-rating { color: var(--champagne); font-size: 0.72rem; letter-spacing: 0.18em; margin-bottom: 1.2rem; }
.editorial-price {
    display: flex; align-items: baseline; gap: 0.9rem;
    margin-bottom: 2rem; font-family: 'Inter', sans-serif;
}
.editorial-price .now { font-size: 1.15rem; color: var(--off-white); letter-spacing: 0.02em; }
.editorial-price .was { font-size: 0.85rem; color: rgba(245,242,236,0.32); text-decoration: line-through; }

.editorial-actions { display: flex; align-items: center; gap: 1.9rem; flex-wrap: wrap; }
.editorial-link {
    position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
    font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--off-white); text-decoration: none;
    padding-bottom: 0.55rem; transition: color 0.4s ease;
}
.editorial-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
    background: rgba(245,242,236,0.25); transition: background 0.4s ease;
}
.editorial-link .arw { transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
.editorial-link:hover { color: var(--champagne); }
.editorial-link:hover::after { background: var(--champagne); }
.editorial-link:hover .arw { transform: translateX(7px); }

.editorial-add {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: none; border: none; cursor: pointer; padding: 0.5rem 0;
    font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(245,242,236,0.45); transition: color 0.4s ease;
}
.editorial-add:hover { color: var(--champagne); }

.editorial-footer { margin-top: clamp(4rem, 9vw, 7rem); text-align: center; }
.editorial-state {
    text-align: center; padding: 4rem 1rem;
    font-family: 'Inter', sans-serif; color: rgba(245,242,236,0.45);
}
.editorial-state i { display: block; font-size: 1.6rem; color: var(--champagne); margin-bottom: 1rem; }

/* Editorial reveal: a soft rise, deliberately calmer than the .reveal-3d tilt */
.editorial-row .editorial-media, .editorial-row .editorial-copy {
    opacity: 0; transform: translateY(46px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-row .editorial-copy { transition-delay: 0.14s; }
.editorial-row.in-view .editorial-media, .editorial-row.in-view .editorial-copy { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .editorial-row { grid-template-columns: 1fr; gap: 2.2rem; }
    .editorial-row:nth-child(even) .editorial-media { order: 1; }
    .editorial-row:nth-child(even) .editorial-copy { order: 2; }
    .editorial-media-frame { aspect-ratio: 4 / 3.4; }
    .editorial-index { top: -1.1rem; left: -0.2rem; }
    .editorial-row:nth-child(even) .editorial-index { left: -0.2rem; right: auto; }
    .editorial-copy { max-width: none; }
    .editorial-actions { gap: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
    .editorial-row .editorial-media, .editorial-row .editorial-copy { transition: opacity 0.3s ease; transform: none !important; }
    .editorial-media-frame img { transition: none; }
    .editorial-media-frame::after { transition: none; }
}

/* ============ CINEMATIC BRAND STORY (Phase 3) ============ */
/* Deliberately NOT another alternating row - after four editorial spreads the
   page needs a change of rhythm, so this is an asymmetric offset panel with an
   outlined place-name watermark, a hairline frame and a factual marks strip. */
.brand-story {
    position: relative; background: var(--noir); color: var(--off-white);
    padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 12vw, 9rem); overflow: hidden;
}
.brand-story::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(203,179,137,0.05) 0%, rgba(203,179,137,0) 38%);
}
.story-inner {
    position: relative; z-index: 1; max-width: 1280px; margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

/* huge outlined place-name, echoing the editorial index numerals */
.story-watermark {
    position: absolute; top: clamp(-1rem, -2vw, 0rem); right: clamp(-0.5rem, 2vw, 2rem);
    font-family: 'Playfair Display', serif; font-size: clamp(4rem, 13vw, 12rem);
    line-height: 1; letter-spacing: 0.02em; z-index: 0;
    color: transparent; -webkit-text-stroke: 1px rgba(203,179,137,0.13);
    pointer-events: none; user-select: none; white-space: nowrap;
}

.story-visual { position: relative; z-index: 1; }
/* champagne hairline, offset down-right so it peeks out from behind the photo */
.story-visual::before {
    content: ''; position: absolute; z-index: 0;
    top: clamp(1rem, 2.4vw, 2.2rem); left: clamp(1rem, 2.4vw, 2.2rem);
    right: calc(-1 * clamp(1rem, 2.4vw, 2.2rem)); bottom: calc(-1 * clamp(1rem, 2.4vw, 2.2rem));
    border: 1px solid rgba(203,179,137,0.28);
}
.story-frame {
    position: relative; z-index: 1; overflow: hidden; aspect-ratio: 3 / 4;
    background: #131318; border-radius: 2px;
}
.story-frame img {
    position: absolute; top: -6%; left: 0; width: 100%; height: 112%;
    object-fit: cover; display: block; will-change: transform;
    filter: saturate(0.82) contrast(1.06) brightness(0.92);
}
.story-caption {
    position: absolute; z-index: 2; left: clamp(-0.6rem, -1vw, 0rem);
    bottom: clamp(1.4rem, 3vw, 2.6rem);
    background: rgba(10,10,12,0.82); backdrop-filter: blur(8px);
    border-left: 2px solid var(--champagne); padding: 0.85rem 1.3rem;
}
.story-caption b {
    display: block; font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: 1rem; color: var(--off-white); margin-bottom: 0.15rem;
}
.story-caption span {
    font-family: 'Inter', sans-serif; font-size: 0.58rem; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--champagne);
}

.story-copy { position: relative; z-index: 1; max-width: 540px; }
.story-eyebrow {
    display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1.4rem;
}
.story-eyebrow::before {
    content: ''; display: inline-block; width: 38px; height: 1px;
    background: var(--champagne-dim); vertical-align: middle; margin-right: 1rem;
}
.story-title {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(1.9rem, 4.2vw, 3.3rem); line-height: 1.18; letter-spacing: -0.015em;
    color: var(--off-white); margin-bottom: 1.4rem;
}
.story-title em { font-style: italic; color: var(--champagne); }
.story-lead {
    font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.95;
    color: rgba(245,242,236,0.58);
}
.story-quote {
    border-left: 1px solid var(--champagne-dim);
    padding-left: clamp(1.1rem, 2.4vw, 1.9rem);
    margin: clamp(1.6rem, 3.5vw, 2.4rem) 0;
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.6;
    color: rgba(245,242,236,0.78);
}
.story-body {
    font-family: 'Inter', sans-serif; font-size: 0.94rem; line-height: 1.95;
    color: rgba(245,242,236,0.45); margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}
.story-marks {
    display: flex; gap: clamp(1.6rem, 4vw, 3rem); flex-wrap: wrap;
    margin-bottom: clamp(1.9rem, 4vw, 2.6rem);
}
.story-mark b {
    display: block; font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem); color: var(--champagne); margin-bottom: 0.3rem;
}
.story-mark span {
    font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: rgba(245,242,236,0.42);
}

/* same soft rise as the editorial spreads, so the two sections feel related */
.brand-story .story-visual, .brand-story .story-copy {
    opacity: 0; transform: translateY(46px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-story .story-copy { transition-delay: 0.14s; }
.brand-story.in-view .story-visual, .brand-story.in-view .story-copy { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .story-inner { grid-template-columns: 1fr; gap: 2.6rem; }
    .story-frame { aspect-ratio: 4 / 3.4; }
    .story-watermark { font-size: clamp(3.2rem, 18vw, 6rem); top: -0.4rem; right: -0.2rem; }
    .story-copy { max-width: none; }
    .story-visual::before { top: 0.8rem; left: 0.8rem; right: -0.8rem; bottom: -0.8rem; }
    .story-marks { gap: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
    .brand-story .story-visual, .brand-story .story-copy { transition: opacity 0.3s ease; transform: none !important; }
}

/* Sections */
.section { padding: 5rem 2rem; max-width: 1400px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.section-title p { color: var(--text-light); }

/* Products */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
    margin-bottom: 2.5rem; align-items: center;
}
.filter-btn {
    padding: 0.6rem 1.4rem; border: 2px solid var(--primary); background: transparent;
    color: var(--primary); border-radius: 50px; cursor: pointer; font-weight: 500; transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; }
.search-box {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.2rem;
    border: 2px solid #ddd; border-radius: 50px; max-width: 300px; width: 100%;
}
.search-box input { border: none; outline: none; flex: 1; font-family: 'Inter', sans-serif; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.product-card {
    background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s; position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.product-badge {
    position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: var(--primary);
    padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; z-index: 2;
}
.product-image { position: relative; height: 220px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-actions {
    position: absolute; inset: 0; background: rgba(26,26,46,0.5); display: flex; align-items: center;
    justify-content: center; gap: 1rem; opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-actions { opacity: 1; }
.action-btn {
    width: 44px; height: 44px; border-radius: 50%; background: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary);
}
.action-btn:hover { background: var(--accent); }
.product-info { padding: 1.2rem; }
.product-category { font-size: 0.75rem; color: var(--accent); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; }
.product-title { font-size: 1.1rem; margin: 0.3rem 0 0.5rem; }
.rating { color: var(--accent); font-size: 0.85rem; margin-bottom: 0.5rem; }
.product-price { display: flex; align-items: center; gap: 0.6rem; }
.current-price { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.old-price { text-decoration: line-through; color: #aaa; font-size: 0.9rem; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-light); grid-column: 1/-1; }
.empty-state i { font-size: 3rem; color: #ddd; margin-bottom: 1rem; display: block; }

/* Product detail page */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.product-detail-image img { width: 100%; border-radius: 16px; }
.product-detail-info h1 { font-size: 2rem; margin: 0.5rem 0; }
.product-detail-info .price { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 1rem 0; }
.product-detail-info .description { color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; }

/* About / contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-grid img { width: 100%; border-radius: 16px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-item i { color: var(--accent); font-size: 1.3rem; margin-top: 0.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.9rem 1.1rem; border: 2px solid #e0e0e0; border-radius: 10px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Cart / checkout page */
.cart-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.cart-line {
    display: flex; gap: 1.2rem; align-items: center; padding: 1.2rem; background: #fff;
    border-radius: 12px; margin-bottom: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cart-line img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }
.cart-line-info { flex: 1; }
.qty-controls { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.5rem; }
.qty-btn {
    width: 28px; height: 28px; border-radius: 50%; border: 1px solid #ddd; background: #fff;
    cursor: pointer; font-weight: 700;
}
.remove-line { background: none; border: none; color: #e74c3c; cursor: pointer; font-size: 1.1rem; }
.summary-box { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 1rem; color: var(--text-light); }
.summary-row.total { font-size: 1.3rem; font-weight: 700; color: var(--primary); border-top: 1px solid #eee; padding-top: 1rem; }

/* Floating WhatsApp button -- stays fixed in the corner while scrolling */
.whatsapp-float {
    position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 2500;
    width: 56px; height: 56px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.7rem; text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0,0,0,0.45); }
@media (max-width: 600px) {
    .whatsapp-float { right: 1.1rem; bottom: 1.1rem; width: 50px; height: 50px; font-size: 1.5rem; }
}

/* Footer */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem; }
.footer-content {
    max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.social-links a:hover { background: var(--accent); color: var(--primary); }
.footer-links h4 { color: #fff; margin-bottom: 1.2rem; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    max-width: 1400px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center; font-size: 0.85rem;
}

/* Cart sidebar */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1998; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100vh; background: #fff;
    z-index: 1999; transition: right 0.4s; display: flex; flex-direction: column;
}
.cart-sidebar.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid #eee; }
.close-cart { background: none; border: none; font-size: 1.3rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-light); }
.cart-empty i { font-size: 3rem; margin-bottom: 1rem; color: #ddd; display: block; }
.cart-footer { padding: 1.5rem; border-top: 1px solid #eee; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.checkout-btn { width: 100%; }

/* Toast */
.toast {
    position: fixed; bottom: 2rem; right: 2rem; background: var(--primary); color: #fff;
    padding: 1rem 1.5rem; border-radius: 10px; display: flex; align-items: center; gap: 0.8rem;
    transform: translateY(150%); transition: transform 0.4s; z-index: 3000;
}
.toast.show { transform: translateY(0); }
.toast i { color: var(--accent); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* 3D scroll reveal: elements tilt/rotate into place as they enter the viewport */
section, .section { perspective: 1400px; }
.reveal-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(18deg) translateY(70px) scale(0.94);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    will-change: transform, opacity;
}
.reveal-3d.active { opacity: 1; transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1); }
/* Stagger grid items so they cascade in rather than popping together */
.reveal-3d:nth-child(2) { transition-delay: 0.08s; }
.reveal-3d:nth-child(3) { transition-delay: 0.16s; }
.reveal-3d:nth-child(4) { transition-delay: 0.24s; }
.reveal-3d:nth-child(5) { transition-delay: 0.32s; }
.reveal-3d:nth-child(6) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
    .reveal-3d { transition: opacity 0.3s ease; transform: none !important; }
}

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

/* Tablet (900px and below) */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content, .product-detail, .about-grid, .contact-grid, .cart-page-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 2.6rem; }
    .nav-container { padding: 1rem 1.5rem; }
    .section { padding: 3.5rem 1.5rem; }
    .page-header { padding: 8rem 1.5rem 3rem; }
    .products-grid { gap: 1.2rem; }
}

/* Phone (600px and below) */
@media (max-width: 600px) {
    .nav-container { padding: 0.9rem 1rem; }
    .logo { font-size: 1.5rem; }
    .hero { padding-top: 70px; }
    .hero-content { padding: 1.5rem 1rem; gap: 2rem; }
    .hero-text h1 { font-size: 2.1rem; }
    .hero-text p { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-image { order: -1; }
    .btn { padding: 0.85rem 1.5rem; font-size: 0.92rem; }

    .section { padding: 2.5rem 1rem; }
    .section-title h2 { font-size: 1.8rem; }

    .page-header { padding: 7rem 1rem 2.5rem; }
    .page-header h1 { font-size: 2rem; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .product-image { height: 150px; }
    .product-info { padding: 0.8rem; }
    .product-title { font-size: 0.95rem; }
    .current-price { font-size: 1.05rem; }
    .product-actions { opacity: 1; background: transparent; align-items: flex-end; justify-content: flex-end; padding: 0.5rem; }
    .action-btn { width: 34px; height: 34px; font-size: 0.9rem; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

    .filter-bar { gap: 0.6rem; }
    .search-box { max-width: 100%; }

    .about-grid, .contact-grid { gap: 2rem; }
    .footer { padding: 3rem 1.2rem 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: left; }

    .cart-line { flex-wrap: wrap; padding: 1rem; }
    .cart-line img { width: 64px; height: 64px; }
    .summary-box { padding: 1.5rem; }
    .cart-sidebar { max-width: 100%; }

    .toast { left: 1rem; right: 1rem; bottom: 1rem; }
}

/* Small phone (400px and below) */
@media (max-width: 400px) {
    .hero-text h1 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.7rem; }
    .btn { width: 100%; justify-content: center; }
}

/* ============ SITE-WIDE CINEMATIC MIGRATION (Phase 4) ============ */
/* Appended as an override layer instead of rewriting the legacy light theme
   above: the old rules still load first, these win on source order. Deleting
   this single block reverts the entire site to the original light design. */

:root { --text: rgba(245,242,236,0.72); --text-light: rgba(245,242,236,0.5); }
body { background: var(--noir); color: rgba(245,242,236,0.72); }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: rgba(203,179,137,0.5); border-radius: 0; }

/* --- navigation --- */
.navbar { background: rgba(10,10,12,0.72); backdrop-filter: blur(22px); border-bottom: 1px solid rgba(203,179,137,0.16); }
.logo { color: var(--champagne); font-weight: 500; }
.nav-links { gap: 2.2rem; }
.nav-links a {
    color: rgba(245,242,236,0.72); font-family: 'Inter', sans-serif; font-weight: 400;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.nav-links a::after { background: var(--champagne); height: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--champagne); }
.cart-btn, .mobile-menu-btn { color: rgba(245,242,236,0.8); }
.cart-btn:hover { color: var(--champagne); }
.cart-count { background: var(--champagne); color: var(--noir); font-weight: 500; }

/* --- page headers --- */
.page-header {
    background: var(--noir); position: relative; overflow: hidden;
    padding: clamp(8rem,16vw,11rem) 1.5rem clamp(3rem,7vw,4.5rem);
    border-bottom: 1px solid rgba(203,179,137,0.14);
}
.page-header::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(203,179,137,0.10) 0%, rgba(203,179,137,0) 62%);
}
.page-header h1 {
    position: relative; font-weight: 400; letter-spacing: -0.015em;
    font-size: clamp(2rem,5vw,3.4rem); color: var(--off-white);
}
.page-header p {
    position: relative; font-family: 'Inter', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.32em; text-transform: uppercase; color: var(--champagne); margin-top: 0.9rem;
}
.section-title h2 { color: var(--off-white); font-weight: 400; letter-spacing: -0.015em; }
.section-title p { color: rgba(245,242,236,0.5); }

/* --- buttons --- */
.btn {
    background: var(--champagne); color: var(--noir); border: 1px solid var(--champagne);
    border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 0.76rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem 2rem;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.btn:hover { background: transparent; color: var(--champagne); transform: none; }
.btn-outline { background: transparent; border: 1px solid rgba(245,242,236,0.28); color: var(--off-white); }
.btn-outline:hover { border-color: var(--champagne); color: var(--champagne); background: transparent; }

/* --- filters + search --- */
.filter-btn {
    border: 1px solid rgba(245,242,236,0.2); background: transparent; color: rgba(245,242,236,0.6);
    border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.18em; text-transform: uppercase; padding: 0.6rem 1.3rem;
}
.filter-btn.active, .filter-btn:hover { background: var(--champagne); color: var(--noir); border-color: var(--champagne); }
.search-box { border: 1px solid rgba(245,242,236,0.18); border-radius: 2px; background: rgba(255,255,255,0.02); }
.search-box i { color: var(--champagne) !important; }
.search-box input { background: transparent; color: var(--off-white); }
.search-box input::placeholder { color: rgba(245,242,236,0.35); }

/* --- product cards --- */
.product-card {
    background: #101014; border: 1px solid rgba(245,242,236,0.07);
    border-radius: 2px; box-shadow: none;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), border-color 0.5s ease, box-shadow 0.6s ease;
}
.product-card:hover {
    transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    border-color: rgba(203,179,137,0.34);
}
/* champagne hairline draws across the top on hover, echoing the editorial rows */
.product-card::after {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; z-index: 3;
    background: var(--champagne); transform: scaleX(0); transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover::after { transform: scaleX(1); }
.product-badge {
    background: rgba(10,10,12,0.78); color: var(--champagne);
    border: 1px solid var(--champagne-dim); border-radius: 2px;
    font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase; padding: 0.4rem 0.8rem;
}
.product-image { background: #131318; }
.product-image img { filter: saturate(0.92) contrast(1.04); }
.product-actions { background: rgba(10,10,12,0.55); }
.action-btn { background: var(--off-white); color: var(--noir); border-radius: 2px; }
.action-btn:hover { background: var(--champagne); }
.product-category { color: var(--champagne); font-size: 0.6rem; letter-spacing: 0.24em; font-weight: 400; }
.product-title { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--off-white); }
.rating { color: var(--champagne); }
.current-price { color: var(--off-white); font-weight: 400; font-family: 'Inter', sans-serif; }
.old-price { color: rgba(245,242,236,0.3); }
.empty-state { color: rgba(245,242,236,0.45); }
.empty-state i { color: var(--champagne); }

/* --- product detail --- */
.product-detail-info h1 { color: var(--off-white); font-weight: 400; }
.product-detail-info .price { color: var(--champagne); font-weight: 400; font-family: 'Inter', sans-serif; }
.product-detail-info .description { color: rgba(245,242,236,0.5); }
.gallery-main { background: #131318 !important; border-radius: 2px !important; }
.gallery-thumb { border-radius: 2px !important; border-color: rgba(245,242,236,0.14) !important; }
.gallery-thumb.active { border-color: var(--champagne) !important; }

/* --- forms --- */
.form-group label {
    font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--champagne); font-weight: 400; margin-bottom: 0.6rem;
}
.form-group input, .form-group textarea {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(245,242,236,0.16);
    border-radius: 2px; color: var(--off-white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,242,236,0.3); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--champagne); background: rgba(255,255,255,0.05); }
.contact-info-item i { color: var(--champagne); }
.contact-info-item p { color: rgba(245,242,236,0.6); }

/* --- cart + checkout --- */
.cart-line, .summary-box { background: #101014; border: 1px solid rgba(245,242,236,0.07); border-radius: 2px; box-shadow: none; }
.cart-line h4 { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--off-white); }
.cart-line img { border-radius: 2px; }
.qty-btn { background: transparent; border: 1px solid rgba(245,242,236,0.22); color: var(--off-white); }
.qty-btn:hover { border-color: var(--champagne); color: var(--champagne); }
.summary-row { color: rgba(245,242,236,0.5); }
.summary-row.total { color: var(--off-white); font-weight: 400; border-top: 1px solid rgba(245,242,236,0.12); }
.summary-box h3 { color: var(--off-white); font-weight: 400; }
.cart-sidebar { background: #0d0d10; border-left: 1px solid rgba(203,179,137,0.18); }
.cart-header { border-bottom: 1px solid rgba(245,242,236,0.1); }
.cart-header h3 { color: var(--off-white); font-weight: 400; }
.close-cart { color: rgba(245,242,236,0.7); }
.cart-footer { border-top: 1px solid rgba(245,242,236,0.1); }
.cart-total { color: var(--off-white); font-weight: 400; }
.cart-empty { color: rgba(245,242,236,0.4); }
.cart-empty i { color: rgba(203,179,137,0.5); }
.payment-option { border: 1px solid rgba(245,242,236,0.16) !important; border-radius: 2px !important; color: rgba(245,242,236,0.6); }
.payment-option.selected { border-color: var(--champagne) !important; background: rgba(203,179,137,0.07) !important; color: var(--off-white); }
.payment-option i { color: var(--champagne) !important; }
.promo-row input { border-radius: 2px; }

/* --- footer --- */
.footer { background: #08080a; border-top: 1px solid rgba(203,179,137,0.14); color: rgba(245,242,236,0.5); }
.footer-links h4 {
    color: var(--champagne); font-family: 'Inter', sans-serif; font-size: 0.64rem;
    letter-spacing: 0.24em; text-transform: uppercase; font-weight: 400;
}
.footer-links a { color: rgba(245,242,236,0.5); }
.footer-links a:hover { color: var(--champagne); }
.social-links a {
    background: rgba(245,242,236,0.06); border: 1px solid rgba(245,242,236,0.1);
    border-radius: 2px; color: rgba(245,242,236,0.7);
}
.social-links a:hover { background: var(--champagne); color: var(--noir); border-color: var(--champagne); }
.footer-bottom { border-top: 1px solid rgba(245,242,236,0.08); color: rgba(245,242,236,0.35); }

.toast { background: #101014; border: 1px solid rgba(203,179,137,0.3); border-radius: 2px; color: var(--off-white); }

/* the mobile dropdown sheet is set inline by main.js, so it needs the dark tone too */
@media (max-width: 900px) { .nav-links { background: rgba(10,10,12,0.97) !important; } }
