/* ═══════════════════════════════════════════════════════════════════
   LUMIERE ESSENCE — Main Stylesheet
   File:    style.css
   Project: lumiereessence.in
   ─────────────────────────────────────────────────────────────────
   TABLE OF CONTENTS:
   01. Design Tokens (CSS variables)
   02. Reset & Base
   03. Scrollbar
   04. Announcement Bar
   05. Header & Navigation
   06. Mobile Navigation
   07. Overlay
   08. Hero Section
   09. Marquee / Ticker
   10. Section Base Styles
   11. Category Panels
   12. Feature Strip
   13. Product Grid & Cards
   14. Editorial / Featured
   15. AI Recommender
   16. Story Section
   17. Reviews
   18. Newsletter
   19. Footer
   20. Cart Sidebar
   21. Product Modal
   22. Auth Modal
   23. Checkout Modal
   24. Wishlist
   25. WhatsApp Button
   26. Toast Notification
   27. Sort Select
   28. Premium Animations & Transitions
   29. Email Popup
   30. Sticky Add to Cart Bar
   31. Recently Viewed
   32. Low Stock Badge
   33. Variant Selector
   34. Bundle Upsell
   35. Gift Wrap
   36. Accordion
   37. Press Strip
   38. Sustainability Section
   39. Admin Panel
   40. Dark Mode
   41. Candle Care Modal
   42. Product Card Thumbnails
   43. Modal Image Gallery
   44. Responsive Breakpoints
═══════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --ivory:       #F9F5EE;
  --ivory2:      #F2EBD9;
  --ivory3:      #E8DCC8;
  --warm-white:  #FDFAF5;
  --ink:         #1A1510;
  --ink2:        #2D2419;
  --ink3:        #4A3D2C;
  --muted:       #7A6245;
  --dim:         #A89070;
  --gold:        #C8860A;
  --gold2:       #E8A832;
  --gold3:       #D4A017;
  --border:      rgba(26,21,16,0.1);
  --border2:     rgba(26,21,16,0.18);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease2:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { -webkit-user-drag: none; user-select: none; pointer-events: none; }
a img, button img { pointer-events: auto; }
html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }
body { background: var(--warm-white); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--dim); }

/* ─── ANNOUNCEMENT BAR ────────────────────────────────────────── */
.announce {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 0.55rem 2rem;
  overflow: hidden;
  position: relative;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.announce a { color: var(--gold2); transition: color 0.2s; }
.announce a:hover { color: var(--gold); }
.announce-track { display: flex; }
.announce-track span { min-width: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.6s; position: absolute; width: 100%; opacity: 0; }
.announce-track span.active { opacity: 1; position: relative; }

/* ─── HEADER ──────────────────────────────────────────────────── */
#hdr {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#hdr.shadow { box-shadow: 0 2px 24px rgba(26,21,16,0.07); }
.hdr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 80px;
  max-width: 1600px;
  margin: 0 auto;
}
.hdr-logo img { height: 52px; }
.hdr-logo { display: flex; align-items: center; }
.hdr-center { position: absolute; left: 50%; transform: translateX(-50%); }
.hdr-center img { height: 52px; }
.hdr-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.hdr-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 400;
  transition: color 0.25s;
  white-space: nowrap;
}
.hdr-nav a:hover { color: var(--gold); }
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.hdr-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink3);
  transition: color 0.25s;
  position: relative;
  cursor: pointer;
}
.hdr-btn:hover { color: var(--gold); }
.hdr-btn svg { width: 19px; height: 19px; stroke-width: 1.5; }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 8px;
  font-size: 0.55rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}
.cart-badge:empty, .cart-badge[data-empty] { display: none; }
.hdr-signin {
  margin-left: 0.5rem;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
}
.hdr-signin:hover { background: var(--ink); color: var(--ivory); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); transition: all 0.3s; display: block; }

/* ─── MOBILE NAV ──────────────────────────────────────────────── */
#mnav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--warm-white);
  display: flex; flex-direction: column;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease2);
}
#mnav.open { transform: translateX(0); }
.mnav-close { align-self: flex-end; font-size: 1.3rem; color: var(--muted); cursor: pointer; padding: 0.5rem; margin-bottom: 2rem; transition: color 0.25s; }
.mnav-close:hover { color: var(--ink); }
#mnav a { font-family: var(--serif); font-size: 2.2rem; color: var(--ink); letter-spacing: 0.04em; padding: 0.6rem 0; border-bottom: 1px solid var(--border); transition: color 0.25s; display: block; }
#mnav a:hover { color: var(--gold); }

/* ─── OVERLAY ─────────────────────────────────────────────────── */
#overlay {
  position: fixed; inset: 0; z-index: 498;
  background: rgba(26,21,16,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
#overlay.on { opacity: 1; pointer-events: auto; }

/* ─── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 116px);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 7rem;
  position: relative;
  z-index: 2;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1208 0%, #2A1E0A 40%, #1C1408 100%);
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border: none;
  display: none; pointer-events: none;
}
#hero-video::-webkit-media-controls { display: none !important; }
#hero-video.loaded { display: block; z-index: 2; }
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,21,16,0.45) 0%, rgba(26,21,16,0.08) 60%, transparent 100%);
  z-index: 3; pointer-events: none;
}
.hero-video-ph {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  z-index: 2;
}
.hero-video-ph-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.85rem;
  color: #F9F5EE;
}
.hero-video-ph-inner svg {
  opacity: 0.5;
}
.hero-video-ph-inner span {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.5;
  color: #F9F5EE;
}
.hero-video-hint {
  font-size: 0.6rem !important;
  letter-spacing: 0.12em !important;
  opacity: 0.3 !important;
  text-align: center;
  max-width: 220px;
  line-height: 1.6;
  color: #F9F5EE !important;
}
/* Diagonal split overlay */
.hero-split {
  position: absolute; top: 0; left: 0; bottom: 0; width: 80px;
  background: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
}
/* Hero text */
.hero-year {
  font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.hero-year::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
  font-weight: 300;
}
.hero-rule { width: 50px; height: 1px; background: var(--gold); margin: 2rem 0; opacity: 0.7; }
.hero-sub {
  font-size: 0.82rem; color: var(--muted);
  font-weight: 300; line-height: 1.9; max-width: 320px;
  letter-spacing: 0.04em; margin-bottom: 3rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 2.25rem;
  background: var(--ink); color: var(--ivory);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-dark:hover { background: var(--gold); color: var(--ivory); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--border2); color: var(--ink2);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 400; transition: all 0.35s var(--ease);
  white-space: nowrap; background: none;
}
.btn-outline-light:hover { border-color: var(--ink); color: var(--ink); background: rgba(26,21,16,0.04); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 7rem;
  display: flex; align-items: center; gap: 1rem;
  color: var(--dim); font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.hero-scroll::before {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(200,134,10,0.5));
}

/* ─── MARQUEE ─────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--ivory2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 3.5rem; white-space: nowrap; will-change: transform; }
.marquee-track span { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.marquee-track .dot { color: var(--gold); font-size: 0.5rem; }

/* ─── SECTION BASE ────────────────────────────────────────────── */
.section { padding: 7rem 3.5rem; }
/* Offset for sticky header + announce bar (~116px total) */
section, #categories, #shop, #featured, #ai-recommender, #story, #reviews, #newsletter {
  scroll-margin-top: 96px;
}
.container { max-width: 1400px; margin: 0 auto; overflow: hidden; }
.section-label {
  font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.5; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--ink); line-height: 1.15;
  letter-spacing: 0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.title-rule { width: 50px; height: 1px; background: var(--border2); margin: 1.75rem 0; }
.body-copy { font-size: 0.88rem; color: var(--muted); line-height: 1.9; font-weight: 300; max-width: 460px; }

/* ─── CATEGORY PANELS ─────────────────────────────────────────── */
#categories { background: var(--warm-white); padding: 5rem 0 0; }
.cat-header { padding: 0 3.5rem 3.5rem; }
/* Full-bleed horizontal panels */
.cat-panels { display: grid; grid-template-columns: 1fr 1fr; height: 520px; gap: 2px; }
.cat-panel {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--ink2);
}
.cat-panel-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s var(--ease);
}
.cat-panel-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-panel:hover .cat-panel-bg { transform: scale(1.04); }
.cat-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, rgba(26,21,16,0.2) 50%, rgba(26,21,16,0.05) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.75rem;
  transition: background 0.4s;
}
.cat-panel:hover .cat-panel-overlay {
  background: linear-gradient(to top, rgba(26,21,16,0.9) 0%, rgba(26,21,16,0.3) 60%, rgba(26,21,16,0.1) 100%);
}
.cat-panel-num { font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-weight: 400; }
.cat-panel-name { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--ivory); line-height: 1; }
.cat-panel-name em { font-style: italic; display: block; font-size: 1.6rem; color: rgba(249,245,238,0.6); }
.cat-panel-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory); margin-top: 1.25rem; font-weight: 500;
  transition: gap 0.3s; opacity: 0.7;
}
.cat-panel:hover .cat-panel-cta { gap: 1rem; opacity: 1; }
.cat-panel-cta::after { content: '→'; transition: transform 0.3s; }
.cat-panel:hover .cat-panel-cta::after { transform: translateX(4px); }
/* Dividers between panels */
.cat-panel + .cat-panel { border-left: 1px solid rgba(249,245,238,0.08); }

/* Placeholder backgrounds for panels */
.ph-candle { background: #1C1408; }
.ph-spray  { background: #0C1408; }
.ph-perf   { background: #180A14; }

/* ─── PRODUCTS ────────────────────────────────────────────────── */
#shop { background: var(--warm-white); }
.shop-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.filter-row { display: flex; gap: 0; border: 1px solid var(--border); }
.filter-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  transition: all 0.25s; cursor: pointer; background: none;
  border-right: 1px solid var(--border);
  font-family: var(--sans);
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--ivory); }
.search-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid var(--border2); padding-bottom: 0.4rem;
}
.search-wrap input {
  background: none; border: none; outline: none;
  color: var(--ink); font-size: 0.82rem; font-weight: 300;
  width: 200px; letter-spacing: 0.03em;
}
.search-wrap input::placeholder { color: var(--dim); }
.search-wrap svg { width: 15px; height: 15px; color: var(--dim); flex-shrink: 0; }
/* Product grid — 4 columns, clean editorial */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--warm-white);
}
a.p-card { display: block; color: inherit; text-decoration: none; }
.p-card {
  background: var(--warm-white);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.p-card:hover { background: var(--ivory); z-index: 1; }
.p-img {
  aspect-ratio: 3/4;
  background: var(--ivory2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.p-img > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-card:hover .p-img { background: var(--ivory3); }
.p-img-icon { font-size: 2.75rem; opacity: 0.35; transition: transform 0.5s var(--ease), opacity 0.4s; }
.p-card:hover .p-img-icon { transform: scale(1.06); opacity: 0.5; }
.p-img-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }
.p-img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; height: 100%; background: linear-gradient(135deg, var(--ivory2) 0%, var(--ivory) 100%); }
.p-img-ph-icon { font-size: 2.5rem; opacity: 0.4; transition: transform 0.5s; }
.p-img-ph-name { font-family: var(--serif); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; text-align: center; padding: 0 0.5rem; font-style: italic; opacity: 0.7; }
.p-card:hover .p-img-ph-icon { transform: scale(1.08); }
.p-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}
.p-badge.bs { background: var(--ink); color: var(--ivory); }
.p-badge.nw { background: var(--gold); color: var(--ink); }
.p-badge.oos { background: #c0392b; color: #fff; }
.p-out-of-stock { opacity: 0.5; cursor: not-allowed !important; }
.p-hover-actions {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; gap: 0.5rem;
  transform: translateY(10px); opacity: 0;
  transition: all 0.35s var(--ease);
}
.p-card:hover .p-hover-actions { transform: translateY(0); opacity: 1; }
.p-quick-add {
  flex: 1; padding: 0.7rem; background: var(--ink); color: var(--ivory);
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; border: none; cursor: pointer;
  font-family: var(--sans); transition: background 0.25s;
}
.p-quick-add:hover { background: var(--ink2); }
.p-qty-stepper {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--ink); gap: 0;
}
.p-qty-btn {
  width: 36px; height: 100%; background: none; border: none;
  color: var(--ivory); font-size: 0.85rem; cursor: pointer;
  font-family: var(--sans); transition: background 0.2s;
}
.p-qty-btn:hover { background: var(--ink2); }
.p-qty-num {
  color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.1em;
  min-width: 28px; text-align: center; font-weight: 500;
}
.p-wish {
  width: 40px; background: var(--warm-white); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s; color: var(--muted); font-size: 0.9rem;
}
.p-wish:hover, .p-wish.on { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.p-share {
  width: 40px; background: var(--warm-white); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s; color: var(--muted);
}
.p-share:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.p-info { padding: 1.5rem 1.25rem 1.75rem; }
.p-cat { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim); margin-bottom: 0.4rem; font-weight: 500; }
.p-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); line-height: 1.3; margin-bottom: 0.35rem; }
.p-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-foot { display: flex; align-items: center; justify-content: space-between; }
.p-price { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.p-stars { display: flex; align-items: center; gap: 1px; }
.load-more-btn {
  display: block; margin: 3.5rem auto 0;
  padding: 0.9rem 3rem; border: 1px solid var(--ink);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); font-weight: 400; transition: all 0.3s;
  background: none; font-family: var(--sans); cursor: pointer;
}
.load-more-btn:hover { background: var(--ink); color: var(--ivory); }

