/* =========================================================
   PRAKRITI PURE — DESIGN TOKENS
   ========================================================= */
:root {
  --forest: #2D4A3E;
  --forest-dark: #203630;
  --sage: #A3B899;
  --sage-deep: #7FA37B;
  --linen: #F7F5F0;
  --surface: #FFFFFF;
  --gold: #C29B38;
  --gold-dark: #A8842E;
  --ink: #262626;
  --ink-soft: #5B5B54;
  --line: rgba(45, 74, 62, 0.14);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 12px 32px -18px rgba(45, 74, 62, 0.35);
  --shadow-card: 0 10px 24px -16px rgba(45, 74, 62, 0.28);

  --container: 1180px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--forest); font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--forest); color: var(--linen); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--forest-dark); }

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

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

.btn-whatsapp { background: var(--gold); color: var(--forest-dark); }
.btn-whatsapp:hover { background: var(--gold-dark); color: var(--linen); }

.btn-sm { padding: 10px 18px; font-size: 0.85rem; flex: 1; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; margin-top: 6px; }

/* =========================================================
   HEADER (shared across all pages)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); letter-spacing: -0.01em; }
.logo-text em { font-style: italic; color: var(--gold); font-weight: 600; }

.main-nav { display: none; align-items: center; gap: 32px; }
.main-nav a { font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); position: relative; padding: 6px 0; }
.main-nav a:hover { color: var(--forest); }
.main-nav a.is-active { color: var(--forest); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.whatsapp-pill {
  display: none;
  align-items: center;
  gap: 7px;
  background: var(--forest);
  color: var(--linen);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.whatsapp-pill:hover { background: var(--forest-dark); }

.nav-toggle {
  width: 40px; height: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .whatsapp-pill { display: inline-flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 899px) {
  .main-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: 10px 20px 22px; gap: 4px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: none; }
}

/* =========================================================
   PAGE BANNER (inner pages)
   ========================================================= */
.page-banner {
  padding: 56px 0 44px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.page-banner .eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1rem;
  margin-bottom: 10px;
}
.page-banner h1 { font-size: clamp(2rem, 5vw, 2.9rem); max-width: 18ch; letter-spacing: -0.01em; }
.page-banner p { margin-top: 14px; max-width: 54ch; color: var(--ink-soft); font-size: 1.05rem; }

/* =========================================================
   HERO (homepage)
   ========================================================= */
.hero { padding: 52px 0 64px; overflow: hidden; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }

.hero-kicker { font-family: var(--font-display); font-style: italic; color: var(--gold-dark); font-size: 1.05rem; margin-bottom: 14px; }

.hero-copy h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.1; letter-spacing: -0.015em; max-width: 14ch; }

.hero-sub { margin-top: 22px; max-width: 46ch; color: var(--ink-soft); font-size: 1.05rem; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; }
.trust-badges li { display: flex; align-items: center; gap: 7px; font-size: 0.9rem; font-weight: 600; color: var(--forest); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-visual { position: relative; }
.hero-blob {
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--surface);
}
.hero-blob img { width: 100%; height: 100%; object-fit: cover; }

.hero-chip {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; min-width: 118px;
}
.chip-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); line-height: 1; }
.chip-label { font-size: 0.74rem; color: var(--ink-soft); margin-top: 4px; line-height: 1.3; }
.hero-chip-1 { top: 6%; left: -4px; }
.hero-chip-2 { bottom: 8%; right: -4px; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
  .hero { padding: 84px 0 96px; }
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
.section-head { max-width: 52ch; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); letter-spacing: -0.01em; }
.section-head p { margin-top: 12px; color: var(--ink-soft); font-size: 1.02rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* =========================================================
   TRUST STRIP (3 pillars, compact)
   ========================================================= */
.trust-strip { padding: 8px 0 12px; }
.trust-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.trust-strip-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-strip-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(163, 184, 153, 0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-strip-item h3 { font-size: 1rem; margin-bottom: 3px; }
.trust-strip-item p { font-size: 0.86rem; color: var(--ink-soft); }

@media (min-width: 720px) {
  .trust-strip-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   PRODUCT GRID + CARDS
   ========================================================= */
.products { padding: 20px 0 76px; }

.product-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 620px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -16px rgba(45, 74, 62, 0.32); }

.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--forest-dark);
  font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}

