/* ========================================
   VARAHI NATURALS – Premium CSS
   Natural Green & Gold Ayurvedic Theme
   Font Awesome 6 Icons
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #1a3d2b;
  --green-deep: #2d6a4f;
  --green-mid: #40916c;
  --green-light: #74c69d;
  --green-pale: #d8f3dc;
  --gold-dark: #8a6200;
  --gold-mid: #b5830a;
  --gold-bright: #d4a017;
  --gold-light: #f0c040;
  --gold-pale: #fdf0cb;
  --cream: #fdf8f0;
  --cream-dark: #f5ede0;
  --off-white: #f9f6f0;
  --text-dark: #1a2a1e;
  --text-body: #3a4a3e;
  --text-muted: #6a7a6e;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26,61,43,0.08);
  --shadow-md: 0 8px 32px rgba(26,61,43,0.12);
  --shadow-lg: 0 20px 60px rgba(26,61,43,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
h4, h5 { font-family: 'Inter', sans-serif; font-weight: 600; }
em { font-style: italic; color: var(--green-deep); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem;
  background: var(--gold-pale);
  border-radius: 100px;
  border: 1px solid rgba(181,131,10,0.25);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,106,79,0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,61,43,0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

.nav-logo-img:hover {
  opacity: 0.88;
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active-nav {
  color: var(--green-deep);
  background: var(--green-pale);
}

.nav-cta-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(45,106,79,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2d1e 0%, #1a3d2b 35%, #2d6a4f 70%, #1a3d2b 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(212,160,23,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(116,198,157,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 C30 20 25 35 30 50 C33 58 47 58 50 50 C55 35 50 20 40 10Z' stroke='%2374c69d' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3Cpath d='M40 15 L40 55' stroke='%2374c69d' stroke-width='0.4' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.badge-leaf { font-size: 0.9rem; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  animation: fadeInLeft 0.8s 0.2s ease both;
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  animation: fadeInLeft 0.8s 0.3s ease both;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 1.75rem;
  animation: fadeInLeft 0.8s 0.4s ease both;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  animation: fadeInLeft 0.8s 0.5s ease both;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-light);
  background: rgba(116,198,157,0.15);
  border: 1px solid rgba(116,198,157,0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

.pill-badge i { font-size: 0.65rem; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInLeft 0.8s 0.6s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(212,160,23,0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.9s 0.3s ease both;
}

.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,160,23,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-product-img {
  width: 380px;
  max-width: 90%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: float 5s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.float-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold-light);
}

.hero-float-card strong { display: block; font-size: 0.85rem; font-weight: 700; line-height: 1.2; }
.hero-float-card small { font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.card-1 { top: 15%; left: -5%; animation: float-card1 4s ease-in-out infinite; }
.card-2 { bottom: 18%; right: -5%; animation: float-card2 4s ease-in-out 2s infinite; }


.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== HIGHLIGHTS STRIP ===== */
.highlights-strip {
  background: var(--off-white);
  padding: 2.25rem 1.5rem;
  border-bottom: 1px solid rgba(45,106,79,0.1);
}

.highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.75rem;
  flex: 1;
  min-width: 190px;
  justify-content: center;
  transition: var(--transition);
}

.highlight-item:hover { transform: translateY(-2px); }

.hl-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hl-text { display: flex; flex-direction: column; }

