/*
Theme Name: Johntee's QRLiver Theme
Theme URI: https://www.johntees.com/qrliver-theme
Author: Antigravity AI
Author URI: https://deepmind.google/
Description: A premium, ultra-fast native WordPress landing page theme for Johntee's QRLiver Ayurvedic Liver Care Capsule. Bypasses page builders entirely for sub-second page loads.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: qrliver-theme
Tags: custom-background, one-column, custom-menu, translation-ready

This theme is built natively to render Johntee's QRLiver supplement landing page.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

:root {
  /* Color Palette */
  --primary-green: #0B4D2C;
  --secondary-green: #1F6B3A;
  --gold-accent: #D4AF37;
  --bg-cream: #F8F5EE;
  --white: #FFFFFF;
  
  /* Text and Neutral Colors */
  --text-dark: #1F2E26;
  --text-medium: #3A4E42;
  --text-light: #5A7063;
  --border-light: rgba(11, 77, 44, 0.08);
  --border-medium: rgba(11, 77, 44, 0.15);
  
  /* Borders and Shadow Design System */
  --border-radius: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(11, 77, 44, 0.05), 0 2px 4px -1px rgba(11, 77, 44, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 77, 44, 0.07), 0 4px 6px -2px rgba(11, 77, 44, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 77, 44, 0.08), 0 10px 10px -5px rgba(11, 77, 44, 0.03);
  --shadow-pedestal: 0 30px 60px rgba(11, 77, 44, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  
  /* Animation Timing */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout Sizing */
  --max-width: 1280px;
  
  /* Paddings */
  --section-pad-desktop: 100px;
  --section-pad-tablet: 60px;
  --section-pad-mobile: 40px;
}

/* Reset and Globals */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.25;
}

/* Main Section Structure */
.section {
  position: relative;
  padding-top: var(--section-pad-desktop);
  padding-bottom: var(--section-pad-desktop);
  width: 100%;
}

.section-cream {
  background-color: var(--bg-cream);
}

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  width: 100%;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.text-center {
  text-align: center;
}

/* Title Underlines */
.title-underline {
  width: 48px;
  height: 3px;
  background-color: var(--gold-accent);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

.title-underline-left {
  width: 48px;
  height: 3px;
  background-color: var(--gold-accent);
  margin: 16px 0 0 0;
  border-radius: 2px;
}

.section-pretitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-green);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 16px auto 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
  box-shadow: 0 4px 14px rgba(11, 77, 44, 0.2);
}

.btn-primary:hover {
  background-color: var(--secondary-green);
  border-color: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 77, 44, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--primary-green);
  background-color: rgba(11, 77, 44, 0.02);
  transform: translateY(-2px);
}

.btn-whatsapp-icon {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-gleam {
  position: relative;
  overflow: hidden;
}

.btn-gleam::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  animation: buttonGleam 4s infinite ease-in-out;
}

@keyframes buttonGleam {
  0% { left: -60%; }
  15% { left: 140%; }
  100% { left: 140%; }
}

/* ================================================= */
/* SECTION 1: ANNOUNCEMENT BAR                       */
/* ================================================= */
.announcement-bar {
  background-color: var(--primary-green);
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-item svg {
  fill: var(--gold-accent);
  width: 14px;
  height: 14px;
}

/* ================================================= */
/* SECTION 2: HEADER                                 */
/* ================================================= */
.header {
  position: relative;
  z-index: 1000;
  background-color: rgba(248, 245, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 77, 44, 0.05);
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(11, 77, 44, 0.05);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  transition: var(--transition-smooth);
}

.header-sticky .logo-img {
  height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
}

/* ================================================= */
/* SECTION 3: HERO SECTION                           */
/* ================================================= */
.hero-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(248, 245, 238, 0.5) 100%);
  padding-top: 60px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 16px;
}

