/* ─── CSS Variables ─── */
:root {
  --green-dark:   #1b5e20;
  --green-main:   #2e7d32;
  --green-mid:    #388e3c;
  --green-light:  #a5d6a7;
  --green-pale:   #e8f5e9;
  --cream:        #fdf6e3;
  --cream-dark:   #f5efe0;
  --gold:         #c8a84b;
  --text-dark:    #1a2e1a;
  --text-muted:   #5a6e5a;
  --white:        #ffffff;
}

/* ─── Global ─── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

.section-title {
  position: relative;
  /* display: inline-block; */
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--gold));
  border-radius: 2px;
  margin: 10px auto 0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── About inline fix ─── */
.section-title.text-start::after,
.text-start .section-title::after { margin: 10px 0 0; }

/* ─── CTA Buttons ─── */
.btn-herbal {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46,125,50,0.35);
}

.btn-herbal:hover {
  background: linear-gradient(135deg, var(--green-dark), #0a3d0a);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46,125,50,0.45);
}

.btn-outline-herbal {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
  padding: 0.7rem 1.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-outline-herbal:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8873a);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200,168,75,0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8873a, #8a6e2f);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,168,75,0.5);
}

/* ─── Navbar ─── */
#mainNav {
  background: #ffffff;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(46,125,50,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

#mainNav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.navbar-brand img {
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.1;
}

