/* ============================================
   HOMEO AGRO — Editorial Agricultural Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&family=Manrope:wght@300;400;500;600;700;800&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

:root {
  /* Brand palette */
  --green-darkest: #0F2A1B;
  --green-deep: #1F4D2E;
  --green-mid: #2D6B3F;
  --green-bright: #5A9D3F;
  --green-soft: #E8EFE3;

  --gold: #C9A84C;
  --gold-deep: #A88A2F;
  --gold-soft: #F5EBC9;

  --cream: #FAF6EC;
  --cream-deep: #F2EBD6;
  --paper: #FDFCF7;

  --ink: #1A1F18;
  --ink-soft: #4A5447;
  --ink-mute: #7A8579;

  /* Product accent colors */
  --c-virosil: #2D6B3F;
  --c-urifast: #1E5B9C;
  --c-plantowink: #3F8B4F;
  --c-plantowind: #D86E2A;
  --c-lasttuch: #6B3F8B;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.hindi {
  font-family: var(--font-hindi);
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================
   Typography scale
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--green-darkest);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }

/* Hero h1 — keep semantic <h1> for SEO but render at h2-scale visually
   so the homepage headline doesn't dominate the layout. */
h1.hero-h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 600; }

p { color: var(--ink-soft); font-size: 1.0625rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ============================================
   Layout primitives
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; font-size: 1.125rem; }

/* Decorative leaf divider */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--gold);
}
.divider-leaf::before,
.divider-leaf::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  max-width: 200px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--green-darkest);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(31, 77, 46, 0.5);
}
.btn-gold {
  background: var(--gold);
  color: var(--green-darkest);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--paper);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}
.btn-ghost:hover {
  background: var(--green-deep);
  color: var(--paper);
}
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 77, 46, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-darkest);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-deep);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo span:last-child { color: var(--green-bright); }

/* Header: use the full Homeo Agro logo image; hide the SVG + text wordmark.
   Footer keeps the original SVG-on-green-circle treatment for legibility
   against the dark green background. */
.site-header .logo { gap: 0; }
.site-header .logo > span:not(.logo-mark) { display: none; }
.site-header .logo-mark {
  width: 240px;
  height: 76px;
  border-radius: 0;
  /* Logo JPG is cropped tight so we can give it more height; `contain`
     keeps the full mark visible without clipping. mix-blend-mode hides
     the small remaining white background against the cream header. */
  background: url('../images/logo.jpg') center / contain no-repeat;
  mix-blend-mode: multiply;
}
.site-header .logo-mark svg { display: none; }
@media (max-width: 480px) {
  .site-header .logo-mark { width: 180px; height: 58px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--green-deep); }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--green-darkest);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  /* Tighter horizontal padding on mobile so the logo sits closer to the
     left edge and the hamburger hugs the right. */
  .site-header .container { padding: 0 0.85rem; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    border-bottom: 1px solid rgba(31,77,46,0.08);
    box-shadow: 0 12px 24px -16px rgba(0,0,0,0.15);
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-bg-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 15% 30%, var(--green-deep) 0, transparent 20%),
    radial-gradient(circle at 85% 70%, var(--gold) 0, transparent 18%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.hero-copy .eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h2 .accent {
  color: var(--green-bright);
  font-style: italic;
  font-weight: 500;
}
.hero-hindi {
  font-family: var(--font-hindi);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 560px;
  justify-self: end;
}
@media (max-width: 1100px) { .hero-visual { max-width: 400px; height: 500px; } }
@media (max-width: 880px) { .hero-visual { justify-self: center; max-width: 320px; height: 400px; margin-top: 1rem; } }

.hero-portrait {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 8px 8px / 35% 35% 8px 8px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--green-soft) 100%);
  box-shadow: 0 30px 60px -30px rgba(31, 77, 46, 0.4);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-frame-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50% 50% 8px 8px / 35% 35% 8px 8px;
  border: 1px dashed var(--gold);
  pointer-events: none;
}

