/* ==========================================================================
   PUREVA — Design tokens
   Palette kept faithful to the existing brand (forest green / gold / cream)
   per the redesign brief; typography, layout and the "ingredient ledger"
   signature system are new.
   ========================================================================== */
:root {
  /* --- Brand palette (inherited, lightly refined) --- */
  --forest: #1F3A2E;        /* primary deep green */
  --forest-soft: #2E4F3E;
  --moss: #3D6453;          /* mid green */
  --gold: #C7984A;          /* accent gold / brass stamp */
  --gold-deep: #A87A35;
  --paper: #F4EEE2;         /* warm kraft-paper background */
  --paper-deep: #EBE1CC;    /* deeper kraft tone for alt sections */
  --card: #FFFDF8;
  --ink: #211F1A;
  --ink-soft: #5C5648;
  --line: #DED2B8;

  /* --- Functional (not brand) colors --- */
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe56;
  --facebook: #1877F2;
  --facebook-dark: #1464cd;
  --amber-bg: #FBF2DC;
  --amber-line: #C7984A;

  /* --- Type --- */
  --font-display: 'Fraunces', 'Hind Siliguri', serif;
  --font-body: 'Work Sans', 'Hind Siliguri', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* --- Shape / shadow --- */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 18px 40px -22px rgba(31, 58, 46, 0.35);
  --shadow-lift: 0 26px 60px -28px rgba(31, 58, 46, 0.45);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--forest); line-height: 1.22; font-weight: 600; }

.container { width: 90%; max-width: 1180px; margin: 0 auto; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.text-center { text-align: center; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* eyebrow label — used sparingly, always means "category", never decoration */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(199, 152, 74, 0.12);
  border: 1px solid rgba(199, 152, 74, 0.35);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head.align-left { margin-left: 0; text-align: left; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.96); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 26px -10px rgba(37,211,102,0.55); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-facebook { background: var(--facebook); color: #fff; box-shadow: 0 10px 26px -10px rgba(24,119,242,0.5); }
.btn-facebook:hover { background: var(--facebook-dark); }

.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--paper); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--forest);
  color: var(--paper);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 44px 10px 14px;
  position: relative;
  letter-spacing: 0.01em;
}
.announce strong { color: var(--gold); font-weight: 700; }
.announce__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--paper);
  opacity: 0.7;
  cursor: pointer;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
}
.announce__close:hover { opacity: 1; }
.announce__close svg { width: 14px; height: 14px; }
.announce.is-hidden { display: none; }

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2000;
  pointer-events: none;
}

/* ==========================================================================
   Language toggle
   ========================================================================== */
.lang-toggle {
  display: inline-flex;
  background: rgba(31,58,46,0.07);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--ink-soft);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-toggle a.is-active { background: var(--forest); color: var(--paper); }
.lang-toggle a:not(.is-active):hover { color: var(--forest); }

/* ==========================================================================
   Header
   ========================================================================== */
header.site-header {
  background: rgba(244, 238, 226, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; }
.brand-word { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--forest); letter-spacing: 0.02em; line-height: 1; }
.brand-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; display: block; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 18px;
  border-top: 1px solid var(--line);
}
.mobile-panel a {
  text-decoration: none;
  color: var(--ink);
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-panel.is-open { display: flex; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-label { display: none; }
}

/* ==========================================================================
   Hero — editorial split, ledger micro-stats, specimen frame
   ========================================================================== */
.hero {
  position: relative;
  padding: 70px 0 56px;
  background:
    radial-gradient(circle at 14% 20%, rgba(199,152,74,0.10), transparent 45%),
    var(--paper);
  overflow: hidden;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 38px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.scroll-cue svg { width: 16px; height: 16px; animation: scrollBounce 1.8s ease-in-out infinite; color: var(--gold-deep); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem);
  margin-bottom: 20px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--forest-soft);
  font-weight: 500;
  margin-bottom: 22px;
}

.hero-note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}
.hero-note strong { color: var(--forest); }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  flex-wrap: wrap;
}
.hero-stats div { flex: 1; min-width: 140px; padding-right: 18px; }
.hero-stats .num { font-family: var(--font-mono); font-size: 1.05rem; color: var(--gold-deep); font-weight: 700; display: block; }
.hero-stats .num .currency { font-family: 'Hind Siliguri', sans-serif; font-size: 0.95em; }
.hero-stats .lbl { font-size: 0.82rem; color: var(--ink-soft); }