.navbar-brand .brand-tagline {
  font-size: 0.65rem;
  color: var(--green-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-brand .leaf-icon {
  font-size: 1.8rem;
  color: var(--green-light);
  margin-right: 0.6rem;
}

.nav-link {
  color: var(--green-dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-main);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--green-main) !important; }
.nav-link:hover::after { width: 60%; }

.navbar-toggler {
  border-color: rgba(46,125,50,0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2846, 125, 50, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Hero Section ─── */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f3d14 0%, #1b5e20 35%, #2e7d32 65%, #1a4d1e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(165,214,167,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,168,75,0.1) 0%, transparent 55%);
  pointer-events: none;
}

/* Leaf background decorations */
.hero-leaf {
  position: absolute;
  opacity: 0.06;
  font-size: 8rem;
  color: var(--green-light);
  pointer-events: none;
  animation: floatLeaf 8s ease-in-out infinite;
}

.hero-leaf:nth-child(1) { top: 8%; right: 5%; font-size: 10rem; animation-delay: 0s; }
.hero-leaf:nth-child(2) { bottom: 12%; left: 3%; font-size: 7rem; animation-delay: 2s; }
.hero-leaf:nth-child(3) { top: 40%; left: 1%; font-size: 5rem; animation-delay: 4s; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

/* Badge used only inside the Hero section (dark bg) */
.hero-badge {
  display: inline-block;
  background: rgba(165,214,167,0.18);
  border: 1px solid rgba(165,214,167,0.45);
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* Badge used in content sections (light / cream bg) */
.section-badge {
  display: inline-block;
  background: var(--green-pale);
  border: 1.5px solid rgba(46,125,50,0.3);
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-title .text-gold {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}

.hero-highlights li {
  font-size: 0.88rem;
  color: var(--green-light);
  font-weight: 500;
}

.hero-highlights li i {
  color: var(--gold);
  margin-right: 0.4rem;
}

/* Hero Visual Card */
.hero-product-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-bottle-icon {
  font-size: 7rem;
  color: var(--green-light);
  display: block;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 8px 20px rgba(165,214,167,0.4));
}

.hero-product-name {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hero-product-sub {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.size-badges {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.size-badge {
  background: rgba(200,168,75,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.hero-stars {
  color: var(--gold);
  font-size: 1rem;
}

.hero-rating-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

/* ─── About Section ─── */
#about {
  background: var(--cream);
  padding: 6rem 0;
}

.about-feature-box {
  background: var(--white);
  border: 1px solid rgba(46,125,50,0.12);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--green-main);
}

.about-feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(46,125,50,0.12);
}

.about-feature-box .feat-icon {
  font-size: 1.6rem;
  color: var(--green-main);
  margin-bottom: 0.5rem;
}

.about-feature-box h6 {
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.about-feature-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.about-img-card {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(46,125,50,0.35);
  position: relative;
  overflow: hidden;
}

.about-img-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.about-img-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.about-main-icon {
  font-size: 6rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-stat-item { text-align: center; }

.about-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.about-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}

/* ─── Product Section ─── */
#product {
  background: var(--white);
  padding: 6rem 0;
}

.product-card-main {
  background: linear-gradient(135deg, var(--green-pale), #d0ebd1);
  border: 2px solid rgba(46,125,50,0.15);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 50px rgba(46,125,50,0.1);
  transition: all 0.3s ease;
}

.product-card-main:hover {
  box-shadow: 0 25px 70px rgba(46,125,50,0.18);
  transform: translateY(-5px);
}

.product-bottle-wrap {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(46,125,50,0.4);
}

.product-bottle-wrap i {
  font-size: 4.5rem;
  color: var(--white);
}

.product-name-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.product-feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.product-feature-list li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px dashed rgba(46,125,50,0.2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-feature-list li:last-child { border-bottom: none; }

.product-feature-list li i {
  color: var(--green-main);
  font-size: 1rem;
  flex-shrink: 0;
}

.size-card {
  background: var(--white);
  border: 2px solid rgba(46,125,50,0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.size-card:hover,
.size-card.active {
  border-color: var(--green-main);
  background: var(--green-pale);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(46,125,50,0.2);
}

.size-card .size-icon { font-size: 2.5rem; color: var(--green-main); }
.size-card .size-label { font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin: 0.3rem 0 0; }

/* ─── Product Description ─── */
#description {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a4d20 50%, var(--green-main) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#description::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(165,214,167,0.08) 0%, transparent 70%);
}

#description .section-title { color: var(--white); }
#description .section-title::after { background: linear-gradient(90deg, var(--gold), var(--green-light)); }

.desc-intro {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.desc-benefit-list {
  list-style: none;
  padding: 0;
}

.desc-benefit-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.desc-benefit-list li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.desc-guarantee-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.desc-guarantee-card h5 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.no-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.no-badge:last-child { border-bottom: none; }

.no-badge .no-icon {
  width: 38px;
  height: 38px;
  background: rgba(200,168,75,0.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.no-badge span {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ─── Ingredients Section ─── */
#ingredients {
  background: var(--cream);
  padding: 6rem 0;
}

.ingredient-card {
  background: var(--white);
  border: 1px solid rgba(46,125,50,0.12);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--gold));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(46,125,50,0.15);
  border-color: rgba(46,125,50,0.25);
}

.ingredient-card:hover::before { transform: scaleX(1); }

.ingredient-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all 0.35s ease;
  font-size: 2rem;
}

.ingredient-card:hover .ingredient-icon-wrap {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  transform: scale(1.1);
}

.ingredient-card:hover .ingredient-icon-wrap i {
  color: var(--white) !important;
}

.ingredient-icon-wrap i { color: var(--green-main); }

.ingredient-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.ingredient-benefit {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ingredient-card .hindi-name {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

/* ─── How To Use ─── */
#howtouse {
  background: var(--white);
  padding: 6rem 0;
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(46,125,50,0.12);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(46,125,50,0.12);
  border-color: rgba(46,125,50,0.25);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(46,125,50,0.35);
}

.step-icon-sm {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 2.5rem;
  right: -15px;
  color: var(--green-light);
  font-size: 1.2rem;
  z-index: 1;
}

.usage-tip-card {
  background: linear-gradient(135deg, var(--green-pale), #d0ebd1);
  border: 2px solid rgba(46,125,50,0.2);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  text-align: center;
}

.usage-tip-card i {
  font-size: 2.5rem;
  color: var(--green-main);
  margin-bottom: 0.8rem;
}

/* ─── Why Choose Us ─── */
#why {
  background: linear-gradient(135deg, #0a2e0c 0%, var(--green-dark) 50%, #1a5c1e 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#why::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.02'%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");
}

#why .section-title { color: var(--white); }
#why .section-title::after { background: linear-gradient(90deg, var(--gold), var(--green-light)); }
#why .section-subtitle { color: rgba(255,255,255,0.7); }

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  backdrop-filter: blur(5px);
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(165,214,167,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.why-icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(165,214,167,0.2), rgba(200,168,75,0.15));
  border: 2px solid rgba(165,214,167,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--green-light);
  transition: all 0.35s ease;
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--green-main), var(--gold));
  border-color: transparent;
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.why-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ─── Contact Section ─── */
#contact {
  background: var(--cream);
  padding: 6rem 0;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(46,125,50,0.12);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(46,125,50,0.08);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(46,125,50,0.1);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon-box {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(46,125,50,0.3);
}

.contact-item-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.5;
}

.contact-item-value a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover { color: var(--green-main); }

.cta-order-card {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 15px 45px rgba(46,125,50,0.4);
}

.cta-order-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.cta-order-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

/* ─── Footer ─── */
footer {
  background: #0a1f0b;
  padding: 2.2rem 0;
  text-align: center;
  border-top: 2px solid rgba(46,125,50,0.4);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 0.4rem;
}

.footer-copy {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.footer-love {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

.footer-love .heart { color: #ef5350; }

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 0.9rem auto;
  max-width: 300px;
}

/* ─── Navbar Social Icons ─── */
.nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-social-btn:hover { transform: scale(1.12); box-shadow: 0 4px 12px rgba(220,39,67,0.4); color:#fff !important; }
.nav-social-btn.facebook {
  background: #1877f2;
}
.nav-social-btn.facebook:hover { box-shadow: 0 4px 12px rgba(24,119,242,0.4); }

/* ─── Footer Social Icons ─── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.8rem 0;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-social-btn.instagram:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(220,39,67,0.45); }
.footer-social-btn.facebook {
  background: #1877f2;
}
.footer-social-btn.facebook:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(24,119,242,0.45); }

/* ─── Scroll to Top ─── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(46,125,50,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 9999;
}

#scrollTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(46,125,50,0.6);
}

/* ─── WhatsApp Float ─── */
#whatsappBtn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
}

#whatsappBtn a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
}

#whatsappBtn a:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

/* ─── Utilities ─── */
.text-green { color: var(--green-main) !important; }
.text-gold  { color: var(--gold) !important; }
.bg-green-pale { background-color: var(--green-pale) !important; }

.divider-leaf {
  text-align: center;
  color: var(--green-light);
  font-size: 1.5rem;
  margin: 0.5rem 0 1.5rem;
  opacity: 0.6;
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive tweaks ─── */
@media (max-width: 991.98px) {
  #home { padding: 8rem 0 4rem; }
  .hero-product-card { margin-top: 3rem; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 767.98px) {
  #home { padding-top: 6rem; }
  .step-connector { display: none; }
  .about-stats { gap: 1.2rem; }
}
