/* =========================================================
   Mother Care Panjeeri — stylesheet
   Palette: cream, soft green, golden, dark green
   ========================================================= */

:root {
  --cream: #FBF5E8;
  --cream-dark: #F1E6CC;
  --green-deep: #1F3A2C;
  --green-mid: #5C8768;
  --gold: #E0AE45;
  --gold-dark: #B8842A;
  --ink: #2B2417;
  --ink-soft: #5B5342;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 26px;
  --shadow: 0 14px 34px -18px rgba(31, 58, 44, 0.35);
  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: var(--radius-s);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-whatsapp {
  background: var(--green-deep);
  color: var(--white);
}
.btn-whatsapp:hover { background: #16281d; }

.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; margin-top: 6px; }
.btn-block { width: 100%; justify-content: center; margin-top: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 232, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(31, 58, 44, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--green-deep);
}
.brand-tag { font-size: 0.72rem; color: var(--gold-dark); }

.main-nav ul {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--green-deep);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { border-color: var(--gold); }

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

.header-whatsapp span { display: inline; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(31,58,44,0.2);
  border-radius: var(--radius-s);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--green-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-label {
  font-size: 0.95rem;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.hero-copy h1 span { color: var(--gold-dark); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-desc { max-width: 46ch; }

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}
.trust-points li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  padding-left: 22px;
  position: relative;
}
.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-art {
  animation: floatIn 0.9s ease both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-tint { background: var(--cream-dark); }

.section-head {
  max-width: 60ch;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-head p { font-size: 1.02rem; }

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(31,58,44,0.1);
  border-radius: var(--radius-l);
  padding: 28px;
}
.product-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
}

.product-art {
  width: 140px;
  margin: 0 auto 18px;
}

.product-card h3 { font-size: 1.25rem; text-align: center; }
.product-desc { text-align: center; min-height: 3em; }
.product-price {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin: 6px 0 0;
}

.delivery-note {
  text-align: center;
  margin-top: 36px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--cream-dark);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Why choose us / feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 10px;
}
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(31,58,44,0.1);
}
.feature-card h3 { font-size: 1.05rem; }
.feature-card p { font-size: 0.92rem; }

/* ---------- Benefits ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit-card {
  background: var(--white);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-s);
  padding: 22px 20px;
}
.benefit-card h3 { font-size: 1.02rem; }
.benefit-card p { font-size: 0.9rem; margin: 0; }

.medical-note {
  margin-top: 30px;
  font-size: 0.85rem;
  text-align: center;
  color: var(--ink-soft);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- How to order / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.about-art { max-width: 220px; margin: 0 auto; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-deep);
  color: var(--white);
  padding: 64px 0;
}
.cta-band-inner { text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #d9e3da; max-width: 50ch; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #16281d;
  color: #cfe0d2;
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; gap: 12px; align-items: flex-start; }
.footer-name { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; margin: 0; }
.footer-tag { color: var(--gold); font-size: 0.8rem; margin: 2px 0 0; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.footer-col p { margin: 0 0 8px; font-size: 0.9rem; color: #b9cbbc; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 18px 24px;
  font-size: 0.82rem;
  color: #8fa691;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-art { order: -1; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(31,58,44,0.1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 18px 24px 26px;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(31,58,44,0.08);
  }
  .hamburger { display: flex; }
  .header-whatsapp span { display: none; }
  .header-whatsapp { padding: 11px; }
  .feature-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Legal Pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 70px 24px 90px; }
.legal h1 { font-size: 2rem; }
.legal h2 { font-size: 1.2rem; margin-top: 1.8em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal ul li { margin-bottom: 0.4em; }
.back-link { display: inline-block; margin-bottom: 24px; font-weight: 700; color: var(--green-deep); }

/* ---------- Hero Pricing Badge ---------- */
.hero-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-dark);
  border: 1px solid rgba(224, 174, 69, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.hero-pricing-badge span { color: var(--gold-dark); font-weight: 800; }

/* ---------- What's Inside ---------- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid rgba(31,58,44,0.08);
  border-radius: var(--radius-m);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.ingredient-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
}
.ingredient-card h3 { font-size: 1.02rem; margin: 0 0 2px; }
.ingredient-card p { font-size: 0.85rem; margin: 0; color: var(--ink-soft); }

/* ---------- Packaging Showcase ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(31,58,44,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  text-align: center;
  padding-bottom: 16px;
}
.gallery-card svg, .gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream-dark);
}
.gallery-card h3 { font-size: 1.05rem; margin: 14px 12px 4px; }
.gallery-card p { font-size: 0.88rem; margin: 0 12px; color: var(--ink-soft); }

/* ---------- Delivery Info ---------- */
.delivery-box {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.delivery-box h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 10px; }
.delivery-box p { color: #d0ded3; margin-bottom: 12px; }
.delivery-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-m);
  padding: 20px;
}
.delivery-item h4 { color: var(--white); font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 6px; }
.delivery-item p { margin: 0; font-size: 0.92rem; color: #e2ede4; }

/* ---------- Real Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(31,58,44,0.1);
  border-radius: var(--radius-m);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-rating { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 0.93rem; color: var(--ink); font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--green-deep); }
.review-loc { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- FAQ Section ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(31,58,44,0.1);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--green-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}
.faq-item.is-active .faq-question::after {
  content: "−";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-item.is-active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq-answer p { margin: 0; font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- Social Icons ---------- */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: background 0.15s ease, color 0.15s ease;
}
.social-link:hover {
  background: var(--gold);
  color: var(--green-deep);
}

@media (max-width: 980px) {
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .delivery-box { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ingredients-grid { grid-template-columns: 1fr; }
}


