/* =========================================
   loveofbits — Handcrafted Chocolates
   Dark Patisserie · Gold Foil · Warm Cream
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --ink:     #0d0500;
  --deep:    #1a0a00;
  --rich:    #7e0f43;
  --bark:    #4a1c00;
  --mahog:   #ff00a3;
  --sienna:  #a0522d;
  --gold:    #ff00a3;
  --gilded:  #ff00a3;
  --cream:   #fdf8f0;
  --warm:    #f5ead8;
  --blush:   #eddcc4;
  --muted:   #9a7a60;
  --text:    #1a0a00;

  --ease:    cubic-bezier(.4,0,.2,1);
  --spring:  cubic-bezier(.34,1.56,.64,1);
  --drawer-w: 420px;
  --suggest-w: 300px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }

/* ── TOPBAR TICKER ── */
.topbar {
  background: var(--ink);
  color: var(--gilded);
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.topbar-ticker {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .8px;
  animation: ticker 28s linear infinite;
  padding-left: 100%;
}
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .5; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAVBAR ── */
.site-nav {
  position: sticky; top: 0; z-index: 400;
  background: rgb(126 15 67);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  height: 100px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; gap: 24px;
}

/* Brand wordmark */
.brand-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gilded);
  letter-spacing: 1px;
  line-height: 1;
}
.nav-brand:hover .brand-wordmark { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 1.0rem; font-weight: 500; letter-spacing: .3px;
  color: rgba(255,255,255,.65);
  padding: 7px 13px; border-radius: 8px;
  transition: all .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gilded); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  width: 38px; height: 38px;
  background: none; border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%; color: rgba(255,255,255,.65);
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.nav-icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.nav-cart-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: 1px solid rgba(201,168,76,.3);
  color: rgba(255,255,255,.8); border-radius: 50px;
  padding: 7px 16px; font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all .2s var(--ease);
  position: relative; font-family: 'DM Sans', sans-serif;
}
.nav-cart-btn:hover { border-color: var(--gold); color: var(--gilded); background: rgba(201,168,76,.07); }
.cart-pill {
  background: var(--gold); color: var(--ink);
  font-size: .6rem; font-weight: 700; border-radius: 50px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.15);
  color: #fff; padding: 6px 10px; border-radius: 8px; cursor: pointer; font-size: 1.1rem;
}

/* ══ HERO SLIDESHOW ══ */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  overflow: hidden; background: #0d0500;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 1.2s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }

/* ── Base background layer (zooms slowly) ── */
.slide-bg {
  position: absolute; inset: -6%;
  transition: transform 9s ease;
  background-size: cover; background-position: right;
}
.hero-slide.active .slide-bg { transform: scale(1); }

/* ──────────────────────────────────────────
   SLIDE 1 — Dark Chocolate Bar Texture
   ────────────────────────────────────────── */
.slide-bg-1 {
  background-color: #1a0800;
  background-image:url("../images/banner4.png");
}


/* ──────────────────────────────────────────
   SLIDE 2 — Cocoa Powder & Truffle Scatter
   ────────────────────────────────────────── */
.slide-bg-2 {
  background-color: #120600;
  background-image:url("../images/banner5.png");
}


/* ──────────────────────────────────────────
   SLIDE 3 — Melted Chocolate Drip / Gloss
   ────────────────────────────────────────── */
.slide-bg-3 {
  background-color: #0d0500;
  background-image:url("../images/banner6.png");
}


/* ──────────────────────────────────────────
   SLIDE 4 — Luxury Gold & Dark Gift Scene
   ────────────────────────────────────────── */
.slide-bg-4 {
  background-color: #080300;
  background-image:url("../images/banner7.png");
}

/* ── Floating chocolate art per slide ── */
.slide-art {
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  animation: slideArtFloat 5s ease-in-out infinite;
  z-index: 4;
}
@keyframes slideArtFloat {
  0%,100% { transform: translateY(-50%) rotate(-2deg) translateY(0); }
  50%      { transform: translateY(-50%) rotate(2deg)  translateY(-14px); }
}

/* ── CSS Chocolate Art compositions ── */
.choco-art-box {
  position: relative;
  border-radius: 28px;
  overflow: visible;
  width: clamp(260px, 34vw, 420px);
  height: clamp(260px, 34vw, 420px);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0   0 1px rgba(201,168,76,.18),
    0 30px 80px rgba(0,0,0,.65),
    0 10px 30px rgba(0,0,0,.4);
}

/* Slide 1 art: chocolate bar top-view */
.art-1 {
  background: linear-gradient(145deg, #2d0d00 0%, #6b3000 45%, #c9a84c 100%);
}
.art-1::before {
  content: '';
  position: absolute; inset: 12%;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 23%, rgba(0,0,0,.25) 24%, rgba(0,0,0,.25) 25%),
    repeating-linear-gradient(90deg,  transparent, transparent 23%, rgba(0,0,0,.25) 24%, rgba(0,0,0,.25) 25%),
    linear-gradient(145deg, #3d1a00, #7b3f00);
  border-radius: 14px;
}
.art-1::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 35% 30%, rgba(255,220,150,.15) 0%, transparent 60%);
  border-radius: 28px; pointer-events: none;
}

