/*
Theme Name: Herb Heaven
Theme URI: https://www.herbheavenlife.com
Author: Herb Heaven
Author URI: https://www.herbheavenlife.com
Description: A clean, natural WordPress theme for Herb Heaven Herbal Cosmetics. Elementor compatible, green & white aesthetic with animation support.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: herbheaven
Tags: elementor, custom-colors, custom-menu, featured-images, full-width-template, theme-options, blog, e-commerce
*/

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

:root {
  --hh-green:        #2E7D32;
  --hh-green-light:  #4CAF50;
  --hh-green-pale:   #E8F5E9;
  --hh-green-dark:   #1B5E20;
  --hh-black:        #111111;
  --hh-text:         #222222;
  --hh-muted:        #555555;
  --hh-white:        #FFFFFF;
  --hh-bg:           #FFFFFF;
  --hh-bg-alt:       #F9FCF9;
  --hh-gold:         #C8A84B;
  --hh-gold-light:   #FFF8E1;
  --hh-border:       #DDE8DD;
  --hh-radius:       10px;
  --hh-shadow:       0 4px 24px rgba(46,125,50,0.09);
  --hh-font-heading: 'Playfair Display', Georgia, serif;
  --hh-font-body:    'Lato', 'Open Sans', Arial, sans-serif;
  --hh-transition:   all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--hh-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--hh-text);
  background: var(--hh-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hh-green); text-decoration: none; transition: var(--hh-transition); }
a:hover { color: var(--hh-green-dark); }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hh-font-heading);
  color: var(--hh-green);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { color: var(--hh-black); margin-bottom: 1rem; }

.section-title {
  color: var(--hh-green);
  font-family: var(--hh-font-heading);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--hh-black);
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--hh-green);
  border: none;
  margin: 0.75rem auto 1.5rem;
  border-radius: 2px;
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-alt { background: var(--hh-bg-alt); }
.bg-green { background: var(--hh-green); }
.bg-green-pale { background: var(--hh-green-pale); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--hh-radius);
  font-family: var(--hh-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--hh-transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--hh-green);
  color: var(--hh-white);
  border-color: var(--hh-green);
}
.btn-primary:hover {
  background: var(--hh-green-dark);
  border-color: var(--hh-green-dark);
  color: var(--hh-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--hh-green);
  border-color: var(--hh-green);
}
.btn-outline:hover {
  background: var(--hh-green);
  color: var(--hh-white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--hh-white);
  color: var(--hh-green);
  border-color: var(--hh-white);
}
.btn-white:hover {
  background: var(--hh-green-pale);
  transform: translateY(-2px);
}