.hero-subheading {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-benefit-item svg {
  fill: var(--secondary-green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.hero-pedestal {
  position: absolute;
  bottom: 40px;
  width: 320px;
  height: 48px;
  background: radial-gradient(ellipse at center, rgba(11, 77, 44, 0.12) 0%, rgba(248, 245, 238, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-bottle {
  position: relative;
  height: 440px;
  width: auto;
  object-fit: contain;
  z-index: 2;
  animation: floatBottle 6s infinite ease-in-out;
  filter: drop-shadow(0 20px 30px rgba(11, 77, 44, 0.12));
}

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

.hero-leaf {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
}

.hero-leaf-1 {
  top: 10%;
  right: -5%;
  width: 80px;
  transform: rotate(-15deg);
}

.hero-leaf-2 {
  bottom: 20%;
  left: -5%;
  width: 90px;
  transform: rotate(35deg);
}

.hero-badge-plant {
  position: absolute;
  top: 25%;
  right: 0%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(11, 77, 44, 0.08);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 4;
  text-align: center;
  animation: floatBadge 6s infinite ease-in-out 1s;
}

.hero-badge-plant svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary-green);
  margin-bottom: 4px;
}

.hero-badge-plant span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: var(--text-dark);
}

@keyframes floatBadge {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ================================================= */
/* SECTION 4: TRUST BAR                              */
/* ================================================= */
.trust-bar-wrapper {
  position: relative;
  margin-top: -60px;
  z-index: 10;
}

.trust-bar-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 77, 44, 0.05);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 16px;
  border-right: 1px solid rgba(11, 77, 44, 0.08);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-item svg {
  width: 28px;
  height: 28px;
  fill: var(--secondary-green);
  flex-shrink: 0;
}

.trust-bar-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ================================================= */
/* SECTION 5: SYMPTOMS SECTION                       */
/* ================================================= */
.symptoms-section {
  background-color: var(--white);
}

.symptoms-grid {
  margin-top: 60px;
}

.symptom-card {
  background-color: var(--white);
  border: 1px solid rgba(11, 77, 44, 0.06);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.symptom-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}

.symptom-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(31, 107, 58, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(31, 107, 58, 0.08);
}

.symptom-card:hover .symptom-icon-wrapper {
  background-color: rgba(31, 107, 58, 0.08);
  transform: scale(1.05);
}

.symptom-icon-wrapper svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--secondary-green);
  stroke-width: 1.5;
}

.symptom-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.symptom-card:hover h3 {
  color: var(--primary-green);
}

.symptom-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ================================================= */
/* SECTION 6: WHY LIVER HEALTH MATTERS               */
/* ================================================= */
.why-matters-section {
  background-color: var(--white);
  border-top: 1px solid rgba(11, 77, 44, 0.04);
}

.why-matters-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-matters-circle-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  z-index: 1;
}

.why-matters-img {
  position: relative;
  width: 320px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(11, 77, 44, 0.08));
}

.why-matters-content {
  display: flex;
  flex-direction: column;
}

.why-matters-description {
  font-size: 16px;
  color: var(--text-medium);
  margin-top: 20px;
  margin-bottom: 24px;
}

.why-matters-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-matters-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.why-matters-item svg {
  fill: var(--secondary-green);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ================================================= */
/* SECTION 7: INGREDIENTS SECTION                    */
/* ================================================= */
.ingredients-section {
  background-color: var(--bg-cream);
}

.ingredients-grid {
  margin-top: 60px;
}

.ingredient-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 77, 44, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 77, 44, 0.12);
}

.ingredient-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ingredient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.ingredient-card:hover .ingredient-img {
  transform: scale(1.06);
}

.ingredient-info {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ingredient-name-container {
  margin-bottom: 12px;
}

.ingredient-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2px;
}

.ingredient-scientific {
  font-size: 12px;
  font-style: italic;
  color: var(--text-light);
}

.ingredient-desc {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.5;
}

.ingredients-foot {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-green);
  font-style: italic;
}

/* ================================================= */
/* SECTION 8: HOW IT WORKS                           */
/* ================================================= */
.how-it-works-section {
  background-color: var(--white);
}

.how-works-grid {
  margin-top: 60px;
  position: relative;
}