/* ─── FEATURE STRIP ───────────────────────────────────────────── */
.feature-strip {
  background: var(--ivory2);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 3rem 3rem;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 0.6rem; margin-bottom: 1.25rem; opacity: 1; color: var(--gold); letter-spacing: 0.35em; }
.feature-title { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin-bottom: 0.5rem; font-weight: 400; letter-spacing: 0.02em; }
.feature-desc { font-size: 0.72rem; color: var(--muted); font-weight: 300; line-height: 1.75; }

/* ─── EDITORIAL — FEATURED ────────────────────────────────────── */
#featured { background: var(--ivory2); }
.editorial-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.editorial-img {
  aspect-ratio: 4/5; background: var(--ivory3);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; position: relative; overflow: hidden;
}
.editorial-img-ph { font-size: 6rem; opacity: 0.2; }
.editorial-img-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim); }
.editorial-body {}
.editorial-pull {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; font-style: italic; color: var(--ink);
  line-height: 1.35; letter-spacing: 0.01em; margin-bottom: 2rem;
}
.editorial-pull strong { font-style: normal; font-weight: 400; color: var(--gold); }
.editorial-p { font-size: 0.85rem; color: var(--muted); line-height: 1.95; margin-bottom: 1.5rem; font-weight: 300; }
.editorial-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); font-weight: 500; transition: gap 0.3s;
  border-bottom: 1px solid var(--border2); padding-bottom: 0.25rem;
}
.editorial-link:hover { gap: 1.25rem; border-bottom-color: var(--ink); }
.editorial-link::after { content: '→'; }
/* Reverse on alternate */
.editorial-grid.rev { direction: rtl; }
.editorial-grid.rev > * { direction: ltr; }

/* ─── AI RECOMMENDER ──────────────────────────────────────────── */
#ai-recommender { background: var(--warm-white); }
.ai-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 6rem; align-items: start;
}
.ai-left {}
.ai-title-block { margin-bottom: 2.5rem; }
.ai-label { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1.25rem; }
.ai-heading { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--ink); line-height: 1.2; }
.ai-heading em { font-style: italic; color: var(--gold); }
.ai-rule { width: 40px; height: 1px; background: rgba(200,134,10,0.4); margin: 2rem 0; }
.ai-body { font-size: 0.82rem; color: var(--muted); line-height: 1.9; font-weight: 300; }
/* Questions */
.ai-form {}
.ai-question { margin-bottom: 2rem; }
.ai-q-label {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 0.9rem; display: block; font-weight: 500;
}
.ai-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ai-opt {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border2);
  color: var(--muted); font-size: 0.72rem; font-weight: 400;
  cursor: pointer; transition: all 0.25s; background: none;
  font-family: var(--sans); font-weight: 300; letter-spacing: 0.05em;
}
.ai-opt:hover { border-color: var(--ink); color: var(--ink); background: var(--ivory); }
.ai-opt.sel { border-color: var(--gold); color: var(--gold); background: rgba(200,134,10,0.06); }
.btn-ivory {
  padding: 0.9rem 2.5rem; background: var(--ink); color: var(--ivory);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; border: none; cursor: pointer; font-family: var(--sans);
  transition: all 0.3s; margin-top: 0.5rem; display: inline-block;
}
.btn-ivory:hover { background: var(--gold); color: var(--ivory); }
.ai-clear {
  padding: 0.9rem 1.5rem; background: none; border: 1px solid var(--border2);
  color: var(--muted); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 400; cursor: pointer; font-family: var(--sans);
  transition: all 0.25s; margin-top: 0.5rem;
}
.ai-clear:hover { border-color: var(--ink); color: var(--ink); }
.ai-results { display: none; margin-top: 2.5rem; }
.ai-results.show { display: block; animation: fadeUp 0.5s var(--ease) both; }
.ai-results-label { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-weight: 400; }
.ai-products-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.ai-p-mini {
  background: var(--ivory2); padding: 1.25rem; cursor: pointer;
  transition: background 0.25s; text-align: center;
}
.ai-p-mini:hover { background: var(--ivory3); }
.ai-p-mini-icon { font-size: 2rem; opacity: 0.35; margin-bottom: 0.75rem; }
.ai-p-mini-name { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); }
.ai-p-mini-price { font-size: 0.75rem; color: var(--gold); margin-top: 0.25rem; }

/* ─── STORY ───────────────────────────────────────────────────── */
#story { background: var(--warm-white); }
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.story-img-col {
  position: relative; overflow: hidden; min-height: 600px;
  background: var(--ivory2);
  display: flex; align-items: center; justify-content: center;
}
.story-img-ph { font-size: 7rem; opacity: 0.12; }
.story-text-col {
  padding: 6rem 5.5rem 6rem;
  background: var(--ivory2);
  display: flex; flex-direction: column; justify-content: center;
}
.story-text-col .section-title { color: var(--ink); }
.story-text-col .title-rule { background: var(--border2); }
.story-p { font-size: 0.85rem; color: var(--muted); line-height: 1.95; margin-bottom: 1.25rem; font-weight: 300; }
.story-sig { font-family: var(--serif); font-size: 1.8rem; font-style: italic; color: var(--gold); opacity: 0.7; margin-top: 2rem; }
.story-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.stat-n { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-l { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-top: 0.3rem; }

/* ─── REVIEWS ─────────────────────────────────────────────────── */
#reviews { background: var(--ivory2); }
.reviews-header { margin-bottom: 3rem; }
.reviews-grid {
  display: flex; gap: 1.5rem; overflow: hidden; position: relative;
}
.reviews-track {
  display: flex; gap: 1.5rem; animation: reviewScroll 30s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rev-card {
  background: var(--warm-white); padding: 2rem 1.75rem;
  transition: background 0.3s, border-color 0.3s;
  min-width: 290px; max-width: 320px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  min-height: 230px; display: flex; flex-direction: column; justify-content: space-between;
}
.rev-card:hover { background: var(--ivory); border-bottom-color: var(--gold); }
.rev-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.rev-star { width: 9px; height: 9px; fill: var(--gold); }
.rev-text {
  font-family: var(--serif); font-size: 0.98rem; font-style: italic;
  color: var(--ink2); line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300;
}
.rev-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.rev-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ivory3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.95rem; color: var(--muted); font-weight: 400;
}
.rev-name { font-size: 0.8rem; color: var(--ink); font-weight: 400; }
.rev-date { font-size: 0.68rem; color: var(--dim); }

/* ─── INSTAGRAM ───────────────────────────────────────────────── */
#instagram { background: var(--ivory2); }
.insta-header { text-align: center; margin-bottom: 3rem; }
.insta-header .section-title { color: var(--ink); }
.insta-header .section-label { justify-content: center; color: var(--muted); }
.insta-header .section-label::before { background: var(--gold); opacity: 0.5; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.insta-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; position: relative; }
.insta-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; transition: transform 0.5s var(--ease); }
.insta-item:hover .insta-ph { transform: scale(1.06); }
.insta-ov { position: absolute; inset: 0; background: rgba(26,21,16,0.45); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.insta-item:hover .insta-ov { opacity: 1; }
.insta-icon { color: var(--ivory); font-size: 1.1rem; }
.insta-cta { text-align: center; margin-top: 3rem; }
.insta-follow {
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 2.5rem; border: 1px solid var(--border2);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink2); font-weight: 300; transition: all 0.3s;
  text-decoration: none;
}
.insta-follow:hover { border-color: var(--ink); color: var(--ink); background: var(--ivory); }
.insta-follow svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── NEWSLETTER ──────────────────────────────────────────────── */
#newsletter { background: var(--ivory2); text-align: center; }
.nl-inner { max-width: 560px; margin: 0 auto; }
.nl-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--ink); margin-bottom: 1rem; }
.nl-sub { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.9; margin-bottom: 3rem; }
.nl-form { display: flex; border: 1px solid var(--border2); }
.nl-form input { flex: 1; padding: 1rem 1.5rem; background: none; border: none; outline: none; font-size: 0.82rem; color: var(--ink); font-weight: 300; }
.nl-form input::placeholder { color: var(--dim); }
.nl-form button { padding: 1rem 2rem; background: var(--ink); color: var(--ivory); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; font-family: var(--sans); transition: background 0.3s; flex-shrink: 0; }
.nl-form button:hover { background: var(--gold); color: var(--ink); }
.nl-note { font-size: 0.68rem; color: var(--dim); margin-top: 1rem; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--ivory2); padding: 5rem 3.5rem 3rem; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3.5rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); }
.footer-brand-logo img { height: 44px; margin-bottom: 1.75rem; }
.footer-brand-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.9; max-width: 240px; font-weight: 300; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
.footer-soc { width: 34px; height: 34px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--dim); transition: all 0.25s; text-decoration: none; }
.footer-soc:hover { border-color: var(--gold); color: var(--gold); }
.footer-soc svg { width: 14px; height: 14px; }
.footer-col h4 { font-family: var(--serif); font-size: 0.95rem; font-weight: 500; color: var(--ink); margin-bottom: 0.85rem; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 0.3rem; font-size: 0.75rem; color: var(--muted); font-weight: 300; }
@keyframes emailPulse {
  0%, 100% { color: var(--muted); }
  25%, 75% { color: var(--gold); }
  50% { color: var(--muted); }
}
.highlight-pulse { animation: emailPulse 1.5s ease; }
.gifting-contact span.highlight-pulse { animation: giftEmailPulse 1.5s ease; }
@keyframes giftEmailPulse {
  0%, 100% { color: var(--gold); }
  25%, 75% { color: var(--ink); }
  50% { color: var(--gold); }
}
.footer-col ul li a { font-size: 0.75rem; color: var(--muted); transition: color 0.25s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.68rem; color: var(--dim); font-weight: 300; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.68rem; color: var(--dim); transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold); }

/* ─── CART ────────────────────────────────────────────────────── */
#cart-sidebar {
  position: fixed; right: 0; top: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: var(--warm-white); border-left: 1px solid var(--border);
  z-index: 600; transform: translateX(100%);
  transition: transform 0.5s var(--ease2);
  display: flex; flex-direction: column;
}
#cart-sidebar.open { transform: translateX(0); }
.cart-hdr {
  padding: 2rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-hdr h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); }
.cart-close { font-size: 1rem; color: var(--muted); cursor: pointer; transition: color 0.25s; padding: 0.25rem; }
.cart-close:hover { color: var(--ink); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-empty-state { text-align: center; padding: 5rem 0; color: var(--dim); }
.cart-empty-state p { font-size: 0.8rem; letter-spacing: 0.08em; margin-top: 1rem; }
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.cart-item-img { aspect-ratio: 1; background: var(--ivory2); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.cart-item-cat { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }
.cart-item-name { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin: 0.2rem 0; font-weight: 400; }
.cart-item-price { font-size: 0.88rem; color: var(--muted); }
.cart-qty { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.6rem; }
.qty-btn { width: 22px; height: 22px; border: 1px solid var(--border2); background: none; color: var(--muted); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.qty-btn:hover { border-color: var(--ink); color: var(--ink); }
.qty-n { font-size: 0.82rem; color: var(--ink); min-width: 18px; text-align: center; }
.cart-remove { color: var(--dim); cursor: pointer; font-size: 0.75rem; transition: color 0.2s; align-self: start; padding: 0.15rem; }
.cart-remove:hover { color: var(--ink); }
.cart-ftr { padding: 1.75rem 2rem; border-top: 1px solid var(--border); }
.cart-ship-hint { text-align: center; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--gold); padding: 0.6rem; margin-bottom: 1rem; border: 1px solid var(--border2); background: rgba(200,134,10,0.04); }
.cart-sub { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; }
.cart-tot { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin-bottom: 1.5rem; font-weight: 400; }
.cart-checkout-btn { width: 100%; padding: 1rem; background: var(--ink); color: var(--ivory); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; font-family: var(--sans); transition: background 0.3s; }
.cart-checkout-btn:hover { background: var(--gold); color: var(--ink); }
.cart-continue { display: block; text-align: center; margin-top: 1rem; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); cursor: pointer; transition: color 0.25s; }
.cart-continue:hover { color: var(--ink); }

/* ─── MODAL: PRODUCT ──────────────────────────────────────────── */
#product-modal { position: fixed; inset: 0; z-index: 700; display: none; align-items: center; justify-content: center; padding: 2rem; }
#product-modal.show { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(26,21,16,0.75); }
.modal-box { position: relative; background: var(--warm-white); width: 100%; max-width: 900px; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; }
.modal-close-btn { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 1rem; color: var(--muted); cursor: pointer; z-index: 1; padding: 0.25rem; transition: color 0.25s; }
.modal-close-btn:hover { color: var(--ink); }
.modal-img-col { background: var(--ivory2); display: grid; grid-template-columns: 72px 1fr; gap: 2px; overflow: hidden; position: relative; }

/* ─── ZOOM LENS (desktop hover) ──────────────────────────────── */
.modal-zoom-lens {
  position: absolute; inset: 0; z-index: 5;
  background-repeat: no-repeat;
  background-size: 250%;
  opacity: 0;
  cursor: zoom-in;
  transition: opacity 0.15s;
}
.modal-zoom-lens.active { opacity: 1; }
@media (max-width: 768px) { .modal-zoom-lens { display: none; } }

/* ─── FULLSCREEN ZOOM (mobile) ───────────────────────────────── */
.fs-zoom {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.fs-zoom.active { opacity: 1; pointer-events: auto; }
.fs-zoom-close {
  position: absolute; top: 1rem; right: 1rem;
  color: white; font-size: 1.5rem; z-index: 2;
  cursor: pointer; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15); border-radius: 50%;
}
.fs-zoom-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-family: var(--sans);
}
.fs-zoom-container {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; touch-action: none;
}
.fs-zoom-container img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform 0.15s ease-out;
  transform-origin: center center;
}