/* ===========================
   NAVIGATION / HEADER
=========================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--hh-white);
  border-bottom: 1px solid var(--hh-border);
  box-shadow: 0 2px 12px rgba(46,125,50,0.07);
  transition: var(--hh-transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(46,125,50,0.13);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 44px;
  height: 44px;
}
.site-logo .logo-text {
  font-family: var(--hh-font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--hh-green);
  line-height: 1.1;
}
.site-logo .logo-tagline {
  font-size: 0.68rem;
  color: var(--hh-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--hh-black);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: var(--hh-transition);
}
.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
  color: var(--hh-green);
  background: var(--hh-green-pale);
}

/* Dropdown */
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius);
  box-shadow: var(--hh-shadow);
  list-style: none;
  padding: 8px 0;
  z-index: 100;
}
.primary-nav li:hover > .sub-menu { display: block; }
.primary-nav .sub-menu li a {
  display: block;
  padding: 9px 18px;
  color: var(--hh-black);
  font-size: 0.88rem;
  transition: var(--hh-transition);
}
.primary-nav .sub-menu li a:hover {
  color: var(--hh-green);
  background: var(--hh-green-pale);
  padding-left: 24px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--hh-green);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--hh-green);
  margin: 5px 0;
  transition: var(--hh-transition);
  border-radius: 2px;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 45%, #388E3C 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, #fff 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 50px 50px;
}
.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #C8E6C9;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-text h1 {
  color: var(--hh-white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.hero-text h1 span {
  color: #A5D6A7;
}
.hero-text p {
  color: #C8E6C9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--hh-white);
  font-family: var(--hh-font-heading);
  display: block;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: #A5D6A7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero product image side */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.15);
  animation: rotate-slow 30s linear infinite;
}
.hero-product-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.6);
}
.hero-product-placeholder .leaf-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 0.5rem;
  animation: float 4s ease-in-out infinite;
}
.hero-product-placeholder p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,50,0.3); }
  50%       { box-shadow: 0 0 0 14px rgba(46,125,50,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.animate-fadeup  { animation: fadeInUp  0.7s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.25s; }
.animate-delay-3 { animation-delay: 0.4s; }
.animate-delay-4 { animation-delay: 0.55s; }

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"]   { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===========================
   ABOUT SNIPPET
=========================== */
.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-snippet-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  background: var(--hh-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-snippet-img .img-placeholder {
  text-align: center;
  color: var(--hh-green);
  font-size: 4rem;
}
.about-tag {
  display: inline-block;
  background: var(--hh-green-pale);
  color: var(--hh-green);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--hh-green-pale);
  border-radius: 10px;
  padding: 12px 14px;
}
.about-feature .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.about-feature strong {
  color: var(--hh-green);
  font-size: 0.85rem;
  display: block;
}
.about-feature span { font-size: 0.78rem; color: var(--hh-muted); }

/* ===========================
   PRODUCT CATEGORIES
=========================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.category-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--hh-transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46,125,50,0.14);
  border-color: var(--hh-green-light);
}
.category-card-img {
  height: 200px;
  background: var(--hh-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.category-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(46,125,50,0.06));
}
.category-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-body { padding: 20px 22px; }
.category-card-body h3 {
  color: var(--hh-green);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.category-card-body p {
  color: var(--hh-muted);
  font-size: 0.88rem;
  margin: 0 0 14px;
  line-height: 1.55;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hh-green);
  font-size: 0.85rem;
  font-weight: 600;
}
.card-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.category-card:hover .card-arrow::after { transform: translateX(5px); }

/* ===========================
   UPCOMING PRODUCTS
=========================== */
.upcoming-section {
  background: linear-gradient(135deg, var(--hh-green-dark) 0%, var(--hh-green) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.upcoming-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.upcoming-section .section-title { color: var(--hh-white); }
.upcoming-section .section-subtitle { color: rgba(255,255,255,0.75); }
.upcoming-section .section-divider { background: #A5D6A7; }
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.upcoming-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--hh-transition);
  backdrop-filter: blur(6px);
}
.upcoming-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.upcoming-card .icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.upcoming-card h4 { color: var(--hh-white); font-size: 1rem; margin-bottom: 6px; }
.upcoming-card p { color: rgba(255,255,255,0.68); font-size: 0.82rem; margin: 0; }
.coming-soon-badge {
  display: inline-block;
  background: var(--hh-gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ===========================
   WHY HERB HEAVEN
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  transition: var(--hh-transition);
}
.feature-card:hover {
  border-color: var(--hh-green-light);
  box-shadow: var(--hh-shadow);
  transform: translateY(-4px);
}
.feature-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--hh-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  transition: var(--hh-transition);
  animation: pulse-green 3s infinite;
}
.feature-card:hover .feature-icon {
  background: var(--hh-green);
  animation: none;
}
.feature-card h4 { color: var(--hh-green); margin-bottom: 8px; }
.feature-card p { color: var(--hh-muted); font-size: 0.88rem; margin: 0; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--hh-bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: var(--hh-transition);
}
.testimonial-card:hover {
  box-shadow: var(--hh-shadow);
  transform: translateY(-3px);
}
.testimonial-card .quote-mark {
  font-size: 3rem;
  color: var(--hh-green-pale);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 16px; left: 22px;
}
.testimonial-card p {
  color: var(--hh-black);
  font-style: italic;
  margin: 20px 0 18px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--hh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info strong {
  color: var(--hh-green);
  display: block;
  font-size: 0.9rem;
}
.author-info span { color: var(--hh-muted); font-size: 0.78rem; }
.stars { color: #FFC107; font-size: 0.85rem; margin-bottom: 4px; }

/* ===========================
   NEWSLETTER / CTA SECTION
=========================== */
.cta-section {
  background: var(--hh-green-pale);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { color: var(--hh-green); margin-bottom: 0.75rem; }
.cta-section p { color: var(--hh-black); margin-bottom: 1.8rem; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 13px 18px;
  border: 1.5px solid var(--hh-border);
  border-radius: var(--hh-radius);
  font-size: 0.95rem;
  outline: none;
  transition: var(--hh-transition);
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--hh-green);
}

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background: #0D2B0F;
  color: #A5D6A7;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-brand .logo-text { color: #81C784; }
.footer-brand p {
  color: #81C784;
  font-size: 0.88rem;
  margin: 14px 0 20px;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #A5D6A7;
  font-size: 0.85rem;
  transition: var(--hh-transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--hh-green); color: white; transform: translateY(-2px); }

.footer-col h5 {
  color: #E8F5E9;
  font-family: var(--hh-font-heading);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #81C784;
  font-size: 0.86rem;
  transition: var(--hh-transition);
}
.footer-links a:hover { color: var(--hh-white); padding-left: 4px; }

.footer-contact p {
  color: #81C784;
  font-size: 0.84rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact .icon { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: #558B5E;
  font-size: 0.8rem;
  margin: 0;
}

/* ===========================
   PRODUCT PAGES
=========================== */
.product-hero {
  background: var(--hh-green-pale);
  padding: 60px 0 40px;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-image-box {
  background: var(--hh-white);
  border-radius: 20px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--hh-border);
  position: relative;
  overflow: hidden;
}
.product-image-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.product-badge {
  display: inline-block;
  background: var(--hh-green);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-benefits {
  list-style: none;
  margin: 1.2rem 0;
}
.product-benefits li {
  padding: 7px 0;
  color: var(--hh-black);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--hh-green-pale);
}
.product-benefits li::before {
  content: '✓';
  color: var(--hh-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Product variants / grid on category page */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--hh-transition);
}
.product-card:hover {
  box-shadow: 0 12px 36px rgba(46,125,50,0.12);
  transform: translateY(-5px);
  border-color: var(--hh-green-light);
}
.product-card-img {
  height: 220px;
  background: var(--hh-green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 18px 20px; }
.product-card-body h3 { color: var(--hh-green); font-size: 1.05rem; margin-bottom: 6px; }
.product-card-body p { color: var(--hh-muted); font-size: 0.84rem; margin-bottom: 14px; line-height: 1.5; }

/* ===========================
   INNER PAGE HERO
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--hh-green-dark), var(--hh-green));
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero h1 { color: var(--hh-white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 8px; }

/* ===========================
   ABOUT PAGE
=========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  border: 1px solid var(--hh-border);
  background: var(--hh-white);
  transition: var(--hh-transition);
}
.team-card:hover { box-shadow: var(--hh-shadow); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--hh-green);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  margin: 0 auto 14px;
}
.team-card h4 { color: var(--hh-green); font-size: 1rem; margin-bottom: 4px; }
.team-card p { color: var(--hh-muted); font-size: 0.82rem; margin: 0; }

/* ===========================
   FAQ PAGE
=========================== */
.faq-item {
  border: 1px solid var(--hh-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--hh-white);
  transition: var(--hh-transition);
}
.faq-item.active { border-color: var(--hh-green-light); }
.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--hh-black);
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
}
.faq-question:hover { color: var(--hh-green); }
.faq-toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--hh-green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--hh-green);
  font-size: 1rem;
  transition: var(--hh-transition);
  flex-shrink: 0;
}
.faq-item.active .faq-toggle { background: var(--hh-green); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 22px 18px;
  color: var(--hh-black);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===========================
   CAREERS PAGE
=========================== */
.job-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--hh-transition);
}
.job-card:hover { box-shadow: var(--hh-shadow); border-color: var(--hh-green-light); }
.job-info h4 { color: var(--hh-green); margin-bottom: 4px; font-size: 1.05rem; }
.job-info p { color: var(--hh-muted); font-size: 0.85rem; margin: 0; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.job-tag {
  background: var(--hh-green-pale);
  color: var(--hh-green);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===========================
   MEDIA PAGE
=========================== */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.press-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--hh-transition);
}
.press-card:hover { box-shadow: var(--hh-shadow); transform: translateY(-3px); }
.press-card-img {
  height: 160px;
  background: var(--hh-green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.press-card-body { padding: 18px 20px; }
.press-date { color: var(--hh-muted); font-size: 0.78rem; margin-bottom: 8px; }
.press-card-body h4 { color: var(--hh-green); font-size: 0.95rem; margin-bottom: 6px; }
.press-card-body p { color: var(--hh-black); font-size: 0.84rem; line-height: 1.55; }

/* ===========================
   CONTACT / FORMS
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--hh-green);
  border-radius: 16px;
  padding: 36px 30px;
  color: white;
}
.contact-info-card h3 { color: white; margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item strong { color: white; display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-info-item span { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

.contact-form-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  padding: 36px 30px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  color: var(--hh-black);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--hh-border);
  border-radius: var(--hh-radius);
  font-family: var(--hh-font-body);
  font-size: 0.92rem;
  color: var(--hh-black);
  background: var(--hh-white);
  transition: var(--hh-transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--hh-green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===========================
   POLICIES / TERMS PAGES
=========================== */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}
.policy-content h2 {
  color: var(--hh-green);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}
.policy-content h3 {
  color: var(--hh-green-dark);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}
.policy-content p, .policy-content li {
  color: var(--hh-black);
  font-size: 0.93rem;
  line-height: 1.8;
}
.policy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content li { margin-bottom: 6px; }

/* ===========================
   SUSTAINABILITY PAGE
=========================== */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sustain-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: var(--hh-transition);
}
.sustain-card:hover { border-color: var(--hh-green-light); box-shadow: var(--hh-shadow); transform: translateY(-4px); }
.sustain-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.sustain-card h4 { color: var(--hh-green); margin-bottom: 8px; }
.sustain-card p { color: var(--hh-black); font-size: 0.86rem; }

/* ===========================
   SCROLL TO TOP
=========================== */
#scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--hh-green);
  color: white;
  border: none; border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(46,125,50,0.3);
  transition: var(--hh-transition);
  z-index: 999;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { background: var(--hh-green-dark); transform: translateY(-3px); }

/* ===========================
   ELEMENTOR OVERRIDES
=========================== */
.elementor-widget-heading .elementor-heading-title { font-family: var(--hh-font-heading); }
.elementor-section.elementor-section-full_width > .elementor-container { max-width: 100%; }
.e-con { --padding-block-start: 0; --padding-block-end: 0; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-snippet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--hh-white);
    padding: 80px 24px 24px;
    z-index: 9998;
    overflow-y: auto;
  }
  .primary-nav.open > li > a { font-size: 1.1rem; padding: 14px 0; border-bottom: 1px solid var(--hh-border); }
  .section-pad { padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 2rem; }
  .categories-grid { grid-template-columns: 1fr; }
}

/* ===========================
   PRINT
=========================== */
@media print {
  #site-header, #site-footer, .hero-bg-pattern, #scroll-top { display: none; }
  body { font-size: 12pt; }
}
