/* =====================================================
   NIVAL — Shuddh aur Prakritik
   Stylesheet · v1.0
   Aesthetic: Warm earth-tone editorial. Deep forest
   green as anchor, brand red as accent, saffron gold
   for emphasis. Fraunces (display serif) paired with
   Plus Jakarta Sans (body).
   ===================================================== */

:root {
  /* Brand palette */
  --green-900: #14301f;
  --green-800: #1c3f29;
  --green-700: #244e34;
  --green-600: #2e6240;
  --green-300: #94b29c;
  --green-100: #d5e0d4;

  --red-700: #8b1f1f;
  --red-600: #a52a2a;
  --red-500: #c8342f;

  --gold-700: #a87427;
  --gold-600: #c08a2d;
  --gold-500: #d4924b;
  --gold-300: #ecc88a;

  --cream-50:  #fbf7ee;
  --cream-100: #f6efde;
  --cream-200: #ebe1cf;
  --cream-300: #ddcfb5;

  --ink-900: #16140e;
  --ink-700: #2a2722;
  --ink-500: #5b574d;
  --ink-400: #807a6d;
  --ink-300: #b3ad9f;

  /* Typography */
  --ff-display: 'Fraunces', 'Times New Roman', serif;
  --ff-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ff-hindi: 'Tiro Devanagari Hindi', serif;

  /* Layout */
  --max-w: 1320px;
  --pad-x: clamp(20px, 4vw, 64px);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.1, 1);
  --ease-in-out: cubic-bezier(0.6, 0.05, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out); }
em { font-style: italic; color: var(--gold-700); }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--green-800); color: var(--cream-50); }

/* ===== TOP TICKER ===== */
.top-ticker {
  background: var(--green-900);
  color: var(--cream-100);
  overflow: hidden;
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: .04em;
  padding: 9px 0;
  font-weight: 400;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  gap: 28px;
  padding-left: 28px;
}
.ticker-track span { display: inline-block; }
.ticker-track .dot { color: var(--gold-500); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-50);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--cream-200);
  box-shadow: 0 6px 24px -18px rgba(20, 48, 31, .25);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(20, 48, 31, .1));
}
.brand-tag {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-tag-en {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.brand-tag-hi {
  font-family: var(--ff-hindi);
  font-size: 12px;
  color: var(--green-700);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.primary-nav a:hover { color: var(--green-800); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-800);
  color: var(--cream-50);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.header-cta:hover { background: var(--green-900); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-700);
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--pad-x) 80px;
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-leaf {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, var(--green-300), transparent 70%);
  opacity: 0.18;
  filter: blur(40px);
}
.hero-leaf-1 { top: -60px; left: -80px; }
.hero-leaf-2 { bottom: 40px; right: -100px; background: radial-gradient(circle at 30% 30%, var(--gold-300), transparent 70%); opacity: 0.22; }
.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(20, 48, 31, 0.06) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.5;
}

.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 28px;
  animation: fadeUp .8s var(--ease-out) both;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 4px rgba(165, 42, 42, 0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(165, 42, 42, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(165, 42, 42, 0.05); }
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 32px;
}
.hero-line { display: block; opacity: 0; transform: translateY(30px); animation: fadeUp 1s var(--ease-out) forwards; }
.hero-line-1 { animation-delay: .15s; }
.hero-line-2 { animation-delay: .35s; }
.hero-line-3 { animation-delay: .55s; }
.hero-line em { font-style: italic; font-weight: 400; color: var(--red-600); }

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .7s forwards;
}
.hi-text {
  font-family: var(--ff-hindi);
  color: var(--green-800);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .85s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.btn-primary {
  background: var(--green-800);
  color: var(--cream-50);
  box-shadow: 0 10px 28px -14px rgba(20, 48, 31, .55);
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(20, 48, 31, .65);
}
.btn-primary svg { transition: transform .3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border: 1.5px solid var(--ink-700);
}
.btn-ghost:hover {
  background: var(--ink-700);
  color: var(--cream-50);
}

.hero-marks {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.05s forwards;
}
.mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mark strong {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1;
  font-style: italic;
}
.mark span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.mark-sep {
  width: 1px;
  height: 32px;
  background: var(--cream-300);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out) .4s forwards;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 7/8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(20, 48, 31, .45),
    0 8px 24px -12px rgba(20, 48, 31, .3);
  transform: rotate(-1.5deg);
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s ease-out;
}
.hero-image-frame:hover img { transform: scale(1.08); }

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 48, 31, .25));
  z-index: 1;
}

