/* ==========================================================================
   Zeppin — Fresh & Natural theme
   Inspired by idfreshfood.com: warm, friendly, trustworthy, food-focused
   ========================================================================== */

:root {
  /* Colors */
  --green: #2e7d4e;
  --green-dark: #1f5e39;
  --green-light: #eaf5ee;
  --green-soft: #f4faf6;
  --leaf: #5ab377;
  --yellow: #ffc93c;
  --cream: #fdf9f2;
  --cream-dark: #f7f0e3;
  --warm: #fff8ec;
  --ink: #1f2a24;
  --ink-2: #425147;
  --muted: #6b7872;
  --line: #e5ebe7;
  --white: #ffffff;
  --bg-page-base: #eef3ef;

  /* Type */
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Quicksand", "Nunito", system-ui, sans-serif;

  /* Layout */
  --container: min(1180px, 92vw);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;

  /* Spacing */
  --space-section: clamp(4rem, 8vw, 6.5rem);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(31, 42, 36, 0.05);
  --shadow-md: 0 12px 32px rgba(31, 42, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 42, 36, 0.1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* avoid overflow-x: hidden — it breaks position:sticky in Chrome; clip clips without breaking sticky */
  overflow-x: clip;
  overscroll-behavior-y: contain;
  background-color: var(--bg-page-base);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  background-color: var(--bg-page-base);
  background-image:
    radial-gradient(ellipse 120% 60% at 50% -15%, rgba(234, 245, 238, 0.95), transparent 52%),
    radial-gradient(ellipse 75% 50% at 100% 22%, rgba(255, 248, 236, 0.7), transparent 52%),
    radial-gradient(ellipse 60% 55% at 0% 72%, rgba(90, 179, 119, 0.1), transparent 48%),
    radial-gradient(ellipse 55% 40% at 88% 88%, rgba(255, 201, 60, 0.09), transparent 45%),
    linear-gradient(180deg, #e5ede7 0%, #fbf8f2 32%, #fdf9f2 62%, #eef4ef 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* In-page links / skip-link land below sticky nav (--sticky-header-offset set in script.js) */
#main,
#home,
#contact {
  scroll-margin-top: calc(var(--sticky-header-offset, 5.5rem) + 0.35rem);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 999;
}

/* ==========================================================================
   Announcement strip (scrolls with page — not sticky)
   ========================================================================== */

.announce {
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.55rem 0;
}

/* ==========================================================================
   Logo
   ========================================================================== */

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.logo--image {
  line-height: 0;
}

.logo__mark {
  display: block;
  height: 4rem;
  width: auto;
  max-width: 15.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(31, 42, 36, 0.12);
}

.logo--light .logo__mark {
  box-shadow: none;
}

@media (max-width: 480px) {
  .logo__mark {
    height: 3.1rem;
    max-width: 12rem;
    border-radius: 8px;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(46, 125, 78, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: translateZ(0);
  backdrop-filter: saturate(180%) blur(8px);
}

.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav > a:not(.btn),
.nav__trigger {
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav > a:not(.btn):hover,
.nav__trigger:hover {
  color: var(--green);
}

.nav > a:not(.btn)::after,
.nav__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}

.nav > a:not(.btn):hover::after,
.nav__trigger:hover::after,
.nav__item:hover .nav__trigger::after {
  width: 100%;
}

/* Dropdown menu */

.nav__item {
  position: relative;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  line-height: 1;
}

.nav__trigger-caret {
  width: 10px;
  height: 10px;
  transition: transform 0.2s var(--ease);
}

.nav__item:hover .nav__trigger-caret,
.nav__item.is-open .nav__trigger-caret {
  transform: rotate(180deg);
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 50;
}

.nav__submenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu,
.nav__item.is-open .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.nav__submenu a::after {
  display: none;
}

.nav__submenu a:hover,
.nav__submenu a.is-active {
  background: var(--green-light);
  color: var(--green);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(46, 125, 78, 0.25);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 125, 78, 0.32);
}

.btn--link {
  background: transparent;
  color: var(--green);
  border-color: transparent;
  padding: 0 0.5rem;
  min-height: auto;
}

.btn--link:hover {
  color: var(--green-dark);
  transform: translateX(3px);
}

.btn--sm {
  min-height: 2.4rem;
  padding: 0 1.25rem;
  font-size: 0.88rem;
}

.btn--lg {
  min-height: 3.5rem;
  padding: 0 2.25rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ==========================================================================
   Common: eyebrow / section head
   ========================================================================== */

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-desc {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(90, 179, 119, 0.2), transparent 46%),
    radial-gradient(circle at 8% 88%, rgba(255, 201, 60, 0.14), transparent 42%),
    radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.45), transparent 58%),
    linear-gradient(165deg, #f5faf6 0%, var(--cream) 45%, #fff9ef 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}
.badge__dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.25;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50%      { transform: scale(1.4); opacity: 0; }
}

.hero h1 {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero__lead {
  margin: 0;
  max-width: 32rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero visual — CSS-drawn plate + idlis */

.hero__visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__plate {
  position: relative;
  width: min(340px, 85%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--white) 58%, var(--cream-dark) 58.5%, var(--cream-dark) 62%, var(--white) 62.5%);
  box-shadow: 0 30px 70px rgba(31, 42, 36, 0.15), inset 0 -8px 20px rgba(31, 42, 36, 0.05);
}

.hero__bowl {
  position: absolute;
  inset: 22%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 12%;
}

.hero__idli {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, #fffefb 0%, #f4ecd8 100%);
  border-radius: 50%;
  box-shadow:
    inset -4px -6px 10px rgba(31, 42, 36, 0.1),
    inset 4px 4px 10px rgba(255, 255, 255, 0.9),
    0 6px 14px rgba(31, 42, 36, 0.12);
}

.hero__idli:nth-child(2) {
  transform: translateY(-8px);
  width: 62px;
  height: 62px;
}

.hero__steam {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.hero__steam span {
  display: block;
  width: 5px;
  height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(200, 210, 205, 0.9) 100%);
  border-radius: 10px;
  animation: steam 2.8s ease-in-out infinite;
}

.hero__steam span:nth-child(2) {
  animation-delay: 0.5s;
  height: 55px;
}
.hero__steam span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes steam {
  0%   { transform: translateY(0) scaleY(1); opacity: 0; }
  20%  { opacity: 0.7; }
  100% { transform: translateY(-30px) scaleY(1.2); opacity: 0; }
}

.hero__leaf {
  position: absolute;
  background: var(--leaf);
  border-radius: 0 70% 0 70%;
  transform: rotate(25deg);
  opacity: 0.85;
}

.hero__leaf--1 {
  top: 8%;
  right: 6%;
  width: 48px;
  height: 32px;
  background: var(--green);
}

.hero__leaf--2 {
  bottom: 18%;
  left: 4%;
  width: 36px;
  height: 24px;
  transform: rotate(-40deg);
}

.hero__leaf--3 {
  top: 45%;
  right: 0%;
  width: 28px;
  height: 18px;
  transform: rotate(60deg);
  opacity: 0.7;
}

/* ==========================================================================
   Values strip
   ========================================================================== */

.values {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #f7fbf8 55%, #fffdf7 100%);
  border-top: 1px solid rgba(46, 125, 78, 0.1);
  border-bottom: 1px solid rgba(46, 125, 78, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 28px rgba(31, 42, 36, 0.04);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value {
  text-align: center;
}

.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.value__icon svg {
  width: 28px;
  height: 28px;
}

.value:hover .value__icon {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px);
}

.value h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.value p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   Our Food — product cards
   ========================================================================== */

.our-food {
  padding: var(--space-section) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(90, 179, 119, 0.12), transparent 44%),
    radial-gradient(circle at 92% 70%, rgba(255, 201, 60, 0.11), transparent 40%),
    linear-gradient(180deg, #edf4ef 0%, var(--warm) 55%, #faf6ee 100%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(46, 125, 78, 0.1);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card__art {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card--idly .card__art { background: linear-gradient(135deg, #fff8ec 0%, #fde9b8 100%); }
.card--dosa .card__art { background: linear-gradient(135deg, #fff3e0 0%, #fcd098 100%); }

.card__circle {
  position: absolute;
  inset: 15% 22%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(31, 42, 36, 0.1);
}

.card__item {
  position: relative;
  z-index: 2;
}

.card__item--idly {
  display: flex;
  gap: 10px;
  align-items: center;
}

.card__item--idly span {
  display: block;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, #fffefb 0%, #f4ecd8 100%);
  border-radius: 50%;
  box-shadow: inset -3px -4px 8px rgba(31, 42, 36, 0.1), 0 4px 10px rgba(31, 42, 36, 0.1);
}

.card__item--idly span:nth-child(2) {
  transform: translateY(-8px);
  width: 48px;
  height: 48px;
}

.card__item--dosa {
  width: 110px;
  height: 60px;
  background: linear-gradient(145deg, #f4c37a 0%, #d89545 100%);
  border-radius: 50% / 60%;
  transform: rotate(-8deg);
  box-shadow: inset -4px -4px 12px rgba(95, 50, 10, 0.2), 0 8px 18px rgba(95, 50, 10, 0.15);
}

.card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card__tag {
  align-self: flex-start;
  padding: 0.35rem 0.9rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.card__body h3 {
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0.25rem 0 0;
}

.card__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.card__cta {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  width: 100%;
}

.card__meta {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card__meta li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.card__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg) translateY(-4px);
}

/* ==========================================================================
   Story
   ========================================================================== */

.story {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 18%, rgba(255, 201, 60, 0.18), transparent 48%),
    radial-gradient(circle at 0% 85%, rgba(46, 125, 78, 0.1), transparent 50%),
    linear-gradient(180deg, #e4f0e8 0%, var(--green-soft) 38%, var(--green-soft) 100%);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story__col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story__art {
  position: relative;
  aspect-ratio: 4 / 4.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story__circle {
  position: absolute;
  border-radius: 50%;
}

.story__circle--1 {
  inset: 10% 8% 15% 12%;
  background: linear-gradient(145deg, var(--leaf) 0%, var(--green) 100%);
  box-shadow: 0 30px 70px rgba(46, 125, 78, 0.25);
}

.story__circle--2 {
  top: 5%;
  right: 5%;
  width: 90px;
  height: 90px;
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 201, 60, 0.3);
}

.story__quote {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 2rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.story__quote-mark {
  position: absolute;
  top: -24px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--green);
  font-weight: 700;
}

.story__quote p {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.4;
  font-style: italic;
}

.story__text p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--green);
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(234, 245, 238, 0.55), transparent 58%),
    linear-gradient(180deg, #f8f6f0 0%, var(--cream) 45%, #f5f9f6 100%);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review {
  margin: 0;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 125, 78, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}

.review::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.25;
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review blockquote {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review figcaption strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}

.review figcaption span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
}
.cta::after {
  width: 160px;
  height: 160px;
  bottom: -60px;
  left: 10%;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  font-size: 1rem;
}

.cta .btn--primary {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.cta .btn--primary:hover {
  background: var(--cream);
  color: var(--green-dark);
  border-color: var(--cream);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding: var(--space-section) 0;
  background:
    linear-gradient(105deg, rgba(234, 245, 238, 0.55) 0%, rgba(255, 255, 255, 0.97) 40%, rgba(255, 248, 236, 0.4) 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__intro h2 {
  margin-bottom: 1rem;
}

.contact__intro > p {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
}

.contact__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact__info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
}

.contact__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.contact__info a {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.contact__info a:hover {
  color: var(--green);
}

.contact__form {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid rgba(46, 125, 78, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 125, 78, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__brand p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 24rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.footer__links h4 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}

.footer__links a:hover {
  color: var(--leaf);
}

.footer__links .footer__address {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 17rem;
}

.contact-method__address {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: normal;
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.88rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--leaf);
  font-weight: 600;
}

.footer__bottom a:hover {
  color: var(--white);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .hero__grid,
  .story__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    min-height: 320px;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .cards,
  .reviews {
    grid-template-columns: 1fr;
  }

  .story__art {
    max-width: 420px;
    margin-inline: auto;
    aspect-ratio: 4 / 3.2;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    margin-top: 0.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .nav a:not(.btn),
  .nav__trigger {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav a:not(.btn)::after,
  .nav__trigger::after {
    display: none;
  }

  .nav a:not(.btn):hover,
  .nav__trigger:hover {
    background: var(--green-light);
  }

  .nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }

  .nav__item {
    width: 100%;
  }

  .nav__submenu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: 100%;
    padding: 0.25rem 0 0.35rem 0.75rem;
    margin-top: 0.25rem;
    background: var(--green-soft);
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: none;
    display: none;
  }

  /* Beat desktop .nav__item.is-open .nav__submenu { transform: translateX(-50%)… } or links sit off-screen */
  .nav__item.is-open .nav__submenu {
    display: block;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav__submenu::before {
    display: none;
  }

  .nav__submenu a {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    color: var(--ink);
    background: transparent;
  }

  .nav__submenu a:hover,
  .nav__submenu a.is-active {
    background: rgba(255, 255, 255, 0.75);
    color: var(--green-dark);
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .story__stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .announce {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .badge__dot::before,
  .hero__steam span {
    animation: none;
  }

  .btn,
  .card,
  .review,
  .value__icon {
    transition: none;
  }
}

/* ==========================================================================
   Nav active state
   ========================================================================== */

.nav a.is-active {
  color: var(--green);
}
.nav a.is-active::after {
  width: 100%;
}

/* ==========================================================================
   Page hero (for sub-pages: About / Foods / Contact)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 82% 8%, rgba(90, 179, 119, 0.22), transparent 46%),
    radial-gradient(circle at 6% 92%, rgba(255, 201, 60, 0.16), transparent 42%),
    linear-gradient(180deg, #f2f7f3 0%, var(--cream) 50%, #fff9f0 100%);
  overflow: hidden;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin: 0 auto 1rem;
  max-width: 18ch;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.page-hero__lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Breadcrumb */

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.crumbs a {
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}

.crumbs a:hover {
  color: var(--green);
}

.crumbs span {
  color: var(--green);
}

.crumbs__sep {
  opacity: 0.5;
}

/* ==========================================================================
   Food detail blocks (used on foods.html)
   ========================================================================== */

.food-detail {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.food-detail:nth-child(odd) {
  background:
    radial-gradient(circle at 28% 25%, rgba(255, 201, 60, 0.08), transparent 45%),
    linear-gradient(180deg, #faf8f4 0%, var(--cream) 100%);
}

.food-detail:nth-child(even) {
  background:
    radial-gradient(circle at 82% 35%, rgba(90, 179, 119, 0.14), transparent 50%),
    linear-gradient(180deg, #e8f2eb 0%, var(--green-soft) 100%);
}

.food-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.food-detail:nth-child(even) .food-detail__grid {
  direction: rtl;
}

.food-detail:nth-child(even) .food-detail__grid > * {
  direction: ltr;
}

.food-detail__art {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.food-detail__art--idly { background: linear-gradient(135deg, #fff8ec 0%, #fde9b8 100%); }
.food-detail__art--dosa { background: linear-gradient(135deg, #fff3e0 0%, #fcd098 100%); }

.food-detail__art::before {
  content: "";
  position: absolute;
  inset: 15% 18%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(31, 42, 36, 0.08);
}

/* Food art inner elements reuse .card__item styles */

.food-detail__text .eyebrow {
  margin-bottom: 0.5rem;
}

.food-detail__text h2 {
  margin-bottom: 1rem;
}

.food-detail__text > p {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.food-detail__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.food-detail__info-item {
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.food-detail__info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.food-detail__info-item span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

/* How to use */

.how-to {
  padding: var(--space-section) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf7 50%, #fffdf8 100%);
  border-top: 1px solid rgba(46, 125, 78, 0.1);
}

.how-to__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.how-to__step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.how-to__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.how-to__step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.how-to__step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Coming soon */

.coming-soon {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(90, 179, 119, 0.12), transparent 48%),
    radial-gradient(circle at 85% 70%, rgba(255, 201, 60, 0.1), transparent 45%),
    linear-gradient(180deg, #e6f0ea 0%, var(--green-soft) 100%);
}

.coming-soon__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.coming-soon__chip {
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 2px dashed var(--green);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.92rem;
}

/* ==========================================================================
   About page — Mission, Timeline, Values
   ========================================================================== */

.mvv {
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(234, 245, 238, 0.5), transparent 55%),
    linear-gradient(180deg, #fbfcfb 0%, #ffffff 35%, #faf8f3 100%);
}

.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv__card {
  padding: 2.25rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.mvv__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mvv__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  background: var(--green);
  color: var(--white);
  border-radius: 16px 4px 16px 4px;
}

.mvv__icon svg {
  width: 26px;
  height: 26px;
}

.mvv__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--ink);
}

.mvv__card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Timeline */

.timeline {
  padding: var(--space-section) 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 201, 60, 0.1), transparent 45%),
    radial-gradient(circle at 90% 75%, rgba(46, 125, 78, 0.08), transparent 48%),
    linear-gradient(180deg, #e5f0e9 0%, var(--green-soft) 100%);
}

.timeline__list {
  position: relative;
  list-style: none;
  padding: 2rem 0 0;
  margin: 0;
  max-width: 48rem;
  margin-inline: auto;
}

.timeline__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 2px;
  background: var(--green);
  opacity: 0.3;
}

.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 3.5rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(46, 125, 78, 0.2);
}

.timeline__year {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timeline__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.timeline__item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================================================
   Contact page extras
   ========================================================================== */

.contact-methods {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(90, 179, 119, 0.1), transparent 42%),
    radial-gradient(circle at 88% 60%, rgba(255, 201, 60, 0.09), transparent 40%),
    linear-gradient(180deg, #f0f5f1 0%, var(--cream) 100%);
}

.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.contact-method {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.contact-method__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
}

.contact-method__icon svg {
  width: 24px;
  height: 24px;
}

.contact-method h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.contact-method p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-method a {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--green);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.contact-method a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */

.faq {
  padding: var(--space-section) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf7 45%, #fdf9f2 100%);
}

.faq__list {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}

.faq__item[open] {
  border-color: var(--green);
  background: var(--green-soft);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green);
  transition: transform 0.2s var(--ease);
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ==========================================================================
   Responsive for sub-page additions
   ========================================================================== */

@media (max-width: 960px) {
  .food-detail__grid {
    grid-template-columns: 1fr;
  }

  .food-detail:nth-child(even) .food-detail__grid {
    direction: ltr;
  }

  .food-detail__art {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .how-to__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .mvv__grid {
    grid-template-columns: 1fr;
  }

  .contact-methods__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .how-to__steps,
  .contact-methods__grid {
    grid-template-columns: 1fr;
  }

  .food-detail__info {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Single product page (rice.html / ragi.html)
   ========================================================================== */

.product-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 90% 8%, rgba(90, 179, 119, 0.22), transparent 46%),
    radial-gradient(circle at 6% 88%, rgba(255, 201, 60, 0.15), transparent 42%),
    linear-gradient(180deg, #eef4ef 0%, var(--cream) 48%, #fff8ec 100%);
  overflow: hidden;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.product-hero__text {
  max-width: 32rem;
}

.product-hero__text h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
}

.product-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
}

.product-hero__pill::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.product-hero__visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  display: block;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(31, 42, 36, 0.12);
  /* Square frame with rounded corners; aspect-ratio keeps height in sync with width */
  aspect-ratio: 1 / 1;
}

.product-hero__visual--idly { background: linear-gradient(135deg, #fff8ec 0%, #fde9b8 100%); }
.product-hero__visual--dosa { background: linear-gradient(135deg, #fff3e0 0%, #fcd098 100%); }

.product-hero__visual .card__item {
  position: relative;
  z-index: 2;
  transform: scale(1.3);
}

.product-hero__visual--idly .card__item--idly { gap: 14px; }
.product-hero__visual--idly .card__item--idly span { width: 56px; height: 56px; }
.product-hero__visual--idly .card__item--idly span:nth-child(2) { width: 64px; height: 64px; }

.product-hero__visual--dosa .card__item--dosa {
  width: 150px;
  height: 82px;
}

/* Floating price / QR hint tag */

.product-hero__badge {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  box-shadow: 0 10px 24px rgba(46, 125, 78, 0.3);
  transform: rotate(-10deg);
}

/* Product details grid (facts) */

.product-info {
  padding: var(--space-section) 0;
  background:
    linear-gradient(95deg, rgba(234, 245, 238, 0.35) 0%, #ffffff 45%, rgba(255, 248, 236, 0.3) 100%);
}

.product-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-info__card {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-info__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-info__card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.product-info__card span {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

/* Packaging gallery (product pouch photos) */

.product-pack {
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(234, 245, 238, 0.45), transparent 52%),
    linear-gradient(180deg, #faf9f6 0%, #f5faf6 100%);
}

.product-pack__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
  align-items: start;
}

.product-pack__figure {
  margin: 0;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.product-pack__figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.product-pack__figure figcaption {
  margin: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .product-pack__grid {
    grid-template-columns: 1fr;
  }
}

/* Ragi page — extra narrative & tips */

.product-prose {
  padding: var(--space-section) 0;
  background:
    radial-gradient(circle at 12% 40%, rgba(90, 179, 119, 0.08), transparent 45%),
    radial-gradient(circle at 92% 20%, rgba(255, 201, 60, 0.09), transparent 40%),
    linear-gradient(180deg, #fff9ef 0%, var(--cream) 100%);
}

.product-prose__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.product-prose__inner .eyebrow {
  margin-bottom: 0.5rem;
}

.product-prose__inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  line-height: 1.2;
}

.product-prose__lead {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.product-prose__inner > p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
}

.product-prose__bullets {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.product-prose__bullets li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
}

.product-prose__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 78, 0.2);
}

.product-info__hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
}

@media (min-width: 961px) {
  .product-info__grid--ragi .product-info__card--wide,
  .product-info__grid--rice .product-info__card--wide {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   Ragi spotlight — the 30% promise
   A high-emphasis section using the site's theme palette: green + yellow on
   warm cream. Bold comparison, nutrition stats and clean-eating promise.
   ========================================================================== */

.ragi-spotlight {
  position: relative;
  padding: var(--space-section) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 201, 60, 0.18), transparent 45%),
    radial-gradient(circle at 88% 90%, rgba(46, 125, 78, 0.10), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 248, 236, 0.65), transparent 60%),
    linear-gradient(180deg, var(--warm) 0%, var(--cream) 55%, var(--green-light) 100%);
  overflow: hidden;
}

.ragi-spotlight::before,
.ragi-spotlight::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ragi-spotlight::before {
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 201, 60, 0.35), transparent 70%);
  filter: blur(10px);
}

.ragi-spotlight::after {
  bottom: -160px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(90, 179, 119, 0.20), transparent 70%);
  filter: blur(12px);
}

.ragi-spotlight > .container {
  position: relative;
  z-index: 1;
}

.ragi-spotlight__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(31, 94, 57, 0.28);
}

.ragi-spotlight__ribbon-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 201, 60, 0.35);
}

.ragi-spotlight__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}

.ragi-spotlight__head .eyebrow {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.ragi-spotlight__head h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.85rem, 4.6vw, 2.75rem);
  line-height: 1.15;
  color: var(--ink);
}

.ragi-spotlight__mark {
  background-color: transparent;
  background-image: linear-gradient(120deg, rgba(255, 201, 60, 0.92) 0%, rgba(255, 201, 60, 0.7) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.7em;
  background-position: 0 82%;
  color: var(--ink);
  padding: 0 0.12em;
  border-radius: 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.ragi-spotlight__lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
}

.ragi-spotlight__lead strong {
  color: var(--ink);
}

.ragi-spotlight__lead em {
  font-style: italic;
  color: var(--green-dark);
  font-weight: 700;
}

/* --- Big comparison: 6% vs 30% --- */
.ragi-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

.ragi-compare__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ragi-compare__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ragi-compare__card--market {
  color: var(--muted);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(107, 120, 114, 0.06) 0,
      rgba(107, 120, 114, 0.06) 8px,
      transparent 8px,
      transparent 16px
    ),
    rgba(255, 255, 255, 0.65);
}

.ragi-compare__card--zeppin {
  position: relative;
  color: var(--cream);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 201, 60, 0.45), transparent 55%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  box-shadow: 0 18px 40px rgba(31, 94, 57, 0.28);
  transform: scale(1.04);
}

.ragi-compare__card--zeppin::before {
  content: "Zeppin";
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(31, 94, 57, 0.25);
}

.ragi-compare__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.ragi-compare__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ragi-compare__card--market .ragi-compare__num {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(107, 120, 114, 0.5);
  text-decoration-thickness: 4px;
}

.ragi-compare__card--zeppin .ragi-compare__num {
  color: var(--cream);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.ragi-compare__pct {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 0.05em;
}

.ragi-compare__sub {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.ragi-compare__card--zeppin .ragi-compare__sub {
  color: var(--cream);
  opacity: 0.9;
}

.ragi-compare__vs {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.ragi-spotlight__tagline {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--ink);
  margin: 0 auto 3rem;
  max-width: 52rem;
  line-height: 1.5;
}

.ragi-spotlight__tagline span {
  background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(255, 201, 60, 0.55) 8%, rgba(255, 201, 60, 0.55) 92%, transparent 92%);
  padding: 0 0.25em;
  border-radius: 0.25em;
}

/* --- Nutrition spotlight --- */
.ragi-nutri {
  background:
    radial-gradient(circle at 0% 0%, rgba(234, 245, 238, 0.85), transparent 55%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.ragi-nutri__head {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 2rem;
}

.ragi-nutri__head .eyebrow {
  color: var(--green-dark);
}

.ragi-nutri__head h3 {
  margin: 0.4rem 0 0.85rem;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 700;
}

.ragi-nutri__sub {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink-2);
}

.ragi-nutri__sub strong {
  color: var(--green-dark);
  background: var(--cream-dark);
  padding: 0.05em 0.4em;
  border-radius: 0.35em;
}

.ragi-nutri__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.ragi-nutri__card {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.2rem 1.35rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--green-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ragi-nutri__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--leaf);
}

.ragi-nutri__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green);
  color: var(--yellow);
  box-shadow: 0 6px 16px rgba(46, 125, 78, 0.25);
}

.ragi-nutri__icon svg {
  width: 24px;
  height: 24px;
}

.ragi-nutri__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ragi-nutri__num span {
  font-size: 0.58em;
  font-weight: 700;
  color: var(--green-dark);
  margin-left: 0.05em;
}

.ragi-nutri__name {
  display: block;
  margin: 0.65rem 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.ragi-nutri__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
}

/* --- Clean-eating promise --- */
.ragi-promise {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.75rem 1.85rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 201, 60, 0.18), transparent 60%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(31, 94, 57, 0.28);
  border: 1px solid rgba(255, 201, 60, 0.35);
}

.ragi-promise__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

.ragi-promise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.ragi-promise__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cream);
}

.ragi-promise__list li strong {
  color: var(--white);
  font-weight: 700;
}

.ragi-promise__tick {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 0 0 3px rgba(255, 201, 60, 0.25);
}

@media (max-width: 880px) {
  .ragi-compare {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }
  .ragi-compare__vs {
    justify-self: center;
  }
  .ragi-compare__card--zeppin {
    transform: none;
  }
  .ragi-nutri__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .ragi-nutri__grid {
    grid-template-columns: 1fr;
  }
  .ragi-promise {
    padding: 1.4rem 1.25rem;
  }
}

.product-pledge {
  padding: var(--space-section) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.35), transparent 50%),
    radial-gradient(circle at 100% 80%, rgba(255, 201, 60, 0.1), transparent 45%),
    linear-gradient(180deg, #e6f0ea 0%, var(--green-soft) 100%);
}

.product-pledge__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 52rem;
  margin-inline: auto;
}

.product-pledge__chips li {
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(46, 125, 78, 0.35);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
}

.product-tips {
  padding: var(--space-section) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf7 60%, #fdf9f2 100%);
}

.product-tips__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.product-tips__card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.product-tips__card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--green);
  font-family: var(--font-heading);
}

.product-tips__card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.65;
}

.product-tips__card a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 720px) {
  .product-tips__grid {
    grid-template-columns: 1fr;
  }
}

/* Also try (other batters) */

.also-try {
  padding: var(--space-section) 0;
  background: var(--green-soft);
}

.also-try__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.also-try__grid:has(> .food-card:only-child) {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

@media (max-width: 960px) {
  .product-hero__grid {
    grid-template-columns: 1fr;
  }

  .product-hero__visual {
    order: -1;
    max-width: 340px;
  }

  .product-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .also-try__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-info__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Foods — side-by-side product grid (top of foods.html)
   ========================================================================== */

.foods-grid {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 245, 238, 0.55), transparent 50%),
    radial-gradient(circle at 8% 80%, rgba(255, 201, 60, 0.08), transparent 42%),
    linear-gradient(180deg, #f2f7f3 0%, var(--cream) 100%);
}

.foods-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.food-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(46, 125, 78, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.food-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(46, 125, 78, 0.12);
}

.food-card__art {
  position: relative;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.food-card__art--idly { background: linear-gradient(135deg, #fff8ec 0%, #fde9b8 100%); }
.food-card__art--dosa { background: linear-gradient(135deg, #fff3e0 0%, #fcd098 100%); }

.food-card__art::before {
  content: "";
  position: absolute;
  inset: 14% 22%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(31, 42, 36, 0.08);
}

.food-card__art .card__item {
  position: relative;
  z-index: 2;
}

.food-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.food-card__tag {
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.food-card__body h3 {
  margin: 0.2rem 0 0.1rem;
  font-size: 1.35rem;
  color: var(--ink);
  font-family: var(--font-heading);
}

.food-card__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.food-card__facts {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.food-card__facts li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px dashed var(--line);
  font-size: 0.88rem;
}

.food-card__facts li:first-child {
  border-top: none;
  padding-top: 0;
}

.food-card__facts strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.food-card__facts span {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.food-card__cta {
  margin-top: auto;
  padding-top: 0;
}

.food-card__cta {
  margin-top: 1rem;
  align-self: stretch;
  width: 100%;
}

/* Responsive */

@media (max-width: 960px) {
  .foods-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .foods-grid__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Foods booking section (WhatsApp order flow)
   ========================================================================== */

.food-detail__cta {
  margin-top: 1.75rem;
  align-self: flex-start;
}

.book {
  padding: var(--space-section) 0;
  background: var(--cream);
  scroll-margin-top: 5.5rem;
}

.book__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}

.book__subhead {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-heading);
}

/* Product row */

.book__products {
  display: grid;
  gap: 1rem;
}

.book__product {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.book__product.is-active {
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(46, 125, 78, 0.12);
}

.book__product-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
}

.book__product-art--idly { background: linear-gradient(135deg, #fff8ec 0%, #fde9b8 100%); }
.book__product-art--dosa { background: linear-gradient(135deg, #fff3e0 0%, #fcd098 100%); }

.book__product-art::before {
  content: "";
  position: absolute;
  inset: 15%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.book__product-art .card__item {
  position: relative;
  z-index: 1;
  transform: scale(0.75);
}

.book__product-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.book__product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.book__product-head h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink);
  font-family: var(--font-heading);
}

.book__product-tag {
  padding: 0.3rem 0.75rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book__product-body > p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.book__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

/* Size picker — segmented */

.book__size {
  display: inline-flex;
  padding: 3px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.book__size label {
  position: relative;
  cursor: pointer;
}

.book__size input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.book__size span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-2);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.book__size input:checked + span {
  background: var(--green);
  color: var(--white);
}

.book__size label:hover span {
  color: var(--green-dark);
}

.book__size input:checked + span:hover {
  color: var(--white);
}

/* Quantity stepper */

.book__qty {
  display: inline-flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.book__qty-btn {
  width: 36px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  transition: background 0.15s var(--ease);
}

.book__qty-btn:hover {
  background: var(--green-light);
}

.book__qty-btn:disabled {
  color: var(--gray-500, #a0a8a4);
  cursor: not-allowed;
}

.book__qty-input {
  width: 46px;
  padding: 0.4rem 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  -moz-appearance: textfield;
}

.book__qty-input::-webkit-outer-spin-button,
.book__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.book__qty-input:focus {
  outline: none;
  background: var(--green-light);
}

/* Summary / right column */

.book__summary {
  position: sticky;
  top: 6rem;
}

.book__summary-inner {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1rem;
}

.book__summary-inner .field {
  gap: 0.35rem;
}

.book__summary-inner .field input,
.book__summary-inner .field textarea {
  padding: 0.7rem 0.9rem;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.book__summary-inner .field input:focus,
.book__summary-inner .field textarea:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 125, 78, 0.12);
}

.book__review {
  margin-top: 0.5rem;
  padding: 1.25rem;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--green);
}

.book__review h4 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-family: var(--font-heading);
}

.book__review-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  display: grid;
  gap: 0.5rem;
}

.book__review-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink);
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(46, 125, 78, 0.25);
}

.book__review-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.book__review-list li strong {
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

.book__review-empty {
  color: var(--muted) !important;
  font-style: italic;
  justify-content: flex-start !important;
  border: none !important;
}

.book__review-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1.5px solid var(--green);
  font-family: var(--font-heading);
  color: var(--ink);
}

.book__review-total span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
}

.book__review-total strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* WhatsApp button */

.btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #1ea952;
  border-color: #1ea952;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.38);
}

.btn--whatsapp:disabled {
  background: var(--line);
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.book__disclaimer {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

/* Shake on empty-submit */

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.book__review.is-error {
  animation: shake 0.4s var(--ease);
  border-color: #d44;
  background: #fff4f4;
}

/* Responsive */

@media (max-width: 960px) {
  .book__grid {
    grid-template-columns: 1fr;
  }

  .book__summary {
    position: static;
  }
}

@media (max-width: 560px) {
  .book__product {
    grid-template-columns: 1fr;
  }

  .book__product-art {
    max-width: 100px;
    margin-inline: auto;
  }

  .book__controls {
    justify-content: space-between;
  }
}

/* ==========================================================================
   Two-step booking flow (new simplified layout + popup modal)
   ========================================================================== */

.book-flow {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.book-flow .book__products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.book-flow__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.book-flow__actions .btn {
  width: 100%;
  justify-content: center;
}

.book-flow__hint {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Modal */

.book-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.book-modal[hidden] {
  display: none;
}

.book-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.book-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 28, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.book-modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 760px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(20, 40, 28, 0.25);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s var(--ease);
}

.book-modal.is-open .book-modal__panel {
  transform: translateY(0) scale(1);
}

.book-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 2;
}

.book-modal__close:hover {
  background: var(--green-light);
  transform: rotate(90deg);
}

.book-modal__head {
  text-align: center;
  margin: 0 0 1.25rem;
}

.book-modal__head .eyebrow {
  margin: 0 0 0.5rem;
}

.book-modal__head h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-family: var(--font-heading);
}

.book-modal__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.book-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.book-modal__form .field input,
.book-modal__form .field textarea {
  padding: 0.7rem 0.9rem;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.book-modal__form .field input:focus,
.book-modal__form .field textarea:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 125, 78, 0.12);
  outline: none;
}

.book-modal .book__review {
  margin: 0;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 560px) {
  .book-modal {
    padding: 0.5rem;
    align-items: flex-end;
  }

  .book-modal__panel {
    max-height: 94vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .book-modal.is-open .book-modal__panel {
    transform: translateY(0);
  }
}

/* ==========================================================================
   Real product imagery (user-supplied) — replaces CSS-drawn decorations
   Drop files into /images and the <img> tags in HTML will render here.
   ========================================================================== */

.hero__visual,
.story__art,
.card__art,
.book__product-art,
.food-card__art,
.product-hero__visual {
  overflow: hidden;
}

.hero__visual > img,
.story__art > img,
.card__art > img,
.book__product-art > img,
.food-card__art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  z-index: 1;
}

/* Product hero: in-flow image so the frame keeps intrinsic height (abspos-only children + align-items:center collapsed the frame). */
.product-hero__visual > img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  z-index: 1;
}

.hero__visual > img {
  position: relative;
  inset: auto;
  max-width: 100%;
  max-height: 460px;
  border-radius: var(--radius-lg, 24px);
  box-shadow: var(--shadow-lg);
}

/* Ensure overlays stay on top of the image */
.story__quote,
.product-hero__badge {
  z-index: 3;
}

/* Floating WhatsApp chat button */
.insta-widget {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(max(1rem, env(safe-area-inset-bottom, 0px)) + 4.25rem);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 10%, #fd5949 40%, #d6249f 65%, #285aeb 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insta-widget__label {
  position: absolute;
  right: calc(100% + 0.55rem);
  white-space: nowrap;
  background: rgba(31, 42, 36, 0.92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.38rem 0.55rem;
  border-radius: 0.5rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.insta-widget:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.5), 0 3px 8px rgba(0, 0, 0, 0.15);
}

.insta-widget:focus-visible {
  outline: 3px solid var(--color-primary, #2e7d4e);
  outline-offset: 3px;
}

.wa-widget {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-widget:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55), 0 3px 8px rgba(0, 0, 0, 0.15);
}

.wa-widget:focus-visible {
  outline: 3px solid var(--color-primary, #2e7d4e);
  outline-offset: 3px;
}

/* Mobile bottom call CTA */
.mobile-call-cta {
  display: none;
}

@media (max-width: 720px) {
  .mobile-call-cta {
    position: fixed;
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--color-primary, #2e7d4e);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .mobile-call-cta:hover {
    background: var(--color-primary-dark, #1f5f39);
    color: #fff;
  }

  .mobile-call-cta:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
  }

  .wa-widget {
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom, 0px)) + 3.75rem);
  }

  .insta-widget {
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom, 0px)) + 8rem);
  }

  .insta-widget__label {
    display: inline-block;
    right: calc(100% + 0.45rem);
    font-size: 0.7rem;
    padding: 0.34rem 0.5rem;
  }
}

.contact-form-status {
  margin-bottom: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  font-weight: 700;
}

.contact-form-status.is-success {
  color: #175e38;
  background: #e5f7ee;
  border: 1px solid #7ed7a7;
}

.contact-form-status.is-error {
  color: #8d1d1d;
  background: #fdeaea;
  border: 1px solid #f3b0b0;
}


.ragi-spotlight__tagline {
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    color: #1f2c24;
    max-width: 900px;
    margin: 0 auto;
}

.ragi-spotlight__tagline span {
    display: inline-block;
    background: #f4d35e;
    padding: 0 6px;
    border-radius: 4px;
    margin: 0 2px;
}

@media (max-width: 768px) {

    .ragi-spotlight__tagline {
        font-size: 1.3rem;
        line-height: 1.7;
        padding: 0 15px;
    }

    .ragi-spotlight__tagline span {
        margin-bottom: 6px;
    }

}