.hero-visual { position: relative; }
.specimen-frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--forest) 0%, #142a20 100%);
  padding: 10px;
  box-shadow: var(--shadow-lift);
}
.specimen-frame__inner {
  border-radius: calc(var(--radius-lg) - 10px);
  border: 1px dashed rgba(244,238,226,0.35);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--paper);
  padding: 36px;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.specimen-frame__inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--radius-lg) - 10px); }
.specimen-frame__inner .placeholder-mark { width: 64px; height: 64px; opacity: 0.85; }
.specimen-frame__inner .placeholder-copy { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; max-width: 230px; }

.hero-seal {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--gold);
  color: var(--forest);
  width: 104px; height: 104px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(-8deg);
  padding: 6px;
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-note { text-align: left; }
  .hero-stats { justify-content: center; }
  .hero-stats div { text-align: left; }
  .btn-row.hero-cta { justify-content: center; }
  .hero-seal { left: 50%; transform: translateX(-50%) rotate(-8deg); }
}

/* ==========================================================================
   Products grid — simplified cards (full detail lives on the product page)
   ========================================================================== */
.products { background: var(--paper); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.pcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.pcard-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--c1, var(--moss)) 0%, var(--c2, var(--forest)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pcard-media .pcard-icon { width: 64px; height: 64px; color: rgba(244,238,226,0.5); }

.pcard-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #C75B3E;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  overflow: hidden;
}
.pcard-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: badgeShine 3.2s ease-in-out infinite;
}
@keyframes badgeShine {
  0% { left: -60%; }
  45%, 100% { left: 130%; }
}

.pcard-quick-order {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}
.pcard-quick-order:hover { transform: scale(1.1); }
.pcard-quick-order svg { width: 18px; height: 18px; }

.pcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; }

.pcard-rating { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--ink-soft); }
.pcard-rating svg { width: 13px; height: 13px; color: var(--gold); }
.pcard-rating .num { font-family: var(--font-mono); font-weight: 700; color: var(--ink); }

.pcard-name {
  font-size: 1.08rem;
  text-decoration: none;
  color: var(--forest);
  display: block;
  line-height: 1.3;
}
.pcard-name:hover { text-decoration: underline; text-underline-offset: 3px; }

.pcard-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.pcard-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--forest); }
.pcard-price-original { font-size: 0.88rem; color: var(--ink-soft); text-decoration: line-through; }
.currency { font-family: 'Hind Siliguri', sans-serif; font-size: 0.85em; font-weight: 600; }

.pcard-view {
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pcard-view svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
.pcard-view:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Product detail page (PDP)
   ========================================================================== */
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.pdp-back:hover { color: var(--forest); }

.pdp-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 32px; } }

.pdp-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--c1, var(--forest)) 0%, var(--c2, #142a20) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.pdp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-media .pdp-icon { width: 110px; height: 110px; color: rgba(244,238,226,0.45); }
.pdp-media .pcard-badge { top: 18px; left: 18px; font-size: 0.78rem; padding: 7px 14px; }

.pdp-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.pdp-rating svg { width: 16px; height: 16px; color: var(--gold); }
.pdp-rating .num { font-weight: 700; color: var(--ink); font-family: var(--font-mono); }

.pdp-name { font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.4rem); margin-bottom: 4px; }
.pdp-bn { font-size: 1.1rem; color: var(--moss); font-weight: 600; margin-bottom: 18px; }

.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pdp-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--forest); }
.pdp-price-original { font-size: 1.1rem; color: var(--ink-soft); text-decoration: line-through; }
.pdp-save { font-family: var(--font-mono); font-size: 0.78rem; color: #C75B3E; font-weight: 700; }
.pdp-sale-end { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 18px; }
.pdp-weight { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 22px; }

.pdp-desc { font-size: 1.02rem; color: var(--ink); margin-bottom: 24px; }

.pdp-section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: block;
}

.pdp-ledger {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gold-deep);
  background: var(--amber-bg);
  border: 1px dashed var(--amber-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.pdp-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pdp-benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; }