/* Slide 2 art: truffle box overhead */
.art-2 {
  background: linear-gradient(135deg, #1a0800 0%, #5c2600 50%, #a05020 100%);
}
.art-2::before {
  content: '';
  position: absolute; inset: 10%;
  display: grid;
  background:
    /* 3x3 truffle grid */
    radial-gradient(circle 26% at 20% 20%, #3d1a00 60%, transparent 61%),
    radial-gradient(circle 26% at 50% 20%, #4a2000 60%, transparent 61%),
    radial-gradient(circle 26% at 80% 20%, #3a1800 60%, transparent 61%),
    radial-gradient(circle 26% at 20% 50%, #4d2200 60%, transparent 61%),
    radial-gradient(circle 26% at 50% 50%, #3d1a00 60%, transparent 61%),
    radial-gradient(circle 26% at 80% 50%, #452000 60%, transparent 61%),
    radial-gradient(circle 26% at 20% 80%, #3a1800 60%, transparent 61%),
    radial-gradient(circle 26% at 50% 80%, #4a2200 60%, transparent 61%),
    radial-gradient(circle 26% at 80% 80%, #3d1a00 60%, transparent 61%),
    #2d1200;
  border-radius: 16px;
}
.art-2::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 30% 25%, rgba(255,200,120,.12) 0%, transparent 55%);
  border-radius: 28px; pointer-events: none;
}

/* Slide 3 art: melted chocolate pour */
.art-3 {
  background: linear-gradient(135deg, #1e0900 0%, #7b3800 40%, #c8820a 100%);
  border-radius: 50% 50% 40% 40% / 50% 50% 30% 30%;
}
.art-3::before {
  content: '';
  position: absolute; top: 60%; left: 20%; right: 20%;
  height: 50%; background: #3d1a00;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
.art-3::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 45% at 40% 30%, rgba(255,190,80,.18) 0%, transparent 55%);
  pointer-events: none;
}

/* Slide 4 art: gift box */
.art-4 {
  background: linear-gradient(145deg, #0d0500 0%, #3d1800 50%, #a07020 100%);
}
.art-4::before {
  content: '';
  position: absolute; inset: 8%;
  border: 3px solid rgba(201,168,76,.5);
  border-radius: 16px;
  background: linear-gradient(145deg, #1a0800, #4a2000);
  box-shadow: inset 0 0 30px rgba(0,0,0,.4);
}
.art-4::after {
  content: '';
  position: absolute;
  top: 8%; bottom: 8%; left: 50%; width: 3px;
  background: linear-gradient(180deg, rgba(201,168,76,.6), rgba(201,168,76,.2));
  transform: translateX(-50%);
}

/* Slide floating badges */
.slide-float-badge {
  position: absolute;
  background: rgba(253,248,240,.92);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 11px 18px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  border: 1px solid rgba(201,168,76,.2);
  white-space: nowrap;
}
.badge-top    { top: 60px; right: calc(8% + clamp(240px,36vw,420px) + 20px); }
.badge-bottom { bottom: 80px; right: calc(8% + 30px); }

/* Slide content */
.slide-content {
  position: relative; z-index: 5;
  padding: 0 24px; max-width: 1320px; margin: 0 auto; width: 100%;
}
.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gilded);
  padding: 5px 16px 5px 10px;
  border-radius: 50px; font-size: .68rem;
  font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 22px; opacity: 0; transform: translateY(16px);
  transition: all .7s .1s ease;
}
.slide-eyebrow .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1)} }
.hero-slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

.slide-title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: #fff; font-weight: 300; line-height: 1.05;
  margin-bottom: 20px; max-width: 580px;
  opacity: 0; transform: translateY(24px);
  transition: all .8s .2s ease;
}
.slide-title em { font-style: italic; color: var(--gold); font-weight: 600; }
.hero-slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-body {
  color: #dd227a; font-size: .95rem; line-height: 1.85;
  max-width: 440px; margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  transition: all .8s .35s ease;
}
.hero-slide.active .slide-body { opacity: 1; transform: translateY(0); }

.slide-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  transition: all .8s .5s ease;
}
.hero-slide.active .slide-ctas { opacity: 1; transform: translateY(0); }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #9d7b1e 100%);
  color: var(--ink); font-size: .85rem; font-weight: 700;
  padding: 13px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: all .25s var(--spring);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(201,168,76,.35); letter-spacing: .3px;
  font-family: 'DM Sans', sans-serif;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,76,.5); color: var(--ink); }
.btn-hero-ghost {
  color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 500;
  padding: 12px 24px; border-radius: 50px; border: 1px solid rgba(255,255,255,.2);
  transition: all .2s; display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif;
}
.btn-hero-ghost:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* Slide dots & arrows */
.hero-nav {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px; z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.25); cursor: pointer; border: none;
  transition: all .3s var(--spring);
}
.hero-dot.active { background: var(--gold); transform: scale(1.4); }
.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  color: rgba(255,255,255,.8); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; transform: translateY(-50%);
}
.hero-arrow:hover { background: rgba(255,255,255,.14); color: #fff; }
.hero-arrow.prev-arrow { left: 24px; }
.hero-arrow.next-arrow { right: 24px; }

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 10;
  animation: heroProgress 5s linear infinite;
}
@keyframes heroProgress { from { width: 0%; } to { width: 100%; } }

/* Hero stats strip */
.hero-stats-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,5,0,.7); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,.1);
  display: flex; z-index: 8;
}
.hero-stat-item {
  flex: 1; padding: 14px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.05);
}
.hero-stat-item:last-child { border-right: none; }
.hsi-val { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hsi-lbl { font-size: .65rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(13,5,0,.6);
  backdrop-filter: blur(4px);
  z-index: 800;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: calc(var(--drawer-w) + var(--suggest-w));
  max-width: 100vw;
  display: flex;
  z-index: 900;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.35);
}
.cart-drawer.open { transform: translateX(0); }

/* Left: Suggestions */
.drawer-left {
  width: var(--suggest-w);
  min-width: 0;
  background: var(--warm);
  border-right: 1px solid var(--blush);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.drawer-section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); padding: 22px 18px 14px;
  border-bottom: 1px solid var(--blush);
}
.drawer-suggestions {
  flex: 1; overflow-y: auto; padding: 8px 10px;
}
.drawer-suggestions::-webkit-scrollbar { width: 3px; }
.drawer-suggestions::-webkit-scrollbar-track { background: transparent; }
.drawer-suggestions::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 2px; }

