@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* White & Emerald Green Theme Palette */
  --bg-pure: #FFFFFF;
  --bg-surface: #F9FBF9;
  --bg-sage-soft: #EEF7F2;
  --bg-glass: rgba(255, 255, 255, 0.88);
  
  --green-deep: #08241B;
  --green-primary: #0F5A3E;
  --green-hover: #157351;
  --green-accent: #22B075;
  --green-badge: #E3F5EC;
  
  --gold-primary: #C59B27;
  --gold-light: #F7EFCF;
  --gold-gradient: linear-gradient(135deg, #DFBD57 0%, #B88E1F 100%);
  
  --text-primary: #0A1B15;
  --text-secondary: #3D584C;
  --text-muted: #6C8578;
  --border-light: rgba(15, 90, 62, 0.1);
  --border-gold: rgba(197, 155, 39, 0.25);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(8, 36, 27, 0.04);
  --shadow-md: 0 12px 36px rgba(8, 36, 27, 0.07);
  --shadow-lg: 0 24px 56px rgba(8, 36, 27, 0.1);
  --shadow-glow: 0 12px 32px rgba(34, 176, 117, 0.22);
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: radial-gradient(circle at 80% 20%, #E6F5EC 0%, rgba(255,255,255,0) 60%),
              radial-gradient(circle at 15% 85%, #EFF8F3 0%, rgba(255,255,255,0) 65%),
              var(--bg-pure);
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .font-heading {
  font-family: 'Outfit', sans-serif;
  color: var(--green-deep);
  font-weight: 700;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Announcement Top Bar */
.top-announcement {
  background: var(--green-deep);
  color: var(--bg-pure);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 100;
}

.top-announcement .badge-pill {
  background: var(--gold-gradient);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulseGold 2.5s infinite;
}

/* Floating Frosted-Glass Pill Header */
header.site-header {
  position: sticky;
  top: 14px;
  z-index: 90;
  max-width: 95%;
  width: 1520px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 90, 62, 0.15);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(8, 36, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

header.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(8, 36, 27, 0.12);
  border-color: rgba(15, 90, 62, 0.25);
  transform: translateY(-3px);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-icon {
  width: 46px;
  height: 46px;
  background: var(--green-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 90, 62, 0.2);
  position: relative;
  overflow: hidden;
}

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

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-cart-trigger {
  position: relative;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  color: var(--green-deep);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cart-trigger:hover {
  background: var(--green-badge);
  border-color: var(--green-primary);
}

.cart-count-badge {
  background: var(--green-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--green-primary);
  color: #fff;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(34, 176, 117, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--green-primary);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--green-badge);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.btn-outline:hover {
  transform: translateY(-2px);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  padding: 5rem 2rem 6rem;
  background: transparent;
  overflow: hidden;
}

.hero-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  animation: slideUpFade 0.8s ease forwards;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-sage-soft);
  color: var(--green-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(15, 90, 62, 0.15);
  width: fit-content;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-title .highlight-green {
  color: var(--green-primary);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

/* Live Status Ticker */
.live-status-ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid rgba(197, 155, 39, 0.45);
  color: var(--green-deep);
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.12);
}

.pulse-green-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22B075;
  box-shadow: 0 0 0 0 rgba(34, 176, 117, 0.7);
  animation: pulseGreenGlow 2s infinite;
}

@keyframes pulseGreenGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 176, 117, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 176, 117, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 176, 117, 0); }
}

/* Frosted Glass Bento Trust Bar */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  margin-top: 2.2rem;
  padding: 1.6rem 2.2rem;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 90, 62, 0.18);
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(8, 36, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-sage-soft);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-deep);
}

.trust-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Hero Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 176, 117, 0.16) 0%, rgba(255,255,255,0) 70%);
  animation: pulseGlow 4s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-bottle-card {
  position: relative;
  z-index: 2;
  border-radius: 36px;
  animation: floatSlow 6s ease-in-out infinite;
  max-width: 460px;
  width: 100%;
}

