/* ═══════════════════════════════════════════════════════════
   SONCHAFA — Saris that tell your story
   Cream + Champagne + Sage palette
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Champagne gold (from logo) ── */
  --gold-bright:   #B8933F;   /* primary champagne — like the logo S */
  --gold-rich:     #937733;   /* deeper antique gold */
  --gold-deep:     #8B6F32;   /* shadow gold */
  --gold-shadow:   #5C4A1D;   /* darkest gold accent */
  --gold-pale:     #E8D4A8;   /* warm pale gold */
  --gold-light:    #D4B883;   /* honey gold */

  /* ── Cream backgrounds ── */
  --cream-paper:   #FFF9EE;   /* lightest cream */
  --cream-soft:    #FAF5EA;   /* pages */
  --cream-bg:      #F8F0DD;   /* main background tone */
  --cream-deep:    #F0E6CE;   /* card surfaces */
  --cream-warm:    #EBDFC0;   /* deeper warm cream */
  --cream-shadow:  #D9C9A4;   /* shadow cream */

  /* ── Sage / botanical (from logo leaves) ── */
  --sage-soft:     #B8C29F;
  --sage-mid:      #9DA486;
  --sage-deep:     #6B7656;

  /* ── Blush (rose accent) ── */
  --blush-soft:    #E5C8B8;
  --blush-mid:     #D4A89C;
  --blush-deep:    #A66E5C;

  /* ── Text ── */
  --text-darkest:  #2E2516;   /* deepest brown */
  --text-dark:     #4A3825;   /* body copy */
  --text-mid:      #7A6342;   /* muted */
  --text-soft:     #937733;   /* gold-tinted muted */

  /* Aliased legacy names (kept so unchanged rules still resolve) */
  --gold-cream:    var(--text-dark);
  --bg-night:      var(--cream-paper);
  --bg-deep:       var(--cream-soft);
  --bg-mid:        var(--cream-deep);
  --bg-velvet:     var(--cream-warm);
  --crimson-bright:var(--blush-deep);

  /* Typography */
  --font-display:  'Italiana', serif;
  --font-headline: 'Cormorant SC', serif;
  --font-script:   'Italianno', cursive;
  --font-body:     'Cormorant Garamond', serif;
  --font-accent:   'Marcellus', serif;
  --font-brand:    'Marcellus', serif;
  --font-marathi:  'Tiro Devanagari Marathi', 'Noto Sans Devanagari', serif;
  --font-marathi-display: 'Yatra One', 'Tiro Devanagari Marathi', serif;

  /* Motion */
  --transition-silk:    cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-royal:   cubic-bezier(0.77, 0, 0.175, 1);
}

/* RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; background: var(--cream-bg); }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream-bg);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Page background — soft cream with warm botanical wash */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(184,194,159,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 35%, rgba(228,200,184,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(232,212,168,0.30) 0%, transparent 65%),
    linear-gradient(160deg, #FFF9EE 0%, #F8F0DD 30%, #F0E6CE 65%, #FAF5EA 100%);
  z-index: -2;
}

/* Subtle silk-weave texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(168,139,74,0.03) 0px, rgba(168,139,74,0.03) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(45deg, rgba(168,139,74,0.025) 0px, rgba(168,139,74,0.025) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold-pale); color: var(--text-darkest); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-rich), var(--gold-deep));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

/* LOADING SCREEN ─────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, var(--cream-paper), var(--cream-warm));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: opacity 0.8s var(--transition-silk), visibility 0.8s;
}
.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mandala {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 0 30px rgba(201,165,90,0.45));
}
.mandala-svg { width: 100%; height: 100%; }
.loader-text { text-align: center; display: flex; flex-direction: column; gap: 0.5rem; }
.loader-tagline {
  font-family: var(--font-brand);
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  color: var(--gold-rich);
  text-transform: lowercase;
  text-shadow: 0 2px 12px rgba(168,139,74,0.25);
}
.loader-subtagline {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--text-mid);
  opacity: 0.85;
  text-transform: uppercase;
}

/* PARTICLES ──────────────────────────────────────────────── */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: radial-gradient(circle, var(--gold-bright), transparent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold-pale);
  opacity: 0.55;
}

/* BACKGROUND ORNAMENTS — botanical instead of mandala ───── */
.bg-mandala {
  position: fixed;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23A88B4A' stroke-width='0.6'><path d='M100,15 Q108,40 100,70 Q92,40 100,15 Z'/><path d='M100,185 Q108,160 100,130 Q92,160 100,185 Z'/><path d='M15,100 Q40,108 70,100 Q40,92 15,100 Z'/><path d='M185,100 Q160,108 130,100 Q160,92 185,100 Z'/><circle cx='100' cy='100' r='80' stroke-dasharray='1 4'/><circle cx='100' cy='100' r='55' stroke-dasharray='2 6'/><g fill='%23C9A55A' opacity='0.6'><circle cx='100' cy='40' r='3'/><circle cx='100' cy='160' r='3'/><circle cx='40' cy='100' r='3'/><circle cx='160' cy='100' r='3'/></g></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.bg-mandala-1 { top: 5%; right: -100px; width: 500px; height: 500px; animation: rotate-mandala 120s linear infinite; }
.bg-mandala-2 { bottom: 10%; left: -150px; width: 600px; height: 600px; animation: rotate-mandala-reverse 180s linear infinite; }
.bg-mandala-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; opacity: 0.04; animation: rotate-mandala 240s linear infinite; }

/* NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: linear-gradient(180deg, rgba(255,249,238,0.92) 0%, rgba(255,249,238,0.78) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168,139,74,0.18);
  transition: padding 0.3s var(--transition-silk), background 0.3s ease, border-color 0.3s ease;
}
.nav.nav-scrolled {
  padding: 0.75rem 0;
  background: rgba(255,249,238,0.96);
  border-bottom-color: rgba(168,139,74,0.35);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
}
.logo { display: flex; align-items: center; gap: 0.85rem; cursor: pointer; }
.logo-crown {
  filter: drop-shadow(0 2px 8px rgba(168,139,74,0.25));
}
.logo-crown img {
  height: 42px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.4s var(--transition-elastic);
}
.logo:hover .logo-crown img { transform: rotate(-6deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--gold-rich);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.logo-sub {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.65rem;
  color: var(--text-mid);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.nav-links { display: flex; justify-content: center; gap: 2.5rem; }
.nav-link {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
  transition: width 0.4s var(--transition-silk);
}
.nav-link:hover { color: var(--gold-rich); }
.nav-link:hover::before { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-dark);
  background: rgba(168,139,74,0.06);
  border: 1px solid rgba(168,139,74,0.25);
  transition: all 0.3s var(--transition-silk);
  position: relative;
}
.icon-btn:hover {
  background: rgba(168,139,74,0.15);
  border-color: var(--gold-rich);
  color: var(--gold-rich);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168,139,74,0.2);
}
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--blush-deep);
  color: var(--cream-paper);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--cream-paper);
}

/* HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 130px 2.5rem 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero decorative backdrop — radiant champak medallion, glow + drifting petals */
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}
.hero-glow {
  position: absolute;
  top: 46%; left: 50%;
  width: min(880px, 92vw);
  height: min(880px, 92vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(232,212,168,0.55) 0%,
    rgba(201,165,90,0.20) 34%,
    rgba(201,165,90,0.06) 55%,
    transparent 70%);
  filter: blur(4px);
}
.hero-medallion {
  position: absolute;
  top: 50%; left: 50%;
  width: min(760px, 88vw);
  height: min(760px, 88vw);
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: hero-medallion-spin 100s linear infinite;
}
.hero-medallion svg { width: 100%; height: 100%; display: block; }
@keyframes hero-medallion-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Drifting champak petals */
.hero-petals { position: absolute; inset: 0; }
.hero-petal {
  position: absolute;
  width: 12px; height: 20px;
  background: linear-gradient(150deg, var(--gold-pale) 0%, var(--gold-bright) 55%, var(--gold-rich) 100%);
  border-radius: 50% 50% 50% 50% / 72% 72% 38% 38%;
  opacity: 0;
  filter: drop-shadow(0 2px 3px rgba(168,139,74,0.25));
  animation: hero-petal-drift 16s ease-in-out infinite;
}
.hero-petal-1 { left: 13%; top: 32%; animation-delay: 0s; }
.hero-petal-2 { left: 26%; top: 66%; width: 9px;  height: 15px; animation-delay: 4.5s; }
.hero-petal-3 { left: 77%; top: 28%; animation-delay: 2s; }
.hero-petal-4 { left: 85%; top: 58%; width: 8px;  height: 14px; animation-delay: 6.5s; }
.hero-petal-5 { left: 64%; top: 76%; width: 10px; height: 17px; animation-delay: 9s; }
.hero-petal-6 { left: 41%; top: 18%; width: 8px;  height: 13px; animation-delay: 12s; }
@keyframes hero-petal-drift {
  0%   { opacity: 0;    transform: translateY(12px)  rotate(0deg); }
  15%  { opacity: 0.7;  }
  50%  { opacity: 0.55; transform: translateY(-24px) rotate(180deg); }
  85%  { opacity: 0.55; }
  100% { opacity: 0;    transform: translateY(-58px) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-medallion { animation: none; }
  .hero-petal { animation: none; opacity: 0.4; }
}

/* Corner ornaments — softer botanical filigree */
.hero-ornament {
  position: absolute;
  width: 180px; height: 180px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.45;
  pointer-events: none;
}
.hero-ornament-tl {
  top: 90px; left: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23A88B4A' stroke-width='0.7'><path d='M0,0 Q40,40 90,40 M0,30 Q30,50 60,50 M30,0 Q50,30 50,60'/><circle cx='40' cy='40' r='3' fill='%23C9A55A'/><path d='M40,40 Q70,50 90,90 Q60,70 50,50'/><circle cx='80' cy='80' r='2' fill='%23C9A55A'/><path d='M80,80 Q110,90 130,130' opacity='0.6'/><path d='M10,60 Q30,80 60,90 M60,10 Q80,30 90,60' stroke-width='0.4'/></g></svg>");
}
.hero-ornament-tr { top: 90px; right: 0; transform: scaleX(-1); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23A88B4A' stroke-width='0.7'><path d='M0,0 Q40,40 90,40 M0,30 Q30,50 60,50 M30,0 Q50,30 50,60'/><circle cx='40' cy='40' r='3' fill='%23C9A55A'/><path d='M40,40 Q70,50 90,90 Q60,70 50,50'/><circle cx='80' cy='80' r='2' fill='%23C9A55A'/></g></svg>"); }
.hero-ornament-bl { bottom: 0; left: 0; transform: scaleY(-1); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23A88B4A' stroke-width='0.7'><path d='M0,0 Q40,40 90,40 M0,30 Q30,50 60,50 M30,0 Q50,30 50,60'/><circle cx='40' cy='40' r='3' fill='%23C9A55A'/></g></svg>"); }
.hero-ornament-br { bottom: 0; right: 0; transform: scale(-1); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23A88B4A' stroke-width='0.7'><path d='M0,0 Q40,40 90,40 M0,30 Q30,50 60,50 M30,0 Q50,30 50,60'/><circle cx='40' cy='40' r='3' fill='%23C9A55A'/></g></svg>"); }

.hero-content {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-text { width: 100%; max-width: 780px; padding-right: 0; }
.hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
  max-width: 60px;
}
.eyebrow-text {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
}
.hero-title {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.title-line { display: block; }
.title-script {
  font-family: var(--font-script);
  font-size: 4.2rem;
  color: var(--gold-rich);
  font-style: normal;
  font-weight: 400;
  line-height: 0.8;
  margin-left: -0.3rem;
}
.title-major {
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-rich) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  margin: 0.2rem 0;
  text-transform: lowercase;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--text-dark);
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}
.hero-actions { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; }

/* BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--transition-silk);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--transition-silk);
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-rich) 50%, var(--gold-deep) 100%);
  color: var(--cream-paper);
  box-shadow:
    0 4px 18px rgba(168,139,74,0.30),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.12);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(168,139,74,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.12);
}

.btn-ghost {
  background: rgba(168,139,74,0.06);
  color: var(--gold-rich);
  border: 1px solid var(--gold-rich);
}
.btn-ghost:hover {
  background: rgba(168,139,74,0.15);
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.btn-large { padding: 1.2rem 2.2rem; font-size: 0.92rem; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(168,139,74,0.25);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-rich);
  letter-spacing: 0.02em;
}
.stat span {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold-rich), transparent);
}

/* Pagination dots */
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 5;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(168,139,74,0.25);
  border: 1px solid var(--gold-rich);
  cursor: pointer;
  transition: all 0.3s var(--transition-elastic);
  padding: 0;
}
.dot.dot-active {
  background: var(--gold-rich);
  width: 30px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(168,139,74,0.45);
}
.dot:hover { background: var(--gold-bright); }

/* ORNATE DIVIDER ─────────────────────────────────────────── */
.ornate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rich) 50%, transparent);
}
.divider-ornament svg path,
.divider-ornament svg circle {
  stroke: var(--gold-rich) !important;
}
.divider-ornament svg circle[fill] { fill: var(--gold-rich) !important; }
.divider-ornament { filter: drop-shadow(0 0 8px rgba(168,139,74,0.25)); }