.how-works-connectors {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.how-works-arrow {
  width: 24px;
  height: 24px;
  fill: var(--border-medium);
  opacity: 0.5;
}

.how-works-step {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.how-works-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(11, 77, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.how-works-step:hover .how-works-circle {
  transform: translateY(-4px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.how-works-circle svg {
  width: 36px;
  height: 36px;
  fill: var(--primary-green);
}

.how-works-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.how-works-steptitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.how-works-stepdesc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 200px;
}

/* ================================================= */
/* SECTION 9: PRODUCT CTA SECTION                    */
/* ================================================= */
.product-cta-section {
  background-color: var(--bg-cream);
  padding-top: 80px;
  padding-bottom: 80px;
}

.product-cta-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 77, 44, 0.04);
}

.product-cta-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.product-cta-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-cta-bottle {
  height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(11, 77, 44, 0.12));
}

.product-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-cta-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.product-cta-text {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ================================================= */
/* SECTION 10: TRUST ICON STRIP                      */
/* ================================================= */
.trust-strip-section {
  background-color: var(--primary-green);
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip-item:last-child {
  border-right: none;
}

.trust-strip-item svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.trust-strip-content {
  display: flex;
  flex-direction: column;
}

.trust-strip-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.trust-strip-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}

/* ================================================= */
/* SECTION 11: CONTACT SECTION                       */
/* ================================================= */
.contact-section {
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(11, 77, 44, 0.05);
}

.contact-card {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(11, 77, 44, 0.04);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-green);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-detail-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

.contact-detail-val a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-detail-val a:hover {
  color: var(--primary-green);
}

.manufacturer-info {
  grid-column: span 3;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 77, 44, 0.08);
}

.manufacturer-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.manufacturer-text {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ================================================= */
/* SECTION 12: FOOTER                                */
/* ================================================= */
.footer {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(11, 77, 44, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  height: 68px;
  width: auto;
  align-self: flex-start;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-light);
  max-width: 320px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 0.5px;
}

.footer-group-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-item a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.footer-link-item a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-light);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal-link a {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-legal-link a:hover {
  color: var(--primary-green);
}

/* ================================================= */
/* ANIMATIONS (FADE UP ON SCROLL)                    */
/* ================================================= */
/* Fail-safe animations (visible by default) */
.fade-up-element {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide elements initially only when JS is confirmed to be running */
.js-enabled .fade-up-element {
  opacity: 0;
  transform: translateY(24px);
}

/* Reveal elements on scroll reveal */
.js-enabled .fade-up-element.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================= */
/* MOBILE STICKY WHATSAPP BUTTON                     */
/* ================================================= */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 12px 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-sticky-cta .btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 25px;
  background-color: #25D366;
  color: var(--white);
  border: none;
}

.mobile-sticky-cta .btn:hover {
  background-color: #128C7E;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ================================================= */
/* RESPONSIVE DESIGN - MEDIA QUERIES                 */
/* ================================================= */
@media (max-width: 1024px) {
  :root {
    --section-pad-desktop: var(--section-pad-tablet);
  }
  
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-bar-item {
    border-right: none;
    justify-content: flex-start;
    padding: 0 10px;
  }
  
  .trust-bar-item:nth-child(odd) {
    border-right: 1px solid rgba(11, 77, 44, 0.08);
  }
  
  .how-works-connectors {
    display: none;
  }
  
  .trust-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
  }
  
  .trust-strip-item {
    border-right: none;
  }
  
  .hero-heading {
    font-size: 46px;
  }
  
  .hero-media-wrapper {
    height: 400px;
  }
  
  .hero-bottle {
    height: 340px;
  }
  
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .manufacturer-info {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-desktop: var(--section-pad-mobile);
  }
  
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  
  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .trust-bar-item {
    border-right: none !important;
    padding: 10px 0;
    border-bottom: 1px solid rgba(11, 77, 44, 0.06);
  }
  
  .trust-bar-item:last-child {
    border-bottom: none;
  }
  
  .hero-section .grid-2 {
    display: flex;
    flex-direction: column-reverse;
    gap: 36px;
  }
  
  .hero-heading {
    font-size: 36px;
    text-align: center;
  }
  
  .hero-subheading {
    text-align: center;
  }
  
  .hero-benefits-list {
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .hero-buttons .btn {
    flex: 1;
    text-align: center;
  }
  
  .hero-media-wrapper {
    height: 300px;
    margin-bottom: 20px;
  }
  
  .hero-bottle {
    height: 280px;
  }
  
  .hero-badge-plant {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 5%;
  }
  
  .hero-badge-plant svg {
    width: 20px;
    height: 20px;
  }
  
  .hero-badge-plant span {
    font-size: 8px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Dropdown Active Mobile */
  .header.nav-active .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 24px;
    box-shadow: 0 10px 25px rgba(11, 77, 44, 0.15);
    border-bottom: 2px solid var(--primary-green);
    gap: 0; /* Changed to 0 so we can use padding for separator styling */
    align-items: flex-start;
    z-index: 1001; /* Layer above all body elements */
  }
  
  .header.nav-active .nav-link {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 600; /* Bold links */
    color: var(--text-dark) !important; /* Force high contrast dark color */
    padding: 14px 16px;
    border-bottom: 1px solid rgba(11, 77, 44, 0.08); /* Separator lines */
    transition: var(--transition-fast);
  }

  .header.nav-active .nav-link:hover {
    background-color: rgba(11, 77, 44, 0.03);
    color: var(--primary-green) !important;
  }

  .header.nav-active .nav-link:last-child {
    border-bottom: none;
  }
  
  .why-matters-section .grid-2 {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  
  .why-matters-graphic {
    margin-bottom: 20px;
  }
  
  .why-matters-circle-bg {
    width: 280px;
    height: 280px;
  }
  
  .why-matters-img {
    width: 220px;
  }
  
  .product-cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .product-cta-card {
    padding: 30px 20px;
  }
  
  .product-cta-content {
    align-items: center;
  }
  
  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .trust-strip-item {
    justify-content: flex-start;
    padding: 0;
  }
  
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-brand-logo {
    align-self: center;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-group-links {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 70px;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
}

/* ================================================= */
/* SECTION 13: FAQ ACCORDION SECTION (SEO FRIENDLY)  */
/* ================================================= */
.faq-section {
  background-color: var(--white);
  padding: 100px 24px;
  border-bottom: 1px solid rgba(11, 77, 44, 0.05);
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.faq-item {
  background-color: var(--bg-cream);
  border: 1px solid rgba(11, 77, 44, 0.06);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(11, 77, 44, 0.15);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background-color: var(--white);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600 !important;
  color: var(--primary-green) !important;
  margin: 0;
  line-height: 1.4;
  font-family: 'Inter', sans-serif !important;
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
  background-color: var(--bg-cream);
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium) !important;
  margin: 0;
  padding: 16px 0 20px 0;
}

/* Active FAQ Item styling */
.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Bounded height for transition */
}


/* ================================================= */
/* SECTION 14: BLOG CARDS & PREVIEW GRID             */
/* ================================================= */
.blog-preview-section {
  background-color: var(--bg-cream);
  padding: 100px 24px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid rgba(11, 77, 44, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 77, 44, 0.1);
}

.blog-card-image-link {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-tag {
  align-self: flex-start;
  background-color: rgba(31, 107, 58, 0.08);
  color: var(--secondary-green) !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700 !important;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--primary-green) !important;
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--secondary-green) !important;
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium) !important;
  margin-top: 0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary-green) !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.blog-card-link:hover {
  color: var(--primary-green) !important;
}

.blog-card-link:hover svg {
  transform: translateX(4px);
}

/* ================================================= */
/* SECTION 15: TREATMENT COURSE INFOGRAPHIC          */
/* ================================================= */
.treatment-section {
  background-color: var(--white);
  padding: 100px 24px;
  border-bottom: 1px solid rgba(11, 77, 44, 0.05);
}

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.treatment-info {
  display: flex;
  flex-direction: column;
}

.treatment-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.treatment-step {
  display: flex;
  gap: 20px;
  background: var(--bg-cream);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(11, 77, 44, 0.04);
}

.treatment-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--primary-green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11, 77, 44, 0.15);
}

.treatment-step-content h3 {
  font-size: 16px;
  margin: 0 0 6px 0;
  font-weight: 700 !important;
}

.treatment-step-content p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.treatment-mfg-card {
  background-color: var(--bg-cream);
  border-radius: 20px;
  padding: 40px;
  border: 1px dashed rgba(11, 77, 44, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mfg-badge-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mfg-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(11, 77, 44, 0.05);
}

.mfg-badge-item svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary-green);
  flex-shrink: 0;
}