.hero-badge {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  box-shadow: 0 16px 32px -10px rgba(165, 42, 42, .55);
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero-badge-inner {
  text-align: center;
  line-height: 1.1;
  animation: spinSlow 30s linear infinite reverse;
}
.hero-badge-top, .hero-badge-bot {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-badge-mid {
  display: block;
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  margin: 3px 0;
  line-height: 1;
}

.hero-quote {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--cream-50);
  padding: 16px 22px;
  border-radius: 6px;
  max-width: 230px;
  font-family: var(--ff-display);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-700);
  box-shadow: 0 20px 50px -20px rgba(20, 48, 31, .35);
  border: 1px solid var(--cream-200);
}
.hero-quote em {
  font-style: italic;
  color: var(--green-800);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.scroll-cue-line {
  position: relative;
  width: 60px;
  height: 1px;
  background: var(--cream-300);
  overflow: hidden;
}
.scroll-cue-line::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background: var(--green-800);
  animation: scrollLine 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ===== VALUE MARQUEE ===== */
.value-marquee {
  background: var(--green-800);
  color: var(--cream-100);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--green-900);
  border-bottom: 1px solid var(--green-900);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  gap: 36px;
  padding-left: 36px;
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.m-star { color: var(--gold-500); font-style: normal; }

/* ===== ABOUT ===== */
.about {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--pad-x);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about-images { position: relative; }
.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(20, 48, 31, .45);
}
.about-image-main {
  aspect-ratio: 4/5;
  position: relative;
}
.about-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-floating {
  position: absolute;
  width: 50%;
  aspect-ratio: 1/1;
  bottom: -40px;
  right: -40px;
  border: 8px solid var(--cream-50);
  z-index: 2;
}
.about-image-floating img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-stat-card {
  position: absolute;
  top: 30px;
  left: -40px;
  background: var(--red-600);
  color: var(--cream-50);
  padding: 18px 22px;
  border-radius: 4px;
  z-index: 3;
  box-shadow: 0 16px 36px -12px rgba(165, 42, 42, .5);
  max-width: 220px;
}
.about-stat-card strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 4px;
}
.about-stat-card span {
  font-size: 12px;
  letter-spacing: .03em;
  line-height: 1.4;
  display: block;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-eyebrow span:not(.eyebrow-line) {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
}
.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--green-700);
  display: inline-block;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 28px;
}
.section-title em { color: var(--red-600); }

.section-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 640px;
  margin-bottom: 12px;
}

.about-prose {
  margin-bottom: 36px;
}
.about-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.about-prose strong { color: var(--ink-900); font-weight: 700; }
.about-prose em { color: var(--green-800); font-style: italic; }

.drop-cap {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 500;
  font-style: italic;
  color: var(--red-600);
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 6px;
}

.about-hindi {
  font-family: var(--ff-hindi);
  color: var(--green-800);
  font-size: 18px !important;
}
.about-hindi span {
  font-style: italic;
  color: var(--red-600);
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-300);
}
.meta-row {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.meta-label {
  width: 80px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  font-size: 11px;
}
.meta-value {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: .02em;
}

/* ===== STATS ===== */
.stats {
  background: var(--cream-100);
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  border-left: 1px solid var(--cream-300);
  padding: 0 24px;
  position: relative;
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  font-style: italic;
  color: var(--green-800);
  line-height: 1;
  display: inline-block;
}
.stat-plus, .stat-percent {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold-600);
  font-style: italic;
  margin-left: 2px;
}
.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}