/* Floating credentials chip */
.hero-chip {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-darkest);
}
.hero-chip-1 {
  top: 4%;
  left: -8%;
}
.hero-chip-2 {
  bottom: 14%;
  right: -10%;
}
.hero-chip-icon {
  width: 36px;
  height: 36px;
  background: var(--green-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-deep);
}
.hero-chip-icon svg { width: 20px; height: 20px; }
.hero-chip-label { font-size: 0.7rem; color: var(--ink-mute); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-chip-value { font-family: var(--font-display); font-size: 1.05rem; }

@media (max-width: 880px) {
  /* Smaller chips on mobile + position chip-1 on the upper turban area
     (above the face, not above the portrait) so it doesn't collide with
     the CTAs that stack above the portrait on mobile. */
  .hero-chip {
    padding: 0.55rem 0.85rem;
    gap: 0.6rem;
    font-size: 0.8rem;
    border-radius: var(--radius);
  }
  .hero-chip-icon { width: 28px; height: 28px; }
  .hero-chip-icon svg { width: 16px; height: 16px; }
  .hero-chip-label { font-size: 0.6rem; }
  .hero-chip-value { font-size: 0.9rem; }
  .hero-chip-1 { left: -4%; top: 4%; }
  .hero-chip-2 { right: -4%; bottom: 6%; }
}

/* Trust strip */
.trust-strip {
  background: var(--green-darkest);
  color: var(--cream);
  padding: 1.5rem 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;          /* row-gap column-gap */
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  /* Each item takes about 30% so 3 fit per row on wide screens and the
     remaining 2 wrap to a centered second row. */
  flex: 0 1 auto;
  min-width: 220px;
  justify-content: center;
}
.trust-item-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.trust-item strong { font-weight: 700; color: var(--paper); }

@media (max-width: 720px) {
  /* Stack vertically, each row centered. */
  .trust-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
  .trust-item {
    min-width: 0;
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .trust-item span { flex: 1 1 auto; }
}

/* ============================================
   Products grid (home page)
   ============================================ */
.products {
  background: var(--paper);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 720px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.18);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.product-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  position: relative;
}
.product-img {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: flex-end;          /* all products sit on the same baseline */
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  padding: 1.5rem 0.75rem 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 77, 46, 0.04) 100%);
  border-radius: var(--radius);
}
.product-img img {
  max-height: 100%;
  max-width: 150px;               /* caps the wide jar so it doesn't dwarf the bottles */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.12));
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.product-img a {
  display: contents;              /* anchor passes through so flex layout is unaffected */
  cursor: pointer;
}
.product-card:hover .product-img img { transform: translateY(-4px); }
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-darkest);
  margin-bottom: 0.5rem;
  position: relative;
}
.product-tag {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.75rem;
  position: relative;
}
.product-desc {
  font-size: 0.95rem;
  color: var(--green-deep);
  line-height: 1.4;
  position: relative;
}
.product-link {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.product-link::after {
  content: '→';
  transition: transform 0.2s ease;
}
.product-card:hover .product-link::after { transform: translateX(4px); }

/* Product accent variants */
.product-card[data-product="virosil"]    { --accent: var(--c-virosil); --accent-soft: rgba(45,107,63,0.12); }
.product-card[data-product="urifast"]    { --accent: var(--c-urifast); --accent-soft: rgba(30,91,156,0.12); }
.product-card[data-product="plantowink"] { --accent: var(--c-plantowink); --accent-soft: rgba(63,139,79,0.12); }
.product-card[data-product="plantowind"] { --accent: var(--c-plantowind); --accent-soft: rgba(216,110,42,0.12); }
.product-card[data-product="lasttuch"]   { --accent: var(--c-lasttuch); --accent-soft: rgba(107,63,139,0.12); }

/* ============================================
   Benefits / Dose split section
   ============================================ */
.benefits-section {
  background: var(--cream-deep);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
@media (max-width: 880px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefits-grid > div:first-child { display: flex; flex-direction: column; }

.benefits-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  flex: 1;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-bright);
}
.benefit-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green-deep);
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-text {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

/* Dose callout */
.dose-card {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-darkest) 100%);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
}
.dose-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: 0.15;
}
.dose-eyebrow {
  color: var(--gold-soft);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.dose-big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.dose-big small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--paper);
  margin-left: 0.25rem;
}
.dose-sub {
  margin-top: 0.5rem;
  color: var(--cream);
  font-size: 1.15rem;
}
.dose-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.dose-icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.dose-icon-block .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.22);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.dose-icon-block .icon svg { width: 22px; height: 22px; stroke-width: 2; }
.dose-icon-block .label {
  font-size: 0.9rem;
  color: var(--cream);
  text-align: center;
}

/* ============================================
   Dealer opportunity strip
   ============================================ */