.mfg-badge-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark) !important;
}

/* ================================================= */
/* SECTION 16: BLOG PAGES ARTICLE LAYOUTS            */
/* ================================================= */
.blog-header {
  background-color: var(--bg-cream);
  padding: 80px 24px 60px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(11, 77, 44, 0.05);
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.blog-post-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
}

.blog-post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium) !important;
}

.blog-post-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium) !important;
  margin-bottom: 24px;
}

.blog-post-content h2, .blog-post-content h3 {
  color: var(--primary-green) !important;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700 !important;
}

.blog-post-content h2 {
  font-size: 24px;
}

.blog-post-content h3 {
  font-size: 20px;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 8px;
  color: var(--text-medium) !important;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--secondary-green);
  padding-left: 20px;
  font-style: italic;
  margin: 30px 0;
  color: var(--primary-green) !important;
}

.blog-featured-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  height: 400px;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-cta-box {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  text-align: center;
  margin-top: 60px;
  box-shadow: var(--shadow-lg);
}

.blog-cta-box h3 {
  color: var(--white) !important;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 12px;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 600px;
  margin: 0 auto 24px auto;
  font-size: 15px;
}

/* ================================================= */
/* RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS        */
/* ================================================= */
@media (max-width: 1024px) {
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .treatment-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .mfg-badge-list {
    grid-template-columns: 1fr;
  }
  
  .blog-featured-img-wrapper {
    height: 260px;
  }
}