.hero-bottle-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Luxury Glass Badges */
.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(8, 36, 27, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 90, 62, 0.22);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.floating-badge:hover {
  transform: scale(1.08) translateY(-6px);
  border-color: var(--green-primary);
  box-shadow: 0 22px 48px rgba(15, 90, 62, 0.22);
}

.floating-badge .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 0 5px rgba(34, 176, 117, 0.28);
}

.floating-badge.badge-tulsi {
  top: 15%;
  left: -30px;
  animation: floatSlow 5s ease-in-out infinite 0.5s;
}

.floating-badge.badge-giloy {
  bottom: 20%;
  left: -20px;
  animation: floatSlow 6s ease-in-out infinite 1.2s;
}

.floating-badge.badge-ashwa {
  top: 25%;
  right: -30px;
  animation: floatSlow 5.5s ease-in-out infinite 2s;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-deep);
}

.badge-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  display: block;
}

/* ================= SECTION LAYOUTS ================= */
.section-padding {
  padding: 6.5rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-primary);
  background: var(--bg-sage-soft);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ================= HERB EXPLORER ================= */
.herb-explorer-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-surface);
  border-radius: 36px;
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.herb-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.herb-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(15, 90, 62, 0.12);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(8, 36, 27, 0.03);
}

.herb-tab:hover {
  transform: translateX(8px);
  border-color: var(--green-primary);
  box-shadow: 0 8px 24px rgba(15, 90, 62, 0.1);
}

.herb-tab.active {
  background: var(--green-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
  border-color: var(--green-deep);
}

.herb-tab.active .herb-name h4 {
  color: #fff;
}

.herb-tab.active .herb-tagline {
  color: var(--gold-light);
}

.herb-tab.active .herb-arrow {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.herb-name h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.herb-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Herb Detail view */
.herb-detail-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(15, 90, 62, 0.15);
  box-shadow: 0 24px 55px rgba(8, 36, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.herb-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.herb-detail-title h3 {
  font-size: 2.1rem;
  color: var(--green-deep);
  margin-bottom: 0.3rem;
}

.herb-sanskrit {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.herb-potency-badge {
  background: var(--bg-sage-soft);
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.herb-detail-body p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.herb-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.herb-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
}

.herb-benefit-item i {
  color: var(--green-accent);
}

.herb-visual-card {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  max-height: 180px;
  box-shadow: var(--shadow-sm);
}

.herb-visual-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ================= STORE PAGE STYLES ================= */
.store-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 90, 62, 0.15);
  box-shadow: 0 16px 40px rgba(8, 36, 27, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.filter-group {
  display: flex;
  gap: 0.75rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 90, 62, 0.16);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  box-shadow: 0 4px 12px rgba(8, 36, 27, 0.03);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
  box-shadow: 0 8px 24px rgba(8, 36, 27, 0.2);
  transform: translateY(-2px);
}

.search-box-wrap {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.search-box-wrap input {
  width: 100%;
  padding: 0.78rem 1.35rem 0.78rem 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 90, 62, 0.2);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.search-box-wrap input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(15, 90, 62, 0.1);
}

.search-box-wrap i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Store Product Cards */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* ================= ABOUT PAGE STYLES ================= */
.about-hero {
  background: transparent;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.heritage-timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.heritage-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
  width: 50%;
  padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  width: 20px;
  height: 20px;
  background: var(--green-primary);
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -10px;
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-content-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  text-align: left;
  max-width: 380px;
}

/* ================= CONTACT PAGE STYLES ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-card-item {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-surface);
  border-radius: 24px;
  padding: 1.8rem;
  border: 1px solid var(--border-light);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  background: var(--green-primary);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 90, 62, 0.15);
}

.contact-card-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.contact-card-details p,
.contact-card-details a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
}

/* Glowing Glass Form */
.contact-form-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 24px 55px rgba(8, 36, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 90, 62, 0.15);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  padding: 0.9rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 90, 62, 0.18);
  background: rgba(255, 255, 255, 0.85);
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(8, 36, 27, 0.03);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 90, 62, 0.12), 0 8px 24px rgba(15, 90, 62, 0.08);
}

