
/* ═══════════════════════════════════════════════
   DEMANDIYA — ULTRA PREMIUM DESIGN SYSTEM v2.0
   Inspired by: Apple • Loro Piana • Aesop • Tesla
   ═══════════════════════════════════════════════ */

:root {
  /* Core Palette — Warm Obsidian + Ivory + Cinnabar */
  --ink:        #0C0C0F;
  --ink-80:     #1A1A20;
  --ink-60:     #2E2E38;
  --ink-40:     rgba(12,12,15,0.4);
  --ink-20:     rgba(12,12,15,0.12);
  --ink-10:     rgba(12,12,15,0.06);
  --ink-05:     rgba(12,12,15,0.03);

  --ivory:      #F8F6F1;
  --ivory-deep: #F0EDE5;
  --ivory-warm: #EAE6DC;
  --cream:      #FDFCF9;

  --cinnabar:   #D94F2B;
  --cinna-deep: #B83E1F;
  --cinna-glow: rgba(217,79,43,0.15);
  --cinna-soft: rgba(217,79,43,0.08);

  --gold:       #C9A84C;
  --gold-light: rgba(201,168,76,0.12);

  --sage:       #3B6B54;
  --sage-light: rgba(59,107,84,0.1);

  /* Typography Scale */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
  --font-mono:  'DM Mono', monospace;

  /* Spatial System */
  --nav-h:      72px;
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       20px;
  --r-xl:       28px;
  --r-2xl:      40px;
  --r-pill:     999px;

  /* Shadows — multi-layer depth */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 24px 56px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.07);

  /* Glassmorphism */
  --glass-bg:   rgba(253,252,249,0.72);
  --glass-bdr:  rgba(255,255,255,0.5);
  --glass-blur: blur(20px) saturate(180%);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:   cubic-bezier(0.0, 0, 0.2, 1);
  --t-fast:     160ms var(--ease);
  --t-mid:      280ms var(--ease);
  --t-slow:     450ms var(--ease);
  --t-spring:   400ms var(--ease-spring);
}

[data-theme="dark"] {
  --ink:        #F2F0EA;
  --ink-80:     #D8D5CC;
  --ink-60:     #A8A49C;
  --ink-40:     rgba(242,240,234,0.4);
  --ink-20:     rgba(242,240,234,0.12);
  --ink-10:     rgba(242,240,234,0.06);
  --ink-05:     rgba(242,240,234,0.03);
  --ivory:      #111118;
  --ivory-deep: #16161E;
  --ivory-warm: #1C1C26;
  --cream:      #0E0E14;
  --glass-bg:   rgba(22,22,30,0.75);
  --glass-bdr:  rgba(255,255,255,0.08);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ═══ CUSTOM CURSOR ═══ */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--cinnabar);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1.5px solid var(--cinnabar);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease);
  opacity: 0.5;
}
body.cursor-hover #cursor { width: 48px; height: 48px; background: var(--cinnabar); opacity: 0.15; }
body.cursor-hover #cursor-ring { opacity: 0; }
@media (hover: none) { #cursor, #cursor-ring { display: none; } body { cursor: auto; } button { cursor: pointer; } }

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--ink-20); border-radius: 4px; }

