/*
Theme Name: AyurManthra
Theme URI: https://myayurmanthra.com
Author: AyurManthra
Author URI: https://myayurmanthra.com
Description: Premium Ayurvedic e-commerce WordPress theme for AyurManthra – ISO & FDA certified Ayurvedic products from Palakkad, Kerala. Optimised for WooCommerce, SEO, Core Web Vitals and AI/GPT traffic.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 8.0
WC tested up to: 9.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ayurmanthra
Tags: woocommerce, ayurveda, ecommerce, kerala, fast, seo
*/

/* =========================================================
   DESIGN TOKENS – AyurManthra Brand System
   =========================================================*/
:root {
  /* Brand Colours */
  --gold:        #F5A623;
  --gold-dark:   #D4881A;
  --gold-light:  #FFC857;
  --green:       #2E7D32;
  --green-mid:   #4CAF50;
  --green-light: #81C784;
  --green-dark:  #1B5E20;
  --black:       #0D0D0D;
  --off-white:   #FAF8F3;
  --cream:       #F5EFE0;
  --bark:        #8D6E63;
  --text:        #1A1A1A;
  --text-muted:  #5A5A5A;
  --border:      #E0D8C8;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'Fira Code', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Sizing */
  --max-w:      1280px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --shadow-gold: 0 4px 20px rgba(245,166,35,.25);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --transition: .25s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--space-sm); }

ul, ol { padding-left: 1.5em; }

/* =========================================================
   UTILITIES
   =========================================================*/
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1440px; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-md); }

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap     { display: flex; align-items: center; gap: var(--space-sm); }

.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green); }
.text-muted   { color: var(--text-muted); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =========================================================
   BUTTONS
   =========================================================*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.4);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* =========================================================
   SECTION HEADINGS
   =========================================================*/
.section-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-heading .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-heading h2 {
  margin-bottom: .75rem;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* =========================================================
   ANNOUNCEMENT BAR
   =========================================================*/
.announcement-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-dark));
  color: #fff;
  text-align: center;
  padding: .5rem var(--space-md);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
}

.announcement-bar a { color: var(--gold-light); text-decoration: underline; }
.announcement-bar strong { color: var(--gold-light); }

/* =========================================================
   HEADER & NAVIGATION
   =========================================================*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: .75rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img,
.site-logo .custom-logo {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}

.site-logo .logo-tagline {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Main Nav - sits right after logo */
.main-nav-wrap {
  flex: 1;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .25rem;
  list-style: none;
  padding: 0;
}

.main-nav > li { position: relative; }

.main-nav > li > a {
  display: block;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
  color: var(--green);
  background: rgba(46,125,50,.07);
}

/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  list-style: none;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s var(--ease);
  z-index: 100;
}

.main-nav > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu a {
  display: block;
  padding: .5rem .75rem;
  font-size: .875rem;
  color: var(--text);
  border-radius: var(--radius-sm);
}

.main-nav .sub-menu a:hover {
  background: var(--cream);
  color: var(--green);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all var(--transition);
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.header-icon-btn:hover {
  background: var(--cream);
  color: var(--green);
}

.header-icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search bar */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search input {
  width: 220px;
  padding: .5rem 2.5rem .5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .875rem;
  background: var(--cream);
  color: var(--text);
  transition: all var(--transition);
}

.header-search input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  width: 260px;
}

.header-search button {
  position: absolute;
  right: .75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================================
   HERO SECTION
   =========================================================*/
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f0a 0%, #1B5E20 40%, #2E7D32 60%, #0a1f0a 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="%23ffffff08"/><circle cx="80" cy="70" r="50" fill="%23F5A62310"/></svg>') no-repeat center/cover;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-xl);
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--gold-light);
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-certs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: .3rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.cert-badge svg { color: var(--gold-light); }

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

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.4);
}

.hero-float-card--tl {
  top: 1.5rem;
  left: -2rem;
}

.hero-float-card--br {
  bottom: 2rem;
  right: -2rem;
}

.float-card-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: .2rem;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.float-card-sub {
  font-size: .75rem;
  color: var(--text-muted);
}

/* =========================================================
   TRUST STRIP
   =========================================================*/
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