/* ================= 3-STEP RITUAL INFO ================= */
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ritual-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 90, 62, 0.14);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 36, 27, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ritual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 90, 62, 0.14);
  border-color: var(--green-primary);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg-sage-soft);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.ritual-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--bg-sage-soft);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.ritual-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.ritual-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ================= LIFESTYLE EXPERIENCE ================= */
.lifestyle-banner {
  max-width: 1300px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.lifestyle-card {
  background: var(--green-deep);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.lifestyle-img-wrap {
  height: 100%;
  min-height: 420px;
}

.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-content {
  padding: 4rem;
  color: #fff;
}

.lifestyle-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.lifestyle-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ================= TESTIMONIALS ================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 26px;
  padding: 2.2rem;
  border: 1px solid rgba(15, 90, 62, 0.14);
  box-shadow: 0 16px 36px rgba(8, 36, 27, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 90, 62, 0.12);
  border-color: var(--green-primary);
}

.stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-badge);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-name h5 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.author-name span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================= PRICING ================= */
.pricing-section {
  background: transparent;
  padding: 6rem 2rem;
}

.pricing-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 90, 62, 0.15);
  border-radius: 32px;
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 18px 45px rgba(8, 36, 27, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(15, 90, 62, 0.15);
  border-color: var(--green-primary);
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  border-width: 2px;
  box-shadow: 0 24px 60px rgba(197, 155, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 30px 65px rgba(197, 155, 39, 0.3);
}

.popular-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.2);
}

.pack-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pack-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.pack-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pack-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-deep);
  font-family: 'Outfit', sans-serif;
}

.pack-price .old-amount {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pack-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pack-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pack-features li i {
  color: var(--green-accent);
}

/* ================= FAQ ================= */
.faq-section {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 1.8rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

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

.faq-item.active {
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-color: var(--green-primary);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.5rem;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--green-deep);
  color: #fff;
  padding: 5.5rem 2rem 2.5rem;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ================= CART DRAWER ================= */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 36, 27, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 1000;
  box-shadow: -15px 0 45px rgba(8, 36, 27, 0.18);
  border-left: 1px solid rgba(15, 90, 62, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.open .cart-drawer {
  right: 0;
}

.cart-header {
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.35rem;
}

.btn-close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.8rem;
}

.cart-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.2rem;
  background: var(--bg-surface);
  border-radius: 18px;
  margin-bottom: 1rem;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h5 {
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-weight: 700;
  color: var(--green-primary);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.cart-footer {
  padding: 1.8rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-surface);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  font-weight: 800;
}

/* ================= CHECKOUT MODAL ================= */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 36, 27, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  background: #fff;
  border-radius: 32px;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.checkout-modal-overlay.open .checkout-modal {
  transform: scale(1);
}

.success-icon {
  width: 76px;
  height: 76px;
  background: var(--green-badge);
  color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
}

/* ================= ANIMATIONS ================= */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.97); opacity: 0.7; }
  100% { transform: scale(1.03); opacity: 1; }
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatLeaf {
  0% { transform: translateY(-5%) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(105vh) rotate(360deg) translateX(100px); opacity: 0; }
}

.hero-bg-leaves {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.leaf-particle {
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%2322B075" opacity="0.3"><path d="M511.4 64.9c-2.3-17.1-15-30.8-31.9-34.8C425.4 18.5 289.4-18.7 151.7 58.1c-19.1 10.7-36.9 23.3-52.9 37.3C40.6 150.3-6.5 240.2 1.4 336.5c1.4 16.7 13.5 30.5 30 35.1 48 13.5 130.6 30.3 226.7-7.7 20-8 38.6-17.6 56-28.7 63.6-40.4 114.7-104 141.7-185.1 4.7-14.3 6.6-29.6 15.6-85.2z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: floatLeaf 15s linear infinite;
  opacity: 0;
}

/* Scroll reveal utility classes */
.reveal-hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }

.reveal-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(0) scale(1);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
  .hero-grid,
  .herb-explorer-container,
  .calculator-wrapper,
  .lifestyle-card,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  
  .pricing-grid,
  .store-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }
  
  .metrics-grid,
  .ritual-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .heritage-timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100% !important;
    text-align: left !important;
    padding-left: 50px !important;
    padding-right: 20px !important;
  }
  
  .timeline-badge {
    left: 10px !important;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .nav-links {
    gap: 1.1rem;
  }
  .nav-links a {
    font-size: 0.82rem;
  }
  .nav-container {
    padding: 0.9rem 1.2rem;
  }
  .brand-logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .brand-title {
    font-size: 0.95rem;
  }
  .brand-subtitle {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  /* Smartphone Header & Taskbar Compact Fit */
  header.site-header {
    max-width: 96% !important;
    width: 100% !important;
    top: 8px !important;
  }
  .nav-container {
    padding: 0.55rem 0.85rem !important;
    gap: 0.5rem !important;
  }
  .brand-logo-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 1.15rem !important;
    border-radius: 10px !important;
  }
  .brand-title {
    font-size: 0.86rem !important;
    letter-spacing: -0.2px !important;
  }
  .brand-subtitle {
    font-size: 0.58rem !important;
  }
  .nav-actions {
    gap: 0.4rem !important;
  }
  .btn-cart-trigger {
    padding: 0.45rem 0.65rem !important;
    font-size: 0.8rem !important;
  }
  .btn-primary {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.8rem !important;
  }

  /* Typography & Sections */
  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
  }
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.8rem !important;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Grid Layout Collapsing for All Pages */
  .metrics-grid,
  .ritual-grid,
  .testimonials-grid,
  .footer-grid,
  .about-grid,
  .store-grid,
  .contact-grid,
  .faq-grid,
  .hero-stage-layout,
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  
  .footer-grid {
    gap: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Mukhya Kadha Samagri (Ingredients Explorer) Mobile Responsiveness */
  .herb-explorer-container {
    padding: 1.25rem !important;
    gap: 1.5rem !important;
    border-radius: 24px !important;
  }
  .herb-tab {
    padding: 0.85rem 1.15rem !important;
    border-radius: 16px !important;
  }
  .herb-name h4 {
    font-size: 0.95rem !important;
  }
  .herb-tagline {
    font-size: 0.75rem !important;
  }
  .herb-detail-panel {
    padding: 1.4rem !important;
    border-radius: 24px !important;
    min-height: auto !important;
    gap: 1.5rem !important;
  }
  .herb-detail-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
  }
  .herb-detail-title h3 {
    font-size: 1.45rem !important;
  }
  .herb-sanskrit {
    font-size: 0.9rem !important;
  }
  .herb-potency-badge {
    padding: 0.35rem 0.85rem !important;
    font-size: 0.75rem !important;
  }
  .herb-detail-body p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.2rem !important;
  }
  .herb-benefits-list {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }
  .herb-benefit-item {
    font-size: 0.84rem !important;
  }
  .herb-visual-card {
    max-height: 140px !important;
    margin-top: 1rem !important;
  }
  .herb-visual-card img {
    height: 140px !important;
  }
}

@media (max-width: 480px) {
  /* Extra Compact Header for Small Smartphones (< 480px) */
  .brand-subtitle {
    display: none !important;
  }
  .btn-cart-trigger span:not(.cart-count-badge) {
    display: none !important;
  }
  .btn-cart-trigger {
    padding: 0.45rem 0.55rem !important;
  }
  .btn-primary {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.75rem !important;
  }
  .brand-title {
    font-size: 0.82rem !important;
  }
  .hero-title {
    font-size: 1.85rem !important;
  }
}