/* ═══════════════════════════
   NAVIGATION — Ultra Glass
   ═══════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-bdr);
  transition: var(--t-mid);
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--ink-10);
}
.nav-inner {
  width: 100%; max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center; gap: 2rem;
}
@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 1rem; }
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
}
.nav-logo img { height: 32px; width: auto; object-fit: contain; }
.nav-logo-fallback {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* Search */
.nav-search {
  position: relative; max-width: 520px; margin: 0 auto; width: 100%;
}
.nav-search-input {
  width: 100%; height: 42px;
  padding: 0 3rem 0 1.25rem;
  background: var(--ink-05);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-pill);
  font-family: var(--font-sans); font-size: 0.875rem;
  color: var(--ink); outline: none;
  transition: var(--t-mid);
}
.nav-search-input::placeholder { color: var(--ink-40); font-size: 0.8125rem; }
.nav-search-input:focus {
  background: var(--cream);
  border-color: var(--ink-20);
  box-shadow: 0 0 0 3px var(--cinna-soft);
}
.nav-search-icon {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--ink-40); pointer-events: none;
}
.nav-search-pills {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  display: none; z-index: 100;
  backdrop-filter: blur(20px);
}
.nav-search-input:focus ~ .nav-search-pills { display: block; }
.search-pill-group-title {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-40); padding: 0.4rem 0.5rem 0.6rem;
}
.search-row {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.5rem 0.625rem; border-radius: var(--r-sm);
  cursor: none; transition: background var(--t-fast);
}
.search-row:hover { background: var(--ink-05); }
.search-row-img {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  object-fit: cover; background: var(--ivory-deep); flex-shrink: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
}
.search-row-title { font-size: 0.875rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.search-row-sub { font-size: 0.75rem; color: var(--ink-40); }
.search-arrow { margin-left: auto; color: var(--ink-20); font-size: 0.75rem; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.375rem; }
.nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-60); transition: var(--t-fast); position: relative;
  background: transparent;
}
.nav-btn:hover { background: var(--ink-05); color: var(--ink); }
.nav-btn svg { width: 18px; height: 18px; }
.nav-badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--cinnabar); color: #fff;
  border-radius: var(--r-pill); border: 2px solid var(--ivory);
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
}
.nav-cta {
  height: 36px; padding: 0 1.125rem;
  background: var(--ink); color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.8125rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.375rem;
  transition: var(--t-mid); white-space: nowrap;
}
.nav-cta:hover { background: var(--ink-80); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.theme-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-40); background: var(--ink-05);
  transition: var(--t-fast); font-size: 0.875rem;
}
.theme-btn:hover { border-color: var(--ink-20); color: var(--ink); }

/* Sub-nav categories */
.subnav {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 499;
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--ink-10);
  overflow-x: auto; scrollbar-width: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 0;
  height: 46px; white-space: nowrap;
}
.subnav-link {
  height: 100%; display: flex; align-items: center; gap: 0.375rem;
  padding: 0 1rem; font-size: 0.8125rem; font-weight: 500;
  color: var(--ink-60); border-bottom: 2px solid transparent;
  transition: var(--t-fast); white-space: nowrap; cursor: none;
}
.subnav-link:hover { color: var(--ink); border-bottom-color: var(--ink-20); }
.subnav-link.active { color: var(--ink); border-bottom-color: var(--cinnabar); font-weight: 600; }
.subnav-link .cat-emoji { font-size: 0.9rem; }

/* Page offset for fixed navs */
.page-offset { padding-top: calc(var(--nav-h) + 46px); }

/* ═══════════════════════════
   PROMO TICKER
   ═══════════════════════════ */
.ticker {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
  overflow: hidden; height: 34px;
  display: flex; align-items: center;
  position: fixed; top: calc(var(--nav-h) + 46px); left: 0; right: 0;
  z-index: 498;
}
/* Actually put ticker at top, push nav below */
.ticker { position: relative; top: auto; }
.subnav { position: relative; top: auto; }
.nav { position: sticky; top: 0; }
.page-offset { padding-top: 0; }

.ticker-track {
  display: flex; align-items: center; gap: 2.5rem;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap; padding-left: 100%;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.ticker-dot { width: 3px; height: 3px; background: var(--cinnabar); border-radius: 50%; flex-shrink: 0; }
.ticker-hl { color: var(--gold); font-weight: 600; }

/* ═══════════════════════════
   HERO — Editorial Luxury
   ═══════════════════════════ */
.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ink);
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
}

/* Left panel — text */
.hero-text-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem);
  position: relative; z-index: 2;
  background: linear-gradient(135deg, #0C0C0F 0%, #1a1520 100%);
}
.hero-text-panel::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.06), transparent);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.hero-h1 em {
  font-style: italic; color: var(--cinnabar);
  font-weight: 400;
}
.hero-h1-sub {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 300; font-style: italic;
  color: rgba(248,246,241,0.35);
  line-height: 1.1; margin-bottom: 2.5rem;
}
.hero-body {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(248,246,241,0.5);
  max-width: 380px; margin-bottom: 3rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.btn-hero-primary {
  height: 52px; padding: 0 2rem;
  background: var(--cinnabar);
  color: #fff; border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.625rem;
  transition: var(--t-mid); position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity var(--t-fast);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(217,79,43,0.4); }
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn-hero-primary:hover svg { transform: translateX(3px); }
.btn-hero-ghost {
  height: 52px; padding: 0 2rem;
  background: transparent;
  color: rgba(248,246,241,0.6);
  border: 1px solid rgba(248,246,241,0.12);
  border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 400;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--t-mid);
}
.btn-hero-ghost:hover {
  border-color: rgba(248,246,241,0.3);
  color: var(--ivory);
  background: rgba(248,246,241,0.04);
}
.hero-stats {
  display: flex; gap: 0; margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(248,246,241,0.08);
}
.hero-stat { flex: 1; padding-right: 2rem; }
.hero-stat + .hero-stat {
  padding-left: 2rem; padding-right: 0;
  border-left: 1px solid rgba(248,246,241,0.08);
}
.hero-stat-num {
  font-family: var(--font-serif); font-size: 2.25rem; font-weight: 400;
  color: var(--ivory); line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(248,246,241,0.35); margin-top: 0.4rem;
}