.sugg-card {
  display: flex; gap: 10px; padding: 12px 8px;
  border-bottom: 1px solid var(--blush); cursor: pointer;
  transition: background .15s;
}
.sugg-card:last-child { border-bottom: none; }
.sugg-card:hover { background: rgba(201,168,76,.06); border-radius: 10px; }
.sugg-img {
  width: 100px; height: 100px; border-radius: 2px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.sugg-body { flex: 1; min-width: 0; }
.sugg-name { font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sugg-meta { font-size: .65rem; color: var(--muted); margin-bottom: 4px; }
.sugg-price { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--bark); }
.sugg-add {
  display: block; width: 100%; margin-top: 7px;
  background: none; border: 1.5px solid var(--bark);
  color: var(--bark); border-radius: 50px;
  font-size: .65rem; font-weight: 600; padding: 5px 8px;
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
  letter-spacing: .3px;
}
.sugg-add:hover { background: var(--bark); color: #fff; }
.sugg-add.adding { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Right: Cart panel */
.drawer-right {
  width: var(--drawer-w);
  flex-shrink: 0;
  background: #fff;
  display: flex; flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f0ebe4;
  flex-shrink: 0;
}
.drawer-head-info {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 600; color: var(--text);
}
.drawer-close-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f5f0ea; border: none; cursor: pointer;
  font-size: 1rem; color: var(--muted); line-height: 1;
  transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.drawer-close-btn:hover { background: #ece5dc; color: var(--text); }

/* Empty state */
.drawer-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px;
}
.empty-emoji { font-size: 3rem; margin-bottom: 16px; }
.empty-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--text); margin-bottom: 6px; }
.empty-sub { font-size: .82rem; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.btn-browse {
  background: var(--ink); color: var(--gilded); border: none;
  border-radius: 50px; padding: 12px 28px; font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .25s; font-family: 'DM Sans', sans-serif;
}
.btn-browse:hover { background: var(--bark); }

/* Items list */
.drawer-items-wrap {
  flex: 1; overflow-y: auto; padding: 8px 0;
  min-height: 0;
}
.drawer-items-wrap::-webkit-scrollbar { width: 3px; }
.drawer-items-wrap::-webkit-scrollbar-thumb { background: #e8e0d8; border-radius: 2px; }

.drawer-item {
  display: flex; gap: 13px;
  padding: 14px 20px;
  border-bottom: 1px solid #f5f0ea;
  transition: background .15s;
}
.drawer-item:hover { background: #fdfaf6; }
.di-thumb {
  width: 72px; height: 72px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.di-details { flex: 1; min-width: 0; }
.di-name { font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.di-sub { font-size: .68rem; color: var(--muted); margin-bottom: 8px; }
.di-row { display: flex; align-items: center; justify-content: space-between; }
.di-qty-ctrl {
  display: flex; align-items: center;
  border: 1.5px solid #e8e0d8; border-radius: 50px;
  overflow: hidden;
}
.dq-btn {
  width: 30px; height: 28px; background: none; border: none;
  cursor: pointer; font-size: 1rem; color: var(--bark);
  transition: background .15s; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center;
}
.dq-btn:hover { background: #f5f0ea; }
.dq-val { width: 30px; text-align: center; font-size: .82rem; font-weight: 600; }
.di-remove-btn {
  background: none; border: none; cursor: pointer;
  font-size: .7rem; color: var(--muted); text-decoration: underline;
  transition: color .15s; font-family: 'DM Sans', sans-serif;
}
.di-remove-btn:hover { color: #cc4444; }
.di-price-col { text-align: right; flex-shrink: 0; padding-left: 10px; padding-top: 2px; }
.di-label { font-size: .6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.di-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }

/* Gift promo */
.gift-promo {
  margin: 0 16px 0;
  border: 1px solid var(--blush);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--warm); flex-shrink: 0;
}
.gift-promo-title { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.gift-promo-sub { font-size: .7rem; color: var(--muted); line-height: 1.5; }
.gift-promo-art { font-size: 2rem; flex-shrink: 0; }

/* Delivery info */
.drawer-delivery-info {
  padding: 12px 20px;
  font-size: .76rem; color: var(--muted);
  border-top: 1px solid #f5f0ea;
  background: #000000;
  flex-shrink: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #2ecc71;
  box-shadow: 0 0 6px rgba(46,204,113,.6); flex-shrink: 0;
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse { 0%,100%{box-shadow:0 0 6px rgba(46,204,113,.6)} 50%{box-shadow:0 0 14px rgba(46,204,113,.9)} }
.pin-display { font-weight: 600; color: var(--text); font-size: .78rem; text-decoration: underline; cursor: pointer; }
.delivery-status-badge {
  background: #d1f5e0; color: #0f7a3e;
  font-size: .65rem; font-weight: 700; padding: 2px 8px;
  border-radius: 50px; letter-spacing: .5px; text-transform: uppercase;
}
.delivery-notes { list-style: disc; padding-left: 18px; margin-top: 6px; width: 100%; }
.delivery-notes li { font-size: .68rem; color: var(--muted); margin-bottom: 2px; line-height: 1.5; }

/* Order note */
.drawer-note-row {
  padding: 10px 20px;
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid #f5f0ea; flex-shrink: 0;
}
.note-toggle-btn {
  background: none; border: none; cursor: pointer; color: var(--text);
  font-size: .75rem; font-weight: 500; display: flex; align-items: center; gap: 5px;
  text-decoration: underline; font-family: 'DM Sans', sans-serif; transition: color .2s;
}
.note-toggle-btn:hover { color: var(--mahog); }
.note-sep { color: var(--blush); }
.order-note-box {
  padding: 0 16px 12px; display: none; flex-shrink: 0;
}
.order-note-box textarea {
  width: 100%; border: 1.5px solid var(--blush); border-radius: 10px;
  padding: 10px 13px; font-size: .8rem; color: var(--text);
  font-family: 'DM Sans', sans-serif; resize: none; outline: none;
  background: var(--cream); transition: border-color .2s;
}
.order-note-box textarea:focus { border-color: var(--gold); }

/* Drawer footer */
.drawer-foot {
  padding: 14px 16px 20px;
  border-top: 1px solid #f0ebe4;
  flex-shrink: 0;
  background: #fff;
}
.drawer-subtotal {
  display: flex; justify-content: space-between;
  font-size: .82rem; color: var(--muted); margin-bottom: 12px;
  padding: 0 4px;
}
.drawer-subtotal span:last-child { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--text); }
.drawer-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--ink); color: var(--gilded);
  font-size: .88rem; font-weight: 600; padding: 16px;
  border-radius: 12px; width: 100%; text-decoration: none;
  transition: all .25s var(--spring); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; letter-spacing: .3px; margin-bottom: 10px;
}
.drawer-cta:hover { background: var(--bark); color: var(--gilded); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(74,28,0,.3); }
.drawer-view-all {
  display: block; text-align: center;
  font-size: .75rem; color: var(--muted); text-decoration: underline;
  transition: color .2s; padding: 4px;
}
.drawer-view-all:hover { color: var(--text); }

/* ── SECTIONS ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); }
.section-h2 { font-size: clamp(1.8rem,3.5vw,3rem); color: var(--text); font-weight: 400; margin-bottom: 14px; }
.section-h2 em { font-style: italic; color: var(--mahog); }
.gold-rule { width: 44px; height: 2px; background: linear-gradient(90deg,var(--gold),transparent); }

/* ── CATEGORIES ── */
.cats-section { background: var(--warm); padding: 80px 24px; }
.cats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 860px; margin: 0 auto; }
.cat-card {
  background: #fff; border-radius: 22px; padding: 32px 22px; text-align: center;
  border: 1px solid var(--blush); cursor: pointer;
  transition: all .35s var(--spring); text-decoration: none; display: block;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(13,5,0,.15); border-color: rgba(201,168,76,.35); }
.cat-icon { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin: 0 auto 16px; }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.cat-desc { font-size: .74rem; color: var(--muted); line-height: 1.6; }

/* ── PRODUCTS GRID ── */
.products-section { padding: 90px 24px; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 8px 22px; border-radius: 50px;
  border: 1.5px solid var(--blush); background: #fff;
  color: var(--muted); font-size: .78rem; font-weight: 500;
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--rich); border-color: var(--rich); color: var(--gilded); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 22px; }

/* ── PRODUCT CARD ── */
.prod-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--blush); transition: all .35s var(--ease);
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(13,5,0,.18); border-color: rgba(201,168,76,.25); }
.prod-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.prod-img-wrap .choco-art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  transition: transform .5s ease;
}
.prod-card:hover .choco-art { transform: scale(1.07) rotate(1.5deg); }
.prod-cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(13,5,0,.72); backdrop-filter: blur(6px);
  color: var(--gilded); font-size: .62rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px;
  border: 1px solid rgba(201,168,76,.25);
}
.prod-quick-view {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(13,5,0,.7) 0%,transparent 50%);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px;
  opacity: 0; transition: opacity .3s;
}
.prod-card:hover .prod-quick-view { opacity: 1; }
.btn-quick {
  background: rgba(253,248,240,.92); backdrop-filter: blur(6px);
  color: var(--text); font-size: .72rem; font-weight: 700;
  padding: 8px 20px; border-radius: 50px; border: none; cursor: pointer;
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.btn-quick:hover { background: #fff; transform: scale(1.04); }
.prod-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-name { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-weight: 600; color: var(--text); margin-bottom: 6px; line-height: 1.25; }
.prod-desc { font-size: .76rem; color: var(--muted); line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--warm); padding-top: 13px; gap: 10px; }
.prod-price { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--bark); }
.btn-add {
  background: var(--rich); color: var(--gilded); border: none;
  border-radius: 50px; padding: 9px 18px; font-size: .72rem; font-weight: 600;
  cursor: pointer; transition: all .25s var(--spring);
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.btn-add:hover { background: var(--bark); transform: scale(1.04); box-shadow: 0 4px 16px rgba(74,28,0,.3); }
.btn-add.success { background: #27ae60; color: #fff; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--rich); padding: 90px 24px; position: relative; overflow: hidden; }
.testi-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%,rgba(74,28,0,.5) 0%,transparent 70%);
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; position: relative; }
.testi-card { background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.15); border-radius: 18px; padding: 28px 24px; transition: all .3s; }
.testi-card:hover { background: rgba(255,255,255,.08); border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--bark),var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--ink); font-size: .88rem; }
.testi-name { font-size: .85rem; font-weight: 600; color: #fff; }
.testi-loc { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── PROCESS ── */
.process-section { background: var(--warm); padding: 90px 24px; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 56px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 27px; left: 14%; width: 72%; height: 1px; background: linear-gradient(90deg,transparent,var(--blush),transparent); }
.process-step { text-align: center; position: relative; }
.step-num { width: 80px; height: 80px; background: var(--rich); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin: 0 auto 18px; position: relative; z-index: 1; border: 3px solid var(--blush); transition: all .3s var(--spring); }
.process-step:hover .step-num { background: var(--gold); color: var(--ink); transform: scale(1.12); border-color: var(--gold); }
.step-title { font-size: 1.3rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: .96rem; color: var(--muted); line-height: 1.7; }

/* ── PAGE HEADER ── */
.page-header { background: linear-gradient(160deg,var(--ink) 0%,var(--rich) 60%,var(--bark) 100%); padding: 60px 24px 52px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(201,168,76,.03) 1px,transparent 1px); background-size: 48px 48px; }
.page-header-inner { position: relative; max-width: 1320px; margin: 0 auto; }
.page-header h1 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 300; margin-top: 12px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; list-style: none; }
.breadcrumb li { font-size: .72rem; color: rgba(255,255,255,.4); }
.breadcrumb li a { color: var(--gold); }
.breadcrumb li+li::before { content: '/'; margin-right: 8px; opacity: .3; }