/* ===== CATEGORIES ===== */
.categories {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--pad-x);
}
.section-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .section-eyebrow { justify-content: center; }
.section-head .section-lead { margin-left: auto; margin-right: auto; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-100);
  cursor: pointer;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -28px rgba(20, 48, 31, .45);
}
.cat-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .5s var(--ease-out);
  filter: brightness(0.88);
}
.cat-card:hover .cat-card-img img {
  transform: scale(1.08);
  filter: brightness(0.78);
}
.cat-card-img-pattern {
  background:
    repeating-linear-gradient(45deg, var(--green-700) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, var(--green-800), var(--green-600));
}
.cat-card-img-pattern-2 {
  background:
    repeating-linear-gradient(-45deg, var(--gold-600) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, var(--red-600), var(--gold-700));
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 48, 31, .85));
  z-index: 1;
}
.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--cream-50);
}
.cat-card-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-300);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 8px;
}
.cat-card-body h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.cat-card-body p {
  font-size: 13px;
  color: var(--cream-200);
  opacity: 0.9;
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--pad-x);
}
.products-alt {
  background: var(--cream-100);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.products-alt .products-head,
.products-alt .products-grid {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.products-head .section-title { margin-bottom: 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--cream-50);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  border: 1px solid var(--cream-200);
  display: flex;
  flex-direction: column;
}
.products-alt .product-card { background: var(--cream-50); }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -22px rgba(20, 48, 31, .3);
  border-color: var(--gold-300);
}
.product-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-200);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-img-pattern {
  background:
    radial-gradient(circle at 30% 30%, var(--gold-300), transparent 60%),
    repeating-linear-gradient(45deg, rgba(20, 48, 31, .04) 0 1px, transparent 1px 12px),
    var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-saffron {
  background:
    radial-gradient(circle at 50% 50%, var(--gold-500), var(--gold-700) 70%),
    var(--gold-600);
}
.product-img-red {
  background:
    radial-gradient(circle at 50% 50%, var(--red-500), var(--red-700) 70%),
    var(--red-600);
}
.placeholder-icon {
  font-size: 64px;
  opacity: 0.75;
  filter: saturate(0.85);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-800);
  color: var(--cream-50);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}
.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-cat {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  margin-bottom: 4px;
}
.product-body h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.product-hi {
  font-family: var(--ff-hindi);
  color: var(--green-800);
  font-size: 16px;
  font-style: italic;
}
.product-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--cream-300);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.price-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.price-value {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--red-600);
  font-size: 15px;
  font-weight: 500;
}

/* ===== EDITORIAL BANNER ===== */
.editorial {
  background: var(--cream-200);
  padding: 120px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(20, 48, 31, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .4;
  pointer-events: none;
}
.editorial-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.editorial-quote-mark {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 200px;
  line-height: 0.5;
  color: var(--gold-500);
  display: block;
  margin-bottom: 20px;
}
.editorial-quote {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  color: var(--ink-900);
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}
.editorial-quote em { color: var(--red-600); font-weight: 500; }
.editorial-attr {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.editorial-attr-line {
  width: 50px;
  height: 1px;
  background: var(--ink-500);
}

.editorial-dark {
  background: var(--green-900);
  color: var(--cream-100);
}
.editorial-dark::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(214, 200, 138, 0.06) 1px, transparent 0);
}
.editorial-dark .editorial-quote { color: var(--cream-50); }
.editorial-dark .editorial-quote em { color: var(--gold-500); }
.editorial-quote-mark-light { color: var(--gold-500); }
.editorial-attr-light { color: var(--gold-300); font-family: var(--ff-hindi); }
.editorial-attr-light .editorial-attr-line { background: var(--gold-500); }

