:root {
  --green: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --cream: #faf7f2;
  --dark: #1a2e1f;
  --text: #2c3e30;
  --muted: #6b7f6e;
  --white: #ffffff;
  --border: rgba(45, 106, 79, 0.15);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo .logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-consultation {
  background: transparent;
  color: var(--green);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--green);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.nav-consultation:hover {
  background: var(--green-pale);
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--dark);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 50px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.cart-button:hover {
  background: var(--green-pale);
}

.cart-badge {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 6px;
}

.cart-modal {
  max-width: 520px;
}

.cart-summary {
  margin-bottom: 24px;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.cart-item-name {
  font-weight: 700;
  color: var(--dark);
}

.cart-item-meta {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.cart-item-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.outline-btn.small {
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 12px;
}

.cart-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}

.empty-cart {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--green);
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo .logo-img {
    height: 50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-buttons {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
  }

  .nav-buttons.open {
    display: flex;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(48px, 6vw, 72px);
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }

  .contact-grid {
    gap: 40px;
  }
}

/* General Mobile Adjustments */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 40px 20px;
    min-height: 80vh;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 60px);
  }

  .hero p {
    font-size: 16px;
  }
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 5%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: 0.4;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #b7e4c7;
  opacity: 0.25;
  z-index: 0;
}

.hero-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--dark);
  max-width: 800px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--green);
  font-style: italic;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .1s;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--green);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.btn-outline:hover {
  background: var(--green-pale);
}

/* STATS BAR */
.stats-bar {
  background: var(--dark);
  padding: 28px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--green-light);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* SECTION */
section {
  padding: 80px 5%;
}

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
}

/* PRODUCTS */
#products {
  background: #fff;
}

.products-header {
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 106, 79, 0.12);
}

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 20px;
}

.product-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 999px;
}

.product-img {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(45,106,79,0.08) 0%, rgba(250,247,242,0.95) 100%);
  overflow: hidden;
  margin-bottom: 18px;
}

.product-img img {
  width: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.outline-btn,
.buy-btn {
  border-radius: 999px;
  border: none;
  padding: 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.outline-btn {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.outline-btn:hover {
  background: var(--green-pale);
}

.buy-btn {
  background: var(--green);
  color: #fff;
}

.buy-btn:hover {
  background: var(--dark);
}

.whatsapp-link {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}

.whatsapp-link:hover {
  background: #1da851;
}

.product-footer {
  display: none;
}

/* MODAL OVERLAY */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 46, 31, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--muted);
  line-height: 1;
}

.modal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.modal-product-info {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.modal-product-info strong {
  color: var(--green);
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--dark);
}

.success-msg {
  display: none;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
}

/* BENEFITS */
#benefits {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* TIPS */
#tips {
  background: #fff;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.tip-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  margin: 0 auto 16px;
}

.tip-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.tip-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* INTRO */
#intro {
  background: var(--white);
  text-align: center;
  padding: 60px 5%;
}

.intro-content {
  max-width: 680px;
  margin: 0 auto;
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.intro-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}

/* FEATURED PRODUCT */
#featured {
  background: var(--cream);
  padding: 80px 5%;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.featured-text .section-title {
  margin-bottom: 16px;
}

.featured-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.featured-benefits {
  margin-bottom: 32px;
}

.featured-benefits h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 16px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
  font-size: 18px;
}

.featured-cta {
  margin-top: 40px;
}

.coming-soon {
  font-size: 16px;
  color: var(--green);
  font-weight: 600;
}

.featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  /* background: linear-gradient(135deg, var(--green-pale) 0%, #e8f5e9 100%); */
  border-radius: var(--radius);
}

.featured-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

/* MISSION & VISION */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

.mission-box,
.vision-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mission-box h3,
.vision-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 600;
}

.mission-box p,
.vision-box p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

/* DIET PLANS */
#plans {
  background: var(--cream);
  padding: 80px 5%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.plan-card.premium {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.1);
}

.plan-header {
  text-align: center;
  margin-bottom: 20px;
}