.modal-detail-col { padding: 2.5rem 2.5rem 2rem; }
.modal-cat { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim); margin-bottom: 0.5rem; }
.modal-name { font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--ink); line-height: 1.2; margin-bottom: 0.5rem; }
.modal-price { font-family: var(--serif); font-size: 1.5rem; color: var(--ink2); margin-bottom: 0.75rem; font-weight: 400; }
.modal-stars { display: flex; gap: 2px; margin-bottom: 1.25rem; }
.modal-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.5rem; font-weight: 300; }
.modal-notes-title { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim); margin-bottom: 0.75rem; }
.note-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.note-tag { padding: 0.25rem 0.75rem; border: 1px solid var(--border2); font-size: 0.68rem; color: var(--muted); }
.modal-delivery-est {
    font-size: 0.72rem; color: var(--ink); line-height: 1.7; margin-bottom: 1rem;
    padding: 0.75rem 1rem; border: 1px solid var(--border); background: rgba(200,134,10,0.03);
  }
  .modal-delivery-est strong { color: var(--gold); }
  .delivery-icon { margin-right: 0.25rem; }
  .delivery-urgency { font-size: 0.6rem; color: var(--muted); }
  .modal-disclaimer { font-size: 0.68rem; color: var(--muted); font-style: italic; margin-bottom: 1.25rem; padding: 0.5rem 0.75rem; background: var(--ivory2); border-left: 2px solid var(--gold); line-height: 1.5; }
.modal-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.modal-qty-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }
.modal-qty-ctrl { display: flex; align-items: center; gap: 0.75rem; border: 1px solid var(--border2); padding: 0.5rem 1rem; }
.modal-qty-ctrl button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1rem; transition: color 0.2s; }
.modal-qty-ctrl button:hover { color: var(--ink); }
.modal-qty-ctrl span { font-size: 0.9rem; color: var(--ink); min-width: 20px; text-align: center; }
.modal-actions { display: flex; gap: 0.75rem; }
.modal-add { flex: 1; padding: 0.95rem; background: var(--ink); color: var(--ivory); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; border: none; cursor: pointer; font-family: var(--sans); transition: background 0.3s; }
.modal-add:hover { background: var(--gold); color: var(--ink); }
.modal-wl { width: 46px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; color: var(--muted); font-size: 0.95rem; background: none; }
.modal-wl:hover, .modal-wl.on { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.modal-share { width: 46px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; color: var(--muted); background: none; }
.modal-share:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* ─── SHARE POPUP ──────────────────────────────────────────────── */
#share-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.share-popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.share-popup-box { position: relative; background: var(--warm-white, #fff); padding: 2rem; width: 90%; max-width: 320px; text-align: center; }
.share-popup-title { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--ink); }
.share-popup-options { display: flex; flex-direction: column; gap: 0.5rem; }
.share-opt { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; border: 1px solid var(--border2, #e0e0e0); background: none; cursor: pointer; font-family: var(--sans); font-size: 0.8rem; color: var(--ink); text-decoration: none; letter-spacing: 0.05em; transition: all 0.2s; }
.share-opt:hover { background: var(--ink); color: var(--ivory, #fff); border-color: var(--ink); }
.share-opt-icon { font-size: 1.1rem; width: 24px; text-align: center; }

/* ─── MODAL: AUTH ─────────────────────────────────────────────── */
#auth-modal { position: fixed; inset: 0; z-index: 800; display: none; align-items: center; justify-content: center; padding: 2rem; }
#auth-modal.show { display: flex; }
.auth-box { position: relative; background: var(--warm-white); width: 100%; max-width: 420px; padding: 3rem; }
.auth-close { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 1rem; color: var(--muted); cursor: pointer; transition: color 0.25s; }
.auth-close:hover { color: var(--ink); }
.auth-logo { text-align: center; margin-bottom: 2.5rem; }
.auth-logo img { height: 38px; margin: 0 auto; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.auth-tab { flex: 1; padding: 0.65rem; text-align: center; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); cursor: pointer; transition: color 0.25s; border-bottom: 2px solid transparent; margin-bottom: -1px; font-weight: 400; }
.auth-tab.on { color: var(--ink); border-bottom-color: var(--ink); }
.auth-panel { display: none; }
.auth-panel.on { display: block; }
.auth-field { margin-bottom: 1.25rem; }
.auth-field label { display: block; font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; font-weight: 400; }
.auth-field input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border2); background: none; color: var(--ink); font-size: 0.85rem; outline: none; transition: border-color 0.25s; font-family: var(--sans); font-weight: 300; }
.auth-field input:focus { border-color: var(--ink); }
.auth-submit { width: 100%; padding: 0.9rem; background: var(--ink); color: var(--ivory); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; border: none; cursor: pointer; font-family: var(--sans); transition: background 0.3s; margin-top: 0.5rem; }
.auth-submit:hover { background: var(--gold); color: var(--ink); }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 0.62rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.15em; }
.auth-google { width: 100%; padding: 0.9rem; border: 1px solid var(--border2); background: none; color: var(--ink); font-size: 0.78rem; cursor: pointer; font-family: var(--sans); transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 0.85rem; font-weight: 300; }
.auth-google:hover { background: var(--ivory2); border-color: var(--border2); }
.otp-row { display: flex; gap: 0.6rem; justify-content: center; margin: 1.5rem 0; }
.otp-digit { width: 42px; height: 50px; border: 1px solid var(--border2); text-align: center; font-size: 1.2rem; font-family: var(--serif); color: var(--ink); outline: none; background: none; transition: border-color 0.25s; }
.otp-digit:focus { border-color: var(--ink); }

/* ─── CHECKOUT ────────────────────────────────────────────────── */
#checkout-modal { position: fixed; inset: 0; z-index: 700; display: none; align-items: flex-start; justify-content: center; padding: 2rem; overflow-y: auto; }
#checkout-modal.show { display: flex; }
.checkout-box { position: relative; background: var(--warm-white); width: 100%; max-width: 820px; margin: auto; }
.checkout-header { padding: 1.75rem 2.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.checkout-header h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-weight: 400; }
.checkout-close { font-size: 1rem; color: var(--muted); cursor: pointer; transition: color 0.25s; }
.checkout-close:hover { color: var(--ink); }
.checkout-body { display: grid; grid-template-columns: 1.4fr 1fr; }
.checkout-left { padding: 2rem 2.5rem; border-right: 1px solid var(--border); }
.checkout-right { padding: 2rem 2rem; background: var(--ivory2); }
.checkout-section { margin-bottom: 2rem; }
.checkout-section-title { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); font-weight: 400; }
.co-field { margin-bottom: 1rem; }
.co-field label { display: block; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.co-field input, .co-field select { width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border2); background: var(--warm-white); color: var(--ink); font-size: 0.82rem; outline: none; transition: border-color 0.25s; font-family: var(--sans); -webkit-appearance: none; font-weight: 300; }
.co-field input:focus, .co-field select:focus { border-color: var(--ink); }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pay-opts { display: flex; flex-direction: column; gap: 0.6rem; }
.pay-opt { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1.1rem; border: 1px solid var(--border2); cursor: pointer; transition: all 0.25s; background: none; font-family: var(--sans); font-size: 0.78rem; color: var(--muted); font-weight: 300; text-align: left; width: 100%; }
.pay-opt.on, .pay-opt:hover { border-color: var(--ink); color: var(--ink); background: var(--ivory); }
.pay-icon { font-size: 1.1rem; }
.co-order-item { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); font-weight: 300; }
.co-summary-line { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.8rem; color: var(--muted); font-weight: 300; }
.co-summary-line.free span:last-child { color: var(--gold); font-weight: 400; }
.co-total { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-weight: 400; }
.gift-wrap-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 0.85rem; margin: 0.75rem 0; border: 1px solid var(--border2); cursor: pointer; transition: border-color 0.25s; }
.gift-wrap-row:hover { border-color: var(--gold); }
.gift-wrap-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ink); cursor: pointer; margin: 0; flex-shrink: 0; }
.gift-wrap-label { font-size: 0.78rem; color: var(--ink); font-weight: 300; font-family: var(--sans); }
.gift-wrap-price { color: var(--gold); font-weight: 400; }
.coupon-row { display: flex; border: 1px solid var(--border2); margin: 1rem 0; }
.coupon-row input { flex: 1; padding: 0.7rem 1rem; border: none; background: none; outline: none; font-size: 0.78rem; color: var(--ink); font-family: var(--sans); font-weight: 300; }
.coupon-row button { padding: 0.7rem 1rem; background: none; border: none; border-left: 1px solid var(--border2); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all 0.25s; font-family: var(--sans); }
.coupon-row button:hover { background: var(--ink); color: var(--ivory); }
.place-order { width: 100%; padding: 1rem; background: var(--ink); color: var(--ivory); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; font-family: var(--sans); transition: background 0.3s; margin-top: 1.5rem; }
.place-order:hover { background: var(--gold); color: var(--ink); }
.secure-note { font-size: 0.68rem; color: var(--dim); text-align: center; margin-top: 0.75rem; }

/* ─── WISHLIST ────────────────────────────────────────────────── */
#wishlist-modal { position: fixed; inset: 0; z-index: 600; display: none; flex-direction: column; background: var(--warm-white); }
#wishlist-modal.show { display: flex; }
.wl-hdr { padding: 2rem 3.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.wl-hdr h2 { font-family: var(--serif); font-size: 2rem; color: var(--ink); font-weight: 400; }
.wl-close { font-size: 1rem; color: var(--muted); cursor: pointer; transition: color 0.25s; }
.wl-close:hover { color: var(--ink); }
.wl-body { padding: 3rem 3.5rem; overflow-y: auto; flex: 1; }
.wl-empty { text-align: center; padding: 6rem 0; color: var(--dim); font-size: 0.82rem; letter-spacing: 0.08em; }

/* ─── WHATSAPP ────────────────────────────────────────────────── */
.floating-btns { position: fixed; bottom: 2rem; right: 0.5rem; z-index: 400; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.admin-float-btn { width: 38px; height: 38px; background: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: transform 0.3s; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.25); border: 1px solid var(--gold); }
.admin-float-btn:hover { transform: scale(1.08); }
.discover-float-btn { width: 38px; height: 38px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: transform 0.3s; text-decoration: none; box-shadow: 0 4px 16px rgba(200,134,10,0.35); }
.discover-float-btn:hover { transform: scale(1.08); }
.wa-btn { width: 38px; height: 38px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: transform 0.3s; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 17px; height: 17px; }
.insta-btn { width: 38px; height: 38px; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: transform 0.3s; text-decoration: none; box-shadow: 0 4px 16px rgba(225,48,108,0.3); }
.insta-btn:hover { transform: scale(1.08); }
.insta-btn svg { width: 16px; height: 16px; }

/* ─── FLOATING CART (mobile) ──────────────────────────────────── */
.floating-cart {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 400;
  width: 54px;
  height: 54px;
  background: var(--ink);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,21,16,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  color: var(--ivory);
}
.floating-cart:active { transform: scale(0.95); }
.floating-cart svg { width: 22px; height: 22px; stroke: var(--ivory); }
.floating-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--sans);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
}
.floating-cart.visible { display: flex; }
body.dark-mode .floating-cart { background: var(--ivory); color: var(--ink); }
body.dark-mode .floating-cart svg { stroke: var(--ink); }
body.dark-mode .floating-cart-badge { background: #E8A832; }

/* ─── TOAST ───────────────────────────────────────────────────── */
#toast { position: fixed; bottom: 5.5rem; left: 50%; transform: translateX(-50%) translateY(8px); background: var(--ink); color: var(--ivory); padding: 0.8rem 2rem; font-size: 0.72rem; letter-spacing: 0.1em; z-index: 9999; opacity: 0; pointer-events: none; transition: all 0.3s; white-space: nowrap; }
#toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── SORT SELECT ──────────────────────────────────────────────── */
.sort-wrap { position: relative; }
.sort-select {
  appearance: none; -webkit-appearance: none;
  padding: 0.65rem 2.5rem 0.65rem 1.25rem;
  border: 1px solid var(--border2);
  background: var(--warm-white);
  color: var(--ink3);
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 400;
  cursor: pointer; outline: none; font-family: var(--sans);
  transition: border-color 0.25s, background 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238B7355' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.sort-select:hover, .sort-select:focus { border-color: var(--ink); color: var(--ink); background-color: var(--ivory); }

/* ─── PREMIUM TRANSITIONS & ANIMATIONS ─────────────────────────── */

/* Hero entrance animations */
.hero-year   { animation: heroFadeUp 1s 0.2s both; }
.hero-title  { animation: heroFadeUp 1.1s 0.38s both; }
.hero-rule   { animation: heroScaleX 0.8s 0.68s both; }
.hero-sub    { animation: heroFadeUp 1s 0.72s both; }
.hero-btns   { animation: heroFadeUp 1s 0.9s both; }
.hero-scroll { animation: heroFadeUp 1s 1.1s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleX {
  from { opacity: 0; transform: scaleX(0); transform-origin: left; }
  to   { opacity: 1; transform: scaleX(1); }
}

/* Reveal — smooth spring */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Product cards */
.p-card {
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s cubic-bezier(0.16,1,0.3,1),
              background 0.3s ease, border-color 0.3s ease;
}
.p-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,21,16,0.12); }
.p-img-icon { transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease; }

/* Category panels */
.cat-panel-bg { transition: transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.cat-panel-overlay { transition: background 0.4s ease; }

/* Button hover lift */
.btn-dark:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,21,16,0.15); }
.btn-ivory:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,21,16,0.12); }
.btn-outline-light:hover { transform: translateY(-2px); }