/* ===== PROMISE ===== */
.promise {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--pad-x);
}
.promise-head {
  text-align: center;
  margin-bottom: 80px;
}
.promise-head .section-eyebrow { justify-content: center; }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.promise-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), transform .35s var(--ease-out);
}
.promise-card:hover {
  background: var(--green-900);
  color: var(--cream-100);
  border-color: var(--green-900);
  transform: translateY(-4px);
}
.promise-card:hover .promise-num,
.promise-card:hover h3,
.promise-card:hover .promise-hi { color: var(--gold-500); }
.promise-card:hover p { color: var(--cream-200); }

.promise-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--red-600);
  letter-spacing: .1em;
  margin-bottom: 22px;
  display: block;
  font-weight: 500;
  transition: color .35s var(--ease-out);
}
.promise-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  transition: color .35s var(--ease-out);
}
.promise-hi {
  font-family: var(--ff-hindi);
  color: var(--green-800);
  font-size: 17px;
  display: block;
  margin-bottom: 18px;
  transition: color .35s var(--ease-out);
}
.promise-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-500);
  transition: color .35s var(--ease-out);
}

/* ===== JOURNEY / GALLERY ===== */
.journey {
  background: var(--cream-100);
  padding: 120px var(--pad-x);
}
.journey-head {
  max-width: var(--max-w);
  margin: 0 auto 80px;
  text-align: center;
}
.journey-head .section-eyebrow { justify-content: center; }
.journey-head .section-lead { margin: 0 auto; }

.gallery {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-200);
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .5s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/* Feature item — Governor of UP moment */
.gallery-item-feature {
  box-shadow:
    0 0 0 2px var(--gold-500),
    0 20px 60px -20px rgba(168, 116, 39, .55),
    0 8px 24px -12px rgba(20, 48, 31, .35);
}
.gallery-item-feature::after {
  content: 'Featured Moment';
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-900);
  background: var(--gold-300);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(20, 48, 31, .4);
}
.gallery-item-feature .gallery-caption {
  background: linear-gradient(0deg, rgba(20, 48, 31, .95) 0%, rgba(20, 48, 31, .4) 60%, transparent);
  transform: translateY(55%);
}
.gallery-item-feature:hover .gallery-caption { transform: translateY(0); }
.gallery-item-feature .gallery-date { color: var(--gold-300); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(20, 48, 31, .92) 0%, transparent);
  color: var(--cream-50);
  transform: translateY(100%);
  transition: transform .45s var(--ease-out);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-date {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-300);
  display: block;
  margin-bottom: 4px;
}
.gallery-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
}

/* ===== CONTACT ===== */
.contact {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--pad-x);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-content { padding-top: 20px; }
.contact-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 48px;
  max-width: 540px;
}
.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.contact-block {
  border-top: 1px solid var(--cream-300);
  padding-top: 18px;
}
.contact-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.contact-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
}
.contact-block p strong { color: var(--ink-900); font-weight: 700; }
.contact-block a {
  display: inline-block;
  color: var(--ink-700);
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.contact-block a:hover {
  color: var(--green-800);
  border-color: var(--green-800);
}

.contact-visual { position: sticky; top: 120px; }
.contact-card {
  background: var(--green-900);
  color: var(--cream-100);
  border-radius: 6px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold-700), transparent 60%);
  opacity: 0.4;
  border-radius: 50%;
}
.contact-logo {
  width: 60px;
  margin-bottom: 24px;
  filter: brightness(1.1);
  position: relative;
  z-index: 1;
}
.contact-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.015em;
  color: var(--cream-50);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.contact-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-200);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.contact-btn {
  background: var(--gold-500);
  color: var(--ink-900);
  position: relative;
  z-index: 1;
}
.contact-btn:hover {
  background: var(--gold-600);
  color: var(--cream-50);
}