/* ── CART PAGE ── */
.cart-section { padding: 56px 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; max-width: 1100px; margin: 0 auto; }
.cart-item { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid var(--blush); margin-bottom: 12px; display: flex; gap: 16px; align-items: center; transition: border-color .2s; }
.cart-item:hover { border-color: rgba(201,168,76,.3); }
.cart-item-thumb { width: 84px; height: 84px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 2.3rem; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cart-item-unit { font-size: .72rem; color: var(--muted); }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-total { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--bark); }
.qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--blush); border-radius: 50px; overflow: hidden; }
.qty-ctrl button { width: 32px; height: 32px; background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--bark); transition: background .15s; }
.qty-ctrl button:hover { background: var(--warm); }
.qty-ctrl .qty-num { width: 34px; text-align: center; font-weight: 600; font-size: .85rem; }
.remove-link { background: none; border: none; cursor: pointer; font-size: .7rem; color: var(--muted); text-decoration: underline; transition: color .15s; font-family: 'DM Sans', sans-serif; }
.remove-link:hover { color: #cc4444; }
.cart-summary-card { background: var(--ink); border-radius: 20px; padding: 28px; color: #fff; position: sticky; top: 90px; border: 1px solid rgba(201,168,76,.1); }
.summary-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--gilded); margin-bottom: 20px; }
.summary-line { display: flex; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.6); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.summary-line.total { font-size: 1rem; color: var(--gold); font-weight: 600; border: none; padding-top: 14px; }
.pin-row { display: flex; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); margin-top: 14px; }
.pin-row input { flex: 1; background: rgba(255,255,255,.06); border: none; padding: 9px 12px; color: #fff; font-size: .8rem; outline: none; font-family: 'DM Sans', sans-serif; }
.pin-row input::placeholder { color: rgba(255,255,255,.3); }
.pin-row button { background: var(--gold); border: none; padding: 0 16px; color: var(--ink); font-size: .72rem; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.delivery-badge { margin-top: 10px; padding: 9px 12px; border-radius: 8px; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2); font-size: .76rem; color: var(--gilded); display: none; }
.btn-checkout { display: block; text-align: center; background: linear-gradient(135deg,var(--gold) 0%,#9d7b1e 100%); color: var(--ink); font-weight: 700; font-size: .88rem; padding: 15px; border-radius: 12px; margin-top: 20px; transition: all .25s var(--spring); box-shadow: 0 6px 24px rgba(201,168,76,.25); }
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,76,.4); color: var(--ink); }
.empty-cart { text-align: center; padding: 80px 24px; }
.empty-cart .big-emoji { font-size: 5rem; margin-bottom: 20px; }
.empty-cart h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 10px; }
.empty-cart p { color: var(--muted); margin-bottom: 24px; }