.pdp-benefits svg { width: 17px; height: 17px; color: var(--moss); margin-top: 3px; flex-shrink: 0; }

.pdp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }

.pdp-related { margin-top: 80px; }
.pdp-related h3 { font-size: 1.4rem; margin-bottom: 24px; }
.pdp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .pdp-related-grid { grid-template-columns: 1fr; } }


/* ==========================================================================
   Comparison — editorial split, not a default bootstrap table
   ========================================================================== */
.compare { background: var(--paper-deep); }

.compare-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
}
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row.is-head { background: var(--forest); color: var(--paper); }
.compare-row.is-head .compare-cell { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 16px 20px; }

.compare-cell { padding: 20px; font-size: 0.95rem; }
.compare-cell.label { font-weight: 700; color: var(--forest); background: var(--paper-deep); }
.compare-cell.pureva { background: rgba(199,152,74,0.08); color: var(--ink); position: relative; }
.compare-cell.regular { color: var(--ink-soft); }

@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row.is-head { display: none; }
  .compare-cell.label { border-bottom: 1px solid var(--line); }
  .compare-cell.pureva::before { content: 'PUREVA — '; font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold-deep); display: block; margin-bottom: 4px; }
  .compare-cell.regular::before { content: 'REGULAR SOAP — '; font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-soft); display: block; margin-bottom: 4px; }
}

/* ==========================================================================
   Ingredients
   ========================================================================== */
.ingredients { background: var(--paper); }
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .ing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ing-grid { grid-template-columns: 1fr; } }

.ing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
}
.ing-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ing-icon svg { width: 26px; height: 26px; }
.ing-card h4 { font-size: 1.18rem; margin-bottom: 8px; }
.ing-card p { font-size: 0.92rem; color: var(--ink-soft); }
.ing-card .ing-bn { display: block; margin-top: 10px; color: var(--forest); font-weight: 600; font-size: 0.88rem; }

/* ==========================================================================
   Trust
   ========================================================================== */
.trust { background: var(--paper-deep); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-copy h3 { font-size: 1.7rem; margin-bottom: 16px; }
.trust-copy > p { color: var(--ink-soft); margin-bottom: 22px; }
.trust-points { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.trust-points li { display: flex; gap: 12px; align-items: flex-start; }
.trust-points svg { width: 20px; height: 20px; color: var(--gold-deep); margin-top: 3px; flex-shrink: 0; }

.badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.badge-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.badge-card svg { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: 10px; }
.badge-card h4 { font-size: 1rem; margin-bottom: 4px; }
.badge-card p { font-size: 0.85rem; color: var(--ink-soft); }

/* ==========================================================================
   Reviews carousel
   ========================================================================== */
.reviews { background: var(--paper); }

.carousel-wrap { position: relative; }

.reviews-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 6px 26px;
  margin: 0 -6px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  flex: 0 0 auto;
  width: min(360px, 82vw);
  scroll-snap-align: start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }

.review-card-photo { width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-sm); object-fit: cover; margin-bottom: 14px; }
.review-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.review-stars svg { width: 16px; height: 16px; }
.review-quote { font-size: 0.98rem; color: var(--ink); margin-bottom: 22px; position: relative; padding-left: 4px; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; color: var(--forest); font-size: 0.95rem; }
.review-loc { font-size: 0.78rem; color: var(--ink-soft); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.carousel-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.carousel-arrow:hover { background: var(--forest); color: var(--paper); }
.carousel-arrow:active { transform: scale(0.92); }
.carousel-arrow svg { width: 18px; height: 18px; }

.carousel-dots { display: flex; gap: 7px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); border: none; padding: 0; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease; }
.carousel-dot.is-active { background: var(--gold-deep); transform: scale(1.3); }