.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }

.card-category {
  font-size: 0.76rem; font-weight: 700; color: var(--sage-deep);
  background: rgba(163, 184, 153, 0.22);
  align-self: flex-start; padding: 3px 10px; border-radius: 999px; margin-bottom: 4px;
}

.card-title { font-size: 1.1rem; line-height: 1.3; }
.card-weight { color: var(--ink-soft); font-size: 0.86rem; }
.card-desc { color: var(--ink-soft); font-size: 0.88rem; margin-top: 4px; }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.card-tag {
  font-size: 0.72rem; font-weight: 600; color: var(--forest);
  border: 1px solid var(--line); padding: 3px 9px; border-radius: 999px;
}

.card-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.price-now { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); }
.price-was { font-size: 0.86rem; color: var(--ink-soft); text-decoration: line-through; }

.card-actions { display: flex; gap: 10px; margin-top: 14px; }

/* =========================================================
   CATEGORY FILTER TABS (shop page)
   ========================================================= */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.category-tab {
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.category-tab:hover { border-color: var(--forest); color: var(--forest); }
.category-tab.is-active { background: var(--forest); border-color: var(--forest); color: var(--linen); }

.product-card[hidden] { display: none; }

/* =========================================================
   WHY PURE / STORY BLOCKS (homepage + about)
   ========================================================= */
.why-pure { background: var(--forest); color: var(--linen); padding: 72px 0; border-radius: var(--radius-lg); margin: 0 16px; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.why-copy h2 { color: var(--linen); font-size: clamp(1.8rem, 4vw, 2.5rem); max-width: 16ch; }
.why-copy p { margin-top: 16px; color: rgba(247, 245, 240, 0.78); max-width: 44ch; font-size: 1.02rem; }
.why-pillars { display: grid; gap: 22px; }
.why-pillar { border-top: 1px solid rgba(247, 245, 240, 0.22); padding-top: 18px; }
.why-pillar h3 { color: var(--sage); font-size: 1.1rem; margin-bottom: 8px; }
.why-pillar p { color: rgba(247, 245, 240, 0.72); font-size: 0.94rem; }
@media (min-width: 860px) {
  .why-grid { grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
  .why-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   HOW IT WORKS — timeline
   ========================================================= */
.how-it-works { padding: 84px 0; }
.timeline { display: grid; grid-template-columns: 1fr; gap: 30px; counter-reset: step; }
.timeline-step { position: relative; padding-left: 56px; }
.step-index {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--forest); color: var(--forest);
  font-family: var(--font-display); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.timeline-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-step p { color: var(--ink-soft); font-size: 0.95rem; max-width: 40ch; }
@media (min-width: 860px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .timeline-step::after {
    content: ""; position: absolute; top: 20px; left: 76px;
    width: calc(100% - 20px); height: 1px; background: var(--line);
  }
  .timeline-step:last-child::after { display: none; }
}

/* =========================================================
   INSTAGRAM STRIP
   ========================================================= */
.instagram-strip { padding: 20px 0 84px; }
.instagram-head {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}
.instagram-head h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); }
.instagram-link { font-size: 0.9rem; font-weight: 700; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; }
.instagram-link:hover { color: var(--gold); }

.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (min-width: 720px) { .instagram-grid { grid-template-columns: repeat(6, 1fr); } }
.instagram-tile { aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.instagram-tile:hover img { transform: scale(1.06); }

/* =========================================================
   TRUST BANNER (quote)
   ========================================================= */
.trust-banner { padding: 60px 0 96px; }
.trust-banner-inner { max-width: 720px; text-align: center; margin: 0 auto; }
.trust-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 3vw, 1.5rem); color: var(--forest); line-height: 1.5; }
.trust-attribution { margin-top: 18px; color: var(--ink-soft); font-size: 0.9rem; }

/* =========================================================
   ABOUT PAGE — story sections
   ========================================================= */
.story-section { padding: 68px 0; }
.story-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.story-grid.reverse .story-media { order: -1; }
.story-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); max-width: 18ch; }
.story-copy p { margin-top: 16px; color: var(--ink-soft); font-size: 1rem; max-width: 50ch; }
.story-copy p + p { margin-top: 12px; }
@media (min-width: 860px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .story-grid.reverse .story-media { order: 1; }
}