/* ================= IMPROVED PREPARATION SECTION STYLES ================= */
.prep-section {
  padding: 6.5rem 2rem;
  background: linear-gradient(180deg, var(--bg-pure) 0%, var(--bg-surface) 100%);
  position: relative;
  overflow: hidden;
}

.prep-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

/* Timeline steps */
.prep-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.prep-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: dashed var(--green-primary);
  opacity: 0.25;
}

.prep-step-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.prep-step-card:hover {
  transform: translateX(10px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}

.prep-step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--bg-sage-soft);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 90, 62, 0.05);
  position: relative;
  z-index: 2;
}

.prep-step-card:hover .prep-step-icon-wrap {
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15, 90, 62, 0.25);
}

.prep-step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  transition: var(--transition);
}

.prep-step-card:hover .prep-step-number {
  opacity: 0.35;
  transform: scale(1.1);
}

.prep-step-card h3 {
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.prep-step-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Rule summary card on the right */
.prep-rule-card {
  background: var(--green-deep);
  color: #fff;
  border-radius: 36px;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.prep-rule-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(34, 176, 117, 0.22) 0%, transparent 70%);
}

.prep-rule-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prep-rule-title {
  font-size: 2.1rem;
  color: #fff;
  line-height: 1.2;
}

.prep-rule-badge {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
}

.prep-ratio-metrics {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 0;
}

.prep-metric-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.prep-metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.prep-metric-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prep-rule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prep-rule-list li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.prep-rule-list li i {
  color: var(--green-accent);
  margin-top: 0.2rem;
}

@media (max-width: 1024px) {
  .prep-container {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .prep-timeline::before {
    left: 20px;
  }
  .prep-step-card {
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .prep-step-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.25rem;
  }
  .prep-rule-card {
    padding: 2.2rem;
  }
  .prep-rule-title {
    font-size: 1.75rem;
  }
}

/* =========================================================================
   2026 COMPLETE UNIQUE & ATTRACTIVE 3D SHOWCASE REDESIGN (v3.0)
   ========================================================================= */

/* Centerpiece Editorial Hero Stage */
.hero-showcase-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  position: relative;
  z-index: 5;
}

.hero-editorial-top {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 3.5rem;
}

.hero-editorial-title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin: 1.2rem 0;
}

.hero-editorial-title .highlight-gold {
  background: linear-gradient(135deg, #C59B27 0%, #E6C567 50%, #9A7718 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-editorial-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

/* 3D Centerpiece Stage Layout */
.hero-stage-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.orbit-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.orbit-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 90, 62, 0.18);
  border-radius: 26px;
  padding: 1.8rem;
  box-shadow: 0 16px 40px rgba(8, 36, 27, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: var(--transition);
  position: relative;
}

.orbit-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: 0 24px 55px rgba(197, 155, 39, 0.18);
}

.orbit-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  background: rgba(15, 90, 62, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.orbit-card h3 {
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.orbit-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Central 3D Floating Stage */
.center-3d-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.stage-pedestal-glow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(197, 155, 39, 0.35) 0%, rgba(15, 90, 62, 0.2) 45%, transparent 75%);
  filter: blur(20px);
  z-index: 1;
}

.hero-3d-jar-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 30px 60px rgba(8, 36, 27, 0.25));
  animation: floatSlow 6s ease-in-out infinite;
}

.hero-3d-jar-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
}