.plan-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.plan-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.plan-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-description {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-features h4,
.plan-best-for h4,
.plan-bonus h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.plan-features ul,
.plan-best-for ul,
.plan-bonus ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li,
.plan-best-for li,
.plan-bonus li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.plan-features li:before,
.plan-best-for li:before,
.plan-bonus li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.why-choose-section {
  margin-bottom: 60px;
}

.why-choose-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.why-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.get-started-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.get-started-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.get-started-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-icon {
  font-size: 20px;
}

.step p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

.get-started-cta p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .get-started-steps {
    flex-direction: column;
    gap: 16px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* STORY */
#story {
  background: var(--cream);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.story-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  /* background: var(--green-pale); */
  border-radius: var(--radius);
}

.story-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* CONTACT */
#contact {
  background: var(--dark);
}

#contact .section-title {
  color: #fff;
}

#contact .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

#contact .section-tag {
  background: rgba(82, 183, 136, 0.15);
  color: var(--green-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(82, 183, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-detail-text strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 2px;
}

.contact-form-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
}

.contact-form-box .form-group input,
.contact-form-box .form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-form-box .form-group input::placeholder,
.contact-form-box .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form-box .form-group label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group textarea:focus {
  border-color: var(--green-light);
}

/* WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-tooltip {
  position: fixed;
  bottom: 98px;
  right: 28px;
  z-index: 999;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}

.wa-float:hover+.wa-tooltip {
  opacity: 1;
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  .wa-tooltip {
    bottom: 78px;
    right: 20px;
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* FOOTER */
footer {
  background: #0f1e13;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 40px 5%;
  font-size: 14px;
  line-height: 1.8;
}

footer span {
  color: var(--green-light);
  font-weight: 600;
}

footer p {
  margin-bottom: 16px;
}

.footer-links {
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--green-light);
}

/* Print Styles for Better SEO/UX */
@media print {

  .wa-float,
  .wa-tooltip,
  .nav-buttons,
  .hamburger,
  .modal-overlay,
  .hero-btns {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: none;
    color: black;
  }

  .stats-bar {
    background: none;
    color: black;
    border: 1px solid #ccc;
  }

  .stat-num {
    color: black;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .nav-consultation {
    padding: 6px 14px;
    font-size: 12px;
  }

  .nav-cta {
    padding: 8px 18px;
    font-size: 13px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .terms-section {
    padding: 60px 0;
  }

  .terms-content {
    padding: 0 20px;
  }

  .terms-content h3 {
    font-size: 20px;
    margin: 36px 0 16px 0;
  }

  .terms-content>p:first-child {
    padding: 16px;
    margin-bottom: 32px;
    font-size: 15px;
  }

  .terms-content h3:before {
    width: 60px;
  }

  .terms-updated {
    margin-top: 32px;
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .hero {
    padding: 30px 15px;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: clamp(28px, 12vw, 50px);
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-btns {
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stats-bar {
    padding: 20px 15px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 20px 16px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .benefit-card p {
    font-size: 12px;
  }

  .featured-content {
    gap: 20px;
  }

  .featured-desc {
    font-size: 16px;
  }

  .benefits-list li {
    font-size: 14px;
  }

  .plans-grid {
    gap: 20px;
  }

  .plan-card {
    padding: 24px;
  }

  .plan-title {
    font-size: 24px;
  }

  .plan-description {
    font-size: 14px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 16px;
  }

  .story-content {
    gap: 20px;
  }

  .story-text p {
    font-size: 14px;
  }

  .mission-vision {
    gap: 20px;
  }

  .mission-box,
  .vision-box {
    padding: 24px;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-form-box {
    padding: 24px;
  }

  .modal {
    padding: 24px;
    max-width: 90vw;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
  }

  footer {
    padding: 30px 15px;
  }
}
/* NAV - Sleek & Compact */
nav {
  position: sticky; 
  top: 0; 
  z-index: 100;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  height: 64px;
}

.logo .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links { 
  display: flex; 
  gap: 24px; 
  list-style: none; 
}

.nav-links a { 
  text-decoration: none; 
  color: var(--muted); 
  font-size: 14px; 
  font-weight: 500; 
  transition: color .2s; 
}

.nav-links a:hover { 
  color: var(--green); 
}

.nav-buttons { 
  display: flex; 
  gap: 10px; 
  align-items: center; 
}

.nav-consultation {
  background: transparent; 
  color: var(--green);
  padding: 6px 16px; 
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif; 
  font-size: 13px; 
  font-weight: 500;
  border: 1.5px solid var(--green); 
  cursor: pointer; 
  text-decoration: none;
  transition: all .2s;
}

.nav-consultation:hover { 
  background: var(--green-pale); 
}

.nav-cta {
  background: var(--green); 
  color: var(--white);
  border: none; 
  padding: 8px 18px; 
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif; 
  font-size: 13px; 
  font-weight: 500;
  cursor: pointer; 
  transition: background .2s;
  text-decoration: none;
}

.nav-cta:hover { 
  background: var(--dark); 
}

/* FOOTER - Clean & Professional */
footer {
  background: #0f1e13;
  color: rgba(255,255,255,0.7);
  padding: 48px 5% 24px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-container:nth-child(1) {
  text-align: left;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0;
  color: rgba(255,255,255,0.6);
}

.footer-logo {
  height: 45px;
  width: auto;
  object-fit: contain;

}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all .2s;
  color: rgba(255,255,255,0.8);
}

.social-links a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links-group h4:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--green-light);
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
}

.footer-links-group ul li {
  margin-bottom: 12px;
}

.footer-links-group ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.footer-links-group ul li a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

.footer-bottom span {
  color: var(--green-light);
  font-weight: 600;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  
  .footer-links-group h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-brand p {
    text-align: center;
  }
}

/* Mobile Navbar Adjustments */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }
  
  .logo .logo-img {
    height: 40px;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
  }
  
  .nav-buttons.open {
    display: flex;
  }
  
  .nav-consultation, .nav-cta, .cart-button {
    text-align: center;
    width: 100%;
  }
  .cart-button span{
    text-align: center;
    width: 100%;
  }
  
  .hamburger {
    display: flex;
    position: absolute;
    top: 18px;
    right: 20px;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
/* TERMS & CONDITIONS - Modern Redesign */
.terms-section {
  background: linear-gradient(135deg, #faf7f2 0%, #fff 100%);
  padding: 80px 5%;
}

.terms-container {
  max-width: 1400px;
  margin: 0 auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 60px;
}

.terms-header .section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.terms-header .section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.text-green {
  color: var(--green);
}

.terms-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.terms-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 106, 79, 0.1);
  position: relative;
  overflow: hidden;
}

.terms-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--green);
  transition: height 0.3s ease;
}

.terms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(45, 106, 79, 0.12);
}

.terms-card:hover::before {
  height: 100%;
}

.terms-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.terms-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
  display: inline-block;
}