/* SECTION HEADERS ────────────────────────────────────────── */
.collection-section {
  padding: 4rem 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.section-title .title-script {
  font-size: 3.2rem;
  display: block;
  line-height: 0.7;
}
.title-grand {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-rich) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
  margin-top: 0.3rem;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--text-dark);
  opacity: 0.78;
  line-height: 1.75;
}

/* PRODUCT GRIDS ──────────────────────────────────────────── */
.saree-grid, .jewelry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

/* Cards */
.saree-card, .jewelry-card {
  position: relative;
  background: linear-gradient(180deg, var(--cream-paper) 0%, var(--cream-deep) 100%);
  border: 1px solid rgba(168,139,74,0.30);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s var(--transition-silk);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(92,74,29,0.08);
}
.saree-card::before, .jewelry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201,165,90,0.10) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.saree-card:hover, .jewelry-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-rich);
  box-shadow:
    0 20px 50px rgba(92,74,29,0.20),
    0 0 30px rgba(201,165,90,0.18);
}
.saree-card:hover::before, .jewelry-card:hover::before { opacity: 1; }

.card-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-warm), var(--cream-deep));
}
.card-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--transition-silk), filter 0.5s ease;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.saree-card:hover .card-img,
.jewelry-card:hover .card-img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
}
.card-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 65%, rgba(46,37,22,0.30) 100%);
  pointer-events: none;
}
.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 85%, rgba(201,165,90,0.20) 100%),
    linear-gradient(45deg, transparent 85%, rgba(201,165,90,0.20) 100%);
  pointer-events: none;
  z-index: 2;
}

.card-corner {
  position: absolute;
  top: 0;
  width: 24px; height: 24px;
  z-index: 3;
}
.card-corner-tl { left: 0; border-top: 1px solid var(--gold-rich); border-left: 1px solid var(--gold-rich); }
.card-corner-tr { right: 0; border-top: 1px solid var(--gold-rich); border-right: 1px solid var(--gold-rich); }