/* Page-load fade in */
body { animation: pageFadeIn 0.5s ease both; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Cart sidebar spring */
#cart-sidebar { transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
#mnav { transition: transform 0.45s cubic-bezier(0.16,1,0.3,1); }

/* Feature strip stagger */
.feature-item {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.feature-item.in { opacity: 1; transform: translateY(0); }

/* AI results entrance */
.ai-cat-col {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.ai-results.show .ai-cat-col:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.05s; }
.ai-results.show .ai-cat-col:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.15s; }
.ai-results.show .ai-cat-col:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.25s; }

/* Editorial sections */
.editorial-img { overflow: hidden; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item { padding: 2.25rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 3.5rem; }
  .hero-title { font-size: 4.5rem; }
  .hdr-nav { display: none; }
  .hamburger { display: flex; }
  .hdr-top { padding: 0 2rem; }
  .cat-panels { grid-template-columns: 1fr; height: auto; gap: 2px; }
  .cat-panel { min-height: 300px; }
  .editorial-grid, .ai-layout, .story-layout { grid-template-columns: 1fr; }
  .editorial-grid { gap: 0; }
  .editorial-body { padding: 3rem 2rem !important; }
  .story-text-col { padding: 4rem 3rem; }
  .story-img-col { min-height: 450px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .modal-box { grid-template-columns: 1fr; max-width: 440px; }
  .modal-img-col { max-height: none; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .modal-img-strip { flex-direction: row; border-right: none; border-bottom: 1px solid var(--border); max-height: none; overflow-x: auto; overflow-y: hidden; }
  .modal-img-strip .modal-thumb { width: 56px; flex-shrink: 0; }
  .modal-img-main { min-height: 260px; aspect-ratio: 1; order: -1; }
  .checkout-body { grid-template-columns: 1fr; }
  .checkout-left, .checkout-right { padding: 2rem; }
  .ai-layout { gap: 2rem; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-left { padding: 4.5rem 4rem; }
  .modal-detail-col { padding: 2.25rem 2rem; }
  .ai-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  html { font-size: 17px; }
  .section { padding: 5rem 1.5rem; }
  #hdr .hdr-top { padding: 0 0.75rem; height: 52px; max-width: 100vw; overflow: hidden; box-sizing: border-box; }
  .hdr-logo { flex-shrink: 1; min-width: 0; overflow: hidden; }
  .hdr-logo img { height: 28px; max-width: 120px; object-fit: contain; }
  .hdr-actions { flex-shrink: 0; gap: 0.15rem; }
  .mobile-hide { display: none !important; }
  .hdr-signin { display: none !important; }
  .hdr-btn { width: 36px; height: 36px; }
  .hdr-btn svg { width: 18px; height: 18px; }
  .cart-badge { top: 0; right: -2px; min-width: 14px; height: 14px; font-size: 0.45rem; padding: 0 3px; }
  .hamburger { padding: 6px; }
  .hamburger span { background: var(--ink); width: 20px; height: 2px; }
  .hero-left { padding: 4rem 1.5rem; }
  .hero-title { font-size: 3.5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-dark,
  .hero-btns .btn-outline-light { text-align: center; justify-content: center; }
  .cat-header, .products-grid { padding: 0; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .p-hover-actions { transform: translateY(0); opacity: 1; position: relative; bottom: auto; left: auto; right: auto; padding: 0.5rem; gap: 0.35rem; }
  .p-quick-add { padding: 0.55rem; font-size: 0.5rem; }
  .p-wish, .p-share { width: 34px; height: 34px; }
  .shop-header { flex-direction: column; align-items: stretch; }
  .shop-header > div { align-items: stretch !important; }
  .shop-header > div > div { align-items: stretch !important; flex-direction: column; }
  .filter-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    width: calc(100vw - 3rem);
    max-width: 100%;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.55rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
    white-space: nowrap;
  }
  .search-wrap { width: 100%; }
  .search-wrap input { width: 100%; }
  .sort-wrap { width: 100%; }
  .sort-select { width: 100%; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-col h4 { margin-bottom: 0.6rem; font-size: 0.88rem; }
  .footer-col ul li { margin-bottom: 0.2rem; font-size: 0.72rem; }
  .footer-col ul li a { font-size: 0.72rem; }
  .footer-brand-desc { max-width: 100%; font-size: 0.75rem; }
  .footer-socials { margin-top: 1rem; }
  .nl-form button { padding: 0.85rem; }
  .marquee-track span { font-size: 0.62rem; letter-spacing: 0.22em; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 1.75rem 1.5rem; }
  .floating-btns { bottom: 1.25rem; right: 0.35rem; gap: 0.5rem; }
  .nl-form { flex-direction: column; }
  .nl-form button { width: 100%; }
  .announce { font-size: 0.52rem; padding: 0.5rem 1rem; letter-spacing: 0.15em; }
  .editorial-body { padding: 2.5rem 1.5rem !important; }
  .story-text-col { padding: 3rem 1.5rem; }
  .story-stats { gap: 2rem; }
  .my-order-wa-link, .my-order-invoice-link, .my-order-cancel-link { font-size: 0.55rem; }
  .my-order-divider { margin: 0 0.3rem; }
  footer { padding: 3.5rem 1.5rem 2rem; }
  .p-info { padding: 1.1rem 0.9rem 1.35rem; }
  .p-name { font-size: 1rem; }
  .p-price { font-size: 0.95rem; }
  .rev-card { min-width: 250px; max-width: 275px; padding: 1.5rem 1.25rem; min-height: 210px; }
  .rev-text { font-size: 0.88rem; }
  .orders-body { padding: 1.25rem 1.25rem; }
  .hero-left { padding: 4rem 2rem; }
  .hero-sub { font-size: 0.78rem; max-width: 100%; }
  .section-label { letter-spacing: 0.28em; }
  #mnav a { font-size: 2rem; padding: 0.5rem 0; }
  .wl-hdr { padding: 1.5rem 1.5rem; }
  .wl-body { padding: 2rem 1.5rem; }
  .modal-detail-col { padding: 1.75rem 1.5rem; }
}
@media (max-width: 480px) {
  .hdr-top { padding: 0 0.5rem; height: 48px; }
  .hdr-logo img { height: 22px; max-width: 100px; }
  .hdr-btn { width: 40px; height: 40px; }
  .hdr-btn svg { width: 17px; height: 17px; }
  .hero-left { padding: 3rem 1.25rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-sub { font-size: 0.75rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .p-quick-add { padding: 0.45rem; font-size: 0.45rem; letter-spacing: 0.1em; }
  .p-wish, .p-share { width: 30px; height: 30px; }
  .p-share svg { width: 11px; height: 11px; }
  .filter-btn { padding: 0.45rem 0.65rem; font-size: 0.5rem; letter-spacing: 0.12em; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 1rem; }
  .section-title { font-size: 1.8rem; }
  .editorial-body { padding: 2rem 1.25rem !important; }
  .story-text-col { padding: 2.5rem 1.25rem; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 1.5rem 1.25rem; border-right: none; border-bottom: 1px solid rgba(249,245,238,0.08); }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(249,245,238,0.08); }
  footer { padding: 3rem 1.25rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .p-info { padding: 1rem 0.85rem 1.2rem; }
  .p-name { font-size: 0.95rem; }
  .p-price { font-size: 1rem; }
  .hero-year { margin-bottom: 2rem; font-size: 0.55rem; }
  .hero-sub { margin-bottom: 2rem; }
  .checkout-left, .checkout-right { padding: 1.5rem 1.25rem; }
  .co-field { margin-bottom: 0.75rem; }
  .checkout-section { margin-bottom: 1.5rem; }
  .cart-hdr { padding: 1.5rem; }
  .cart-body { padding: 1rem 1.25rem; }
  .cart-ftr { padding: 1.25rem 1.5rem; }
  #cart-sidebar { width: 95vw; max-width: 360px; }
  .auth-box { max-width: 95vw; padding: 2rem; }
  .auth-logo img { height: 30px; }
  .rev-card { min-width: 220px; max-width: 245px; padding: 1.25rem 1rem; min-height: 190px; }
  .rev-text { font-size: 0.82rem; line-height: 1.6; }
  .section-label { gap: 1rem; }
  .section-label::before { width: 24px; }
}

  .footer-brand-logo img { filter: none; }
  .auth-logo img { filter: none; }

  /* ── AI CATEGORY RESULTS ─────────────────────────────────── */
  .ai-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(249,245,238,0.08);
    margin-top: 1.5rem;
  }
  .ai-cat-col {
    background: rgba(26,21,16,0.5);
    padding: 1.75rem 1.5rem;
  }
  .ai-cat-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(249,245,238,0.1);
  }
  .ai-cat-icon { font-size: 1rem; opacity: 0.7; }
  .ai-cat-title {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(249,245,238,0.6);
    font-weight: 400;
    font-family: var(--sans);
  }
  .ai-cat-rule {
    flex: 1;
    height: 1px;
    background: rgba(200,134,10,0.25);
  }
  .ai-cat-products { display: flex; flex-direction: column; gap: 1px; }
  .ai-p-mini {
    background: rgba(26,21,16,0.4);
    padding: 1rem;
    cursor: pointer;
    transition: background 0.25s;
  }
  .ai-p-mini:hover { background: rgba(249,245,238,0.05); }
  .ai-p-mini-icon { font-size: 1.4rem; opacity: 0.4; margin-bottom: 0.6rem; }
  .ai-p-mini-name {
    font-family: var(--serif);
    font-size: 1rem;
    color: rgba(249,245,238,0.88);
    line-height: 1.3;
    margin-bottom: 0.3rem;
    font-weight: 400;
  }
  .ai-p-mini-desc {
    font-size: 0.7rem;
    color: rgba(184,168,138,0.5);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ai-p-mini-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ai-p-mini-price {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--gold2);
    font-weight: 400;
  }
  .ai-p-mini-add {
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(249,245,238,0.2);
    color: rgba(249,245,238,0.55);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    font-family: var(--sans);
    transition: all 0.25s;
    font-weight: 400;
  }
  .ai-p-mini-add:hover {
    background: var(--ivory);
    color: var(--ink);
    border-color: var(--ivory);
  }
  @media (max-width: 768px) {
    .ai-cat-grid { grid-template-columns: 1fr; }
  }

  /* ─── PRODUCT CARD IMAGE THUMBNAILS ─────────────────────────── */
  .p-img { flex-direction: column; gap: 0; padding: 0; }
  .p-img-main {
    flex: 1; width: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem; min-height: 0;
    background: var(--ivory2); transition: background 0.4s;
    padding: 2rem 1rem 1rem;
  }
  .p-card:hover .p-img-main { background: var(--ivory3); }
  .p-img-thumbs {
    display: flex; gap: 2px; width: 100%;
    border-top: 1px solid var(--border);
    background: var(--border);
  }
  .p-thumb {
    flex: 1; aspect-ratio: 1;
    background: var(--ivory2); display: flex;
    align-items: center; justify-content: center;
    font-size: 1rem; opacity: 0.35; cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    position: relative; overflow: hidden;
  }
  .p-thumb:hover, .p-thumb.active { background: var(--ivory3); opacity: 0.7; }
  .p-thumb.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--ink);
  }
  .p-thumb span { font-size: 1.1rem; pointer-events: none; }

  /* ─── MODAL IMAGE GALLERY (Amazon-style) ─────────────────────── */
  .modal-img-col {
    display: grid; grid-template-columns: 72px 1fr;
    gap: 2px; background: var(--ivory2); overflow: hidden;
  }
  .modal-img-main {
    display: flex; align-items: center; justify-content: center;
    min-height: 360px; padding: 0;
    background: var(--ivory2); overflow: hidden; position: relative;
    cursor: zoom-in; aspect-ratio: 3/4;
  }
  .modal-img-main > img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .modal-img-main > span { padding: 2.5rem; font-size: 4rem; }
  .modal-img-ph-label {
    font-size: 0.58rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--dim);
  }
  .modal-img-strip {
    display: flex; flex-direction: column; gap: 2px;
    background: var(--border); border-right: 1px solid var(--border);
    overflow-y: auto; max-height: 500px;
  }
  .modal-thumb {
    width: 100%; aspect-ratio: 1; background: var(--ivory2);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 3px; cursor: pointer;
    opacity: 0.4; transition: all 0.2s; position: relative;
    overflow: hidden; flex-shrink: 0;
  }
  .modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .modal-thumb:hover { opacity: 0.7; border: 2px solid var(--gold); }
  .modal-thumb.active { opacity: 1; border: 2px solid var(--ink); }
  .modal-thumb.active::after { display: none; }
  .modal-thumb span:first-child { font-size: 1.1rem; }
  .thumb-num {
    font-size: 0.5rem; letter-spacing: 0.12em;
    color: var(--dim); text-align: center;
  }

  /* ─── EMAIL POPUP ────────────────────────────────────────────── */
  #email-popup {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem; opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
  }
  #email-popup.show { opacity: 1; pointer-events: auto; }
  .popup-backdrop {
    position: absolute; inset: 0;
    background: rgba(26,21,16,0.7);
    backdrop-filter: blur(6px);
  }
  .popup-box {
    position: relative; z-index: 1;
    background: var(--warm-white);
    width: 100%; max-width: 560px;
    display: grid; grid-template-columns: 1fr 1fr;
    box-shadow: 0 40px 80px rgba(26,21,16,0.25);
    animation: popupIn 0.5s 0.1s cubic-bezier(0.16,1,0.3,1) both;
  }
  @keyframes popupIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .popup-img {
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem; padding: 3rem 2rem;
    min-height: 320px;
  }
  .popup-img-icon { font-size: 3.5rem; opacity: 0.3; display: none; }

  .popup-candle { position: relative; }
  .popup-candle svg { filter: drop-shadow(0 0 18px rgba(232,168,50,0.25)); }
  .flame-glow { animation: flameGlow 2s ease-in-out infinite alternate; }
  .flame-outer { transform-origin: 50px 42px; animation: flameFlicker 0.8s ease-in-out infinite alternate; }
  .flame-inner { transform-origin: 50px 42px; animation: flameFlicker 0.6s ease-in-out infinite alternate-reverse; }
  @keyframes flameFlicker {
    0%   { transform: scaleX(1) scaleY(1) rotate(0deg); }
    25%  { transform: scaleX(0.92) scaleY(1.06) rotate(-1.5deg); }
    50%  { transform: scaleX(1.05) scaleY(0.95) rotate(1deg); }
    75%  { transform: scaleX(0.95) scaleY(1.03) rotate(-0.5deg); }
    100% { transform: scaleX(1.02) scaleY(0.97) rotate(1.5deg); }
  }
  @keyframes flameGlow {
    0%   { opacity: 0.5; r: 26; }
    100% { opacity: 0.8; r: 32; }
  }
  .popup-candle-smoke {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 40px; pointer-events: none;
  }
  .popup-candle-smoke span {
    position: absolute; bottom: 0; left: 50%;
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(249,245,238,0.12);
    animation: smokeRise 3s ease-out infinite;
  }
  .popup-candle-smoke span:nth-child(2) { animation-delay: 1s; left: 40%; }
  .popup-candle-smoke span:nth-child(3) { animation-delay: 2s; left: 60%; }
  @keyframes smokeRise {
    0%   { transform: translateY(0) scale(1); opacity: 0.15; }
    50%  { transform: translateY(-20px) scale(2) translateX(3px); opacity: 0.08; }
    100% { transform: translateY(-40px) scale(3) translateX(-2px); opacity: 0; }
  }
  .popup-img-text {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
    color: var(--ivory); line-height: 1.3; text-align: center;
    font-style: italic;
  }
  .popup-body { padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: center; }
  .popup-close {
    position: absolute; top: 1rem; right: 1rem; width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; font-size: 1rem; color: var(--muted);
    cursor: pointer; z-index: 2; transition: color 0.2s;
  }
  .popup-close:hover { color: var(--ink); }
  .popup-label { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .popup-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 0.75rem; }
  .popup-sub { font-size: 0.78rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
  .popup-form { display: flex; flex-direction: column; gap: 0.6rem; }
  .popup-form input {
    padding: 0.85rem 1rem; border: 1px solid var(--border2);
    background: none; font-size: 0.82rem; color: var(--ink);
    outline: none; font-family: var(--sans); font-weight: 300;
    transition: border-color 0.2s;
  }
  .popup-form input:focus { border-color: var(--ink); }
  .popup-form button {
    padding: 0.9rem; background: var(--ink); color: var(--ivory);
    font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 400; border: none; cursor: pointer; font-family: var(--sans);
    transition: background 0.3s;
  }
  .popup-form button:hover { background: var(--gold); color: var(--ink); }
  .popup-skip {
    margin-top: 0.75rem; font-size: 0.65rem; color: var(--dim); text-align: center;
    cursor: pointer; transition: color 0.2s; text-decoration: underline;
    text-underline-offset: 3px;
  }
  .popup-skip:hover { color: var(--ink); }
  @media(max-width:560px) { .popup-box { grid-template-columns: 1fr; } .popup-img { display: none; } }

  /* ─── RECENTLY VIEWED ────────────────────────────────────────── */
  #recently-viewed { background: var(--ivory2); padding: 3rem 2rem; }
  #recently-viewed .section-label { margin-bottom: 0.25rem; }
  #recently-viewed .section-title { margin-bottom: 1rem; font-size: 1.4rem; }
  .recently-grid {
    display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
  }
  .recently-grid::-webkit-scrollbar { height: 2px; }
  .recently-grid::-webkit-scrollbar-thumb { background: var(--dim); }
  .recently-grid .p-card { min-width: 140px; max-width: 150px; scroll-snap-align: start; flex-shrink: 0; }
  .recently-grid .p-img { aspect-ratio: 1; }
  .recently-grid .p-img-icon { font-size: 1.5rem; }
  .recently-grid .p-body { padding: 0.5rem; }
  .recently-grid .p-name { font-size: 0.72rem; margin-bottom: 0.15rem; }
  .recently-grid .p-price { font-size: 0.8rem; }
  .recently-grid .p-cat { font-size: 0.45rem; margin-bottom: 0.15rem; }
  .recently-grid .p-badge { padding: 0.15rem 0.5rem; font-size: 0.45rem; top: 0.5rem; left: 0.5rem; }
  .recently-grid .p-actions { padding: 0 0.5rem 0.5rem; gap: 0.35rem; }
  .recently-grid .p-actions button { padding: 0.4rem; font-size: 0.5rem; }

  /* ─── LOW STOCK BADGE ────────────────────────────────────────── */
  .p-low-stock {
    font-size: 0.6rem; color: #c0392b; letter-spacing: 0.12em;
    text-transform: uppercase; margin-top: 0.35rem; font-weight: 400;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .p-low-stock::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: #c0392b; display: inline-block; flex-shrink: 0;
  }
  .modal-low-stock {
    font-size: 0.68rem; color: #c0392b; letter-spacing: 0.1em;
    margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem;
  }
  .modal-low-stock::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #c0392b; flex-shrink: 0;
  }

  /* ─── VARIANT SELECTOR ───────────────────────────────────────── */
  .variant-section { margin-bottom: 1rem; }
  .variant-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; display: block; }
  .variant-opts { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .var-btn {
    padding: 0.4rem 1rem; border: 1px solid var(--border2); background: none;
    font-size: 0.72rem; color: var(--muted); cursor: pointer;
    font-family: var(--sans); transition: all 0.22s; font-weight: 300;
  }
  .var-btn:hover, .var-btn.active { border-color: var(--ink); color: var(--ink); background: var(--ivory); }

  /* ─── BUNDLE UPSELL ──────────────────────────────────────────── */
  .bundle-section {
    border: 1px solid var(--border);
    padding: 1.25rem; margin-top: 1.25rem;
    background: var(--ivory2);
  }
  .bundle-title { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
  .bundle-items { display: flex; flex-direction: column; gap: 0.75rem; }
  .bundle-item { display: flex; align-items: center; gap: 1rem; }
  .bundle-item-icon { font-size: 1.4rem; opacity: 0.4; width: 36px; text-align: center; }
  .bundle-item-info { flex: 1; }
  .bundle-item-name { font-family: var(--serif); font-size: 0.92rem; color: var(--ink); }
  .bundle-item-price { font-size: 0.75rem; color: var(--muted); }
  .bundle-add {
    padding: 0.35rem 0.9rem; border: 1px solid var(--ink); background: none;
    font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--ink); cursor: pointer; font-family: var(--sans); transition: all 0.22s;
    white-space: nowrap;
  }
  .bundle-add:hover { background: var(--ink); color: var(--ivory); }

  /* ─── GIFT WRAP CHECKOUT OPTION ──────────────────────────────── */
  .gift-wrap-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem; border: 1px solid var(--border2);
    margin-top: 1rem; cursor: pointer; transition: border-color 0.22s;
  }
  .gift-wrap-row:hover { border-color: var(--ink); }
  .gift-wrap-check {
    width: 18px; height: 18px; border: 1px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.2s; font-size: 0.7rem;
  }
  .gift-wrap-row.on .gift-wrap-check { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
  .gift-wrap-info .gift-wrap-title { font-size: 0.82rem; color: var(--ink); font-weight: 400; }
  .gift-wrap-info .gift-wrap-sub { font-size: 0.7rem; color: var(--muted); margin-top: 0.15rem; }
  .gift-msg-field {
    margin-top: 0.75rem; display: none;
  }
  .gift-msg-field.show { display: block; }
  .gift-msg-field textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border2);
    background: none; font-size: 0.82rem; color: var(--ink); outline: none;
    font-family: var(--sans); font-weight: 300; resize: vertical; min-height: 80px;
    transition: border-color 0.22s;
  }
  .gift-msg-field textarea:focus { border-color: var(--ink); }

  /* ─── HOW TO USE ACCORDION (product modal) ───────────────────── */
  .accordion { border-top: 1px solid var(--border); margin-top: 1.25rem; }
  .accordion-item { border-bottom: 1px solid var(--border); }
  .accordion-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 0; background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted); font-weight: 400;
    transition: color 0.22s;
  }
  .accordion-trigger:hover { color: var(--ink); }
  .accordion-trigger .acc-icon { transition: transform 0.3s; font-size: 0.75rem; }
  .accordion-trigger.open .acc-icon { transform: rotate(45deg); }
  .accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .accordion-body.open { /* max-height set by JS to exact content height */ }
  .accordion-body-inner { padding: 0 0 1rem; font-size: 0.8rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
  .accordion-body-inner ol, .accordion-body-inner ul { padding-left: 1.2rem; margin-top: 0.5rem; }
  .accordion-body-inner li { margin-bottom: 0.35rem; }

  /* ─── PRESS / AS SEEN IN STRIP ───────────────────────────────── */
  #press { background: var(--warm-white); padding: 3rem 3.5rem; border-top: 1px solid var(--border); }
  .press-inner { max-width: 1400px; margin: 0 auto; }
  .press-label { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--dim); text-align: center; margin-bottom: 2rem; }
  .press-logos { display: flex; align-items: center; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
  .press-logo {
    font-family: var(--serif); font-size: 1.1rem; font-style: italic;
    color: var(--dim); letter-spacing: 0.06em; opacity: 0.5;
    transition: opacity 0.3s;
  }
  .press-logo:hover { opacity: 0.9; }

  /* ─── DARK/LIGHT MODE TOGGLE ─────────────────────────────────── */
  .theme-toggle {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); cursor: pointer; transition: color 0.25s; font-size: 1rem;
  }
  .theme-toggle:hover { color: var(--gold); }
  body.dark-mode {
    --ivory:      #1A1510;
    --ivory2:     #221C14;
    --ivory3:     #2A2218;
    --warm-white: #100D08;
    --ink:        #F9F5EE;
    --ink2:       #EDE3D0;
    --ink3:       #C8B898;
    --muted:      #A89070;
    --dim:        #7A6A50;
    --border:     rgba(249,245,238,0.1);
    --border2:    rgba(249,245,238,0.18);
  }
  body.dark-mode .hdr-logo img,
  body.dark-mode .auth-logo img { filter: invert(1) brightness(1.8); }
  body.dark-mode .footer-brand-logo img { filter: invert(1) brightness(1.8); }

  /* Always-dark sections — lock to original dark palette in dark mode */
  body.dark-mode #hero { background: #0A0806; }
  body.dark-mode .hero-split { background: #0A0806; }
  body.dark-mode .hero-video-wrap { background: linear-gradient(135deg, #0C0806 0%, #1A120A 40%, #0E0A06 100%); }
  body.dark-mode .hero-title { color: #FDFAF5; }
  body.dark-mode .hero-title em { color: #E8A832; }
  body.dark-mode .hero-year { color: #E8A832; }
  body.dark-mode .hero-sub { color: rgba(253,250,245,0.65); }
  body.dark-mode .hero-scroll { color: rgba(253,250,245,0.35); }
  body.dark-mode .hero-rule { background: #E8A832; }
  body.dark-mode .btn-dark { background: #FDFAF5; color: #0A0806; }
  body.dark-mode .btn-dark:hover { background: #E8A832; color: #0A0806; }
  body.dark-mode .btn-outline-light { border-color: rgba(253,250,245,0.3); color: rgba(253,250,245,0.75); background: none; }
  body.dark-mode .btn-outline-light:hover { border-color: #FDFAF5; color: #FDFAF5; background: rgba(253,250,245,0.06); }
  body.dark-mode .hero-video-ph-inner { color: rgba(253,250,245,0.8); }
  body.dark-mode .hero-video-ph-inner span { opacity: 0.45; }

  body.dark-mode .cat-panel { background: #2D2419; }
  body.dark-mode .cat-panel-name { color: #F9F5EE; }
  body.dark-mode .cat-panel-cta { color: #F9F5EE; }

  body.dark-mode .p-wish { color: #F9F5EE !important; }
  body.dark-mode .p-wish:hover, body.dark-mode .p-wish.on { background: #F9F5EE; color: #1A1510 !important; }
  body.dark-mode .story-text-col { background: #1A1510; }
  body.dark-mode .story-text-col .section-title { color: #F9F5EE; }
  body.dark-mode .story-text-col .section-label { color: rgba(200,134,10,0.55); }
  body.dark-mode .stat-n { color: #E8A832; }

  body.dark-mode .editorial-body .section-label { color: var(--muted); }

  body.dark-mode #hdr { background: #100D08; border-bottom-color: rgba(249,245,238,0.08); }
  body.dark-mode #hdr.shadow { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
  body.dark-mode .hdr-nav a { color: rgba(249,245,238,0.6); }
  body.dark-mode .hdr-nav a:hover { color: #E8A832; }
  body.dark-mode .hdr-btn { color: rgba(249,245,238,0.6); }
  body.dark-mode .hdr-btn:hover { color: #E8A832; }
  body.dark-mode .cart-badge { background: #F9F5EE; color: #1A1510; }
  body.dark-mode .hdr-signin { border-color: rgba(249,245,238,0.3); color: rgba(249,245,238,0.7); }
  body.dark-mode .hdr-signin:hover { background: #F9F5EE; color: #1A1510; }
  body.dark-mode .hamburger span { background: #F9F5EE; }
  body.dark-mode .hdr-logo img { filter: invert(1) brightness(1.8); }
  body.dark-mode .hdr-user:hover { opacity: 0.8; }
  body.dark-mode .hdr-user-avatar { background: #F9F5EE; color: #1A1510; }
  body.dark-mode .hdr-user-name { color: rgba(249,245,238,0.6); }
  body.dark-mode .user-menu { background: #1A1510; border-color: rgba(249,245,238,0.1); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
  body.dark-mode .user-menu-name { color: #F9F5EE; }
  body.dark-mode .user-menu-email { color: rgba(249,245,238,0.4); }
  body.dark-mode .user-menu-divider { border-top-color: rgba(249,245,238,0.08); }
  body.dark-mode .user-menu-item { color: rgba(249,245,238,0.5); }
  body.dark-mode .user-menu-item:hover { color: #F9F5EE; background: rgba(249,245,238,0.05); }

  body.dark-mode .announce { background: #1A1510; color: rgba(249,245,238,0.6); }
  body.dark-mode .announce a { color: #E8A832; }

  /* AI Recommender — lock dark */
  body.dark-mode #ai-recommender { background: #0A0806; }
  body.dark-mode .ai-heading { color: #FDFAF5; }
  body.dark-mode .ai-heading em { color: #E8A832; }
  body.dark-mode .ai-label { color: #E8A832; }
  body.dark-mode .ai-body { color: rgba(184,168,138,0.65); }
  body.dark-mode .ai-q-label { color: rgba(253,250,245,0.8); }
  body.dark-mode .ai-opt { border-color: rgba(253,250,245,0.25); color: rgba(253,250,245,0.75); }
  body.dark-mode .ai-opt:hover { border-color: rgba(253,250,245,0.55); color: rgba(253,250,245,0.95); }
  body.dark-mode .ai-opt.sel { border-color: #C8860A; color: #E8A832; }
  body.dark-mode .btn-ivory { background: #FDFAF5; color: #0A0806; }
  body.dark-mode .btn-ivory:hover { background: #E8A832; }
  body.dark-mode .ai-results-label { color: #E8A832; }
  body.dark-mode .ai-cat-title { color: rgba(253,250,245,0.7); }
  body.dark-mode .ai-cat-rule { background: rgba(253,250,245,0.08); }
  body.dark-mode .ai-p-mini-name { color: rgba(253,250,245,0.8); }
  body.dark-mode .ai-p-mini-desc { color: rgba(184,168,138,0.5); }
  body.dark-mode .ai-p-mini-price { color: #E8A832; }
  body.dark-mode .ai-p-mini-add { border-color: rgba(253,250,245,0.2); color: rgba(253,250,245,0.6); }
  body.dark-mode .ai-p-mini-add:hover { background: #FDFAF5; color: #0A0806; }

  /* Feature strip — lock dark */
  body.dark-mode .feature-strip { background: #0E0B06; }
  body.dark-mode .feature-title { color: #F9F5EE; }
  body.dark-mode .feature-desc { color: rgba(184,168,138,0.7); }
  body.dark-mode .feature-item { border-right-color: rgba(253,250,245,0.08) !important; }
  /* Story — lock dark */
  body.dark-mode .story-text-col { background: #1A1510; }
  body.dark-mode .story-text-col .section-title { color: #F9F5EE; }
  body.dark-mode .story-p { color: rgba(184,168,138,0.75); }
  body.dark-mode .story-sig { color: rgba(200,134,10,0.6); opacity: 1; }
  body.dark-mode .story-stats { border-top-color: rgba(253,250,245,0.08); }
  body.dark-mode .stat-n { color: #E8A832; }
  body.dark-mode .stat-l { color: rgba(184,168,138,0.5); }
  /* Instagram — lock dark */
  body.dark-mode #instagram { background: #0A0806; }
  body.dark-mode .insta-header .section-title { color: #F9F5EE; }
  body.dark-mode .insta-header .section-label { color: rgba(200,134,10,0.7); }
  body.dark-mode .insta-follow { border-color: rgba(253,250,245,0.25); color: rgba(253,250,245,0.7); }
  body.dark-mode .insta-follow:hover { border-color: #FDFAF5; color: #FDFAF5; background: rgba(253,250,245,0.05); }
  /* AI Recommender — lock dark */
  body.dark-mode #ai-recommender { background: #0A0806; }
  body.dark-mode .ai-heading { color: #FDFAF5; }
  body.dark-mode .ai-heading em { color: #E8A832; }
  body.dark-mode .ai-body { color: rgba(184,168,138,0.65); }
  body.dark-mode .ai-q-label { color: rgba(253,250,245,0.75); }
  body.dark-mode .ai-opt { border-color: rgba(253,250,245,0.25); color: rgba(253,250,245,0.7); }
  body.dark-mode .ai-opt:hover { border-color: rgba(253,250,245,0.5); color: rgba(253,250,245,0.9); background: none; }
  body.dark-mode .btn-ivory { background: #FDFAF5; color: #0A0806; }
  body.dark-mode .btn-ivory:hover { background: #E8A832; color: #0A0806; }
  body.dark-mode .ai-clear { border-color: rgba(253,250,245,0.25); color: rgba(253,250,245,0.5); }
  body.dark-mode .ai-clear:hover { border-color: rgba(253,250,245,0.5); color: rgba(253,250,245,0.8); }
  body.dark-mode .ai-products-mini { background: rgba(253,250,245,0.06); }
  body.dark-mode .ai-p-mini { background: rgba(26,21,16,0.6); }
  body.dark-mode .ai-p-mini:hover { background: rgba(253,250,245,0.05); }
  body.dark-mode .ai-p-mini-name { color: rgba(253,250,245,0.85); }

  /* Category panels — lock dark */
  body.dark-mode .cat-panel { background: #1A1510; }
  body.dark-mode .cat-panel-name em { color: rgba(253,250,245,0.6); }
  body.dark-mode .cat-panel + .cat-panel { border-left-color: rgba(253,250,245,0.08); }
  body.dark-mode .ph-candle { background: linear-gradient(160deg, #1C1408 0%, #2E2010 40%, #1A1206 100%); }
  body.dark-mode .ph-spray { background: linear-gradient(160deg, #0C1408 0%, #142010 40%, #0A1206 100%); }
  body.dark-mode .ph-perf { background: linear-gradient(160deg, #180A14 0%, #280E20 40%, #140A10 100%); }

  /* Marquee — lock dark border */
  body.dark-mode .marquee-bar { border-color: rgba(249,245,238,0.06); }

  /* Press strip */
  body.dark-mode #press { border-top-color: rgba(249,245,238,0.06); }

  body.dark-mode footer { background: #1A1510; }
  body.dark-mode .footer-col h4 { color: #F9F5EE; }
  body.dark-mode .footer-brand-desc { color: rgba(184,168,138,0.6); }
  body.dark-mode .footer-col ul li a { color: rgba(184,168,138,0.55); }
  body.dark-mode .footer-copy { color: rgba(184,168,138,0.35); }
  body.dark-mode .footer-legal a { color: rgba(184,168,138,0.35); }
  body.dark-mode .footer-soc { border-color: rgba(249,245,238,0.12); color: rgba(184,168,138,0.5); }
  body.dark-mode .footer-brand-logo img { filter: invert(1) brightness(1.8); }

  /* ─── CANDLE CARE PAGE ───────────────────────────────────────── */
  #candle-care-modal {
    position: fixed; inset: 0; z-index: 800;
    background: var(--warm-white); display: none; overflow-y: auto;
  }
  #candle-care-modal.show { display: block; }
  .care-header {
    padding: 2rem 3.5rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; background: var(--warm-white); z-index: 1;
  }
  .care-header h2 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--ink); }
  .care-body { max-width: 780px; margin: 0 auto; padding: 4rem 3.5rem; }
  .care-section { margin-bottom: 3rem; }
  .care-section h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 1rem; font-weight: 400; }
  .care-steps { display: flex; flex-direction: column; gap: 1rem; }
  .care-step { display: flex; gap: 1.25rem; align-items: flex-start; }
  .care-step-num {
    width: 28px; height: 28px; flex-shrink: 0;
    border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; color: var(--muted);
  }
  .care-step-text { font-size: 0.85rem; color: var(--muted); line-height: 1.8; padding-top: 0.3rem; font-weight: 300; }

  /* ─── SUSTAINABILITY SECTION ─────────────────────────────────── */
  #sustainability { background: var(--ivory2); }
  .sustain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); margin-top: 3rem; }
  .sustain-item { background: var(--warm-white); padding: 2.5rem 2rem; }
  .sustain-icon { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.6; }
  .sustain-title { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.5rem; font-weight: 400; }
  .sustain-text { font-size: 0.8rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
  @media(max-width:768px) { .sustain-grid { grid-template-columns: 1fr; } }

/* ─── CORPORATE GIFTING ──────────────────────────────────────── */
#gifting { background: var(--ivory2); }
.gifting-inner {
  text-align: center; max-width: 600px; margin: 0 auto; padding: 2rem 0;
}
.gifting-icon { margin-bottom: 1.5rem; display: flex; justify-content: center; }
.gift-anim { width: 70px; height: 70px; position: relative; }
.gift-svg { overflow: visible; }

/* 4s loop: idle → ribbon loosens → anticipation → POP → hold → fall → land → repeat */

/* ── BOX BODY: squash anticipation then recoil ────────────────── */
.gift-body {
  transform-origin: 50px 90px;
  animation: boxSquash 4s cubic-bezier(0.22,1,0.36,1) infinite;
}
@keyframes boxSquash {
  0%, 5%   { transform: scaleX(1) scaleY(1); }
  12%      { transform: scaleX(1.12) scaleY(0.82); }
  15%      { transform: scaleX(1.15) scaleY(0.78); }
  16%      { transform: scaleX(1.13) scaleY(0.8) translateX(-1px); }
  17%      { transform: scaleX(1.14) scaleY(0.79) translateX(1px); }
  18%      { transform: scaleX(1.15) scaleY(0.78) translateX(-1.5px); }
  22%      { transform: scaleX(0.88) scaleY(1.15); }
  26%      { transform: scaleX(1.04) scaleY(0.96); }
  30%      { transform: scaleX(0.98) scaleY(1.02); }
  34%      { transform: scaleX(1) scaleY(1); }
  /* lid lands */
  66%      { transform: scaleX(1) scaleY(1); }
  68%      { transform: scaleX(1.05) scaleY(0.94); }
  72%      { transform: scaleX(0.98) scaleY(1.02); }
  76%, 100%{ transform: scaleX(1) scaleY(1); }
}

/* ── SHADOW: squishes with box ────────────────────────────────── */
.gift-shadow {
  animation: shadowSquash 4s ease infinite;
}
@keyframes shadowSquash {
  0%, 5%   { rx: 28; ry: 5; opacity: 0.12; }
  15%      { rx: 34; ry: 6; opacity: 0.18; }
  22%      { rx: 22; ry: 4; opacity: 0.08; }
  34%      { rx: 28; ry: 5; opacity: 0.12; }
  68%      { rx: 31; ry: 5.5; opacity: 0.15; }
  76%, 100%{ rx: 28; ry: 5; opacity: 0.12; }
}

/* ── BOW: loosens then flies off with lid ─────────────────────── */
.gift-bow {
  transform-origin: 50px 46px;
  animation: bowLoosen 4s ease infinite;
}
@keyframes bowLoosen {
  0%, 3%   { transform: scale(1) rotate(0); opacity: 1; }
  6%       { transform: scale(1.08) rotate(-3deg); }
  10%      { transform: scale(1.12) rotate(4deg); }
  14%      { transform: scale(1.05) rotate(-2deg); }
  18%      { transform: scale(1.15) rotate(5deg); opacity: 1; }
  22%      { transform: scale(0.3) rotate(20deg) translateY(-30px); opacity: 0; }
  24%, 52% { transform: scale(0) rotate(20deg); opacity: 0; }
  62%      { transform: scale(0.6) rotate(6deg); opacity: 0.5; }
  68%      { transform: scale(0.95) rotate(-2deg); opacity: 0.95; }
  74%, 100%{ transform: scale(1) rotate(0); opacity: 1; }
}

/* ── LID: anticipation squash then POPS off like champagne ────── */
.gift-lid {
  transform-origin: 50px 50px;
  animation: lidPop 4s cubic-bezier(0.22,1,0.36,1) infinite;
}
@keyframes lidPop {
  0%, 5%   { transform: translateY(0) rotate(0) scaleY(1); }
  12%      { transform: translateY(3px) rotate(0) scaleY(0.85); }
  15%      { transform: translateY(4px) rotate(-1deg) scaleY(0.8); }
  17%      { transform: translateY(4px) rotate(1deg) scaleY(0.8); }
  18%      { transform: translateY(4px) rotate(-1.5deg) scaleY(0.78); }
  /* POP */
  22%      { transform: translateY(-50px) rotate(-12deg) scaleY(1.3); }
  26%      { transform: translateY(-65px) rotate(-20deg) scaleY(1.1); }
  30%      { transform: translateY(-62px) rotate(-18deg) scaleY(1); }
  /* hold at peak */
  32%, 52% { transform: translateY(-60px) rotate(-16deg) scaleY(1); }
  /* fast drop */
  57%      { transform: translateY(-40px) rotate(-10deg) scaleY(1); }
  61%      { transform: translateY(-15px) rotate(-4deg) scaleY(1); }
  64%      { transform: translateY(-2px) rotate(-1deg) scaleY(1); }
  /* land + bounce */
  67%      { transform: translateY(3px) rotate(0) scaleY(0.86); }
  71%      { transform: translateY(-3px) rotate(0) scaleY(1.05); }
  74%      { transform: translateY(1px) rotate(0) scaleY(0.97); }
  78%, 100%{ transform: translateY(0) rotate(0) scaleY(1); }
}

/* ── CONFETTI: burst outward from center ──────────────────────── */
.gift-svg .cf { opacity: 0; }
.cf1  { animation: cfA 4s ease-out infinite; }
.cf2  { animation: cfB 4s ease-out infinite; }
.cf3  { animation: cfC 4s ease-out infinite; }
.cf4  { animation: cfD 4s ease-out infinite; }
.cf5  { animation: cfE 4s ease-out infinite; }
.cf6  { animation: cfF 4s ease-out infinite; }
.cf7  { animation: cfG 4s ease-out infinite; }
.cf8  { animation: cfH 4s ease-out infinite; }
.cf9  { animation: cfI 4s ease-out infinite; }
.cf10 { animation: cfJ 4s ease-out infinite; }

@keyframes cfA { 0%,19% { opacity:0; transform:translate(0,0) rotate(0); }
  21% { opacity:1; transform:translate(0,-5px); }
  38% { opacity:1; transform:translate(-28px,-55px) rotate(200deg); }
  55% { opacity:0; transform:translate(-32px,-30px) rotate(340deg); } 56%,100% { opacity:0; } }
@keyframes cfB { 0%,20% { opacity:0; transform:translate(0,0) rotate(0); }
  22% { opacity:1; transform:translate(0,-5px); }
  39% { opacity:1; transform:translate(24px,-50px) rotate(-180deg); }
  56% { opacity:0; transform:translate(28px,-25px) rotate(-300deg); } 57%,100% { opacity:0; } }
@keyframes cfC { 0%,19.5% { opacity:0; transform:translate(0,0) rotate(0); }
  21.5% { opacity:1; transform:translate(0,-5px); }
  38% { opacity:1; transform:translate(-14px,-62px) rotate(260deg); }
  54% { opacity:0; transform:translate(-18px,-35px) rotate(400deg); } 55%,100% { opacity:0; } }
@keyframes cfD { 0%,20.5% { opacity:0; transform:translate(0,0) rotate(0); }
  22.5% { opacity:1; transform:translate(0,-5px); }
  40% { opacity:1; transform:translate(32px,-42px) rotate(-220deg); }
  57% { opacity:0; transform:translate(36px,-20px) rotate(-360deg); } 58%,100% { opacity:0; } }
@keyframes cfE { 0%,20% { opacity:0; transform:translate(0,0) rotate(0); }
  22% { opacity:1; transform:translate(0,-5px); }
  39% { opacity:1; transform:translate(-35px,-38px) rotate(180deg); }
  56% { opacity:0; transform:translate(-38px,-15px) rotate(300deg); } 57%,100% { opacity:0; } }
@keyframes cfF { 0%,19% { opacity:0; transform:translate(0,0) rotate(0); }
  21% { opacity:1; transform:translate(0,-5px); }
  37% { opacity:1; transform:translate(8px,-68px) rotate(-150deg); }
  53% { opacity:0; transform:translate(10px,-40px) rotate(-280deg); } 54%,100% { opacity:0; } }
@keyframes cfG { 0%,20.5% { opacity:0; transform:translate(0,0) rotate(0); }
  22.5% { opacity:1; transform:translate(0,-5px); }
  40% { opacity:1; transform:translate(-22px,-48px) rotate(190deg); }
  57% { opacity:0; transform:translate(-25px,-22px) rotate(320deg); } 58%,100% { opacity:0; } }
@keyframes cfH { 0%,19.5% { opacity:0; transform:translate(0,0) rotate(0); }
  21.5% { opacity:1; transform:translate(0,-5px); }
  38% { opacity:1; transform:translate(18px,-58px) rotate(-240deg); }
  55% { opacity:0; transform:translate(22px,-30px) rotate(-380deg); } 56%,100% { opacity:0; } }
@keyframes cfI { 0%,20% { opacity:0; transform:translate(0,0) rotate(0); }
  22% { opacity:1; transform:translate(0,-5px); }
  39% { opacity:1; transform:translate(-8px,-72px) rotate(170deg); }
  56% { opacity:0; transform:translate(-10px,-42px) rotate(310deg); } 57%,100% { opacity:0; } }
@keyframes cfJ { 0%,19% { opacity:0; transform:translate(0,0) rotate(0); }
  21% { opacity:1; transform:translate(0,-5px); }
  38% { opacity:1; transform:translate(28px,-35px) rotate(-200deg); }
  55% { opacity:0; transform:translate(32px,-12px) rotate(-340deg); } 56%,100% { opacity:0; } }

/* ── SPARKLE STARS ────────────────────────────────────────────── */
.gift-svg .spk { opacity: 0; }
.spk1 { animation: spkPop 4s ease infinite; animation-delay: 0s; }
.spk2 { animation: spkPop 4s ease infinite; animation-delay: 0.1s; }
.spk3 { animation: spkPop 4s ease infinite; animation-delay: 0.2s; }
@keyframes spkPop {
  0%, 24% { opacity: 0; transform: scale(0) rotate(0); }
  30%     { opacity: 1; transform: scale(1.4) rotate(15deg); }
  34%     { opacity: 1; transform: scale(1) rotate(0); }
  40%     { opacity: 1; transform: scale(1.2) rotate(-10deg); }
  46%     { opacity: 0.8; transform: scale(0.9) rotate(5deg); }
  54%     { opacity: 0; transform: scale(0) rotate(0); }
  55%, 100% { opacity: 0; }
}
.gifting-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--ink); margin-bottom: 1rem; letter-spacing: 0.02em;
}
.gifting-desc {
  font-size: 0.82rem; color: var(--muted); line-height: 1.85;
  font-weight: 300; margin-bottom: 1.75rem;
}
.gifting-contact {
  font-size: 0.78rem; color: var(--dim); font-weight: 300;
  letter-spacing: 0.03em;
}
.gifting-contact span { color: var(--gold); font-weight: 400; }

  /* ─── ADMIN PANEL ────────────────────────────────────────────── */
  #admin-panel {
    position: fixed; inset: 0; z-index: 3000; background: var(--warm-white);
    display: none; flex-direction: column; overflow: hidden;
  }
  #admin-panel.show { display: flex; }
  .admin-hdr {
    padding: 1.25rem 2rem; background: var(--ink); color: var(--ivory);
    display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
  }
  .admin-hdr h2 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; letter-spacing: 0.04em; }
  .admin-close { color: rgba(249,245,238,0.6); cursor: pointer; font-size: 1.1rem; transition: color 0.2s; }
  .admin-close:hover { color: var(--ivory); }
  .admin-body { display: flex; flex: 1; overflow: hidden; }
  .admin-sidebar {
    width: 200px; background: var(--ivory2); border-right: 1px solid var(--border);
    padding: 1.5rem 0; flex-shrink: 0; overflow-y: auto;
  }
  .admin-nav-item {
    padding: 0.7rem 1.5rem; font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted); cursor: pointer;
    transition: all 0.2s; font-weight: 400; border-left: 2px solid transparent;
  }
  .admin-nav-item:hover, .admin-nav-item.active { color: var(--ink); border-left-color: var(--ink); background: var(--ivory); }
  .admin-content { flex: 1; overflow-y: auto; padding: 2rem; }
  .admin-panel-view { display: none; }
  .admin-panel-view.active { display: block; }
  .admin-section-title { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-weight: 400; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
  .admin-table { width: 100%; border-collapse: collapse; }
  .admin-table th { text-align: left; font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim); padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); font-weight: 400; }
  .admin-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.82rem; color: var(--muted); vertical-align: middle; }
  .admin-table tr:hover td { background: var(--ivory); }
  .admin-edit-btn {
    padding: 0.3rem 0.85rem; border: 1px solid var(--border2); background: none;
    font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); cursor: pointer; font-family: var(--sans); transition: all 0.2s;
  }
  .admin-edit-btn:hover { border-color: var(--ink); color: var(--ink); background: var(--ivory); }
  .admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 700px; }
  .admin-field label { display: block; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
  .admin-field input, .admin-field select, .admin-field textarea {
    width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border2);
    background: var(--warm-white); color: var(--ink); font-size: 0.82rem;
    outline: none; font-family: var(--sans); font-weight: 300; transition: border-color 0.2s;
  }
  .admin-field input:focus, .admin-field select:focus, .admin-field textarea:focus { border-color: var(--ink); }
  .admin-field.full { grid-column: 1/-1; }
  .admin-save-btn {
    margin-top: 1.5rem; padding: 0.85rem 2.5rem; background: var(--ink); color: var(--ivory);
    font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400;
    border: none; cursor: pointer; font-family: var(--sans); transition: background 0.3s;
  }
  .admin-save-btn:hover { background: var(--gold); color: var(--ink); }
  .coupon-config-box { max-width: 460px; }
  .coupon-config-box .admin-field { margin-bottom: 1.25rem; }
  .admin-stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 2rem; }
  .admin-stat { background: var(--ivory2); padding: 1.5rem; border: 1px solid var(--border); }
  .admin-stat-n { font-family: var(--serif); font-size: 2rem; color: var(--ink); line-height: 1; }
  .admin-stat-l { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-top: 0.4rem; }
  @media(max-width:768px) { .admin-form-grid { grid-template-columns: 1fr; } .admin-stat-row { grid-template-columns: 1fr 1fr; } .admin-sidebar { width: 160px; } }

  /* ─── SIGNED-IN USER MENU ────────────────────────────────────── */
  .hdr-user {
    display: flex; align-items: center; gap: 0.6rem;
    margin-left: 0.5rem; cursor: pointer; padding: 0.4rem 0.75rem;
    border: none; transition: all 0.25s;
  }
  .hdr-user:hover { opacity: 0.8; }
  .hdr-user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--ink); color: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 500; font-family: var(--serif);
  }
  .hdr-user-name {
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink3); font-weight: 400;
  }
  .user-menu {
    position: fixed; top: 80px; right: 3rem; width: 220px;
    background: var(--warm-white); border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(26,21,16,0.12);
    z-index: 9000; display: none; padding: 1.25rem 0;
  }
  .user-menu.show { display: block; }
  .user-menu-name { padding: 0 1.25rem; font-family: var(--serif); font-size: 1rem; color: var(--ink); font-weight: 400; }
  .user-menu-email { padding: 0 1.25rem; font-size: 0.7rem; color: var(--dim); margin-top: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .user-menu-divider { border-top: 1px solid var(--border); margin: 0.75rem 0; }
  .user-menu-item {
    display: block; padding: 0.5rem 1.25rem; font-size: 0.72rem;
    color: var(--muted); cursor: pointer; transition: all 0.2s;
    letter-spacing: 0.06em; text-decoration: none;
  }
  .user-menu-item:hover { color: var(--ink); background: var(--ivory); }
  @media(max-width:1024px) {
    .hdr-user-name { display: none; }
    .user-menu { right: 0; }
    .hdr-user { pointer-events: none; cursor: default; }
    .hdr-user:hover { opacity: 1; }
  }

  /* ─── MY ORDERS + ACCOUNT MODAL ─────────────────────────────── */
  #orders-modal, #account-modal {
    position: fixed; inset: 0; z-index: 700;
    display: none; align-items: center; justify-content: center; padding: 2rem;
  }
  #orders-modal.show, #account-modal.show { display: flex; }
  .orders-box {
    position: relative; background: var(--warm-white);
    width: 100%; max-width: 600px; max-height: 85vh; display: flex; flex-direction: column;
  }
  .orders-hdr {
    padding: 2rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
  }
  .orders-hdr h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); }
  .orders-close { font-size: 1rem; color: var(--muted); cursor: pointer; transition: color 0.25s; }
  .orders-close:hover { color: var(--ink); }
  .orders-body { overflow-y: auto; padding: 1.5rem 2rem; flex: 1; }
  .my-order-card {
    border: 1px solid var(--border); padding: 1.25rem; margin-bottom: 1rem;
    transition: border-color 0.2s;
  }
  .my-order-card:hover { border-color: var(--border2); }
  .my-order-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
  .my-order-num { font-family: var(--serif); font-size: 1rem; color: var(--ink); font-weight: 400; }
  .my-order-date { font-size: 0.68rem; color: var(--dim); margin-top: 0.15rem; }
  .my-order-status {
    font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.25rem 0.75rem; font-weight: 500;
  }
  .my-order-status.active { background: var(--gold); color: var(--ink); }
  .my-order-status.delivered { background: #27ae60; color: white; }
  .my-order-status.cancelled { background: #c0392b; color: white; }
  .order-timeline {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 1.25rem 0.5rem; margin-bottom: 0.75rem; position: relative;
  }
  .timeline-step {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    position: relative; z-index: 1; flex-shrink: 0;
  }
  .timeline-dot {
    width: 14px; height: 14px; border-radius: 50%;
    border: 2px solid var(--border2); background: var(--warm-white);
    transition: all 0.3s;
  }
  .timeline-step.done .timeline-dot { background: var(--gold); border-color: var(--gold); }
  .timeline-step.current .timeline-dot { box-shadow: 0 0 0 4px rgba(200,134,10,0.2); }
  .timeline-label {
    font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--dim); font-weight: 400; text-align: center;
  }
  .timeline-step.done .timeline-label { color: var(--ink); font-weight: 500; }
  .timeline-date { font-size: 0.5rem; color: var(--muted); }
  .timeline-line { flex: 1; height: 2px; background: var(--border2); margin-top: 7px; min-width: 10px; }
  .timeline-line.done { background: var(--gold); }
  .order-cancelled-msg {
    text-align: center; padding: 1rem; margin-bottom: 0.75rem;
    font-size: 0.7rem; color: #c0392b; letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px dashed #c0392b; opacity: 0.7;
  }
  .my-order-help { padding-top: 0.75rem; margin-top: 0.5rem; border-top: 1px solid var(--border); text-align: center; }
  .my-order-wa-link {
    font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: #25D366; text-decoration: none; font-weight: 500; transition: opacity 0.2s;
  }
  .my-order-wa-link:hover, .my-order-invoice-link:hover { opacity: 0.7; }
  .my-order-invoice-link {
    font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink); text-decoration: none; font-weight: 500; transition: opacity 0.2s;
  }
  .my-order-cancel-link {
    font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: #c0392b; text-decoration: none; font-weight: 500; transition: opacity 0.2s;
  }
  .my-order-cancel-link:hover { opacity: 0.7; }
  .my-order-divider { color: var(--dim); margin: 0 0.5rem; }
  .my-order-items { border-top: 1px solid var(--border); padding-top: 0.75rem; }
  .my-order-item {
    display: flex; justify-content: space-between; padding: 0.35rem 0;
    font-size: 0.8rem; color: var(--muted); font-weight: 300;
  }
  .my-order-total {
    display: flex; justify-content: space-between; padding-top: 0.75rem;
    margin-top: 0.5rem; border-top: 1px solid var(--border);
    font-family: var(--serif); font-size: 1.05rem; color: var(--ink); font-weight: 400;
  }

  /* ─── ORDER SUCCESS MODAL ─────────────────────────────────────── */
  #order-success-modal {
    position: fixed; inset: 0; z-index: 800;
    display: flex; align-items: center; justify-content: center; padding: 2rem;
    opacity: 0; transition: opacity 0.3s;
  }
  #order-success-modal.show { opacity: 1; }
  .os-backdrop { position: absolute; inset: 0; background: rgba(26,21,16,0.6); backdrop-filter: blur(4px); }
  .os-box {
    position: relative; background: var(--warm-white); padding: 3rem 2.5rem;
    max-width: 420px; width: 100%; text-align: center;
    max-height: 90vh; overflow-y: auto;
  }
  .os-checkmark {
    width: 56px; height: 56px; margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: #27ae60; color: white;
    font-size: 1.5rem; font-weight: 600;
  }
  .os-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
  .os-order-num { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
  .os-total { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 1rem; }
  .os-msg { font-size: 0.75rem; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 1.75rem; }
  .os-actions { display: flex; flex-direction: column; gap: 0.75rem; }
  .os-btn-primary {
    padding: 0.9rem; background: var(--ink); color: var(--ivory);
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-family: var(--sans); font-weight: 400; border: none; cursor: pointer; transition: background 0.3s;
  }
  .os-btn-primary:hover { background: var(--ink2); }
  .os-btn-secondary {
    padding: 0.9rem; background: none; border: 1px solid var(--border2); color: var(--ink);
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-family: var(--sans); font-weight: 400; cursor: pointer; transition: border-color 0.3s;
  }
  .os-btn-secondary:hover { border-color: var(--ink); }
  .os-hint { font-size: 0.6rem; color: var(--dim); margin-top: 1.25rem; font-weight: 300; }
  .os-suggested { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
  .os-suggested-title {
    font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dim); margin-bottom: 1rem; font-weight: 400;
  }
  .os-suggested-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
  .os-sg-card {
    text-align: center; text-decoration: none; color: inherit;
    cursor: pointer; transition: opacity 0.2s;
  }
  .os-sg-card:hover { opacity: 0.7; }
  .os-sg-img {
    aspect-ratio: 1; background: var(--ivory); margin-bottom: 0.5rem;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .os-sg-img img { width: 100%; height: 100%; object-fit: cover; }
  .os-sg-emoji { font-size: 1.5rem; }
  .os-sg-name { font-size: 0.55rem; color: var(--ink); line-height: 1.4; font-weight: 400; }
  .os-sg-price { font-size: 0.55rem; color: var(--muted); margin-top: 0.2rem; }
  @media (max-width: 480px) {
    .os-suggested-grid { grid-template-columns: repeat(2, 1fr); }
    .os-box { padding: 2rem 1.5rem; }
  }

  /* ─── CART NUDGE ─────────────────────────────────────────────── */
  #cart-nudge {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
    z-index: 600; opacity: 0; transition: all 0.4s;
  }
  #cart-nudge.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  .cart-nudge-box {
    background: var(--warm-white); border: 1px solid var(--border2); padding: 1.25rem 1.75rem;
    box-shadow: 0 8px 32px rgba(26,21,16,0.15); max-width: 380px; position: relative;
  }
  .cart-nudge-close { position: absolute; top: 0.5rem; right: 0.75rem; font-size: 1rem; color: var(--dim); cursor: pointer; }
  .cart-nudge-text { font-size: 0.78rem; color: var(--ink); margin-bottom: 1rem; line-height: 1.6; font-weight: 300; }
  .cart-nudge-actions { display: flex; gap: 0.6rem; }
  .cart-nudge-actions button, .cart-nudge-actions a {
    flex: 1; padding: 0.6rem; text-align: center; font-size: 0.58rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-family: var(--sans); font-weight: 500; cursor: pointer;
    text-decoration: none; border: none; transition: all 0.2s;
  }
  .cart-nudge-actions button { background: var(--ink); color: var(--ivory); }
  .cart-nudge-actions a { background: #25D366; color: white; }

  /* ─── EXIT INTENT POPUP ─────────────────────────────────────── */
  #exit-popup {
    position: fixed; inset: 0; z-index: 700; display: flex; align-items: center;
    justify-content: center; padding: 2rem; opacity: 0; transition: opacity 0.4s; pointer-events: none;
  }
  #exit-popup.show { opacity: 1; pointer-events: auto; }
  .exit-backdrop { position: absolute; inset: 0; background: rgba(26,21,16,0.6); backdrop-filter: blur(6px); }
  .exit-box {
    position: relative; background: var(--ink); padding: 3.5rem 3rem; text-align: center;
    max-width: 400px; width: 100%; border: 1px solid rgba(200,134,10,0.2);
  }
  .exit-close { position: absolute; top: 1rem; right: 1.25rem; font-size: 1.1rem; color: rgba(249,245,238,0.4); cursor: pointer; transition: color 0.2s; }
  .exit-close:hover { color: var(--ivory); }
  .exit-label { font-size: 0.5rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
  .exit-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.75rem; line-height: 1.3; }
  .exit-sub { font-size: 0.72rem; color: rgba(249,245,238,0.5); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.8; }
  .exit-code {
    font-family: var(--sans); font-size: 1rem; letter-spacing: 0.35em; font-weight: 500; color: var(--gold);
    padding: 0.85rem 1.5rem; border: 1px solid rgba(200,134,10,0.3); margin-bottom: 1.5rem;
    display: inline-block;
  }
  .exit-btn {
    width: 100%; padding: 0.95rem; background: var(--gold); color: var(--ink);
    font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
    border: none; cursor: pointer; font-family: var(--sans); margin-bottom: 1rem; transition: background 0.3s;
  }
  .exit-btn:hover { background: var(--gold2); }
  .exit-dismiss { font-size: 0.55rem; color: rgba(249,245,238,0.3); cursor: pointer; letter-spacing: 0.1em; transition: color 0.2s; }
  .exit-dismiss:hover { color: rgba(249,245,238,0.6); }

  /* ─── LOADING SKELETON ───────────────────────────────────────── */
  .products-grid.loading {
    min-height: 400px; background: var(--warm-white);
    display: flex; align-items: center; justify-content: center;
  }
  .products-grid.loading::after {
    content: 'Loading collection...';
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dim); animation: pulse 1.5s ease infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

  /* ─── AMBIENT SOUND TOGGLE ─────────────────────────────────── */
  .ambient-toggle {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 450;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
  }
  .ambient-toggle.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .ambient-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    background: rgba(249,245,238,0.92);
    color: var(--ink);
    border: 1px solid var(--border2);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(26,21,16,0.1);
    white-space: nowrap;
    backdrop-filter: blur(8px);
  }
  .ambient-btn:hover {
    border-color: rgba(200,134,10,0.4);
    box-shadow: 0 6px 24px rgba(26,21,16,0.15);
  }
  .ambient-btn.on {
    background: var(--ink);
    color: var(--ivory);
    border-color: rgba(200,134,10,0.5);
    box-shadow: 0 6px 28px rgba(26,21,16,0.35);
  }
  .ambient-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.5;
  }
  .ambient-btn.on .ambient-icon { display: none; }
  .ambient-bars {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    flex-shrink: 0;
  }
  .ambient-btn.on .ambient-bars { display: flex; }
  .ambient-bars span {
    width: 2.5px;
    background: var(--gold2);
    border-radius: 1px;
    animation: ambientBar 1.2s ease-in-out infinite;
  }
  .ambient-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
  .ambient-bars span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
  .ambient-bars span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
  .ambient-bars span:nth-child(4) { height: 30%; animation-delay: 0.45s; }
  @keyframes ambientBar {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
  }
  .ambient-text {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--muted);
  }
  .ambient-btn.on .ambient-text { color: var(--gold2); opacity: 1; }
  .ambient-hint {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: rgba(249,245,238,0.7);
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  .ambient-hint::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--ink);
  }
  .ambient-hint.show {
    opacity: 1;
    animation: hintFloat 2s ease-in-out infinite;
  }
  @keyframes hintFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
  }
  body.dark-mode .ambient-btn { background: #1A1510; border-color: rgba(249,245,238,0.15); }
  body.dark-mode .ambient-btn:hover, body.dark-mode .ambient-btn.on { background: #2A2218; border-color: rgba(200,134,10,0.5); }
  body.dark-mode .ambient-hint { background: #1A1510; }
  body.dark-mode .ambient-hint::after { border-top-color: #1A1510; }
  @media (max-width: 768px) {
    .ambient-toggle { bottom: 5.5rem; }
    .ambient-text { display: none; }
    .ambient-btn { padding: 0.6rem 1rem; border-radius: 50px; }
  }

  /* ─── RAZORPAY NOTE ──────────────────────────────────────────── */
  .razorpay-note {
    font-size: 0.68rem; color: var(--dim); margin-top: 0.75rem;
    padding: 0.6rem 0.75rem; background: var(--ivory);
    border: 1px solid var(--border); letter-spacing: 0.02em;
    line-height: 1.5;
  }