/* Right panel — hero image mosaic */
.hero-visual {
  position: relative; overflow: hidden;
  background: #0E0E12;
}
@media (max-width: 860px) { .hero-visual { height: 60vw; min-height: 300px; } }
.hero-img-main {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transform: scale(1.03); transition: transform 8s var(--ease);
}
.hero-img-main:hover { transform: scale(1); }
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,12,15,0.7) 0%, transparent 50%),
              linear-gradient(to top, rgba(12,12,15,0.5) 0%, transparent 40%);
  pointer-events: none;
}
/* Floating glass card over hero */
.hero-float-card {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  background: rgba(253,252,249,0.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg); padding: 1.25rem 1.5rem;
  min-width: 220px; box-shadow: var(--shadow-xl);
}
.hero-float-label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.hero-float-product { font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.hero-float-price { font-size: 1.375rem; font-family: var(--font-serif); font-weight: 400; color: var(--gold); }
.hero-float-cta {
  margin-top: 1rem; width: 100%; height: 36px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill); color: #fff; font-size: 0.8rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast);
}
.hero-float-cta:hover { background: rgba(255,255,255,0.2); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(248,246,241,0.3); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: var(--font-mono); z-index: 10;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(248,246,241,0.3), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 0.8; transform: scaleY(0.6); } }
@media (max-width: 860px) { .hero-scroll { display: none; } }

/* ═══════════════════════════
   MARQUEE BRANDS STRIP
   ═══════════════════════════ */
.brands-strip {
  background: var(--cream); border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10);
  padding: 1.5rem 0; overflow: hidden;
}
.brands-track {
  display: flex; align-items: center; gap: 4rem;
  animation: brands-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-name {
  font-family: var(--font-serif); font-size: 1.125rem; font-weight: 400;
  color: var(--ink-40); letter-spacing: 0.12em; text-transform: uppercase;
  flex-shrink: 0; transition: color var(--t-fast); cursor: none;
}
.brand-name:hover { color: var(--ink); }
.brand-sep { width: 4px; height: 4px; background: var(--ink-20); border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════
   SECTION SYSTEM
   ═══════════════════════════ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--ivory-deep); }
.container {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-eyebrow-text {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cinnabar); margin-bottom: 1rem;
}
.section-eyebrow-text::after {
  content: ''; display: block; width: 40px; height: 1px; background: currentColor;
}
.section-h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300; line-height: 1.15; color: var(--ink);
  letter-spacing: -0.01em;
}
.section-h2 em { font-style: italic; font-weight: 300; }
.section-subtitle {
  margin-top: 0.75rem; font-size: 1rem; color: var(--ink-60);
  max-width: 480px; line-height: 1.7;
}
.section-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.btn-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--ink-20); padding-bottom: 2px;
  transition: var(--t-fast); white-space: nowrap;
}
.btn-link:hover { border-color: var(--ink); gap: 0.75rem; }
.btn-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════
   CATEGORY GRID — Premium
   ═══════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: none;
  background: var(--ivory-warm);
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.75) 0%, transparent 55%);
  z-index: 1; transition: opacity var(--t-mid);
}
.cat-card:hover::before { opacity: 0.9; }
.cat-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem; z-index: 2;
}
.cat-card-name {
  font-family: var(--font-serif); font-size: 1.0625rem; font-weight: 400;
  color: #fff; line-height: 1.3;
}
.cat-card-count {
  font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em; margin-top: 0.25rem;
}
.cat-card-arrow {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transform: translateY(4px);
  transition: var(--t-mid);
}
.cat-card-arrow svg { width: 12px; height: 12px; }
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   PRODUCT CARD — Ultra Premium Redesign
   ═══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 460px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