.card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-rich));
  color: var(--cream-paper);
  padding: 0.3rem 0.8rem;
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 3;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(168,139,74,0.30);
}

.card-actions {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card-fav, .card-add {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.card-fav {
  background: rgba(255,249,238,0.85);
  border: 1px solid rgba(168,139,74,0.35);
  color: var(--text-dark);
}
.card-fav:hover {
  background: var(--gold-rich);
  color: var(--cream-paper);
  border-color: var(--gold-deep);
}
.card-add {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-rich));
  border: 1px solid var(--gold-deep);
  color: var(--cream-paper);
  box-shadow: 0 2px 8px rgba(168,139,74,0.30);
}
.card-add:hover {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-deep));
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(168,139,74,0.45);
}
.card-add:active { transform: scale(0.96); }
.card-add:disabled {
  background: rgba(255,249,238,0.85);
  border: 1px solid rgba(168,139,74,0.30);
  color: var(--text-soft);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
}
.card-add:disabled:hover { transform: none; box-shadow: none; }

.card-body { padding: 1.5rem 1.5rem 1.75rem; }
.card-region {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.card-name {
  font-family: var(--font-accent);
  font-size: 1.32rem;
  font-weight: 400;
  color: var(--text-darkest);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.card-fabric {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(168,139,74,0.20);
}
.card-price { display: flex; flex-direction: column; gap: 2px; }
.card-price-now {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-rich);
}
.card-price-was {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
  text-decoration: line-through;
  opacity: 0.7;
}
/* Pre-launch "Coming Soon" badge (replaces price) */
.card-price-soon {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-rich);
  padding: 0.4rem 0.7rem;
  background: linear-gradient(135deg, rgba(201,165,90,0.15), rgba(201,165,90,0.05));
  border: 1px solid rgba(201,165,90,0.4);
  border-radius: 3px;
  font-weight: 500;
}

/* ═══ COLOUR-VARIANT SLIDER (sarees with multiple colourways) ═══ */
.variant-bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
  padding: 0.55rem 0.6rem;
  background: var(--cream-soft);
  border: 1px solid rgba(168,139,74,0.20);
  border-radius: 3px;
}
.variant-arrow {
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold-rich);
  background: var(--cream-paper);
  border: 1px solid rgba(168,139,74,0.30);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s var(--transition-silk);
}
.variant-arrow:hover {
  background: var(--gold-rich);
  color: var(--cream-paper);
  transform: scale(1.08);
}
.variant-swatches {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
}
.variant-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(168,139,74,0.40);
  background: var(--cream-paper);
  padding: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s var(--transition-silk);
}
.variant-swatch-dot {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--swatch-color);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.15);
}
.variant-swatch:hover {
  transform: scale(1.12);
  border-color: var(--gold-rich);
}
.variant-swatch.is-active {
  border-color: var(--gold-rich);
  border-width: 2px;
  padding: 1px;
  box-shadow: 0 0 0 2px rgba(201,165,90,0.20);
}
.variant-label {
  font-family: var(--font-headline);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
}
.has-variants .card-img {
  transition: opacity 0.4s ease, transform 0.9s var(--transition-silk), filter 0.5s ease !important;
}

/* ═══ "COMING SOON" SECTION OVERLAY (jewelry pre-launch) ═══ */
.coming-soon-wrap {
  position: relative;
}
.coming-soon-blur {
  filter: blur(10px) saturate(0.7);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 5;
  background: radial-gradient(ellipse at center, rgba(255,249,238,0.55) 0%, rgba(255,249,238,0.80) 70%);
}
.coming-soon-card {
  max-width: 520px;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--cream-paper);
  border: 1px solid rgba(168,139,74,0.40);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(46,37,22,0.18);
  position: relative;
}
.coming-soon-card::before, .coming-soon-card::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold-rich);
}
.coming-soon-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.coming-soon-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.coming-soon-eyebrow {
  display: block;
  font-family: var(--font-marathi);
  color: var(--gold-rich);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.coming-soon-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-rich);
  text-transform: lowercase;
  margin-bottom: 1rem;
  line-height: 1;
}
.coming-soon-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.coming-soon-card .btn { font-size: 0.78rem; padding: 0.9rem 1.6rem; }

@media (max-width: 700px) {
  .coming-soon-title { font-size: 2.2rem; }
  .coming-soon-card { padding: 1.75rem 1.25rem; }
  .coming-soon-desc { font-size: 0.95rem; }
  .maintenance-title { font-size: 1.65rem; }
  .maintenance-card { padding: 1.1rem 1.2rem; }
  .maintenance-desc { font-size: 0.88rem; }
}
.card-rating {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  color: var(--gold-deep);
  background: rgba(168,139,74,0.10);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  border: 1px solid rgba(168,139,74,0.30);
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* HERITAGE SECTION ───────────────────────────────────────── */
.heritage-section {
  padding: 6rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.heritage-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.heritage-title {
  font-family: var(--font-display);
  margin-bottom: 2rem;
  line-height: 1;
  margin-top: 1rem;
}
.heritage-title .title-script { font-size: 3rem; display: block; line-height: 0.7; }
.heritage-para {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-dark);
  opacity: 0.88;
  margin-bottom: 1.25rem;
  text-align: justify;
}
.heritage-para:first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  float: left;
  margin: 0.2rem 0.5rem 0 0;
  color: var(--gold-rich);
  line-height: 1;
}
.heritage-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168,139,74,0.25);
  text-align: center;
}
.signature-script {
  display: block;
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--gold-rich);
  line-height: 1;
}
.signature-trans {
  display: block;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-mid);
  letter-spacing: 0.28em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.heritage-visual { display: flex; justify-content: center; }