/* ── CHECKOUT ── */
.checkout-section { padding: 56px 24px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; max-width: 1100px; margin: 0 auto; }
.form-card { background: #fff; border-radius: 20px; padding: 36px; border: 1px solid var(--blush); }
.form-card h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 22px; display: flex; align-items: center; gap: 9px; }
.form-card h4 .icon { color: var(--gold); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .76rem; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: .3px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 1.5px solid var(--blush); border-radius: 10px; padding: 11px 14px; font-size: .86rem; background: var(--cream); color: var(--text); transition: border-color .2s, box-shadow .2s; font-family: 'DM Sans', sans-serif; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-opt { border: 2px solid var(--blush); border-radius: 12px; padding: 14px; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 10px; }
.pay-opt:hover, .pay-opt.active { border-color: var(--gold); background: rgba(201,168,76,.04); }
.pay-icon { font-size: 1.4rem; }
.pay-title { font-size: .82rem; font-weight: 600; color: var(--text); }
.pay-sub { font-size: .68rem; color: var(--muted); margin-top: 1px; }

/* ── PRODUCT DETAIL ── */
.detail-section { padding: 56px 24px; }
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start; }
.detail-img-frame { border-radius: 32px; overflow: hidden; box-shadow: 0 24px 80px rgba(13,5,0,.22); border: 1px solid rgba(201,168,76,.15); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: min(13rem,26vw); }
.detail-badges { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 14px; }
.detail-badge { background: #fff; border: 1px solid var(--blush); border-radius: var(--r-sm,10px); padding: 11px 6px; text-align: center; }
.detail-badge .db-icon { font-size: 1rem; margin-bottom: 3px; }
.detail-badge .db-text { font-size: .62rem; color: var(--muted); font-weight: 600; }
.detail-cat-tag { display: inline-block; background: var(--warm); color: var(--mahog); font-size: .68rem; font-weight: 700; padding: 4px 13px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.detail-title { font-size: clamp(1.8rem,3vw,2.6rem); color: var(--text); font-weight: 400; line-height: 1.15; margin-bottom: 10px; }
.detail-price { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--bark); line-height: 1; }
.detail-stars { color: var(--gold); margin: 12px 0; font-size: .9rem; }
.detail-desc { color: var(--muted); font-size: .9rem; line-height: 1.85; margin: 16px 0 22px; }
.detail-delivery { background: var(--warm); border: 1px solid var(--blush); border-radius: 10px; padding: 12px 16px; font-size: .8rem; color: var(--muted); margin-bottom: 22px; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.qty-lg { display: flex; align-items: center; border: 2px solid var(--blush); border-radius: 50px; overflow: hidden; }
.qty-lg button { width: 42px; height: 42px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--bark); transition: background .15s; }
.qty-lg button:hover { background: var(--warm); }
.qty-lg .num { width: 50px; text-align: center; font-weight: 700; font-size: .95rem; }
.btn-primary-lg { flex: 1; max-width: 260px; background: var(--rich); color: var(--gilded); border: none; border-radius: 50px; padding: 14px 22px; font-size: .86rem; font-weight: 600; cursor: pointer; transition: all .25s var(--spring); display: flex; align-items: center; justify-content: center; gap: 7px; font-family: 'DM Sans', sans-serif; box-shadow: 0 6px 24px rgba(74,28,0,.2); }
.btn-primary-lg:hover { background: var(--bark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(74,28,0,.32); color: var(--gilded); }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
.highlight-item { display: flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--muted); }
.highlight-item .hi { color: var(--gold); }

/* ── ORDER SUCCESS ── */
.success-section { min-height: 80vh; display: flex; align-items: center; padding: 56px 24px; background: var(--warm); }
.success-card { max-width: 560px; margin: 0 auto; background: #fff; border-radius: 28px; padding: 56px 44px; text-align: center; box-shadow: 0 24px 80px rgba(13,5,0,.14); border: 1px solid var(--blush); }
.success-check { width: 84px; height: 84px; background: linear-gradient(135deg,#2ecc71,#27ae60); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #fff; margin: 0 auto 24px; box-shadow: 0 8px 32px rgba(46,204,113,.3); }
.order-code { background: var(--ink); color: var(--gold); display: inline-block; padding: 11px 26px; border-radius: 50px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 3px; margin: 16px 0 24px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 80px 24px 0; }
.footer-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-wordmark { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; font-style: italic; color: var(--gilded); margin-bottom: 14px; letter-spacing: .5px; }
.footer-about { font-size: .8rem; line-height: 1.85; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .88rem; transition: all .2s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h6 { font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gilded); margin-bottom: 16px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .8rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gilded); }
.footer-contact p { font-size: .8rem; display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.5); }
.footer-contact a:hover { color: var(--gilded); }
.footer-delivery-box { margin-top: 14px; padding: 14px; background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.15); border-radius: 10px; }
.fdb-label { font-size: .62rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.footer-delivery-box div { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.footer-bottom { max-width: 1320px; margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: rgba(255,255,255,.25); }

/* ── FLOATS ── */
.whatsapp-fab { position: fixed; bottom: 84px; right: 22px; width: 50px; height: 50px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; box-shadow: 0 6px 22px rgba(37,211,102,.4); z-index: 700; transition: all .25s var(--spring); }
.whatsapp-fab:hover { transform: scale(1.12); color: #fff; }
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 10px 14px 14px; background: rgba(13,5,0,.96); backdrop-filter: blur(12px); border-top: 1px solid rgba(201,168,76,.15); z-index: 600; }
.mobile-cta a { display: block; text-align: center; background: linear-gradient(135deg,var(--gold),#9d7b1e); color: var(--ink); font-weight: 700; font-size: .88rem; padding: 14px; border-radius: 13px; letter-spacing: .3px; }

/* ── ADMIN ── */
.admin-body { background: #f7f3ee; }
.sidebar-logo { padding: 22px 18px; border-bottom: 1px solid rgba(255,255,255,.06); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gilded); display: flex; align-items: center; gap: 9px; font-style: italic; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-tile { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid #e8e0d8; transition: all .25s; }
.stat-tile:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(74,28,0,.1); }
.stat-tile .icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 10px; }
.stat-tile .val { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--text); }
.stat-tile .lbl { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.data-table { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8e0d8; }
.data-table table { width: 100%; border-collapse: collapse; }
.data-table thead th { background: var(--ink); color: rgba(255,255,255,.7); font-size: .68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; text-align: left; }
.data-table tbody td { padding: 12px 16px; border-bottom: 1px solid #f5f0ea; font-size: .83rem; vertical-align: middle; }
.data-table tbody tr:last-child td { border: none; }
.data-table tbody tr:hover td { background: #fdfaf6; }
.badge { padding: 3px 11px; border-radius: 50px; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-processing { background: #cfe2ff; color: #0a4db0; }
.badge-delivered { background: #d1e7dd; color: #0f5132; }
.badge-cancelled { background: #f8d7da; color: #842029; }
.badge-active { background: #d1e7dd; color: #0f5132; }
.badge-inactive { background: #f8d7da; color: #842029; }
.admin-form { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #e8e0d8; }
.btn-save { background: var(--ink); color: var(--gold); border: none; border-radius: 10px; padding: 10px 24px; font-size: .84rem; font-weight: 700; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-save:hover { background: var(--bark); color: var(--gilded); }
.admin-login-wrap { min-height: 100vh; background: linear-gradient(145deg,var(--ink),var(--rich)); display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-box { background: #fff; border-radius: 24px; padding: 48px 40px; width: 100%; max-width: 400px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeUp .5s ease both; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .cart-drawer { --suggest-w: 240px; }
}
@media(max-width:900px) {
  .drawer-left { display: none; }
  .cart-drawer { width: var(--drawer-w); }
  .cats-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .detail-layout,.checkout-layout,.cart-layout { grid-template-columns: 1fr; }
  .hero-stats-strip { display: none; }
}
@media(max-width:768px) {
  body { padding-bottom: 66px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: rgba(13,5,0,.98); padding: 12px; gap: 2px; border-top: 1px solid rgba(201,168,76,.1); z-index: 500; }
  .nav-toggle { display: flex; }
  .hero { min-height: 88vh; }
  .slide-art { display: none; }
  .slide-content { text-align: center; }
  .slide-ctas { justify-content: center; }
  .slide-body { margin-left: auto; margin-right: auto; }
  .products-grid { grid-template-columns: repeat(1,1fr); gap: 12px; }
  .mobile-cta { display: none; }
  .whatsapp-fab { bottom: 76px; }
  .cart-drawer { --drawer-w: min(100vw, 400px); width: var(--drawer-w); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PINCODE CHECK MODAL
   ══════════════════════════════════════ */

/* Overlay */
.pin-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,5,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.pin-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.pin-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%) scale(.94);
  z-index: 1200;
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px 36px;
  width: min(420px, 92vw);
  box-shadow:
    0 32px 80px rgba(13,5,0,.28),
    0 0 0 1px rgba(201,168,76,.12);
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  text-align: center;
}
.pin-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.pin-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 30px; height: 30px;
  background: #f5f0ea; border: none; border-radius: 50%;
  font-size: 1.1rem; color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: all .2s;
}
.pin-modal-close:hover { background: #ece5dc; color: var(--text); }

/* Step 1 */
.pin-modal-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  animation: pinBounce .6s ease;
}
@keyframes pinBounce {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.pin-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.pin-modal-sub {
  font-size: .82rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 22px;
}

/* Input + button row */
.pin-modal-input-wrap {
  display: flex; gap: 0;
  border: 2px solid #e0d8cf;
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 10px;
}
.pin-modal-input-wrap:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26,10,0,.07);
}
.pin-modal-input-wrap.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.1);
  animation: shake .35s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.pin-modal-input {
  flex: 1; border: none; outline: none;
  padding: 13px 16px; font-size: 1.05rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; letter-spacing: 2px;
  color: var(--text); background: var(--cream);
  text-align: center;
}
.pin-modal-input::placeholder {
  letter-spacing: .5px; font-size: .82rem;
  font-weight: 400; color: #bbb;
}
.pin-modal-btn {
  background: var(--ink); color: var(--gilded);
  border: none; padding: 0 22px;
  font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap; letter-spacing: .3px;
}
.pin-modal-btn:hover { background: var(--bark); }
.pin-modal-btn:disabled {
  opacity: .6; cursor: wait;
}

/* Hint text */
.pin-modal-hint {
  font-size: .74rem; color: var(--muted);
  min-height: 18px; transition: all .2s;
}
.pin-modal-hint.saved {
  color: #2e7d32;
  font-weight: 600;
}

/* Step 2: Result */
#pinStep2 {
  animation: fadeUpSm .4s ease;
}
@keyframes fadeUpSm {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pin-result-icon {
  font-size: 2.8rem; margin-bottom: 12px;
}
.pin-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.pin-result-detail {
  font-size: .8rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 22px;
}
.pin-result-detail .highlight {
  display: inline-block;
  background: var(--warm); color: var(--bark);
  padding: 3px 10px; border-radius: 50px;
  font-weight: 700; font-size: .78rem;
  margin: 4px 2px;
}
.pin-result-detail .highlight.green {
  background: #e8f5e9; color: #2e7d32;
}
.pin-result-detail .pin-tag {
  font-weight: 700; color: var(--text);
}

/* Delivery card inside result */
.pin-delivery-card {
  background: var(--warm);
  border: 1px solid var(--blush);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 18px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pdc-icon { font-size: 2rem; flex-shrink: 0; }
.pdc-info { flex: 1; }
.pdc-title { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.pdc-sub   { font-size: .72rem; color: var(--muted); line-height: 1.5; }
.pdc-badge {
  padding: 4px 12px; border-radius: 50px;
  font-size: .68rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; flex-shrink: 0;
}
.pdc-badge.free { background: #e8f5e9; color: #2e7d32; }
.pdc-badge.paid { background: #fff3e0; color: #e65100; }

/* Unavailable state */
.pin-unavailable-card {
  background: #fff5f5;
  border: 1px solid #fcc;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 18px;
  font-size: .82rem; color: #c0392b;
  line-height: 1.6;
}

/* Action buttons */
.pin-result-actions {
  display: flex; flex-direction: column; gap: 10px;
}
.pin-add-btn {
  background: var(--ink); color: var(--gilded);
  border: none; border-radius: 12px;
  padding: 14px; width: 100%;
  font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: all .25s cubic-bezier(.34,1.56,.64,1);
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(26,10,0,.2);
  letter-spacing: .2px;
}
.pin-add-btn:hover {
  background: var(--bark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(26,10,0,.28);
}
.pin-add-btn:disabled {
  opacity: .7; cursor: wait; transform: none;
}
.pin-change-btn {
  background: none; border: 1.5px solid var(--blush);
  border-radius: 10px; padding: 10px;
  font-size: .78rem; color: var(--muted);
  cursor: pointer; transition: all .2s;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pin-change-btn:hover { border-color: var(--gold); color: var(--text); }

/* Saved pincode chip (shown below add-to-cart buttons) */
.saved-pin-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--warm); border: 1px solid var(--blush);
  color: var(--muted); font-size: .68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
  margin-top: 4px; cursor: pointer; transition: all .2s;
}
.saved-pin-chip:hover { border-color: var(--gold); color: var(--text); }
.saved-pin-chip .chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2ecc71; flex-shrink: 0;
}
.saved-pin-chip .chip-x {
  font-size: .7rem; opacity: .5; margin-left: 2px;
}
.saved-pin-chip:hover .chip-x { opacity: 1; }

/* Mobile adjustments */
@media(max-width: 480px) {
  .pin-modal { padding: 32px 22px 28px; }
  .pin-modal-title { font-size: 1.4rem; }
}

/* ══════════════════════════════════════
   HERO VISUAL COMPOSITIONS
   ══════════════════════════════════════ */

/* ── Background floating scatter ── */
.bg-scatter {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 1;
}
.bs {
  position: absolute;
  font-size: 2rem;
  opacity: .06;
  animation: bsDrift 12s ease-in-out infinite;
  will-change: transform;
}
.bs1 { top:  8%; left:  6%; animation-duration: 13s; }
.bs2 { top: 18%; right: 5%; animation-duration: 16s; animation-delay: 1s; }
.bs3 { top: 55%; left:  3%; animation-duration: 11s; animation-delay: 2s; }
.bs4 { top: 70%; right: 8%; animation-duration: 14s; animation-delay: .5s; }
.bs5 { top: 40%; left: 48%; animation-duration: 15s; animation-delay: 1.5s; }
@keyframes bsDrift {
  0%,100% { transform: translateY(0)   rotate(0deg);   opacity: .06; }
  33%      { transform: translateY(-18px) rotate(8deg);  opacity: .1;  }
  66%      { transform: translateY(10px)  rotate(-5deg); opacity: .05; }
}

/* ── Slide art wrapper ── */
.slide-art {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  z-index: 4; display: flex; align-items: center; justify-content: center;
  animation: artFloat 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes artFloat {
  0%,100% { transform: translateY(-50%) translateY(0)    rotate(-1.5deg); }
  50%      { transform: translateY(-50%) translateY(-16px) rotate(1.5deg); }
}

/* Floating badges */
.slide-float-badge {
  position: absolute;
  background: rgba(253,248,240,.94);
  backdrop-filter: blur(14px);
  border-radius: 14px; padding: 11px 17px;
  font-size: .78rem; font-weight: 600; color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  border: 1px solid rgba(201,168,76,.22);
  white-space: nowrap; line-height: 1.4;
  animation: badgeBob 4s ease-in-out infinite;
}
.badge-top    { top: -16px;  right: 100%; margin-right: -60px; animation-delay: .5s; }
.badge-bottom { bottom: -16px; right: 0; }
@keyframes badgeBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ═══════════════════════
   SLIDE 1: Chocolate Bar
   ═══════════════════════ */
.hero-visual-s1 {
  position: relative;
  width: clamp(240px, 32vw, 400px);
  height: clamp(240px, 32vw, 400px);
}
.s1-bar {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-8deg);
  width: 85%; aspect-ratio: 1.6;
  background: linear-gradient(145deg, #2d1200 0%, #5a2800 40%, #7b3f00 100%);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}
.bar-grid {
  display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(3,1fr);
  gap: 3px; padding: 12px; height: 100%;
}
.bar-square {
  background: linear-gradient(135deg, #3d1800 0%, #5c2500 50%, #3d1800 100%);
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), inset 0 -1px 0 rgba(0,0,0,.3);
  transition: background .3s;
}
.bar-shine {
  position: absolute; top: 0; left: -40%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,220,150,.12), transparent);
  transform: skewX(-20deg);
  animation: barShine 4s ease-in-out infinite;
}
@keyframes barShine { 0%,80%,100%{left:-40%} 40%{left:130%} }
.s1-pieces {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.bar-piece {
  position: absolute;
  font-size: 2.2rem;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.5));
}
.p1 { bottom: 10%; left: 2%;  transform: rotate(-20deg); font-size: 2.4rem; }
.p2 { top: 5%;    right: 0%;  transform: rotate(15deg);  font-size: 2rem;   }
.p3 { bottom: 2%; right: 8%;  transform: rotate(-8deg);  font-size: 1.8rem; }

/* ═══════════════════════
   SLIDE 2: Gift Box
   ═══════════════════════ */
.hero-visual-s2 {
  position: relative;
  width: clamp(240px, 32vw, 400px);
  height: clamp(240px, 32vw, 400px);
  display: flex; align-items: center; justify-content: center;
}
.s2-box {
  position: relative;
  width: 80%; aspect-ratio: 1;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.55));
}
.s2-box-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 78%;
  background: linear-gradient(145deg, #1a0800, #3d1a00, #5c2800);
  border-radius: 0 0 14px 14px;
  border: 1.5px solid rgba(201,168,76,.25);
  overflow: hidden; padding: 12px;
}
.s2-box-lid {
  position: absolute; top: 0; left: -3%; right: -3%;
  height: 26%;
  background: linear-gradient(145deg, #2d1200, #5a2400, #7b3800);
  border-radius: 12px 12px 0 0;
  border: 1.5px solid rgba(201,168,76,.3);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.s2-truffles {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; height: 100%;
}
.s2-truffle {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #7b3f00, #2d1200);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.3);
  aspect-ratio: 1;
}
.t2,.t5,.t8 { background: radial-gradient(circle at 35% 30%, #a0522d, #3d1a00); }
.t3,.t6,.t9 { background: radial-gradient(circle at 35% 30%, #8b4513, #2d1200); }
.s2-ribbon-v {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 14px;
  background: linear-gradient(180deg, var(--gold), #9d7b1e);
  transform: translateX(-50%); z-index: 3;
  box-shadow: 0 0 10px rgba(201,168,76,.4);
}
.s2-ribbon-h {
  position: absolute; top: 25%; left: 0; right: 0; height: 14px;
  background: linear-gradient(90deg, var(--gold), #9d7b1e);
  z-index: 3;
  box-shadow: 0 0 10px rgba(201,168,76,.4);
}
.s2-bow {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-size: 2.2rem; z-index: 4;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
  animation: bowWiggle 3s ease-in-out infinite;
}
@keyframes bowWiggle { 0%,100%{transform:translateX(-50%) rotate(0)} 50%{transform:translateX(-50%) rotate(5deg)} }

/* ═══════════════════════
   SLIDE 3: Truffle Plate
   ═══════════════════════ */
.hero-visual-s3 {
  position: relative;
  width: clamp(240px, 32vw, 400px);
  height: clamp(240px, 32vw, 400px);
  display: flex; align-items: center; justify-content: center;
}
.s3-plate {
  position: relative; width: 88%; aspect-ratio: 1;
  background: radial-gradient(ellipse 80% 40% at 50% 90%, rgba(0,0,0,.5) 0%, transparent 70%),
              linear-gradient(145deg, #1a0800, #2d1200);
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.2);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), inset 0 2px 0 rgba(255,255,255,.06);
}
.s3-truffle {
  position: absolute;
  width: 28%; aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #7b3f00, #1a0800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.5), inset 0 -2px 6px rgba(0,0,0,.4);
  animation: truFloat 4s ease-in-out infinite;
}
.s3-truffle span { filter: brightness(.7); }
.st1 { top:  8%; left: 36%; animation-delay: 0s; }
.st2 { top: 28%; left:  8%; animation-delay: .4s; background: radial-gradient(circle at 35% 30%, #a0522d, #2d1200); }
.st3 { top: 28%; right: 8%; animation-delay: .8s; background: radial-gradient(circle at 35% 30%, #8b4513, #1a0800); }
.st4 { top: 52%; left: 18%; animation-delay: .2s; }
.st5 { top: 52%; right:18%; animation-delay: .6s; background: radial-gradient(circle at 35% 30%, #9b5020, #2d1200); }
.st6 { top: 68%; left: 36%; animation-delay: 1s;  background: radial-gradient(circle at 35% 30%, #7b3f00, #1a0800); }
@keyframes truFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.s3-dust-ring {
  position: absolute; inset: 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse 100% 100%, transparent 60%, rgba(100,50,10,.3) 80%, transparent 100%);
}

/* ═══════════════════════
   SLIDE 4: Custom Mix
   ═══════════════════════ */
.hero-visual-s4 {
  position: relative;
  width: clamp(240px, 32vw, 400px);
  height: clamp(240px, 32vw, 400px);
  display: flex; align-items: center; justify-content: center;
}
.s4-pack {
  position: relative; width: 88%; height: 88%;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center; padding: 20px;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.55));
}
.s4-pack-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #1a0800, #3d1a00);
  border-radius: 20px;
  border: 1.5px solid rgba(201,168,76,.25);
  box-shadow: 0 0 0 6px rgba(201,168,76,.06);
}
.s4-row { display: flex; gap: 8px; justify-content: center; position: relative; z-index: 1; }
.s4-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 6px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.15);
  transition: all .3s; cursor: default; min-width: 56px;
  animation: itemGlow 3s ease-in-out infinite;
}
.s4-item:nth-child(2) { animation-delay: .5s; }
.s4-item:nth-child(3) { animation-delay: 1s; }
@keyframes itemGlow { 0%,100%{border-color:rgba(201,168,76,.15)} 50%{border-color:rgba(201,168,76,.4)} }
.s4-item span { font-size: 1.7rem; display: block; }
.s4-item label {
  font-size: .55rem; color: var(--gilded); font-family:'DM Sans',sans-serif;
  font-weight: 700; letter-spacing: .5px; text-transform: uppercase; cursor: default;
}
.si-dark   span { filter: brightness(.6) sepia(.4); }
.si-milk   span { filter: brightness(.9) sepia(.2); }
.si-white  span { filter: brightness(1.3) saturate(.3); }
.si-ruby   span { filter: brightness(.8) hue-rotate(20deg); }
.si-hazel  span { filter: brightness(.75) sepia(.5); }
.si-sea    span { filter: brightness(1.1) sepia(.1); }
.s4-plus {
  position: relative; z-index: 1;
  text-align: center; font-size: .72rem; color: var(--gold);
  font-family:'Cormorant Garamond',serif; font-style: italic;
  letter-spacing: 1px; margin-top: 4px;
}

/* ── Responsive ── */
@media(max-width: 900px) {
  .slide-art  { display: none; }
  .bg-scatter { display: none; }
  .slide-content { text-align: center; }
  .slide-ctas { justify-content: center; }
  .slide-body { margin-left: auto; margin-right: auto; }
}
.collections-section{
    background:#f4f4f4;
    padding:70px 20px;
    font-family:Arial, sans-serif;
}

.collections-section .container{
    max-width:1200px;
    margin:auto;
}

/* Heading */
.section-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    margin-bottom:45px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin:0;
}

.section-heading .line{
    width:80px;
    height:2px;
    background:#333;
}

/* Grid */
/* Homepage Categories */
.collections-heading{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.collections-heading .gold-rule{
    width:50px;
    height:2px;
    background:#ff2bbf;
    margin-top:15px;
}

.collections-heading .section-tag{
    display:block;
    text-transform:uppercase;
    letter-spacing:3px;
}

.collections-heading .section-h2{
    margin:15px 0 0;
}

.home-categories-section{
    background:#f6f2ea;
}
.hc-row{
    display:flex;
    gap:24px;
    margin-top: 20px;
}

.hc-left{
    width:50%;
}

.hc-right{
    width:50%;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.hc-card{
    position:relative;
    display:block;
    overflow:hidden;
    text-decoration:none;
}

.hc-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:all .5s ease;
}

.hc-card-lg{
    height:720px;
}

.hc-card-sm{
    height:348px;
}

.hc-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:rgba(0,0,0,.15);
}

.hc-overlay h3{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:8px;
    line-height:1.1;
}

.hc-overlay span{
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:1px;
}

.hc-card:hover img{
    transform:scale(1.08);
}

.hc-card:hover .hc-overlay{
    background:rgba(0,0,0,.3);
}

@media(max-width:991px){

    .hc-card-lg{
        height:450px;
    }

    .hc-card-sm{
        height:250px;
    }

    .hc-overlay h3{
        font-size:32px;
    }

}