.opportunity {
  background:
    linear-gradient(rgba(15, 42, 27, 0.88), rgba(15, 42, 27, 0.92)),
    var(--green-darkest);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.opportunity::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center right, rgba(201,168,76,0.2), transparent 70%);
  pointer-events: none;
}
.opportunity-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) { .opportunity-grid { grid-template-columns: 1fr; } }

.opportunity h2 { color: var(--paper); }
.opportunity h2 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.opportunity p { color: rgba(250, 246, 236, 0.85); margin-top: 1rem; font-size: 1.1rem; max-width: 540px; }
.opportunity-ctas { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.opportunity-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-top: 0.5rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--green-darkest);
  color: var(--cream);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--paper); margin-bottom: 1rem; }
.footer-brand .logo span:last-child { color: var(--gold); }
.footer-brand p { color: rgba(250,246,236,0.7); font-size: 0.92rem; }

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a {
  color: rgba(250,246,236,0.75);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: rgba(250,246,236,0.85);
  font-size: 0.92rem;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250,246,236,0.55);
}
.footer-bottom .certs {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.safety-banner {
  background: var(--green-soft);
  text-align: center;
  padding: 1rem var(--gutter);
  font-size: 0.92rem;
  color: var(--green-darkest);
}

/* Hindi pages: cascade Hindi font onto bilingual-display elements
   so individual Hindi labels don't need .hindi on every span. */
html[lang="hi"] .product-desc,
html[lang="hi"] .dose-eyebrow,
html[lang="hi"] .dose-sub,
html[lang="hi"] .dose-icon-block .label,
html[lang="hi"] .safety-banner {
  font-family: var(--font-hindi);
}

/* ============================================
   Floating Action Buttons (WhatsApp / Call)
   ============================================ */
.fab {
  position: fixed;
  z-index: 90;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.07); }

.fab-whatsapp {
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.5);
}
.fab-whatsapp svg { width: 32px; height: 32px; }

@media (max-width: 720px) {
  .fab-whatsapp { bottom: 84px; right: 16px; }
}

.fab-call {
  display: none;
}
@media (max-width: 720px) {
  .fab-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--green-deep);
    color: var(--paper);
    padding: 0.95rem;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 89;
    box-shadow: 0 -8px 20px -8px rgba(0,0,0,0.2);
  }
  .fab-call svg { width: 18px; height: 18px; }
}

/* Mobile bottom padding to clear sticky call button */
@media (max-width: 720px) {
  body { padding-bottom: 60px; }
}

/* ============================================
   Inner page hero (shorter)
   ============================================ */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  text-align: center;
  border-bottom: 1px solid rgba(31, 77, 46, 0.08);
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 800px; margin: 0 auto 1rem; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.125rem; }
.page-hero .hindi { color: var(--green-deep); margin-top: 1rem; font-size: 1.15rem; }

/* Breadcrumbs */
.crumbs {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}
.crumbs a { color: var(--green-deep); }
.crumbs span { color: var(--ink-mute); }

/* ============================================
   Product detail cards (Products page)
   ============================================ */
.product-detail {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.08);
  border: 1px solid rgba(31, 77, 46, 0.06);
}
@media (max-width: 760px) { .product-detail { grid-template-columns: 1fr; } }

.product-detail-img {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--cream) 100%);
  display: grid;
  place-items: center;
  padding: 2.5rem;
  position: relative;
  min-height: 360px;
}
.product-detail-img::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
  filter: blur(4px);
}
.product-detail-img img {
  max-height: 340px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
}

.product-detail-body { padding: 2rem 2.25rem; }
.product-detail[data-product="virosil"]    { --accent: var(--c-virosil); --accent-soft: rgba(45,107,63,0.18); }
.product-detail[data-product="urifast"]    { --accent: var(--c-urifast); --accent-soft: rgba(30,91,156,0.18); }
.product-detail[data-product="plantowink"] { --accent: var(--c-plantowink); --accent-soft: rgba(63,139,79,0.18); }
.product-detail[data-product="plantowind"] { --accent: var(--c-plantowind); --accent-soft: rgba(216,110,42,0.18); }
.product-detail[data-product="lasttuch"]   { --accent: var(--c-lasttuch); --accent-soft: rgba(107,63,139,0.18); }

.product-detail-cat {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-detail h3 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}
.product-detail-suit {
  font-family: var(--font-hindi);
  color: var(--green-deep);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.product-detail-purpose {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.product-spec-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
@media (max-width: 480px) { .product-spec-row { grid-template-columns: 1fr; } }
.product-spec {
  font-size: 0.85rem;
}
.product-spec .label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 0.25rem;
}
.product-spec .value {
  font-weight: 600;
  color: var(--green-darkest);
}

.product-benefits {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.product-benefits li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 1.5rem;
  position: relative;
}
.product-benefits li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.caution-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(216, 110, 42, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--c-plantowind);
  font-weight: 600;
}
.caution-pill svg { width: 16px; height: 16px; }

