/* Nature's Balance - Women Wellness */
:root {
  --pink-light: #f8e8ec;
  --pink: #e8c4cf;
  --pink-deep: #d4a0b0;
  --burgundy: #6b1e3a;
  --burgundy-dark: #4a1228;
  --gold: #c9a227;
  --gold-light: #e8d48a;
  --cream: #fff9fa;
  --white: #ffffff;
  --text: #3d2030;
  --text-muted: #6b4a58;
  --shadow: 0 8px 32px rgba(107, 30, 58, 0.12);
  --shadow-lg: 0 20px 60px rgba(107, 30, 58, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-guj: "Noto Sans Gujarati", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --header-h: 56px;
  --mobile-bar-h: 56px;
  --section-y: 1.15rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-guj);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--mobile-bar-h);
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 30, 58, 0.08);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--burgundy);
  font-size: clamp(0.9rem, 3.5vw, 1.05rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.header-cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-guj);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 20px rgba(107, 30, 58, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(107, 30, 58, 0.45);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a8841a 100%);
  color: var(--burgundy-dark);
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 0.75rem 0 1rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(232, 196, 207, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    var(--cream);
}

.hero-grid {
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(40px);
}

.hero-img {
  position: relative;
  z-index: 1;
  max-height: 420px;
  width: auto;
  margin-inline: auto;
  filter: drop-shadow(0 20px 40px rgba(74, 18, 40, 0.2));
}

.badge-ayurvedic {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: var(--shadow);
}

.hero-content {
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  margin-bottom: 0.4rem;
}

.title-serif {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.15;
}

.title-sub {
  display: block;
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.hero-pills li {
  background: var(--white);
  border: 1px solid var(--pink);
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* How to use */
.usage {
  padding: 0.5rem 0 var(--section-y);
}

.usage-box {
  max-width: 520px;
  margin-inline: auto;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  border: 2px solid rgba(107, 30, 58, 0.15);
  background: linear-gradient(145deg, var(--white) 0%, var(--pink-light) 100%);
  box-shadow: var(--shadow);
}

.usage-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.usage-box__icon {
  font-size: 1.5rem;
}

.usage-box__head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  color: var(--burgundy);
  font-weight: 700;
}

.usage-steps {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.usage-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  border: 1px solid var(--pink);
}

.usage-check {
  flex-shrink: 0;
  font-size: 1rem;
}

.usage-steps strong {
  color: var(--burgundy);
  font-weight: 700;
}

.usage-time {
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(107, 30, 58, 0.2);
}

.usage-time__label {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.usage-time__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.usage-time__card {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(107, 30, 58, 0.22);
}

.usage-time__emoji {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.usage-time__card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.usage-time__or {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

@media (min-width: 480px) {
  .usage-time__grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .usage-time__card {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }

  .usage-time__or {
    align-self: center;
  }
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--burgundy);
  margin-bottom: 0.35rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-head.light h2,
.section-head.light p {
  color: var(--white);
}

/* Solutions */
.solutions {
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
}

.solution-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
}

.solution-grid li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid rgba(107, 30, 58, 0.1);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(107, 30, 58, 0.06);
}

.solution-grid .check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* Benefits */
.benefits {
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.25s, background 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.benefit-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.benefit-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Ingredients */
.ingredients {
  background: var(--white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.ingredient-card {
  background: linear-gradient(145deg, var(--cream) 0%, var(--pink-light) 100%);
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ingredient-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.ingredient-card h3 {
  color: var(--burgundy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.ingredient-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Life stages */
.life-stages {
  background: linear-gradient(90deg, var(--gold-light) 0%, #f5e6b8 50%, var(--gold-light) 100%);
}

.stages-title {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--burgundy-dark);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  margin-bottom: 0.65rem;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.stage-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(107, 30, 58, 0.08);
}

.stage-item span {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.2rem;
}

.stage-item p {
  font-weight: 600;
  color: var(--burgundy);
  font-size: 0.9rem;
}

/* Quality */
.quality {
  background: var(--burgundy);
  color: var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.q-icon {
  font-size: 1.5rem;
}

.quality-item p {
  font-size: 0.88rem;
  font-weight: 500;
}

.usage-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-light);
  opacity: 0.9;
}

/* CTA band */
.cta-band {
  background: var(--pink-light);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  color: var(--burgundy);
  font-size: clamp(1.3rem, 4vw, 1.75rem);
}

.cta-inner p {
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--burgundy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 0 calc(0.85rem + var(--mobile-bar-h));
  text-align: center;
}

.footer-brand {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-strip {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 249, 250, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(107, 30, 58, 0.12);
  box-shadow: 0 -4px 24px rgba(107, 30, 58, 0.1);
  height: var(--mobile-bar-h);
}

.mobile-bar p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-bar .btn {
  flex-shrink: 0;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 18, 40, 0.55);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-light) 100%);
  border-radius: 24px 24px 0 0;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: 0 -8px 48px rgba(107, 30, 58, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.modal-overlay.is-open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--pink-light);
  color: var(--burgundy);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--pink);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.modal-icon {
  display: inline-block;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-header h2 {
  font-family: var(--font-serif);
  color: var(--burgundy);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Form */
.order-form .form-group {
  margin-bottom: 1rem;
}

.order-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.35rem;
}

.req {
  color: #c0392b;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  font-family: var(--font-guj);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--pink);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107, 30, 58, 0.12);
}

.order-form input.error,
.order-form textarea.error {
  border-color: #c0392b;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-guj);
  font-weight: 700;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(107, 30, 58, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(107, 30, 58, 0.45);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

.form-error {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.35);
  color: #a93226;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, #a8841a 100%);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  color: var(--burgundy);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Desktop */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-desc,
  .hero-pills {
    margin-inline: 0;
  }

  .hero-pills {
    justify-content: flex-start;
  }

  .hero-img {
    max-height: 520px;
  }

  .stages-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .quality-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .modal-overlay {
    align-items: center;
    padding: 1rem;
  }

  .modal-panel {
    border-radius: var(--radius);
    max-height: 88vh;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }

  .modal-overlay.is-open .modal-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-y: 1.75rem;
  }

  .hero {
    padding: 1rem 0 1.5rem;
  }
}