.product-card {
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--ink-20);
  transform: translateY(-6px);
}

/* Product Image Container */
.pc-img-wrap {
  position: relative; overflow: hidden;
  background: var(--ivory-deep);
  aspect-ratio: 4/5;
}
.pc-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.product-card:hover .pc-img { transform: scale(1.06); }

/* Overlays on image */
.pc-badges {
  position: absolute; top: 0.875rem; left: 0.875rem;
  display: flex; flex-direction: column; gap: 0.35rem; z-index: 2;
}
.pc-badge {
  display: inline-flex; align-items: center;
  height: 22px; padding: 0 0.6rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r-pill); white-space: nowrap;
}
.pc-badge-sale { background: var(--cinnabar); color: #fff; }
.pc-badge-new { background: var(--ink); color: #fff; }
.pc-badge-sold { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
.pc-badge-organic { background: var(--sage); color: #fff; }

.pc-wishlist {
  position: absolute; top: 0.875rem; right: 0.875rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(253,252,249,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-40); transition: var(--t-spring);
  box-shadow: var(--shadow-sm);
}
.pc-wishlist:hover { transform: scale(1.1); color: var(--cinnabar); border-color: var(--cinna-glow); }
.pc-wishlist.active { color: var(--cinnabar); background: rgba(217,79,43,0.08); }
.pc-wishlist svg { width: 15px; height: 15px; }

/* Quick actions overlay */
.pc-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(12,12,15,0.6) 0%, transparent 50%);
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--t-mid), transform var(--t-mid);
}
.product-card:hover .pc-overlay { opacity: 1; transform: translateY(0); }
.pc-actions { display: flex; gap: 0.5rem; width: 100%; }
.pc-btn-cart {
  flex: 1; height: 40px;
  background: var(--cinnabar); color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: var(--t-fast); border: none; cursor: none;
}
.pc-btn-cart:hover { background: var(--cinna-deep); }
.pc-btn-cart svg { width: 14px; height: 14px; }
.pc-btn-view {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(253,252,249,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast); flex-shrink: 0; cursor: none;
}
.pc-btn-view:hover { background: rgba(253,252,249,0.25); }
.pc-btn-view svg { width: 14px; height: 14px; }

/* Progress bar (stock indicator) */
.pc-stock {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  height: 2px; background: rgba(255,255,255,0.15);
}
.pc-stock-fill { height: 100%; background: var(--cinnabar); border-radius: var(--r-pill); }

/* Product Info Panel */
.pc-info {
  padding: 1.125rem 1.25rem 1.25rem;
  flex: 1; display: flex; flex-direction: column; gap: 0.5rem;
}
.pc-seller-row {
  display: flex; align-items: center; gap: 0.375rem;
}
.pc-seller-dot { width: 4px; height: 4px; background: var(--sage); border-radius: 50%; }
.pc-seller-name {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--sage);
}
.pc-verified-icon { color: var(--sage); }
.pc-verified-icon svg { width: 11px; height: 11px; }
.pc-name {
  font-size: 0.9375rem; font-weight: 400; color: var(--ink);
  line-height: 1.45; letter-spacing: -0.01em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-rating-row { display: flex; align-items: center; gap: 0.5rem; }
.stars-row { display: flex; gap: 1.5px; }
.star-icon { width: 11px; height: 11px; }
.star-icon.filled { color: var(--gold); }
.star-icon.empty  { color: var(--ink-20); }
.star-icon svg { width: 100%; height: 100%; fill: currentColor; }
.pc-rating-count { font-size: 0.75rem; color: var(--ink-40); }
.pc-price-row {
  display: flex; align-items: baseline; gap: 0.625rem;
  margin-top: 0.25rem;
}
.pc-price {
  font-family: var(--font-serif); font-size: 1.3125rem; font-weight: 400;
  color: var(--ink); letter-spacing: -0.01em;
}
.pc-mrp {
  font-size: 0.8125rem; color: var(--ink-40);
  text-decoration: line-through;
}
.pc-off {
  font-size: 0.75rem; font-weight: 600;
  color: var(--cinnabar);
  background: var(--cinna-soft);
  padding: 0.15rem 0.45rem; border-radius: var(--r-sm);
}

/* ═══════════════════════════
   DEALS — Premium Flash Sale
   ═══════════════════════════ */
.deals-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem; align-items: stretch;
}
@media (max-width: 900px) { .deals-wrapper { grid-template-columns: 1fr; } }