.stat-strip { padding: 44px 0; }
.stat-strip .container {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
@media (min-width: 720px) { .stat-strip .container { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 20px 10px; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--gold-dark); }
.stat-label { margin-top: 6px; font-size: 0.84rem; color: var(--ink-soft); }

.pledge-list { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 8px; }
@media (min-width: 720px) { .pledge-list { grid-template-columns: repeat(2, 1fr); } }
.pledge-item {
  background: var(--surface); border-radius: var(--radius-md); padding: 22px;
  box-shadow: var(--shadow-card); display: flex; gap: 14px; align-items: flex-start;
}
.pledge-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: rgba(194,155,56,0.16); display: flex; align-items: center; justify-content: center; }
.pledge-item h3 { font-size: 1rem; margin-bottom: 5px; }
.pledge-item p { font-size: 0.88rem; color: var(--ink-soft); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section { padding: 20px 0 90px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 44px; } }

.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-card);
}
.contact-card.whatsapp-card { background: var(--forest); color: var(--linen); }
.contact-card.whatsapp-card h3 { color: var(--linen); }
.contact-card.whatsapp-card p { color: rgba(247,245,240,0.78); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(194,155,56,0.18);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.whatsapp-card .contact-card-icon { background: rgba(247,245,240,0.16); }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
.contact-card .btn { margin-top: 16px; }

.contact-form-wrap {
  background: var(--surface); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h2 { font-size: 1.4rem; }
.contact-form-wrap > p { margin-top: 8px; color: var(--ink-soft); font-size: 0.92rem; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
@media (min-width: 560px) { .form-row-2 { grid-template-columns: 1fr 1fr; display: grid; gap: 18px; } }

.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 0.86rem; font-weight: 600; color: var(--forest); }
.form-field input, .form-field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; background: var(--linen); color: var(--ink);
  transition: border-color 0.18s ease;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); outline: none; }
.form-field textarea { resize: vertical; min-height: 110px; }

.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 4px; }

/* =========================================================
   FAQ PAGE — accordion
   ========================================================= */
.faq-section { padding: 20px 0 90px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.faq-item {
  background: var(--surface); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left;
  padding: 20px 22px; font-size: 1rem; font-weight: 700; color: var(--forest);
}
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--forest);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { width: 10px; height: 1.6px; }
.faq-icon::after { width: 1.6px; height: 10px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 22px 22px; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; max-width: 66ch; }

/* =========================================================
   POLICY PAGE (shipping / returns)
   ========================================================= */
.policy-section { padding: 20px 0 90px; }
.policy-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .policy-grid { grid-template-columns: 240px 1fr; gap: 56px; } }

.policy-nav { display: none; flex-direction: column; gap: 4px; position: sticky; top: 96px; }
.policy-nav a { padding: 9px 0; font-size: 0.88rem; color: var(--ink-soft); font-weight: 600; border-left: 2px solid transparent; padding-left: 14px; }
.policy-nav a:hover { color: var(--forest); }
@media (min-width: 900px) { .policy-nav { display: flex; } }