.heritage-frame {
  width: 100%;
  max-width: 320px;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--cream-paper), var(--cream-deep));
  border: 1px solid rgba(168,139,74,0.4);
  position: relative;
  box-shadow: 0 10px 40px rgba(92,74,29,0.10);
}
.heritage-frame::before, .heritage-frame::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  border: 2px solid var(--gold-rich);
}
.heritage-frame::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.heritage-frame::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.heritage-illustration { width: 100%; height: auto; }
.heritage-illustration text { fill: var(--gold-rich) !important; }
.heritage-illustration path[fill="url(#heritageGrad)"] { opacity: 0.6 !important; }

/* ATELIER (CONTACT) ──────────────────────────────────────── */
.atelier-section {
  padding: 6rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.atelier-form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-darkest);
  background: var(--cream-paper);
  border: 1px solid rgba(168,139,74,0.35);
  border-radius: 2px;
  transition: all 0.3s var(--transition-silk);
  outline: none;
}
.form-input::placeholder {
  color: var(--text-mid);
  font-style: italic;
  opacity: 0.7;
}
.form-input:focus {
  border-color: var(--gold-rich);
  box-shadow: 0 0 0 3px rgba(201,165,90,0.18);
  background: var(--cream-soft);
}
textarea.form-input { resize: vertical; min-height: 120px; }
.atelier-form .btn { align-self: center; margin-top: 0.5rem; }
.form-message {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--gold-rich);
  min-height: 1.5em;
}

/* FOOTER ─────────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 4rem 2.5rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(235,223,192,0.55) 30%);
  border-top: 1px solid rgba(168,139,74,0.30);
  margin-top: 4rem;
}
.footer-ornament {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--cream-paper);
  border-radius: 50%;
  border: 1px solid var(--gold-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.footer-ornament::before {
  content: '✦';
  color: var(--gold-rich);
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(201,165,90,0.6);
}
.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(168,139,74,0.20);
}
.footer-col h4 {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.85;
  transition: color 0.3s ease;
  cursor: pointer;
}
.footer-col li:hover { color: var(--gold-rich); opacity: 1; }
.footer-col li a { color: inherit; text-decoration: none; }
.footer-col li a:hover { color: var(--gold-rich); }
.footer-online {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(168,139,74,0.20);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  margin-top: 1rem;
  max-width: 280px;
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.footer-decoration { letter-spacing: 0.5em; color: var(--gold-rich); }

/* DESIGNER CREDIT ─────────────────────────────────────────
   A small personal signature line below the copyright row.
   Tasteful — italic body type, no shouting; gold separator,
   gentle hairline divider, tiny inline phone + LinkedIn icons. */
.footer-credit {
  max-width: 1300px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(168,139,74,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.credit-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.85;
}
.credit-name {
  font-family: var(--font-accent);
  font-size: 0.98rem;
  color: var(--gold-rich);
  letter-spacing: 0.04em;
  position: relative;
  padding: 0 0.25rem;
}
/* tiny ornamental dot before + after the name, brand-style */
.credit-name::before,
.credit-name::after {
  content: '✦';
  margin: 0 0.5rem;
  font-size: 0.55rem;
  color: var(--gold-rich);
  opacity: 0.55;
  vertical-align: middle;
}
.credit-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}
.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-mid);
  text-decoration: none;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}
.credit-link svg {
  color: var(--gold-rich);
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}
.credit-link:hover,
.credit-link:focus-visible {
  color: var(--gold-rich);
}
.credit-link:hover svg,
.credit-link:focus-visible svg {
  transform: translateY(-1px) scale(1.08);
}
.credit-sep {
  color: var(--gold-rich);
  opacity: 0.5;
}

/* MARATHI / DEVANAGARI ──────────────────────────────────── */
.marathi {
  font-family: var(--font-marathi);
  font-feature-settings: 'kern' 1;
  letter-spacing: 0;
}
.marathi-display {
  font-family: var(--font-marathi-display) !important;
  letter-spacing: 0.01em !important;
  -webkit-text-fill-color: var(--gold-rich);
  background: none !important;
  font-size: 1.6rem !important;
}

