/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep: #1f6b04;
  --green-primary: #2e7d0e;
  --green-dark-text: #1f5c08;
  --green-light-bg: #eef3df;
  --cream-bg: #f7f8f0;
  --red-accent: #8c0000;
  --text-dark: #232323;
  --text-gray: #5b5b5b;
  --gold: #f5a623;
  --border-green: #cfe0bd;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .btn, .main-nav a, .hero-eyebrow, .hero-subtitle {
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

svg {
  width: 100%;
  height: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border-radius:10px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--green-deep);
}

.btn-outline {
  background: transparent;
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-primary);
  color: #fff;
}

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

.btn-light:hover {
  background: var(--green-light-bg);
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--green-deep);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.icon-truck {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== Header ===== */
.site-header {
  background: #f8fbf2;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

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

.logo img {
  /* height: 48px; */
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-primary);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--green-primary);
}

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

.cart-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}

.cart-icon svg {
  width: 19px;
  height: 19px;
}

/* ===== Hero ===== */
.hero {
  /* background: linear-gradient(135deg, #eef3df 0%, #f8f9f2 45%, #ffffff 100%); */
  background: url(../images/banner.png) center no-repeat; background-size: cover;
  padding: 40px 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns:1fr 1.3fr 0.70fr;
  /* gap: 20px; */
  align-items: center;
}

.hero-eyebrow {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hero-title {
  font-size:70px;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1.1;
}

.hero-title sup {
  font-size: 20px;
  top: -1.6em;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.hero-hindi {
  font-size: 32px;
  font-weight: 700;
  color: var(--red-accent);
  line-height: 1.35;
  margin-bottom: 18px;
}

.hero-checklist {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-checklist svg {
  width: 18px;
  height: 18px;
  color: var(--green-primary);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  /* max-width: 380px; */
}

.hero-info-card {
  background: #f1f4e6;
  border-radius: var(--radius-lg);
  padding: 22px 22px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--border-green);
}

.hero-info-card h3 {
  text-align: center;
  color: var(--green-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.35;
}

.condition-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0; border-bottom: 2px solid var(--border-green);
}
.condition-row:last-child{border: 0px;}
.condition-row img {
  /* width: 56px;
  height: 56px; */
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.condition-row strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.condition-row p {
  font-size:16px;
  color: var(--text-gray);
  line-height: 1.4;
}

/* ===== Features Bar ===== */
.features-bar {
  background: var(--cream-bg);
  padding: 18px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon--filled {
  color: var(--green-primary);
}

.feature-item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-item .feature-sub {
  font-size: 13px;
  color: var(--text-gray);
}

/* ===== Why Choose ===== */
.why-choose {
  background-color: #f1f3e4;
  overflow: hidden;
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr 0.95fr;
  /* gap: 30px; */
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.why-choose-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.why-choose-content h2 span {
  color: var(--green-primary);
}

.why-choose-content > p {
  font-size: 14.5px;
  color: var(--text-gray);
  max-width: 480px;
  margin-bottom: 26px;
  line-height: 1.6;
}

.why-choose-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.point {
  display: flex; text-align: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.point-icon {
  width: 56px;
  height: 56px; margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--green-primary); background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}

.point-icon svg {
  width:36px;
  height:36px;
}

.point p {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.4;
}

.why-choose-jar img {
  width: 100%;
}

/* ===== Ingredients ===== */
.ingredients {
  background: var(--cream-bg);
  padding: 56px 0;
  text-align: center;
}

.ingredients h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.ingredient img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--green-primary);
}

.ingredient strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.ingredient p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.45;
}

/* ===== How to Use ===== */
.how-to-use {
  background: linear-gradient(135deg, #eef3df 0%, #f8f9f2 60%);
  padding: 56px 0;
}

.how-to-use-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.how-to-use-steps h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 30px;
}

.steps-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step-circle {
  position: relative;
  width:100px;
  height:100px;
  border-radius: 50%;
  border: 2px solid var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 12px;
  background: #fff;
}

.step-circle svg {
  width:40px;
  height:40px;
}

.step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width:28px;
  height:28px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  font-size:14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.4;
}

.how-to-use-banner {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding:24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.how-to-use-banner p {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.how-to-use-banner svg {
  width: 30px;
  height: 30px;
  color: #fff;
  flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials {background-color: #ebf0d6;
  padding: 56px 0 40px;
  text-align: center;
}

.testimonials h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 30px;
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: stretch;
  text-align: left;
}

.testimonial-cards {
  display: flex;
  grid-template-columns: repeat(3, 1fr); align-items: center;
  gap: 18px;
}

.testimonial-card {
  background:#f8f9f1;
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.testimonial-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-head strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.testimonial-badge {
  /* background: var(--cream-bg);
  border-radius: var(--radius-lg); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /*padding: 20px; */
  text-align: center;
}

.testimonial-badge img {
  /* width: 96px;
  height: 96px; */
}

.testimonial-badge span {
  font-size: 12px;
  color: var(--text-gray);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-green);
}

.dot.active {
  background: var(--green-primary);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--green-deep), #2e8a0a);
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.cta-image img {
  width: 100%;
}
.cta-content{text-align:center;}
.cta-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 18px;
  max-width: 380px;
}

.cta-points {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cta-point {
  display: flex; flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.cta-point span {
  width:64px;
  height:64px;
  border-radius: 50%;
  border:2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-point svg {
  width:36px;
  height:36px;
}

.cta-point p {
  font-size:15px;
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--cream-bg);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
}

.footer-about p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13.5px;
  color: var(--text-gray);
}

.footer-col ul li a:hover {
  color: var(--green-primary);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-list svg {
  width: 15px;
  height: 15px;
  color: var(--green-primary);
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.secure-payment-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  position: relative;
}

.payment-icons {
  height: 22px;
  width: auto;
}

.footer-bottom {
  background: var(--green-deep);
  padding: 14px 0;
}

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

.footer-bottom-inner p {
  font-size: 12.5px;
  color: #fff;
}

.footer-bottom-inner a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-info-card {
    grid-column: span 2;
  }

  .why-choose-inner {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-jar {
    grid-column: span 2;
    max-width: 320px;
    margin: 0 auto;
  }

  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 18px;
  }

  .testimonials-inner {
    grid-template-columns: 1fr;
  }

  .testimonial-badge {
    flex-direction: column;
    justify-content: center;
  }

  .cta-inner {
    grid-template-columns: 1fr; padding: 30px 10px;
    text-align: center;
  }
  .cta-content p {
    margin: 0 auto 18px;
  }

  .cta-image {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr; gap: 20px;
    text-align: center;
  }

  .hero-checklist li {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-info-card {
    grid-column: span 1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }

  .why-choose-inner {padding-top: 30px;
    grid-template-columns: 1fr; gap: 20px;
    text-align: center;
  }

  .why-choose-jar {
    grid-column: span 1;
    order: 3;
  }

  .why-choose-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .point {
    align-items: center;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-to-use-inner {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr; flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-hindi {
    font-size: 22px;
  }

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

  .why-choose-points {
    grid-template-columns: 1fr 1fr;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ===== Buy Now Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.modal-overlay.active {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: none;
  background: var(--green-light-bg);
  color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 13.5px;
  color: var(--text-gray);
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-green);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-primary);
}

.modal-submit {
  width: 100%;
  border: none;
}

.modal-message {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}

.modal-message.success {
  color: var(--green-primary);
}

.modal-message.error {
  color: var(--red-accent);
}