.terms-card-content {
  color: var(--text);
}

.terms-card-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--muted);
}

.terms-card-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.terms-card-content ul li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--muted);
}

.terms-card-content ul li strong {
  color: var(--dark);
}

.nested-list {
  margin-top: 8px !important;
  margin-left: 20px !important;
}

.nested-list li {
  font-size: 13px !important;
}

.terms-alert {
  background: #fff8e7;
  border-left: 3px solid #f5a623;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.terms-alert span {
  font-size: 20px;
}

.terms-alert p {
  margin: 0;
  font-size: 13px;
  color: #856404;
  line-height: 1.5;
}

.terms-highlight {
  background: var(--green-pale);
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 16px;
}

.terms-highlight p {
  margin: 0;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

.contact-info-mini {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 12px;
}

.contact-info-mini p {
  margin: 6px 0;
}

.contact-info-mini strong {
  color: var(--green);
}

.mt-2 {
  margin-top: 12px;
}

/* Final Note Section */
.terms-final-note {
  background: linear-gradient(135deg, var(--green-pale) 0%, #e8f5e9 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 40px;
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.final-note-icon {
  font-size: 48px;
  background: var(--green);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
  flex-shrink: 0;
}

.final-note-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.final-note-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.terms-updated {
  font-size: 14px !important;
  font-style: italic;
  color: var(--green) !important;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 106, 79, 0.2);
}

/* Responsive Terms Section */
@media (max-width: 992px) {
  .terms-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .terms-section {
    padding: 60px 20px;
  }
  
  .terms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .terms-card {
    padding: 20px;
  }
  
  .terms-card h3 {
    font-size: 20px;
  }
  
  .terms-final-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
  }
  
  .final-note-icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
  
  .final-note-content h3 {
    font-size: 24px;
  }
  
  .final-note-content p {
    font-size: 14px;
  }
  
  .terms-alert {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .terms-card-icon {
    font-size: 32px;
  }
  
  .terms-card h3 {
    font-size: 18px;
  }
  
  .terms-card-content p,
  .terms-card-content ul li {
    font-size: 13px;
  }
  
  .terms-highlight p {
    font-size: 12px;
  }
}