/* Brand mark with Marathi subtitle */
.brand-marathi {
  font-family: var(--font-marathi);
  font-size: 0.95rem;
  color: var(--gold-rich);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
  margin-top: 4px;
  opacity: 0.92;
}
.logo-text .brand-marathi { font-size: 0.85rem; margin-top: 3px; }
.loader-marathi {
  font-family: var(--font-marathi-display);
  font-size: 1.4rem;
  color: var(--gold-rich);
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

/* Marathi version of logo subtitle (in nav & footer) */
.logo-sub-marathi {
  font-family: var(--font-marathi) !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  font-size: 0.78rem !important;
  margin-top: 3px !important;
  color: var(--text-mid);
  opacity: 0.92;
}

.signature-trans-marathi {
  font-family: var(--font-marathi) !important;
  font-style: normal !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-size: 1.05rem !important;
  color: var(--gold-rich) !important;
  opacity: 0.95;
}

/* Inline Marathi phrase — italic-ish accent */
.marathi-accent {
  font-family: var(--font-marathi);
  font-style: italic;
  color: var(--gold-rich);
  font-size: 0.95em;
}
.marathi-divider {
  display: inline-block;
  margin: 0 0.5em;
  color: var(--gold-rich);
  opacity: 0.6;
}

/* Eyebrows that include Marathi — slightly larger to balance */
.section-eyebrow .marathi,
.eyebrow-text .marathi,
.drawer-eyebrow .marathi {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 1.05em;
  margin-left: 0.5em;
  opacity: 0.85;
}

/* DRAWERS (Cart + Favorites) ─────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 37, 22, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition-silk), visibility 0.4s;
}
.drawer-overlay.drawer-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--cream-paper) 0%, var(--cream-soft) 100%);
  z-index: 9200;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(46,37,22,0.30);
  transform: translateX(100%);
  transition: transform 0.55s var(--transition-silk);
  border-left: 1px solid rgba(168,139,74,0.35);
}
.drawer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold-rich) 30%, var(--gold-rich) 70%, transparent);
  opacity: 0.6;
}
.drawer.drawer-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(168,139,74,0.25);
  flex-shrink: 0;
}
.drawer-title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.drawer-eyebrow {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.drawer-title h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-rich);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1;
}
.drawer-close {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-dark);
  background: rgba(168,139,74,0.06);
  border: 1px solid rgba(168,139,74,0.30);
  transition: all 0.3s var(--transition-silk);
  flex-shrink: 0;
}
.drawer-close:hover {
  background: var(--gold-rich);
  color: var(--cream-paper);
  border-color: var(--gold-deep);
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Empty state */
.drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  margin: auto;
  color: var(--text-mid);
}
.drawer-empty-icon {
  font-size: 3rem;
  color: var(--gold-rich);
  opacity: 0.7;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(201,165,90,0.35));
}
.drawer-empty p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-rich);
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}
.drawer-empty-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 240px;
  line-height: 1.5;
}

/* Drawer item */
.drawer-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream-paper);
  border: 1px solid rgba(168,139,74,0.22);
  border-radius: 4px;
  transition: all 0.3s var(--transition-silk);
  position: relative;
  animation: drawer-item-in 0.4s var(--transition-elastic) both;
}
@keyframes drawer-item-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.drawer-item:hover {
  border-color: var(--gold-rich);
  box-shadow: 0 4px 18px rgba(92,74,29,0.10);
}
.drawer-item-img {
  width: 84px; height: 105px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(168,139,74,0.20);
}
.drawer-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.drawer-item-region {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.65rem;
  color: var(--text-mid);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.drawer-item-name {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--text-darkest);
  line-height: 1.2;
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drawer-item-fabric {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.drawer-item-price {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold-rich);
  margin-top: 0.4rem;
  font-weight: 500;
}
.drawer-item-price-soon {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-rich);
  font-weight: 500;
}
.drawer-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}
.drawer-item-remove {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid rgba(168,139,74,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}
.drawer-item-remove:hover {
  background: var(--blush-deep);
  color: var(--cream-paper);
  border-color: var(--blush-deep);
}

/* Quantity stepper */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(168,139,74,0.35);
  border-radius: 20px;
  padding: 2px;
  background: var(--cream-soft);
}
.qty-btn {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--text-dark);
  border-radius: 50%;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  line-height: 1;
  transition: all 0.2s ease;
}
.qty-btn:hover {
  background: var(--gold-rich);
  color: var(--cream-paper);
}
.qty-value {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  color: var(--text-dark);
  width: 28px;
  text-align: center;
}

/* Move-to-cart small button (favorites) */
.drawer-item-move {
  font-family: var(--font-headline);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-rich);
  background: transparent;
  border: 1px solid var(--gold-rich);
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
  transition: all 0.3s var(--transition-silk);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}
.drawer-item-move:hover {
  background: var(--gold-rich);
  color: var(--cream-paper);
}

/* Drawer footer (cart) */
.drawer-footer {
  flex-shrink: 0;
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(168,139,74,0.30);
  background: linear-gradient(180deg, transparent, rgba(235,223,192,0.50));
}
.drawer-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.drawer-summary span {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.drawer-summary strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-rich);
  letter-spacing: 0.02em;
}
.drawer-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.45;
  opacity: 0.85;
}
.drawer-checkout { width: 100%; }