.contact-card-divider {
  width: 36px;
  height: 1px;
  background: var(--gold-500);
  margin: 36px 0 24px;
  position: relative;
  z-index: 1;
}
.newsletter-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.newsletter-text {
  font-size: 13px !important;
  color: var(--cream-200) !important;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink-900);
  color: var(--cream-200);
  padding-top: 80px;
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 60px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
}
.footer-brand img {
  width: 80px;
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-200);
  margin-bottom: 14px;
}
.footer-brand p strong {
  color: var(--cream-50);
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
}
.footer-hindi {
  font-family: var(--ff-hindi);
  color: var(--gold-300) !important;
  font-size: 13px !important;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-500);
  letter-spacing: .05em;
  margin-bottom: 8px;
  display: block;
}
.footer-col a, .footer-col p {
  font-size: 14px;
  color: var(--cream-200);
  line-height: 1.6;
  opacity: 0.85;
}
.footer-col a:hover { color: var(--gold-500); opacity: 1; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--pad-x);
  border-top: 1px solid #2b2823;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--ink-300);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger inside grids */
.products-grid .reveal,
.category-grid .reveal,
.promise-grid .reveal,
.gallery .reveal {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 60px;
    gap: 60px;
  }
  .hero-visual { margin-top: 20px; }
  .hero-image-frame { max-width: 380px; }
  .scroll-cue { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 520px; margin: 0 auto; }
  .about-image-floating { right: -20px; bottom: -20px; }
  .about-stat-card { left: -20px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(2) { border-left: 1px solid var(--cream-300); }

  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: repeat(3, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-visual { position: relative; top: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-50);
    flex-direction: column;
    padding: 24px var(--pad-x);
    border-top: 1px solid var(--cream-200);
    gap: 16px;
    box-shadow: 0 16px 30px -16px rgba(20, 48, 31, .25);
  }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .brand-logo { width: 44px; }
  .brand-tag-en { font-size: 11px; }
  .brand-tag-hi { font-size: 11px; }

  .hero { padding: 30px var(--pad-x) 50px; gap: 40px; }
  .hero-title { font-size: clamp(40px, 11vw, 68px); }
  .hero-marks { gap: 16px; }
  .mark strong { font-size: 22px; }
  .mark-sep { height: 24px; }
  .hero-badge { width: 96px; height: 96px; top: -16px; left: -16px; }
  .hero-badge-mid { font-size: 26px; }
  .hero-badge-top, .hero-badge-bot { font-size: 8px; }
  .hero-quote { font-size: 12px; padding: 12px 16px; max-width: 180px; bottom: -10px; right: -10px; }

  .about, .categories, .products, .promise, .journey, .contact, .editorial {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .stats-inner { padding: 48px var(--pad-x); }

  .about-image-floating { width: 55%; }
  /* Stat card: keep inside the image instead of bleeding off viewport */
  .about-stat-card {
    top: 16px;
    left: 16px;
    padding: 12px 16px;
    max-width: 180px;
    box-shadow: 0 10px 24px -8px rgba(20, 48, 31, .35);
  }
  .about-stat-card strong { font-size: 18px; margin-bottom: 2px; }
  .about-stat-card span { font-size: 11px; line-height: 1.35; }

  .section-head { margin-bottom: 56px; }
  .products-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  .category-grid { grid-template-columns: 1fr; gap: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .product-body { padding: 16px 16px 18px; }
  .product-body h3 { font-size: 17px; }
  .product-hi { font-size: 14px; }
  .product-cat { font-size: 9px; }

  .editorial-quote-mark { font-size: 140px; }
  .editorial-quote { font-size: clamp(22px, 6vw, 32px); }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }

  .contact-blocks { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { padding: 32px 24px; }

  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-marks { gap: 12px; }
  .mark-sep:nth-child(2n) { display: none; }
}


/* =====================================================
   NIVAL — Product Detail Pages
   Appended styles · matches the editorial earth-tone theme
   ===================================================== */

/* ---- Breadcrumb ---- */
.pd-breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 26px var(--pad-x) 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-400);
}
.pd-breadcrumb a { color: var(--ink-500); font-weight: 500; }
.pd-breadcrumb a:hover { color: var(--green-700); }
.pd-breadcrumb .sep { color: var(--ink-300); }
.pd-breadcrumb .current { color: var(--green-800); font-weight: 600; }