/* =========================================================
   CATEGORIES GRID
   =========================================================*/
.categories-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.category-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  group: true;
}

.category-card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.category-info {
  padding: 1rem;
}

.category-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
}

.category-count {
  font-size: .8rem;
  color: var(--text-muted);
}

/* =========================================================
   FEATURED PRODUCTS
   =========================================================*/
.products-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* WooCommerce Product Card Override */
.woocommerce ul.products li.product,
.product-card {
  background: #fff !important;
  border-radius: var(--radius-md) !important;
  border: 1.5px solid var(--border) !important;
  overflow: hidden !important;
  transition: all var(--transition) !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
  position: relative;
}

.woocommerce ul.products li.product:hover,
.product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--green-light) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
}

.woocommerce ul.products li.product img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  transition: transform .4s var(--ease) !important;
}

.woocommerce ul.products li.product:hover img {
  transform: scale(1.04) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  padding: .875rem 1rem .25rem !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product .price {
  padding: 0 1rem .5rem !important;
  font-weight: 700 !important;
  color: var(--green) !important;
  font-size: 1.1rem !important;
}

.woocommerce ul.products li.product .price del { color: var(--text-muted) !important; font-size: .9rem !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: block !important;
  margin: .5rem 1rem 1rem !important;
  padding: .6rem 1rem !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: .875rem !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  text-decoration: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
}

.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--green);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: var(--radius-pill);
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-badge.sale { background: var(--gold-dark); }
.product-badge.new  { background: var(--green); }

/* =========================================================
   WHY AYURVEDA SECTION
   =========================================================*/
.why-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100 10 L190 55 L190 145 L100 190 L10 145 L10 55 Z" fill="%23ffffff06"/></svg>') repeat;
  background-size: 80px 80px;
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why-content .section-heading { text-align: left; }
.why-content .section-heading .eyebrow { color: var(--gold-light); }
.why-content .section-heading h2,
.why-content .section-heading p { color: rgba(255,255,255,.9); }
.why-content .section-heading p { color: rgba(255,255,255,.7); }

.why-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.why-feature-body h4 {
  color: #fff;
  margin-bottom: .25rem;
}

.why-feature-body p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin: 0;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.why-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* =========================================================
   ABOUT / CERTIFICATIONS
   =========================================================*/
.certifications-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: var(--space-md);
}

.cert-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
}

.cert-logo-box {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all var(--transition);
}

.cert-logo-box:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245,166,35,.15);
}

.cert-logo-box svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.cert-logo-name {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
}

/* =========================================================
   TESTIMONIALS
   =========================================================*/
.testimonials-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1.5px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--cream);
  font-family: var(--font-display);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: .2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
}

.testimonial-place {
  font-size: .8rem;
  color: var(--text-muted);
}

/* =========================================================
   BLOG / ARTICLES
   =========================================================*/
.blog-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

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

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.blog-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
  display: block;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  font-size: .8rem;
  color: var(--text-muted);
}

/* =========================================================
   CTA BANNER
   =========================================================*/
.cta-section {
  padding: var(--space-xl) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,.15), transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,125,50,.2), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-inner .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   =========================================================*/
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
}

.footer-main {
  padding: var(--space-xl) 0 var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-brand-desc {
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.6);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-brand-logo img { width: 40px; height: 40px; }

.footer-brand-logo .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-logo .tagline {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

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

.footer-links a::before {
  content: '→';
  font-size: .8rem;
  opacity: .5;
}

/* Contact Details */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,.6);
}

.footer-contact-item a:hover { color: var(--gold-light); }

/* Social Icons */
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: .6rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: .875rem;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-form input:focus { outline: none; border-color: var(--gold); }

.footer-newsletter-form button {
  padding: .6rem 1.25rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  font-size: .875rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.footer-newsletter-form button:hover { background: var(--gold-dark); }

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer-payment-icons {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.payment-icon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: .25rem .5rem;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   WOOCOMMERCE – SINGLE PRODUCT
   =========================================================*/
.woocommerce div.product {
  padding: var(--space-lg) 0;
}

.woocommerce div.product .product_title {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  margin-bottom: .75rem !important;
}

.woocommerce div.product .price {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--green) !important;
}

.woocommerce div.product .woocommerce-product-rating .star-rating {
  color: var(--gold) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 2px solid var(--border) !important;
  padding: 0 !important;
  margin: 0 0 2rem !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block !important;
  padding: .75rem 1.5rem !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  border-bottom: 2px solid transparent !important;
  margin-bottom: -2px !important;
  transition: all var(--transition) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--green) !important;
  border-bottom-color: var(--green) !important;
}