/* Heart button — faved state */
.card-fav.faved,
.btn-fav.faved {
  background: linear-gradient(135deg, var(--blush-mid), var(--blush-deep)) !important;
  color: var(--cream-paper) !important;
  border-color: var(--blush-deep) !important;
}
.card-fav.faved svg,
.btn-fav.faved svg {
  fill: var(--cream-paper);
  stroke: var(--cream-paper);
}

/* Cart-icon pulse on add */
@keyframes cart-pulse {
  0%, 100% { transform: scale(1); }
  30%      { transform: scale(1.25); }
  60%      { transform: scale(0.9); }
}
.icon-btn.pulsing { animation: cart-pulse 0.6s var(--transition-elastic); }

/* RESPONSIVE — drawers full-width on mobile */
@media (max-width: 600px) {
  .drawer { max-width: 100%; }
  .drawer-item { grid-template-columns: 70px 1fr auto; gap: 0.75rem; padding: 0.75rem; }
  .drawer-item-img { width: 70px; height: 90px; }
}

/* LIGHTBOX (zoomable saree viewer) ───────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(46, 37, 22, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition-silk), visibility 0.4s;
}
.lightbox-overlay.lightbox-open { opacity: 1; visibility: visible; }

.lightbox {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  width: min(1040px, 100%);
  max-height: 88vh;
  background: linear-gradient(180deg, var(--cream-paper) 0%, var(--cream-soft) 100%);
  border: 1px solid rgba(168,139,74,0.40);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(46,37,22,0.45);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.5s var(--transition-silk);
}
.lightbox-overlay.lightbox-open .lightbox { transform: translateY(0) scale(1); }

.lightbox-close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  z-index: 3;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,249,238,0.90);
  border: 1px solid rgba(168,139,74,0.40);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--gold-rich); color: var(--cream-paper); transform: rotate(90deg); }

.lightbox-stage {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-warm), var(--cream-deep));
  cursor: zoom-in;
  min-height: 320px;
}
.lightbox-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition: transform 0.4s var(--transition-silk), opacity 0.18s ease;
}
.lightbox-stage.is-zoomed { cursor: zoom-out; }
.lightbox-stage.is-zoomed .lightbox-img { transform: scale(2.4); }

.lightbox-hint {
  position: absolute;
  bottom: 0.9rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(46,37,22,0.55);
  color: var(--cream-paper);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-stage.is-zoomed .lightbox-hint { opacity: 0; }

.lightbox-info {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem;
  border-left: 1px solid rgba(168,139,74,0.25);
  overflow-y: auto;
}
.lightbox-region {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold-rich);
  margin-bottom: 0.4rem;
}
.lightbox-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.lightbox-fabric {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.lightbox-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.lightbox-swatch {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(168,139,74,0.40);
  background: var(--cream-paper);
  cursor: pointer;
  transition: all 0.25s ease;
}
.lightbox-swatch-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--swatch-color, var(--gold-rich));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.40);
}
.lightbox-swatch:hover { transform: scale(1.1); }
.lightbox-swatch.is-active {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 2px var(--gold-pale);
}

.lightbox-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(168,139,74,0.25);
}
.lightbox-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
}
.lightbox-add {
  flex: 0 0 auto;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-rich));
  color: var(--cream-paper);
  border: 1px solid var(--gold-deep);
  border-radius: 3px;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(168,139,74,0.30);
}
.lightbox-add:hover {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-deep));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(168,139,74,0.42);
}
.lightbox-add:active { transform: translateY(0); }
.lightbox-add:disabled {
  background: var(--cream-deep);
  color: var(--text-soft);
  border-color: rgba(168,139,74,0.30);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

@media (max-width: 760px) {
  .lightbox-overlay { padding: 0; }
  .lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: none;
  }
  .lightbox-stage { min-height: 0; }
  .lightbox-info {
    border-left: none;
    border-top: 1px solid rgba(168,139,74,0.25);
    padding: 1.5rem 1.4rem;
    max-height: 44dvh;
  }
  .lightbox-name { font-size: 1.4rem; }
  .lightbox-foot { padding-top: 1rem; }
}

/* TOAST ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--cream-paper), var(--cream-warm));
  color: var(--text-dark);
  padding: 1rem 1.75rem;
  border: 1px solid var(--gold-rich);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(92,74,29,0.20), 0 0 20px rgba(201,165,90,0.15);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  z-index: 9000;
  opacity: 0;
  transition: all 0.5s var(--transition-elastic);
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.toast.toast-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* RESPONSIVE ─────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   MOBILE NAV (hamburger) — hidden by default; shown ≤960px
   ═══════════════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: linear-gradient(180deg, var(--cream-paper) 0%, var(--cream-soft) 100%);
  border-left: 1px solid rgba(168,139,74,0.30);
  box-shadow: -10px 0 40px rgba(46,37,22,0.18);
  z-index: 200;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--transition-silk);
  visibility: hidden;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(46,37,22,0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-header {
  border-bottom: 1px solid rgba(168,139,74,0.25);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.mobile-menu-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.mobile-menu-marathi {
  font-family: var(--font-marathi);
  color: var(--gold-rich);
  font-size: 1.05rem;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.mobile-menu-link {
  display: block;
  padding: 0.95rem 0.75rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text-darkest);
  border-radius: 4px;
  text-transform: lowercase;
  text-decoration: none;
  transition: all 0.25s var(--transition-silk);
  border-left: 2px solid transparent;
}
.mobile-menu-link .marathi-accent {
  font-size: 0.95rem;
  margin-left: 0.5em;
  opacity: 0.7;
}
.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: var(--cream-deep);
  border-left-color: var(--gold-rich);
  color: var(--gold-rich);
  padding-left: 1.1rem;
}
.mobile-menu-footer {
  border-top: 1px solid rgba(168,139,74,0.20);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-tag {
  font-family: var(--font-marathi);
  color: var(--gold-rich);
  font-size: 1.05rem;
}
.mobile-menu-tag-en {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   1100px (tablet landscape) → 960px (tablet portrait) → 600px (mobile)
   ═══════════════════════════════════════════════════════════ */