.deal-panel {
  background: var(--ink);
  border-radius: var(--r-2xl); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.deal-panel::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,79,43,0.3), transparent 70%);
}
.deal-panel::after {
  content: '';
  position: absolute; bottom: -60px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
}
.deal-panel-content { position: relative; z-index: 1; }
.deal-eyebrow {
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cinnabar); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.deal-eyebrow::before { content: ''; width: 16px; height: 1px; background: currentColor; }
.deal-title {
  font-family: var(--font-serif); font-size: 2.25rem; font-weight: 300;
  color: var(--ivory); line-height: 1.2;
}
.deal-subtitle {
  font-size: 0.875rem; color: rgba(248,246,241,0.4);
  margin-top: 0.75rem; line-height: 1.6;
}
.deal-timer-wrap { margin-top: 2rem; }
.deal-timer-label {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,246,241,0.3); margin-bottom: 0.75rem; font-family: var(--font-mono);
}
.deal-timer {
  display: flex; align-items: center; gap: 0.5rem;
}
.timer-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm); padding: 0.5rem 0.75rem; min-width: 52px;
}
.timer-num {
  font-family: var(--font-serif); font-size: 1.875rem; font-weight: 400;
  color: var(--ivory); line-height: 1; letter-spacing: -0.02em;
}
.timer-lbl {
  font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,246,241,0.3); margin-top: 0.2rem; font-family: var(--font-mono);
}
.timer-sep {
  font-family: var(--font-serif); font-size: 1.5rem; color: rgba(248,246,241,0.2);
  margin-bottom: 0.5rem;
}
.deal-cta {
  margin-top: 2.5rem; width: 100%; height: 44px;
  background: var(--cinnabar); color: #fff;
  border-radius: var(--r-pill); font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: var(--t-mid);
}
.deal-cta:hover { background: var(--cinna-deep); box-shadow: 0 8px 24px rgba(217,79,43,0.35); }
.deal-cta svg { width: 14px; height: 14px; }
.deal-products { overflow: hidden; }
.deal-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .deal-scroll { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .deal-scroll { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* ═══════════════════════════
   OFFER BANNERS — Full-bleed
   ═══════════════════════════ */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  min-height: clamp(220px, 28vw, 340px);
  cursor: none; display: flex;
}
.offer-card:first-child { grid-row: span 2; min-height: unset; }
@media (max-width: 900px) { .offer-card:first-child { grid-row: span 1; } }
.offer-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.offer-card:hover .offer-img { transform: scale(1.05); }
.offer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  transition: background var(--t-mid);
}
.offer-card:hover .offer-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 60%, transparent 100%); }
.offer-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; width: 100%;
}
.offer-tag-text {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.offer-title-text {
  font-family: var(--font-serif); font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 300; color: #fff; line-height: 1.2;
}
.offer-desc-text {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  margin-top: 0.4rem; line-height: 1.5;
}
.offer-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 1px;
  transition: var(--t-fast); width: fit-content;
}
.offer-link:hover { color: #fff; border-color: rgba(255,255,255,0.6); gap: 0.75rem; }
.offer-link svg { width: 12px; height: 12px; }

/* ═══════════════════════════
   SELLERS SECTION
   ═══════════════════════════ */
.sellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .sellers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .sellers-grid { grid-template-columns: 1fr; } }