/* ============================================
   About page
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--green-soft);
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 42, 27, 0.4) 100%);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}
@media (max-width: 720px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold);
}
.vm-card h3 {
  font-style: italic;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.cert-card {
  background: var(--paper);
  border: 1px solid rgba(31,77,46,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.cert-card .cert-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.cert-card .cert-icon svg { width: 22px; height: 22px; }
.cert-card .cert-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-darkest);
  font-size: 0.95rem;
}
.cert-card .cert-meta {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}

/* ============================================
   How to Use page
   ============================================ */
.stage-timeline {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
.stage-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border-left: 4px solid var(--green-bright);
}
@media (max-width: 560px) { .stage-row { grid-template-columns: 100px 1fr; } }
.stage-day {
  background: var(--green-deep);
  color: var(--gold);
  display: grid;
  place-items: center;
  padding: 1rem 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  font-size: 0.95rem;
}
.stage-day strong { display: block; font-size: 1.4rem; color: var(--paper); }
.stage-content { padding: 1rem 1.25rem; }
.stage-content h4 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.stage-content p { font-size: 0.93rem; margin: 0; }

.usage-product-block {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--accent);
}
.usage-product-block h3 { color: var(--accent); margin-bottom: 0.75rem; }
.usage-product-block[data-product="virosil"]    { --accent: var(--c-virosil); }
.usage-product-block[data-product="urifast"]    { --accent: var(--c-urifast); }
.usage-product-block[data-product="plantowink"] { --accent: var(--c-plantowink); }
.usage-product-block[data-product="plantowind"] { --accent: var(--c-plantowind); }
.usage-product-block[data-product="lasttuch"]   { --accent: var(--c-lasttuch); }

.safety-list {
  background: rgba(216, 110, 42, 0.05);
  border-left: 4px solid var(--c-plantowind);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  list-style: none;
}
.safety-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.safety-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--c-plantowind);
  font-weight: 700;
}

/* ============================================
   Blog
   ============================================ */