/* Hide hero ornaments on smaller screens — they crowd the layout */
@media (max-width: 1100px) {
  .heritage-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .hero-ornament { width: 120px; height: 120px; opacity: 0.3; }
}

/* Tablet portrait — show hamburger */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; gap: 1rem; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile (most phones) */
@media (max-width: 700px) {
  /* Hero */
  .hero { padding: 100px 1.1rem 2.5rem; min-height: auto; }
  .hero-eyebrow { margin-bottom: 1.2rem; }
  .eyebrow-text { font-size: 0.7rem; letter-spacing: 0.18em; }
  .eyebrow-text .marathi { font-size: 0.92rem; }
  .eyebrow-line { max-width: 30px; }

  .title-major { font-size: 2.6rem; }
  .title-script { font-size: 2.4rem; margin-left: -0.2rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-actions { flex-wrap: wrap; gap: 0.6rem; }
  .hero-actions .btn { flex: 1; min-width: 140px; padding: 0.85rem 1rem; font-size: 0.78rem; letter-spacing: 0.15em; }
  .hero-stats { padding-top: 1.5rem; gap: 0.85rem; }
  .stat strong { font-size: 1.4rem; }
  .stat span { font-size: 0.7rem; letter-spacing: 0.1em; }
  .stat-divider { height: 24px; }

  /* Hero ornaments — hide on phone, they make things cramped */
  .hero-ornament { display: none; }
  /* Soften the backdrop so the hero copy stays crisp on small screens */
  .hero-medallion { opacity: 0.32; }
  .hero-glow { opacity: 0.75; }
  .hero-petal { display: none; }

  /* Nav */
  .nav { padding: 0.75rem 0; }
  .nav-inner { padding: 0 1.1rem; gap: 0.5rem; }
  .nav-actions { gap: 0.4rem; }
  .icon-btn { width: 36px; height: 36px; }
  .logo-crown img { height: 32px !important; }
  .logo-title { font-size: 1.15rem; letter-spacing: 0.08em; }
  .brand-marathi { font-size: 0.8rem; margin-top: 2px; }
  .logo-sub-marathi { font-size: 0.7rem !important; margin-top: 1px !important; }

  /* Sections */
  .section-title .title-script { font-size: 1.9rem; }
  .title-grand { font-size: 2.1rem; }
  .section-eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; }
  .section-eyebrow .marathi { font-size: 0.95rem; }
  .section-subtitle { font-size: 1rem; }
  .section-header { margin-bottom: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .saree-grid, .jewelry-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .collection-section { padding: 2.5rem 1.1rem 3rem; }
  .heritage-section { padding: 3rem 1.1rem; }
  .heritage-title .title-script { font-size: 2rem; }
  .heritage-para { font-size: 1rem; line-height: 1.7; text-align: left; }
  .heritage-para:first-letter { font-size: 2.5rem; }
  .heritage-frame { max-width: 280px; }

  .signature-script { font-size: 2rem; }
  .signature-trans-marathi { font-size: 0.95rem !important; }

  .ornate-divider { padding: 2.5rem 1rem; }

  /* Atelier form */
  .atelier-section { padding: 3.5rem 1.1rem; }
  .atelier-form { margin-top: 2rem; }

  /* Drawer (cart / favorites) */
  .drawer { max-width: 100%; }
  .drawer-header { padding: 1rem 1.1rem; }
  .drawer-body { padding: 1.1rem; }
  .drawer-footer { padding: 1.1rem; }

  /* Mobile menu — wider on phone */
  .mobile-menu { width: min(320px, 85vw); padding: 5rem 1.5rem 1.5rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .nav-inner { padding: 0 0.85rem; }
  .icon-btn { width: 34px; height: 34px; }
  .nav-actions { gap: 0.3rem; }
  /* Hide favorites on very small screens — keep cart + menu only */
  .nav-actions #favBtn { display: none; }
  .logo-title { font-size: 1.05rem; }
  .brand-marathi { font-size: 0.72rem; }
  .logo-sub-marathi { display: none !important; }
  .title-major { font-size: 2.2rem; }
  .title-script { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .stat strong { font-size: 1.2rem; }
}