/* ---- Detail hero ---- */
.pd-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px var(--pad-x) 70px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.pd-gallery { position: relative; }
.pd-image-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-200);
  aspect-ratio: 1 / 1;
  box-shadow: 0 34px 70px -34px rgba(20, 48, 31, .4);
  border: 1px solid var(--cream-200);
}
.pd-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pd-image-pattern {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 28%, var(--gold-300), transparent 60%),
    repeating-linear-gradient(45deg, rgba(20, 48, 31, .04) 0 1px, transparent 1px 14px),
    var(--cream-200);
}
.pd-image-pattern.is-saffron {
  background: radial-gradient(circle at 50% 45%, var(--gold-500), var(--gold-700) 72%), var(--gold-600);
}
.pd-image-pattern.is-red {
  background: radial-gradient(circle at 50% 45%, var(--red-500), var(--red-700) 72%), var(--red-600);
}
.pd-image-icon { font-size: 150px; opacity: .8; filter: saturate(.85); }
.pd-badge-float {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--green-800);
  color: var(--cream-50);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  z-index: 2;
}

/* trust chips under the image */
.pd-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pd-trust span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  padding: 8px 13px;
  border-radius: 999px;
}

/* ---- Detail info column ---- */
.pd-cat {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
}
.pd-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 12px 0 6px;
}
.pd-hi {
  font-family: var(--ff-hindi);
  font-style: italic;
  color: var(--green-800);
  font-size: 24px;
  margin-bottom: 18px;
}
.pd-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 52ch;
  margin-bottom: 24px;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px dashed var(--cream-300);
  border-bottom: 1px dashed var(--cream-300);
  margin-bottom: 26px;
}
.pd-price-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.pd-price-value {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--red-600);
  font-size: 22px;
  font-weight: 500;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.pd-actions .btn { cursor: pointer; }

/* ---- Detail content blocks ---- */
.pd-section { margin-bottom: 30px; }
.pd-section h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--green-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pd-section p {
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 12px;
}
.pd-list { list-style: none; padding: 0; margin: 0; }
.pd-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  line-height: 1.6;
  color: var(--ink-700);
}
.pd-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 7px;
  color: var(--gold-600);
  font-size: 13px;
}

/* ---- Specs table ---- */
.pd-specs {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--cream-200);
  border-radius: 6px;
  overflow: hidden;
}
.pd-specs tr { border-bottom: 1px solid var(--cream-200); }
.pd-specs tr:last-child { border-bottom: none; }
.pd-specs td { padding: 13px 18px; font-size: 14.5px; vertical-align: top; }
.pd-specs td:first-child {
  width: 40%;
  background: var(--cream-100);
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: .02em;
}
.pd-specs td:last-child { color: var(--ink-700); }

/* ---- FAQ ---- */
.pd-faq {
  border: 1px solid var(--cream-200);
  border-radius: 6px;
  overflow: hidden;
}
.pd-faq details {
  border-bottom: 1px solid var(--cream-200);
  background: var(--cream-50);
}
.pd-faq details:last-child { border-bottom: none; }
.pd-faq summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--green-900);
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .25s var(--ease-out);
}
.pd-faq summary::-webkit-details-marker { display: none; }
.pd-faq summary::after {
  content: '+';
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--gold-600);
  transition: transform .3s var(--ease-out);
  line-height: 1;
}
.pd-faq details[open] summary::after { transform: rotate(45deg); }
.pd-faq summary:hover { background: var(--cream-100); }
.pd-faq .pd-faq-body {
  padding: 0 20px 18px;
  color: var(--ink-700);
  line-height: 1.7;
  font-size: 14.5px;
}

