:root {
  color-scheme: light;
  --bg: #f3efe6;
  --text: #1b1f17;
  --muted: #6a685f;
  --accent: #6b7a3b;
  --accent-2: #c27b5a;
  --card: #fffaf2;
  --shadow: 0 24px 60px rgba(22, 24, 16, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%, #ece5d9 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding-bottom: 120px;
}

html {
  scroll-padding-top: 35px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 40, 30, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 140px;
  height: 90px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.header-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  flex-wrap: wrap;
}

.header-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-nav a:hover {
  background: rgba(107, 122, 59, 0.12);
  color: var(--accent);
}

.whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22b858, #1c9f4c);
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 26px rgba(28, 159, 76, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(28, 159, 76, 0.4);
}

.hero {
  padding: 40px 6vw 0;
}

.carousel {
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  padding: 48px clamp(24px, 4vw, 60px);
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 241, 230, 0.9), rgba(246, 241, 230, 0.35));
}

.slide-content {
  position: relative;
  max-width: 520px;
}

.slide-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 12px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}

.lead {
  color: var(--muted);
  max-width: 520px;
}

.slide-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
}

.amazon-btn {
  background: #ffd814;
  color: #1b1f17;
  border-color: #f7c51a;
  font-weight: 700;
}

.amazon-btn:hover {
  background: #f7c51a;
}

.amazon-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #131a22;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-buy {
  background: #25d366;
  color: #ffffff;
  border-color: #1eb955;
  font-weight: 700;
}

.whatsapp-buy:hover {
  background: #1eb955;
}

.whatsapp-buy-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0b3b1c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.share-btn {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
  gap: 8px;
}

.share-btn:hover {
  background: rgba(107, 122, 59, 0.12);
}

.share-icon {
  font-size: 1rem;
  line-height: 1;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px;
  background: #fdfbf7;
}

.control {
  border: none;
  background: rgba(107, 122, 59, 0.12);
  color: var(--accent);
  font-size: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 81, 50, 0.3);
  cursor: pointer;
}

.dot.is-active {
  background: var(--accent);
}

section {
  padding: 64px 6vw 0;
  scroll-margin-top: 35px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin: 0;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 28px;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin: 10px 0 16px;
}

.about-content p {
  color: var(--muted);
  margin: 0 0 14px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 122, 59, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  gap: 6px;
}

.pill-icon {
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.stat-card {
  background: #eef4ea;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.product-carousel {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-track {
  display: flex;
  transition: transform 0.6s ease;
}

.product-card {
  background: var(--card);
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 28px;
  align-items: start;
}

.product-media {
  background: linear-gradient(145deg, #f1f0e6, #ffffff);
  padding: 24px;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 18px;
}

.product-gallery {
  width: 100%;
  display: grid;
  gap: 12px;
}

.gallery-main {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  gap: 10px;
  justify-content: start;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-thumb {
  border: 1px solid rgba(27, 31, 23, 0.12);
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  cursor: pointer;
}

.gallery-thumb img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 8px 16px rgba(20, 30, 20, 0.12);
}

.product-media img {
  width: min(260px, 80%);
  height: auto;
}

.product-badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-badges span {
  background: rgba(107, 122, 59, 0.15);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-info {
  display: grid;
  align-content: start;
  gap: 12px;
}

.product-info h3 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin-top: 0;
}

.product-tagline {
  color: var(--muted);
  margin-top: 6px;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 8px;
}

.product-meta li {
  padding-left: 22px;
  position: relative;
}

.product-meta li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.product-detail-block {
  background: #f5f1e6;
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.product-detail-block h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.product-detail-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.price-block {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old {
  color: #7c7367;
  text-decoration: line-through;
  font-size: 1.1rem;
  font-weight: 600;
}

.price-current {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1b1f17;
}

.price-note {
  color: #7c7367;
  font-weight: 600;
}

.price-save {
  color: #c33a2b;
  font-weight: 700;
}

.product-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px;
  background: #fdfbf7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
}

.benefit-header {
  text-align: center;
  margin-bottom: 28px;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 122, 59, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 12px 0 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #e8f3e6;
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
}

.benefit-card h3 {
  margin: 8px 0;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.recipe-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.recipe-image {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
}

.recipe-card h3 {
  margin: 8px 0 0;
}

.recipe-card ul,
.recipe-card ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.recipe-card p {
  margin: 0;
  color: var(--muted);
}

.newsletter-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, var(--accent), #4a5a2f);
  color: #fff;
  padding: 32px;
  border-radius: 26px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  min-width: 220px;
}

.newsletter-form button {
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #4f3b18;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-message {
  margin: 8px 0 0;
  color: #ffffff;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.map-embed {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(107, 122, 59, 0.14);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover .social-icon {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.social-link:hover {
  color: #243018;
}

.sticky-footer {
  position: static;
  width: 100%;
  background: rgba(24, 26, 18, 0.92);
  color: #f8f5ef;
  padding: 18px 6vw;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f8f5ef;
  border-radius: 10px;
  padding: 4px;
}

.footer-fssai {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 12px;
}

.footer-fssai img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px;
}

.footer-fssai span {
  display: block;
  font-size: 0.7rem;
  color: #e2decf;
}

.footer-fssai strong {
  display: block;
  font-size: 0.9rem;
}

.footer-gstin {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 12px;
  color: #f3efe2;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 14px;
  font-weight: 600;
}

.footer-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #1f1a10;
  font-weight: 700;
}

.footer-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 12px;
  color: #f3efe2;
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 120px;
  background: transparent;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.floating-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}

.whatsapp-svg {
  width: 56px;
  height: 56px;
  display: block;
}

.floating-top {
  position: fixed;
  right: 20px;
  bottom: 70px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1b1f17;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-top:hover {
  background: #2a2f24;
}

.floating-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    flex-wrap: wrap;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 220px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-nav {
    gap: 12px;
  }

  .brand-logo {
    width: 120px;
    height: 80px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 420px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .whatsapp-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .carousel-controls {
    flex-direction: column;
  }

  .newsletter-card {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  section {
    padding: 48px 6vw 0;
  }

  .slide {
    padding: 36px 6vw;
    min-height: 360px;
  }

  .slide::before {
    background: linear-gradient(180deg, rgba(246, 241, 230, 0.9), rgba(246, 241, 230, 0.55));
  }

  .gallery-main {
    height: 220px;
  }

  .gallery-thumb img {
    width: 96px;
    height: 96px;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .product-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .product-cta .btn {
    width: 100%;
  }

  .brand-logo {
    width: 110px;
    height: 70px;
  }

  .header-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .product-controls {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 16px 5vw;
  }

  .slide {
    padding: 28px 5vw;
    min-height: 320px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .hero,
  section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .product-media {
    padding: 16px;
  }

  .gallery-main {
    height: 200px;
  }

  .gallery-thumb img {
    width: 72px;
    height: 72px;
  }

  .price-label {
    width: 100%;
    justify-content: space-between;
  }
}