.policy-block { padding-bottom: 44px; border-bottom: 1px solid var(--line); margin-bottom: 44px; }
.policy-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.policy-block h2 { font-size: 1.4rem; margin-bottom: 14px; }
.policy-block p { color: var(--ink-soft); font-size: 0.96rem; max-width: 68ch; margin-bottom: 12px; }
.policy-block p:last-child { margin-bottom: 0; }

.policy-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.policy-table th, .policy-table td {
  text-align: left; padding: 12px 14px; font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.policy-table th { color: var(--forest); font-weight: 700; }
.policy-table td { color: var(--ink-soft); }

.policy-list { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.policy-list li { position: relative; padding-left: 22px; font-size: 0.94rem; color: var(--ink-soft); }
.policy-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}

/* =========================================================
   FOOTER (shared)
   ========================================================= */
.site-footer { background: var(--forest-dark); color: rgba(247, 245, 240, 0.82); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer-logo { color: var(--linen); }
.footer-brand p { margin-top: 12px; max-width: 34ch; font-size: 0.92rem; color: rgba(247, 245, 240, 0.68); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(247, 245, 240, 0.28);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: rgba(247, 245, 240, 0.1); }

.footer-links h4, .footer-contact h4 { color: var(--linen); font-size: 0.95rem; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.92rem; color: rgba(247, 245, 240, 0.68); }
.footer-links a:hover { color: var(--linen); }

.footer-contact p { font-size: 0.9rem; color: rgba(247, 245, 240, 0.68); margin-bottom: 16px; }

@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr; } }

.footer-bottom {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(247, 245, 240, 0.16);
  display: flex; flex-direction: column; gap: 14px;
}
.disclaimer { font-size: 0.78rem; color: rgba(247, 245, 240, 0.5); line-height: 1.6; max-width: 90ch; }
.copyright { font-size: 0.78rem; color: rgba(247, 245, 240, 0.5); }

/* =========================================================
   MODAL (product quick view)
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(38, 38, 38, 0.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transition: opacity 0.22s ease;
}
.modal-overlay.is-visible { opacity: 1; }
.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--surface);
  width: 100%; max-width: 620px; max-height: 92vh; overflow-y: auto;
  border-radius: 26px 26px 0 0;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-overlay.is-visible .modal { transform: translateY(0); }

@media (min-width: 720px) {
  .modal-overlay { align-items: center; padding: 24px; }
  .modal { border-radius: var(--radius-lg); }
}

.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, 0.92); color: var(--forest);
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}

.modal-media { position: relative; aspect-ratio: 16 / 10; background: var(--sage); }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-category {
  position: absolute; bottom: 14px; left: 20px;
  background: var(--forest); color: var(--linen);
  font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}

.modal-content { padding: 26px 24px 30px; }
.modal-content h2 { font-size: 1.5rem; line-height: 1.25; }
.modal-weight { color: var(--ink-soft); margin-top: 6px; font-size: 0.94rem; }

.modal-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; }
.modal-price-row .price-now { font-size: 1.6rem; }

.modal-block { margin-top: 24px; }
.modal-block h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--sage-deep);
}
.modal-block p { margin-top: 8px; color: var(--ink-soft); font-size: 0.95rem; }

.modal-block ul, .modal-block ol { margin-top: 10px; display: flex; flex-direction: column; gap: 9px; }
.modal-block ul li, .modal-block ol li { font-size: 0.95rem; color: var(--ink); padding-left: 22px; position: relative; }
.modal-block ul li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.modal-block ol { counter-reset: recipe; }
.modal-block ol li { counter-increment: recipe; }
.modal-block ol li::before {
  content: counter(recipe);
  position: absolute; left: 0; top: -1px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--forest); color: var(--linen); font-size: 0.66rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

body.modal-open { overflow: hidden; }

/* =========================================================
   MOBILE WHATSAPP FAB
   ========================================================= */
.mobile-whatsapp-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest); color: var(--linen);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) { .mobile-whatsapp-fab { display: none; } }