.hl-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.hl-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.highlight-divider {
  width: 1px;
  height: 40px;
  background: rgba(45,106,79,0.15);
  flex-shrink: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 5.5rem 0 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--gold-mid));
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,106,79,0.2);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.green-icon  { background: rgba(45,106,79,0.1);  color: var(--green-deep); }
.gold-icon   { background: rgba(181,131,10,0.1); color: var(--gold-mid); }
.teal-icon   { background: rgba(13,115,119,0.1); color: #0d7377; }
.cyan-icon   { background: rgba(64,145,108,0.1); color: var(--green-mid); }
.purple-icon { background: rgba(123,67,151,0.1); color: #7b4397; }
.rose-icon   { background: rgba(198,40,40,0.1);  color: #c62828; }

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  font-family: 'Inter', sans-serif;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.benefit-list li {
  font-size: 0.8rem;
  color: var(--green-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.benefit-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* Benefits image + stats band */
.benefits-img-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 4rem;
  margin-top: 2rem;
}

.benefits-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.benefits-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.img-badge-icon {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.img-badge strong { display: block; font-size: 0.88rem; font-weight: 700; line-height: 1.2; }
.img-badge small  { font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.benefits-stats { color: var(--white); }

.benefits-stats h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.benefits-stats h3 em { color: var(--gold-light); }

.benefits-stats p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C20 14 16 26 20 38 C23 46 37 46 40 38 C44 26 40 14 30 5Z' stroke='%232d6a4f' stroke-width='0.4' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(45,106,79,0.15);
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.about-badge-row {
  display: flex;
  gap: 1rem;
}

.about-badge {
  flex: 1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ab-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.about-badge strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-dark); line-height: 1.1; }
.about-badge small  { font-size: 0.68rem; color: var(--text-muted); }

/* ===== PRODUCT SECTION ===== */
.product-section {
  padding: 6rem 0;
  background: var(--white);
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.product-img-main {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s ease;
}

.product-main-img:hover { transform: scale(1.05); }

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
}

.thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--off-white);
}

.thumb:hover { border-color: var(--green-mid); }
.thumb.active { border-color: var(--green-deep); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Tabs */
.product-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid rgba(45,106,79,0.1);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.tab-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab-btn:hover { color: var(--green-deep); }
.tab-btn.active {
  color: var(--green-deep);
  border-bottom-color: var(--green-deep);
  background: var(--green-pale);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

.tab-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.tab-text {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* Nutrition Table */
.nutrition-table {
  border: 1px solid rgba(45,106,79,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.nt-header {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.nt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(45,106,79,0.08);
  transition: var(--transition);
}

.nt-row:hover { background: var(--green-pale); }
.nt-row:last-child { border-bottom: none; }
.nt-row span:last-child { font-weight: 600; color: var(--green-deep); }

/* Serving */
.serving-card { display: flex; flex-direction: column; gap: 1.25rem; }

.serving-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serving-step strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.serving-step p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.serving-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(181,131,10,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.83rem;
  color: var(--gold-dark);
  line-height: 1.5;
}

.serving-note i { margin-top: 2px; flex-shrink: 0; }

/* Storage */
.storage-list { display: flex; flex-direction: column; gap: 1rem; }

.storage-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45,106,79,0.08);
  transition: var(--transition);
}

.storage-item:hover {
  background: var(--green-pale);
  border-color: rgba(45,106,79,0.2);
}

.si-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 1rem;
  flex-shrink: 0;
}

.storage-item strong { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; color: var(--text-dark); }
.storage-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Precautions */
.precaution-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }

.prec-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.5;
}

.prec-item span {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.prec-item.warning {
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.3);
  color: #854d0e;
}

.prec-item.warning span { background: rgba(251,191,36,0.2); color: #854d0e; }

.prec-item.info {
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  color: #1e3a5f;
}

.prec-item.info span { background: rgba(59,130,246,0.1); color: #1e3a5f; }

.disclaimer-box {
  display: flex;
  gap: 0.5rem;
  background: var(--cream-dark);
  border: 1px solid rgba(45,106,79,0.15);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.disclaimer-box i { margin-top: 2px; flex-shrink: 0; color: var(--green-mid); }

/* ===== BUY / PRICING SECTION ===== */
.buy-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1.5px solid rgba(45,106,79,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45,106,79,0.25);
}

.price-card.featured {
  border-color: var(--green-deep);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pc-badge-wrap {
  height: 28px;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.pc-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.pc-weight {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pc-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.pc-mrp {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pc-actual {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.pc-savings {
  font-size: 0.78rem;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.pc-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.pc-features li i {
  color: var(--green-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pc-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--off-white);
  color: var(--green-dark);
  border: 2px solid var(--green-deep);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pc-btn:hover {
  background: var(--green-deep);
  color: var(--white);
}

.pc-btn.featured-btn {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(45,106,79,0.35);
}

.pc-btn.featured-btn:hover {
  box-shadow: 0 8px 32px rgba(45,106,79,0.5);
  transform: translateY(-1px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item i {
  font-size: 1rem;
  color: var(--green-mid);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 6rem 0;
  background: var(--white);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.rs-score {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.rs-stars { color: var(--gold-mid); font-size: 1.3rem; display: flex; gap: 0.15rem; }
.rs-count { font-size: 0.875rem; color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--off-white);
  border: 1px solid rgba(45,106,79,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.review-card.featured-review {
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
  color: var(--white);
  border-color: transparent;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rc-stars { color: var(--gold-mid); font-size: 0.95rem; display: flex; gap: 0.15rem; margin-bottom: 1rem; }
.featured-review .rc-stars { color: var(--gold-light); }

.rc-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.featured-review .rc-text { color: rgba(255,255,255,0.88); }

.rc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.rc-author strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.rc-author span   { font-size: 0.75rem; color: var(--text-muted); }

.featured-review .rc-author strong { color: var(--white); }
.featured-review .rc-author span   { color: rgba(255,255,255,0.65); }

.rc-verified {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--green-mid);
  font-weight: 600;
}

.featured-review .rc-verified { color: var(--gold-light); }

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 0;
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open  { border-color: var(--green-mid); }

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover { color: var(--green-deep); background: var(--green-pale); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--green-deep);
  transition: transform 0.3s ease;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-deep); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(45,106,79,0.12);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.contact-method:hover {
  border-color: var(--green-mid);
  background: var(--green-pale);
  transform: translateX(4px);
}

.whatsapp-method {
  background: #f0fdf4;
  border-color: rgba(34,197,94,0.3);
}

.whatsapp-method:hover {
  background: #dcfce7;
  border-color: rgba(34,197,94,0.5);
}

.cm-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.wa-icon   { background: #22c55e; color: var(--white); font-size: 1.4rem; }
.mail-icon { background: var(--green-pale); color: var(--green-deep); }
.loc-icon  { background: var(--gold-pale); color: var(--gold-dark); }

.contact-method strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.contact-method span   { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(45,106,79,0.1);
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  font-family: 'Playfair Display', serif;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(45,106,79,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.08);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(45,106,79,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45,106,79,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
}

.footer-top { padding: 4.5rem 1.5rem 3rem; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  /* slight brightness boost so the logo reads clearly on the dark green footer */
  filter: brightness(1.08) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}

.footer-logo-img:hover {
  filter: brightness(1.18) drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transform: scale(1.03);
}


.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.social-link:hover {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links-col a i {
  font-size: 0.6rem;
  opacity: 0.5;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-links-col a:hover i { opacity: 1; }

.footer-newsletter h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold-mid); }

.newsletter-form button {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-mid);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: var(--gold-bright);
  transform: translateY(-1px) rotate(15deg);
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.cert-badge i { font-size: 0.65rem; color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
}

.footer-bottom-inner {
  grid-template-columns: 1fr auto !important;
  gap: 1rem !important;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-heart { color: #ef4444; }

.footer-bottom-sub {
  grid-template-columns: 1.5fr 1fr !important;
  gap: 1.5rem !important;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  text-align: right;
}

.anisol-link {
  color: var(--gold-light, #f1c40f);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.anisol-link:hover {
  color: var(--white);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25d366;
  color: var(--white);
  padding: 0.85rem 1.5rem 0.85rem 1.1rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.875rem;
}

.wa-icon-float { font-size: 1.5rem; }

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  background: #1ebe5a;
}

.wa-ripple {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid #25d366;
  animation: ripple 2s linear infinite;
}

.wa-label { white-space: nowrap; }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 1100;
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(130%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  border-left: 4px solid var(--green-mid);
}

.cart-toast.show { transform: translateX(0); }

.ct-icon {
  font-size: 1.4rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.ct-text { display: flex; flex-direction: column; }
.ct-text strong { font-size: 0.88rem; font-weight: 700; }
.ct-text span   { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.9rem;
  border: 2px solid rgba(45,106,79,0.2);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn         { from { opacity: 0; }                          to { opacity: 1; } }
@keyframes fadeInDown     { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft     { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight    { from { opacity: 0; transform: translateX(30px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp       { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: translateY(0); } }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

@keyframes float-card1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%       { transform: translateY(-10px) translateX(5px); }
}

@keyframes float-card2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%       { transform: translateY(10px) translateX(-5px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.08); }
}

@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Scroll-triggered animation states */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate="fade-left"]  { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate].animated     { opacity: 1; transform: none; }

/* ===== RESPONSIVE – TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; max-width: 380px; margin: 0 auto; }
  .hero-badges-row, .hero-cta-row { justify-content: center; }
  .hero-desc { margin: 0 auto 1.75rem; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-img-section { grid-template-columns: 1fr; padding: 4rem 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .product-details-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom-inner, .footer-bottom-sub { grid-template-columns: 1fr !important; }
  .footer-credit { text-align: center; }
}

/* ===== RESPONSIVE – MOBILE (max 640px) ===== */
@media (max-width: 640px) {
  :root { --nav-height: 64px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(45,106,79,0.1);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .nav-links .nav-cta-btn { text-align: center; padding: 0.85rem; margin-top: 0.5rem; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }

  .hero-container { padding-top: calc(64px + 2rem); }
  .hero-product-img { width: 240px; }
  .card-1, .card-2 { display: none; }

  .highlights-container { flex-direction: column; }
  .highlight-divider { display: none; }
  .highlight-item { justify-content: flex-start; padding: 0.65rem 0; min-width: unset; }

  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-img-section { padding: 3rem 1.5rem; gap: 2.5rem; }

  .pricing-cards { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr; gap: 2rem; }

  .whatsapp-float {
    padding: 0.9rem;
    border-radius: 50%;
    width: 56px; height: 56px;
    justify-content: center;
  }
  .wa-label { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .product-thumbnails { justify-content: center; }
  .section-title { font-size: 1.7rem; }
  .about-img { height: 320px; }
  .benefits-main-img { height: 280px; }

  .trust-badges { gap: 1rem; }
  .trust-item { font-size: 0.8rem; }
}