.seller-card {
  border: 1px solid var(--ink-10);
  border-radius: var(--r-xl);
  overflow: hidden; background: var(--cream);
  transition: var(--t-mid); cursor: none;
}
.seller-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ink-20); }
.seller-cover {
  height: 120px; position: relative; overflow: hidden;
}
.seller-cover-img { width: 100%; height: 100%; object-fit: cover; }
.seller-cover-overlay { position: absolute; inset: 0; background: rgba(12,12,15,0.3); }
.seller-body { padding: 1.5rem; }
.seller-avatar-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: -2.25rem; margin-bottom: 1rem; }
.seller-avatar {
  width: 56px; height: 56px; border-radius: var(--r-md);
  border: 3px solid var(--cream);
  overflow: hidden; background: var(--ivory-deep); flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  font-size: 1.75rem; display: flex; align-items: center; justify-content: center;
}
.seller-avatar img { width: 100%; height: 100%; object-fit: cover; }
.seller-verified-badge {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--sage); background: var(--sage-light);
  padding: 0.3rem 0.6rem; border-radius: var(--r-pill);
  border: 1px solid rgba(59,107,84,0.2);
}
.seller-verified-badge svg { width: 10px; height: 10px; }
.seller-name { font-size: 1rem; font-weight: 600; color: var(--ink); }
.seller-since { font-size: 0.75rem; color: var(--ink-40); margin-top: 0.15rem; }
.seller-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; margin: 1.125rem 0;
  padding: 1rem; background: var(--ink-05);
  border-radius: var(--r-md);
}
.seller-metric-val { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 400; color: var(--ink); }
.seller-metric-lbl { font-size: 0.65rem; color: var(--ink-40); margin-top: 0.1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.seller-cats {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.125rem;
}
.seller-cat-tag {
  font-size: 0.7rem; color: var(--ink-60); background: var(--ink-05);
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
  border: 1px solid var(--ink-10);
}
.seller-visit-btn {
  width: 100%; height: 40px;
  background: var(--ink); color: var(--ivory);
  border-radius: var(--r-pill); font-size: 0.8125rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: var(--t-fast);
}
.seller-visit-btn:hover { background: var(--ink-80); }
.seller-visit-btn svg { width: 13px; height: 13px; }

/* ═══════════════════════════
   HORIZONTAL SCROLL SECTION
   ═══════════════════════════ */
.hscroll-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; }
.hscroll-controls { display: flex; gap: 0.5rem; }
.hscroll-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--ink-20); background: var(--cream);
  color: var(--ink-60); display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast); cursor: none;
}
.hscroll-btn:hover { border-color: var(--ink); color: var(--ink); background: var(--ink-05); }
.hscroll-btn svg { width: 16px; height: 16px; }
.hscroll-track {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem; scrollbar-width: none;
}
.hscroll-track::-webkit-scrollbar { display: none; }
.hscroll-track .product-card { min-width: 240px; scroll-snap-align: start; flex-shrink: 0; }
@media (max-width: 640px) { .hscroll-track .product-card { min-width: 180px; } }

/* ═══════════════════════════
   NEWSLETTER — Elevated CTA
   ═══════════════════════════ */
.newsletter-section {
  background: var(--ink); padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(217,79,43,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 30%, rgba(201,168,76,0.1) 0%, transparent 50%);
}
.newsletter-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto; text-align: center;
}
.nl-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.nl-h2 {
  font-family: var(--font-serif); font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300; color: var(--ivory); line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 1rem;
}
.nl-h2 em { font-style: italic; color: var(--cinnabar); }
.nl-sub { font-size: 1rem; color: rgba(248,246,241,0.45); line-height: 1.7; margin-bottom: 2.5rem; }
.nl-form { display: flex; gap: 0.75rem; max-width: 440px; margin: 0 auto; }
@media (max-width: 480px) { .nl-form { flex-direction: column; } }
.nl-input {
  flex: 1; height: 50px; padding: 0 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--ivory);
  outline: none; transition: var(--t-mid);
}
.nl-input::placeholder { color: rgba(248,246,241,0.3); }
.nl-input:focus { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.09); }
.nl-submit {
  height: 50px; padding: 0 1.75rem;
  background: var(--cinnabar); color: #fff;
  border-radius: var(--r-pill); font-size: 0.875rem; font-weight: 600;
  transition: var(--t-mid); white-space: nowrap; flex-shrink: 0;
}
.nl-submit:hover { background: var(--cinna-deep); box-shadow: 0 8px 24px rgba(217,79,43,0.4); transform: translateY(-1px); }
.nl-perks { display: flex; justify-content: center; gap: 2rem; margin-top: 1.75rem; flex-wrap: wrap; }
.nl-perk {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.78rem; color: rgba(248,246,241,0.35);
}
.nl-perk svg { width: 12px; height: 12px; color: var(--sage); }

/* ═══════════════════════════
   TRUST STRIP
   ═══════════════════════════ */