/* Unique Asymmetric Bento Showcase */
.bento-showcase-section {
  padding: 5rem 2rem;
  max-width: 1360px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.bento-item {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 90, 62, 0.16);
  border-radius: 32px;
  padding: 2.8rem;
  box-shadow: 0 20px 45px rgba(8, 36, 27, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 28px 65px rgba(15, 90, 62, 0.15);
}

.bento-span-7 { grid-column: span 7; }
.bento-span-5 { grid-column: span 5; }
.bento-span-4 { grid-column: span 4; }
.bento-span-8 { grid-column: span 8; }
.bento-span-6 { grid-column: span 6; }
.bento-span-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .hero-stage-layout {
    grid-template-columns: 1fr;
  }
  .bento-span-7, .bento-span-5, .bento-span-4, .bento-span-8, .bento-span-6 {
    grid-column: span 12;
  }
}

/* Transparent Jar Stage & Animations (v3.1) */
.hero-transparent-jar-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  filter: drop-shadow(0 32px 48px rgba(8, 36, 27, 0.38)) drop-shadow(0 0 28px rgba(197, 155, 39, 0.22));
  animation: floatTransparentJar 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-transparent-jar-wrap:hover {
  transform: scale(1.04) translateY(-8px);
}

.hero-transparent-jar-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Concentric Aura Rings */
.stage-aura-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(197, 155, 39, 0.28);
  pointer-events: none;
  z-index: 1;
}

.stage-aura-ring.ring-1 {
  width: 360px;
  height: 360px;
  animation: pulseRingAura 8s infinite ease-in-out;
}

.stage-aura-ring.ring-2 {
  width: 480px;
  height: 480px;
  border-color: rgba(15, 90, 62, 0.18);
  animation: pulseRingAura 8s infinite ease-in-out 4s;
}

/* Floating Botanical Badges */
.floating-herb-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  box-shadow: 0 14px 30px rgba(8, 36, 27, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.floating-herb-badge strong {
  display: block;
  font-size: 0.88rem;
  color: var(--green-deep);
  line-height: 1.2;
}

.floating-herb-badge span {
  font-size: 0.76rem;
  color: var(--text-secondary);
}

.floating-herb-badge:hover {
  transform: scale(1.06) translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.22);
}

.badge-top-left {
  top: 10%;
  left: -5%;
  animation: badgeFloat1 5s ease-in-out infinite;
}

.badge-top-right {
  top: 18%;
  right: -5%;
  animation: badgeFloat2 6s ease-in-out infinite 1s;
}

.badge-bottom-left {
  bottom: 12%;
  left: 2%;
  animation: badgeFloat1 5.5s ease-in-out infinite 2s;
}

@keyframes floatTransparentJar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

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

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

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

@media (max-width: 768px) {
  .hero-grid {
    gap: 2rem !important;
  }
  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 400px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 1.5rem auto 2.5rem !important;
    overflow: visible !important;
  }
  .hero-transparent-jar-wrap {
    max-width: 280px !important;
    width: 80% !important;
    margin: 0 auto !important;
  }
  .stage-aura-ring.ring-1 {
    width: 280px !important;
    height: 280px !important;
  }
  .stage-aura-ring.ring-2 {
    width: 340px !important;
    height: 340px !important;
  }
  
  /* Keep floating badges in absolute circular positions, nicely scaled for smartphone screen */
  .floating-herb-badge {
    position: absolute !important;
    margin: 0 !important;
    padding: 0.45rem 0.75rem !important;
    gap: 0.45rem !important;
    transform: scale(0.88) !important;
    z-index: 20 !important;
    box-shadow: 0 10px 25px rgba(8, 36, 27, 0.25) !important;
    width: max-content !important;
  }
  .floating-herb-badge strong {
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
  }
  .floating-herb-badge span {
    font-size: 0.65rem !important;
  }

  /* Circular arrangement coordinates around the jar on mobile */
  .badge-top-left {
    top: 6% !important;
    left: 2% !important;
    right: auto !important;
    bottom: auto !important;
  }
  .badge-top-right {
    top: 24% !important;
    right: 2% !important;
    left: auto !important;
    bottom: auto !important;
  }
  .badge-bottom-left {
    bottom: 6% !important;
    left: 6% !important;
    right: auto !important;
    top: auto !important;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 350px !important;
    margin: 1rem auto 2rem !important;
  }
  .hero-transparent-jar-wrap {
    max-width: 230px !important;
  }
  .stage-aura-ring.ring-1 {
    width: 240px !important;
    height: 240px !important;
  }
  .stage-aura-ring.ring-2 {
    width: 300px !important;
    height: 300px !important;
  }
  .floating-herb-badge {
    padding: 0.38rem 0.65rem !important;
    transform: scale(0.82) !important;
  }
  .badge-top-left {
    top: 3% !important;
    left: -1% !important;
  }
  .badge-top-right {
    top: 20% !important;
    right: -1% !important;
  }
  .badge-bottom-left {
    bottom: 3% !important;
    left: 4% !important;
  }
}