/* =========================================================
   WOOCOMMERCE – CART & CHECKOUT
   =========================================================*/
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: .65rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: .95rem !important;
  transition: border-color var(--transition) !important;
  background: #fff !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--green) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(46,125,50,.1) !important;
}

.woocommerce input.button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce #place_order {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  padding: .75rem 2rem !important;
  font-size: 1rem !important;
  transition: all var(--transition) !important;
  cursor: pointer !important;
}

.woocommerce input.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce #place_order:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* =========================================================
   WOOCOMMERCE – NOTICES
   =========================================================*/
.woocommerce-message, .woocommerce-info {
  border-top-color: var(--green) !important;
  background: rgba(46,125,50,.07) !important;
}

.woocommerce-error {
  border-top-color: #c0392b !important;
}

/* =========================================================
   BREADCRUMBS
   =========================================================*/
.breadcrumb-wrap {
  background: var(--cream);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}

.woocommerce .woocommerce-breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  padding: 0;
  background: transparent;
  margin: 0;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--green);
}

/* =========================================================
   PAGINATION
   =========================================================*/
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span.current {
  padding: .5rem .875rem !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all var(--transition) !important;
  margin: 0 .2rem !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}

/* =========================================================
   STAR RATING
   =========================================================*/
.woocommerce .star-rating span::before {
  color: var(--gold) !important;
}

/* =========================================================
   STICKY ADD TO CART
   =========================================================*/
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--border);
  padding: 1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-name { font-weight: 700; font-family: var(--font-display); }
.sticky-atc-price { color: var(--green); font-weight: 700; }

/* =========================================================
   BACK TO TOP
   =========================================================*/
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 400;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE
   =========================================================*/
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc  { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-certs { justify-content: center; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .why-content .section-heading { text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { gap: 1.5rem; }
  .header-search { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-float-card { display: none; }
  .trust-strip-inner { gap: 1rem; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* =========================================================
   MOBILE NAV OVERLAY
   =========================================================*/
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1500;
}

.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 1600;
}

.mobile-nav-panel.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links a {
  display: block;
  padding: .875rem .5rem;
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
}

.mobile-nav-links a:hover { color: var(--green); }

.mobile-nav-links .sub-menu {
  list-style: none;
  padding: 0 0 .5rem .75rem;
}

.mobile-nav-links .sub-menu a {
  padding: .5rem;
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-muted);
  border-bottom: none;
}

/* =========================================================
   FLOATING WHATSAPP
   =========================================================*/
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 400;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.1);
}

/* =========================================================
   SMOOTH PAGE ANIMATIONS
   =========================================================*/
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }

  .fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up:nth-child(1) { transition-delay: 0s; }
  .fade-up:nth-child(2) { transition-delay: .1s; }
  .fade-up:nth-child(3) { transition-delay: .2s; }
  .fade-up:nth-child(4) { transition-delay: .3s; }
}

/* =========================================================
   AYURVEDA FACT TICKER
   =========================================================*/
.ticker-wrap {
  background: var(--green-dark);
  overflow: hidden;
  padding: .4rem 0;
}

.ticker-inner {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 0 3rem;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.ticker-item span { color: var(--gold-light); font-weight: 700; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SEO STRUCTURED HERO TEXT FOR GPT / AI Visibility
   =========================================================*/
.seo-text-block {
  background: var(--cream);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green);
  margin: var(--space-md) 0;
}

.seo-text-block p { font-size: .9rem; color: var(--text-muted); margin-bottom: .5rem; }
.seo-text-block p:last-child { margin-bottom: 0; }

/* =========================================================
   PRINT STYLES
   =========================================================*/
@media print {
  .site-header, .site-footer, .hero, .cta-section,
  .whatsapp-float, .back-to-top { display: none !important; }
}