.carousel-playpause {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.carousel-playpause:hover { color: var(--forest); border-color: var(--forest); }
.carousel-playpause svg { width: 14px; height: 14px; }

.reviews-cta { text-align: center; margin-top: 36px; }

/* ==========================================================================
   Review submission form
   ========================================================================== */
.review-form-wrap {
  max-width: 640px;
  margin: 28px auto 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.review-form-wrap.is-open { max-height: 900px; }

.review-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin-top: 8px;
}
.review-form h4 { font-size: 1.2rem; margin-bottom: 18px; }
.review-form .form-row { margin-bottom: 18px; }
.review-form label { display: block; font-weight: 600; color: var(--forest); margin-bottom: 6px; font-size: 0.9rem; }
.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.review-form textarea { min-height: 90px; resize: vertical; }
.review-form input:focus, .review-form textarea:focus { outline: 2px solid var(--gold-deep); border-color: var(--gold-deep); }
.review-form input[type="file"] { font-size: 0.86rem; }

/* honeypot field — present in the DOM for bots, hidden for humans */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.star-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-input input { position: absolute; opacity: 0; pointer-events: none; }
.star-input label { width: 30px; height: 30px; cursor: pointer; color: var(--line); margin: 0; }
.star-input label svg { width: 100%; height: 100%; }
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label { color: var(--gold); }

.review-flash {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  text-align: center;
}
.review-flash.success { background: rgba(61,100,83,0.12); border: 1px solid var(--moss); color: var(--forest); }
.review-flash.error { background: #FBEAE5; border: 1px solid #C75B3E; color: #8a3a23; }


/* ==========================================================================
   Usage steps + FAQ
   ========================================================================== */
.usage { background: var(--paper-deep); }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px; }
@media (max-width: 820px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-row { grid-template-columns: 1fr; } }

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step-card h5 { font-family: var(--font-display); color: var(--forest); margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { font-size: 0.92rem; color: var(--ink); }

.patch-note {
  max-width: 760px;
  margin: 0 auto;
  background: var(--amber-bg);
  border: 1px solid var(--amber-line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: #6b4f1c;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.patch-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-deep); margin-top: 2px; }

.faq { background: var(--paper); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 14px;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold-deep); }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.65;
}
.faq-item[data-open="true"] .faq-a { padding-bottom: 18px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(150deg, #1C352D 0%, #0E1E17 100%);
  color: var(--paper);
  text-align: center;
  position: relative;
}
.final-cta h2 { color: var(--gold); font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); margin-bottom: 14px; }
.final-cta h2 em { color: var(--paper); font-style: italic; }
.offer-pill {
  display: inline-block;
  background: rgba(244,238,226,0.08);
  border: 1px solid rgba(244,238,226,0.18);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.final-cta > .container > p { max-width: 620px; margin: 0 auto 30px; opacity: 0.92; font-size: 1.05rem; }

.cta-trustline {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 38px;
  font-size: 0.92rem;
  opacity: 0.85;
}
.cta-trustline span { display: flex; align-items: center; gap: 8px; }
.cta-trustline svg { width: 17px; height: 17px; color: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer { background: #0E1611; color: #93A096; padding: 40px 0 30px; font-size: 0.86rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--paper); font-family: var(--font-display); font-size: 1.1rem; }
.footer-brand img { width: 32px; height: 32px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; }
.footer-links a { text-decoration: none; color: #93A096; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 600px) { .footer-grid, .footer-bottom { flex-direction: column; text-align: center; } .footer-links { justify-content: center; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Language toggle active state in header matches the forest pill */
.lang-toggle a.is-active { background: var(--forest); color: var(--paper); }

/* Hero-seal: keep it above the frame on mobile */
@media (max-width: 991px) {
  .hero-seal { position: relative; left: auto; transform: rotate(-8deg); margin: 20px auto 0; }
}

/* Ensure the hero-seal doesn't overflow the specimen-frame on desktop */
.hero-visual { padding-bottom: 22px; }

/* Comparison table: check icon on pureva column inline */
.compare-cell.pureva { display: flex; align-items: flex-start; }

/* Product detail sticky media on mobile: turn off sticky below breakpoint */
@media (max-width: 900px) { .pdp-media { position: relative; top: auto; } }

/* Smooth staggered reveal delays via data-delay attribute */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hind Siliguri fallback ensures Bangla text never falls back to a font without the script */
:lang(bn), [lang="bn"], .bn-text {
  font-family: 'Hind Siliguri', 'Work Sans', sans-serif;
}

/* Ensure Bangla characters in the language toggle always render with the correct font */
.lang-toggle a[aria-label="বাংলা"],
.lang-toggle a[href*="bn"] {
  font-family: 'Hind Siliguri', sans-serif;
  letter-spacing: 0;
}