/* =========================================================================
   2026 APPLE-STYLE 3D IMAGE SEQUENCE SCROLL SHOWCASE (v4.0)
   ========================================================================= */

.scroll-3d-section {
  position: relative;
  width: 100%;
  height: 500vh;
  background: radial-gradient(circle at 50% 30%, #15382b 0%, #08241b 60%, #03100b 100%);
  color: #ffffff;
}

.sticky-canvas-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Preloader Bar */
.sequence-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  max-width: 320px;
  background: rgba(8, 36, 27, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(197, 155, 39, 0.42);
  border-radius: 24px;
  padding: 2.2rem 1.6rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sequence-loader.fade-out {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(197, 155, 39, 0.25);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spinLoader 1s linear infinite;
  margin-bottom: 1.5rem;
}

.loader-bar-wrap {
  width: 260px;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), #ffd875);
  transition: width 0.15s ease;
}

@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

/* High-DPI Canvas */
#sequence-canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
}

/* Chapter Navigation Pills */
.chapter-pill-nav {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chapter-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.chapter-pill:hover, .chapter-pill.active {
  background: linear-gradient(135deg, var(--gold-primary), #d8aa32);
  color: #08241b;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.4);
}

/* Hotspot Pins Overlay */
.canvas-hotspots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}

.canvas-hotspot-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.canvas-hotspot-pin.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.pin-dot-ring {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pin-core {
  width: 12px;
  height: 12px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-primary);
  z-index: 2;
}

.pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  animation: pinPulseRing 2s infinite ease-out;
}

@keyframes pinPulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

.pin-callout-box {
  background: rgba(10, 35, 25, 0.38);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 0.7rem 1.15rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.pin-callout-box strong {
  display: block;
  font-size: 0.95rem;
  color: #ffd875;
  margin-bottom: 0.15rem;
}

.pin-callout-box span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Large Editorial Chapter Cards */
.scroll-chapter-cards-container {
  position: absolute;
  bottom: 8%;
  left: 5%;
  right: 5%;
  z-index: 35;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.scroll-chapter-card {
  position: absolute;
  bottom: 0;
  max-width: 640px;
  width: 100%;
  background: rgba(10, 45, 32, 0.35);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  padding: 2.5rem 3rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.scroll-chapter-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chapter-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd875;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.scroll-chapter-card h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.scroll-chapter-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .scroll-chapter-cards-container {
    bottom: 3.5%;
    left: 3%;
    right: 3%;
  }
  .scroll-chapter-card {
    padding: 1.4rem 1.4rem;
    border-radius: 20px;
  }
  .scroll-chapter-card h2 {
    font-size: 1.45rem;
    margin-bottom: 0.6rem;
  }
  .scroll-chapter-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }
  .chapter-pill-nav {
    top: 1rem;
    width: 94%;
    max-width: 420px;
    padding: 0.35rem 0.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chapter-pill-nav::-webkit-scrollbar {
    display: none;
  }
  .chapter-pill {
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pin-callout-box {
    max-width: 180px;
    white-space: normal;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
}