/* Featured pillar article (blog index) */
.featured-article {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  background: var(--green-darkest);
  color: var(--cream);
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(201,168,76,0.2);
}
.featured-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -28px rgba(0,0,0,0.4);
}
@media (max-width: 880px) {
  .featured-article { grid-template-columns: 1fr; }
}
.featured-article-body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.featured-article-body::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: 0.12;
  pointer-events: none;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  width: fit-content;
}
.featured-article h2 {
  color: var(--paper);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.featured-article h2 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.featured-article-body p {
  color: rgba(250,246,236,0.82);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.featured-article .read-more {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.featured-article .read-more::after {
  content: '→';
  transition: transform 0.25s ease;
}
.featured-article:hover .read-more::after { transform: translateX(6px); }

.featured-article-visual {
  background:
    linear-gradient(135deg, rgba(31,77,46,0.5) 0%, rgba(15,42,27,0.85) 100%),
    radial-gradient(ellipse at center, var(--green-mid) 0%, var(--green-darkest) 70%);
  display: grid;
  place-items: center;
  padding: 2.5rem 1.5rem;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.featured-article-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,0.15) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(90,157,63,0.2) 0%, transparent 40%);
}
.featured-article-bottles {
  display: flex;
  gap: 0.2rem;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.featured-article-bottles img {
  height: clamp(100px, 14vw, 160px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
  flex-shrink: 1;
  min-width: 0;
  mix-blend-mode: multiply;
}
.featured-article-bottles img:nth-child(1) { transform: translateY(8px); }
.featured-article-bottles img:nth-child(2) { transform: translateY(-4px); }
.featured-article-bottles img:nth-child(3) { transform: translateY(0); }
.featured-article-bottles img:nth-child(4) { transform: translateY(-2px); }
.featured-article-bottles img:nth-child(5) { transform: translateY(6px); }
.featured-article:hover .featured-article-bottles img:nth-child(1) { transform: translateY(2px) rotate(-2deg); }
.featured-article:hover .featured-article-bottles img:nth-child(5) { transform: translateY(0px) rotate(2deg); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(31,77,46,0.08);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.15);
}
.blog-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--green-soft), var(--gold-soft));
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: attr(data-num);
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green-darkest);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.blog-card-img svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.blog-card-body { padding: 1.5rem 1.75rem 1.75rem; }
.blog-card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.blog-card p {
  font-size: 0.93rem;
  margin-bottom: 1rem;
}
.blog-card .read-more {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-card .read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* Article page */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article-header { text-align: center; margin-bottom: 3rem; }
.article-header h1 { margin-bottom: 1rem; }
.article-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.article-body { font-size: 1.0625rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body h2 {
  font-size: 1.65rem;
  margin: 2.5rem 0 1rem;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green-deep);
}

/* ============================================
   Contact / Forms
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--green-darkest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: 0.12;
}
.contact-info h2 { color: var(--paper); }
.contact-info h2 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.contact-info > p {
  color: rgba(250,246,236,0.8);
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.contact-block {
  margin-bottom: 1.75rem;
  position: relative;
}
.contact-block h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-block p, .contact-block a {
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* Tabs for multi-form */
.form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.form-tab {
  padding: 0.7rem 1.25rem;
  background: var(--cream);
  border: 1px solid rgba(31,77,46,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.form-tab:hover { background: var(--green-soft); }
.form-tab.active {
  background: var(--green-deep);
  color: var(--paper);
  border-color: var(--green-deep);
}

.form-panel { display: none; }
.form-panel.active { display: block; }

.form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(31,77,46,0.06);
}
.form-intro {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-darkest);
  letter-spacing: 0.02em;
}
.form-field label .req { color: var(--c-plantowind); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(31,77,46,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(31,77,46,0.08);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: 1.25rem; }
.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

/* Bulk-order specific picker */
.bulk-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: end;
}
@media (max-width: 560px) { .bulk-row { grid-template-columns: 1fr 1fr; } }
.bulk-remove {
  background: transparent;
  border: 1px solid rgba(216, 110, 42, 0.3);
  color: var(--c-plantowind);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  height: 44px;
}
.bulk-remove:hover { background: var(--c-plantowind); color: white; border-color: var(--c-plantowind); }
.bulk-add {
  background: transparent;
  border: 1px dashed var(--green-deep);
  color: var(--green-deep);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.bulk-add:hover { background: var(--green-soft); }

.form-success {
  background: var(--green-soft);
  color: var(--green-darkest);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--green-bright);
  margin-bottom: 1rem;
  display: none;
}
.form-success.show { display: block; }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   Language toggle (EN | हिं)
   ============================================ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.2rem;
  background: rgba(31, 77, 46, 0.08);
  border: 1px solid rgba(31, 77, 46, 0.18);
  border-radius: var(--radius-pill);
  margin-right: 0.5rem;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  color: var(--ink-mute);
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lang-btn:hover:not(.active) {
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.6);
}
.lang-btn.active {
  background: var(--green-deep);
  color: var(--paper);
  box-shadow: 0 4px 10px -3px rgba(31, 77, 46, 0.4);
}
.lang-divider {
  width: 1px;
  height: 14px;
  background: rgba(31, 77, 46, 0.25);
  margin: 0 0.15rem;
}
.lang-btn[data-lang="hi"] {
  font-family: var(--font-hindi);
  font-size: 0.98rem;
  font-weight: 400;
  padding-bottom: 0.25rem;
}
@media (max-width: 960px) {
  .lang-toggle { margin-right: 0.35rem; }
  .lang-btn { padding: 0.3rem 0.7rem; font-size: 0.78rem; }
  .lang-btn[data-lang="hi"] { font-size: 0.92rem; }
}

/* ============================================
   Scroll-to-top button (injected by main.js)
   ============================================ */
.fab-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 77, 46, 0.88);
  color: var(--paper);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 89;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.3);
}
.fab-top.show {
  opacity: 0.85;
  visibility: visible;
  transform: translateY(0);
}
.fab-top:hover {
  opacity: 1;
  background: var(--green-darkest);
}
.fab-top svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .fab-top { right: 16px; bottom: 152px; width: 40px; height: 40px; }
  .fab-top svg { width: 18px; height: 18px; }
}

/* ============================================
   Inline product WhatsApp CTA (on product detail blocks)
   ============================================ */
.wa-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: #fff;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 16px -8px rgba(37, 211, 102, 0.55);
}
.wa-product-cta:hover {
  background: #1ebf5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(37, 211, 102, 0.65);
}
.wa-product-cta svg { width: 18px; height: 18px; }