/* ---- Wide content section below hero ---- */
.pd-detail {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* ---- CTA strip ---- */
.pd-cta {
  background: var(--green-900);
  color: var(--cream-50);
  margin-top: 40px;
}
.pd-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.pd-cta-text h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pd-cta-text h2 em { color: var(--gold-300); }
.pd-cta-text p { color: var(--green-100); font-size: 15px; }
.pd-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pd-cta .btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-500); color: var(--green-900);
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
}
.pd-cta .btn-gold:hover { background: var(--gold-300); transform: translateY(-2px); }
.pd-cta .btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--green-300); color: var(--cream-50);
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: background .3s var(--ease-out);
}
.pd-cta .btn-outline-light:hover { background: var(--green-800); }

/* ---- Related products ---- */
.pd-related {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 70px var(--pad-x) 30px;
}
.pd-related-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.pd-related-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink-900);
}
.pd-related-head a {
  font-size: 14px; font-weight: 600; color: var(--green-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.pd-related-head a:hover { color: var(--red-600); }

/* reuse product-card grid but allow it to be a link */
a.product-card { color: inherit; }
a.product-card:hover { text-decoration: none; }

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .pd-hero { grid-template-columns: 1fr; gap: 30px; }
  .pd-gallery { max-width: 460px; }
  .pd-detail { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .pd-hero { padding: 24px var(--pad-x) 50px; }
  .pd-title { font-size: 32px; }
  .pd-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Make product-card anchors behave like the card flex container ---- */
a.product-card {
  background: var(--cream-50);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  border: 1px solid var(--cream-200);
  display: flex;
  flex-direction: column;
  color: inherit;
}
a.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -22px rgba(20, 48, 31, .3);
  border-color: var(--gold-300);
  text-decoration: none;
}
/* subtle "view details" cue slides up from the image bottom on hover */
a.product-card .product-img { position: relative; }
a.product-card .product-img::after {
  content: 'View Details →';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-50);
  background: linear-gradient(0deg, rgba(20,48,31,.92), rgba(20,48,31,.55) 70%, transparent);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  pointer-events: none;
  z-index: 3;
}
a.product-card:hover .product-img::after {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   NIVAL — Products mega-menu  (added)
   ===================================================== */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 6px 0;
  position: relative;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 18px; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--green-800); }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: scaleX(1); }
.nav-caret { transition: transform .3s var(--ease-out); flex-shrink: 0; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* mega panel */
.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(760px, 92vw);
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: 10px;
  box-shadow: 0 30px 70px -28px rgba(20, 48, 31, .45);
  padding: 26px 26px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out), visibility .28s;
  z-index: 120;
}
/* invisible hover bridge so the menu doesn't close in the gap */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 26px;
}
.mega-col { display: flex; flex-direction: column; }
.mega-col-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--green-900);
  letter-spacing: .01em;
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--cream-200);
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.mega-col-title:hover { color: var(--red-600); }
.mm-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: .1em;
}
.mega-col > a:not(.mega-col-title) {
  display: flex;
  flex-direction: column;
  padding: 5px 8px;
  margin: 0 -8px;
  border-radius: 6px;
  line-height: 1.2;
  transition: background .2s var(--ease-out);
}
.mega-col > a:not(.mega-col-title):hover { background: var(--cream-100); }
.mm-en { font-size: 13px; font-weight: 500; color: var(--ink-700); }
.mm-en:hover { color: var(--green-800); }
.mega-col > a:hover .mm-en { color: var(--green-800); }
.mm-hi { font-family: var(--ff-hindi); font-size: 11px; color: var(--green-700); margin-top: 1px; }
.mega-foot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-800);
  width: 100%;
}
.mega-foot:hover { color: var(--red-600); }

/* =====================================================
   NIVAL — Mobile menu + responsive hardening (added)
   ===================================================== */
/* prevent any horizontal overflow site-wide */
html, body { overflow-x: hidden; }
img, svg, video { max-width: 100%; }

/* On larger screens the dropdown is a hover mega-menu; the inline mobile
   accordion markup below only activates inside the open mobile nav. */