.trust-strip {
  padding: 2.75rem 0; border-top: 1px solid var(--ink-10);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.trust-item { display: flex; align-items: flex-start; gap: 1rem; }
.trust-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-md); background: var(--ink-05);
  border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--cinnabar); font-size: 1.25rem;
}
.trust-item-title { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.trust-item-sub { font-size: 0.8rem; color: var(--ink-40); margin-top: 0.2rem; line-height: 1.5; }

/* ═══════════════════════════
   FOOTER — Minimal Luxury
   ═══════════════════════════ */
.footer { background: var(--ink); padding: 5rem 0 0; }
[data-theme="light"] .footer { background: #0C0C0F; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-logo {
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 300;
  color: var(--ivory); letter-spacing: 0.06em; margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.875rem; color: rgba(248,246,241,0.35); line-height: 1.75; max-width: 280px;
}
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.75rem; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 600;
  transition: var(--t-fast); cursor: none;
}
.footer-social-btn:hover { border-color: var(--cinnabar); color: var(--cinnabar); background: var(--cinna-soft); }
.footer-col-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-link { font-size: 0.9rem; color: rgba(248,246,241,0.4); transition: color var(--t-fast); cursor: none; }
.footer-link:hover { color: var(--ivory); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-pay { display: flex; gap: 0.5rem; }
.pay-pill {
  height: 24px; padding: 0 0.6rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.4);
  display: flex; align-items: center;
}

/* ═══════════════════════════
   MOBILE BOTTOM NAV
   ═══════════════════════════ */
.mob-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--ink-10);
  padding: 0.5rem 0 max(0.75rem, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 640px) { .mob-nav { display: block; } body { padding-bottom: 72px; } }
.mob-nav-inner { display: flex; justify-content: space-around; }
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.4rem 1rem; color: var(--ink-40); cursor: pointer;
}
.mob-nav-item.active { color: var(--cinnabar); }
.mob-nav-item svg { width: 22px; height: 22px; }
.mob-nav-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.04em; }

/* ═══════════════════════
   QUICK VIEW MODAL
   ═══════════════════════ */
.qv-modal {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(12,12,15,0.6); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.qv-modal.open { display: flex; animation: fadeIn 0.2s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.qv-inner {
  background: var(--cream); border-radius: var(--r-2xl);
  width: 100%; max-width: 720px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  display: grid; grid-template-columns: 1fr 1fr;
  animation: slideUp 0.3s var(--ease-spring);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 600px) { .qv-inner { grid-template-columns: 1fr; } }
.qv-img-wrap { border-radius: var(--r-2xl) 0 0 var(--r-2xl); overflow: hidden; background: var(--ivory-deep); aspect-ratio: 1; }
@media (max-width: 600px) { .qv-img-wrap { border-radius: var(--r-2xl) var(--r-2xl) 0 0; } }
.qv-img { width: 100%; height: 100%; object-fit: cover; }
.qv-content { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.qv-close {
  align-self: flex-end; width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink-05); border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-60); cursor: none; transition: var(--t-fast);
}
.qv-close:hover { background: var(--ink-10); color: var(--ink); }
.qv-close svg { width: 14px; height: 14px; }
.qv-seller { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }
.qv-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--ink); line-height: 1.3; }
.qv-price-row { display: flex; align-items: baseline; gap: 0.75rem; }
.qv-price { font-family: var(--font-serif); font-size: 1.875rem; color: var(--ink); }
.qv-mrp { font-size: 0.875rem; color: var(--ink-40); text-decoration: line-through; }
.qv-off { font-size: 0.8rem; font-weight: 600; color: var(--cinnabar); }
.qv-actions { display: flex; gap: 0.75rem; margin-top: auto; }
.qv-btn-add {
  flex: 1; height: 48px; background: var(--cinnabar); color: #fff;
  border-radius: var(--r-pill); font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: var(--t-fast); border: none; cursor: none;
}
.qv-btn-add:hover { background: var(--cinna-deep); }
.qv-btn-wish {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--ink-20); background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-60); transition: var(--t-spring); cursor: none;
}
.qv-btn-wish:hover { border-color: var(--cinnabar); color: var(--cinnabar); transform: scale(1.1); }

/* ═══ UTILITIES ═══ */
.hidden { display: none !important; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.show { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