.nav-dropdown.mobile-open .nav-caret { transform: rotate(180deg); }

@media (max-width: 760px) {
  /* turn the mega-menu into an inline accordion inside the mobile drawer */
  .primary-nav.open { gap: 4px; max-height: calc(100vh - 90px); overflow-y: auto; }
  .primary-nav.open > a {
    padding: 12px 2px;
    border-bottom: 1px solid var(--cream-200);
    width: 100%;
  }
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 2px;
    border-bottom: 1px solid var(--cream-200);
  }
  .nav-dropdown-toggle::after { display: none; }

  /* Collapsed by default — and crucially override the desktop :hover/:focus
     rules so touching the link can't shove the panel off-screen. */
  .mega-menu,
  .nav-dropdown:hover .mega-menu,
  .nav-dropdown:focus-within .mega-menu {
    position: static;
    transform: none;
    left: auto;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease-out), visibility .35s, padding .35s var(--ease-out);
  }
  .mega-menu::before { display: none; }
  /* Only the JS-applied .mobile-open class expands it. */
  .nav-dropdown.mobile-open .mega-menu {
    visibility: visible;
    pointer-events: auto;
    max-height: 1800px;
    padding: 8px 0 14px 10px;
  }
  .mega-inner { grid-template-columns: 1fr; gap: 14px; }
  .mega-col-title { font-size: 13px; }
  .mega-foot { margin-top: 12px; }
}

/* =====================================================
   NIVAL — Product detail responsive fixes (added)
   ===================================================== */
@media (max-width: 600px) {
  .pd-breadcrumb { font-size: 12px; padding-top: 18px; }
  .pd-hi { font-size: 20px; }
  .pd-tagline { font-size: 16px; }
  .pd-actions { flex-direction: column; align-items: stretch; }
  .pd-actions .btn { width: 100%; justify-content: center; }
  /* let the long WhatsApp label wrap instead of overflowing */
  .pd-actions .btn span { white-space: normal; }
  .pd-cta-actions { width: 100%; flex-direction: column; }
  .pd-cta-actions .btn-gold,
  .pd-cta-actions .btn-outline-light { width: 100%; justify-content: center; }
  .pd-specs td { padding: 11px 13px; font-size: 13.5px; }
  .pd-specs td:first-child { width: 42%; }
  .pd-section h2 { font-size: 20px; }
}
@media (max-width: 380px) {
  .pd-title { font-size: 28px; }
  .pd-trust span { font-size: 10px; padding: 7px 10px; }
}

/* =====================================================
   NIVAL — Master products / catalog page (added)
   ===================================================== */
.catalog-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--pad-x) 20px;
}
.catalog-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 16px 0 18px;
}
.catalog-title em { color: var(--green-800); font-style: italic; }
.catalog-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 64ch;
}
.catalog-lead .hi-text { font-family: var(--ff-hindi); color: var(--green-800); }

.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  color: var(--green-900);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.cat-chip:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--cream-50);
  transform: translateY(-2px);
}
.cat-chip:hover .cat-chip-num,
.cat-chip:hover .cat-chip-count { color: var(--gold-300); }
.cat-chip-num { font-size: 10px; font-weight: 700; color: var(--gold-600); letter-spacing: .08em; }
.cat-chip-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-400);
  background: var(--cream-50);
  border-radius: 999px;
  padding: 1px 7px;
}
.cat-chip:hover .cat-chip-count { background: rgba(255,255,255,.14); }

.cat-blurb {
  color: var(--ink-500);
  font-size: 15px;
  margin-top: 8px;
}

/* catalog sections sit closer together than the homepage */
.catalog-hero + .products,
.products + .products { padding-top: 56px; }

@media (max-width: 760px) {
  .catalog-hero { padding-top: 28px; }
  .catalog-lead { font-size: 16px; }
  .cat-chip { font-size: 12px; padding: 8px 12px; }
}
