@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Lato:wght@400;700;900&display=swap');

:root {
  --color-bg: #064e3b;
  --color-bg-2: #053e2f;
  --color-bg-white: #0a5d47;
  --color-bg-rgb: 6, 78, 59;
  --color-bg-white-rgb: 10, 93, 71;
  --color-surface: rgba(255,255,255,0.04);
  --color-surface-hover: rgba(110,231,183,0.08);
  --color-text: #ecfdf5;
  --color-text-secondary: #a7f3d0;
  --color-text-muted: #6ee7b7;
  --color-border: rgba(110,231,183,0.18);
  --color-border-light: rgba(110,231,183,0.08);

  --color-accent: #eade0e;
  --color-accent-2: #0eea98;
  --color-accent-3: #714de1;
  --color-accent-warm: #e3c13e;
  --color-accent-soft: #f1f1e3;
  --color-accent-2-soft: #e3f1ec;
  --color-accent-3-soft: #e7e4f0;
  --color-accent-warm-soft: #f0eee4;

  --color-footer-bg: #042f23;
  --color-footer-text: #ecfdf5;
  --color-footer-muted: #6ee7b7;
  --color-footer-link: #a7f3d0;
  --color-footer-border: rgba(110,231,183,0.15);
  --color-footer-social-bg: rgba(110,231,183,0.10);
  --color-footer-social-border: rgba(110,231,183,0.18);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.35);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.40);
  --shadow-lg: 0 14px 30px rgba(0,0,0,0.45);
  --shadow-xl: 0 24px 50px rgba(0,0,0,0.55);

  --font-heading: 'Merriweather', 'Georgia', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(110,231,183,0.10) 0%, transparent 38%),
    radial-gradient(circle at 88% 72%, rgba(14,234,152,0.08) 0%, transparent 42%),
    var(--color-bg);
}

/* Leaf-shadow dapple overlay */
@keyframes dapple-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.55; }
  50% { transform: translate(18px, -12px) rotate(2deg); opacity: 0.85; }
}

.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(110,231,183,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #064e3b 0%, #053e2f 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(110,231,183,0.22) 0%, transparent 9%),
    radial-gradient(circle at 22% 78%, rgba(14,234,152,0.18) 0%, transparent 7%),
    radial-gradient(circle at 78% 28%, rgba(110,231,183,0.20) 0%, transparent 8%),
    radial-gradient(circle at 92% 82%, rgba(14,234,152,0.14) 0%, transparent 6%),
    radial-gradient(circle at 48% 52%, rgba(110,231,183,0.10) 0%, transparent 10%),
    radial-gradient(circle at 62% 14%, rgba(110,231,183,0.16) 0%, transparent 7%);
  animation: dapple-drift 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero,
.hero-content { text-align: center; }
.hero-content { position: relative; z-index: 1; }
.hero-actions { justify-content: center; }
.hero-subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-secondary);
}

.hero-title { color: #ecfdf5; }
.hero-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, #6ee7b7, #0eea98);
  border-radius: 999px;
}

.hero-badge {
  background: rgba(110,231,183,0.15);
  color: #6ee7b7;
  border: 1px solid rgba(110,231,183,0.35);
  border-radius: 999px;
}

/* Soft pills everywhere */
.btn,
.btn-primary,
.btn-outline,
.nav-link,
.filter-btn,
.page-btn,
.page-num,
.newsletter-form input,
.newsletter-form button,
.cookie-banner button {
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(14,234,152,0.28);
}
.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 28px rgba(14,234,152,0.40);
}

.btn-outline {
  background: transparent;
  color: #6ee7b7;
  border: 1.5px solid #6ee7b7;
}
.btn-outline:hover {
  background: rgba(110,231,183,0.10);
  color: #ecfdf5;
}

.btn-cta {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(14,234,152,0.25);
}

/* Header */
.site-header {
  background: rgba(6,78,59,0.85);
  border-bottom: 1px solid rgba(110,231,183,0.18);
}

.nav-link.active {
  background: rgba(110,231,183,0.15);
  color: #6ee7b7;
}

.announcement-bar {
  background: #042f23;
  color: #ecfdf5;
}
.announcement-bar strong { color: #6ee7b7; }

/* Product cards — botanical surfaces */
.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,231,183,0.18);
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110,231,183,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.40), 0 0 0 1px rgba(110,231,183,0.12);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-image-wrapper {
  background: linear-gradient(135deg, #053e2f, #0a5d47);
}

.card-title { color: #ecfdf5; }
.card-title a:hover { color: #6ee7b7; }
.card-brand { color: #6ee7b7; }
.price-current { color: #ecfdf5; }
.price-original { color: rgba(167,243,208,0.55); }

/* Category cards */
.category-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,231,183,0.18);
}
.category-card:hover {
  border-color: #0eea98;
  box-shadow: 0 14px 32px rgba(14,234,152,0.18);
}
.category-icon {
  background: rgba(14,234,152,0.14);
  color: #0eea98;
}

/* Sections — botanical washes */
.faq-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(110,231,183,0.10) 0%, transparent 40%),
    rgba(14,234,152,0.06);
}
.testimonials-section {
  background:
    radial-gradient(circle at 10% 90%, rgba(113,77,225,0.10) 0%, transparent 40%),
    rgba(113,77,225,0.06);
}
.top-picks-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(227,193,62,0.10) 0%, transparent 45%),
    rgba(227,193,62,0.05);
}

.faq-item,
.guide-card,
.testimonial-card,
.top-pick-item,
.comparison-table,
.delivery-widget,
.pros-cons-widget,
.price-history-section,
.user-reviews-section,
.brand-card,
.trending-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,231,183,0.16);
  color: var(--color-text-secondary);
}

.faq-question { color: #ecfdf5; }
.faq-item[open] { border-color: #0eea98; }
.faq-item[open] .faq-question::after { color: #0eea98; }

.guide-number {
  background: #e3c13e;
  color: #064e3b;
}
.guide-card-title,
.top-pick-name,
.trending-name,
.brand-name { color: #ecfdf5; }

.testimonial-text { color: var(--color-text-secondary); }
.testimonial-author strong { color: #ecfdf5; }
.testimonial-avatar {
  background: rgba(113,77,225,0.20);
  color: #b9a4ee;
}

.top-pick-rank { color: #e3c13e; }
.top-pick-tag {
  background: rgba(227,193,62,0.18);
  color: #e3c13e;
}

/* Stats — eucalyptus gradient */
.stats-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(110,231,183,0.30) 0%, transparent 50%),
    linear-gradient(135deg, #064e3b 0%, #0eea98 100%);
}
.stat-number { color: #ecfdf5; }

/* Newsletter */
.newsletter-section {
  background:
    radial-gradient(circle at 80% 50%, rgba(110,231,183,0.10) 0%, transparent 50%),
    #053e2f;
  border-color: rgba(110,231,183,0.18);
}
.newsletter-text h3 { color: #ecfdf5; }
.newsletter-form input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(110,231,183,0.22);
  color: #ecfdf5;
}
.newsletter-form input::placeholder { color: rgba(167,243,208,0.55); }
.newsletter-form button {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, #0eea98, #6ee7b7);
}

/* Tables */
.comparison-table th {
  background: rgba(110,231,183,0.08);
  color: #6ee7b7;
}
.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(110,231,183,0.12);
}

/* Filters */
.filter-btn {
  background: rgba(255,255,255,0.04);
  border-color: rgba(110,231,183,0.18);
  color: var(--color-text-secondary);
}
.filter-btn:hover {
  border-color: #6ee7b7;
  color: #6ee7b7;
}
.filter-btn.active {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
  border-color: transparent;
}

.sort-select,
.category-filters select {
  background: rgba(255,255,255,0.04);
  border-color: rgba(110,231,183,0.18);
  color: var(--color-text);
}

/* Pagination */
.page-btn,
.page-num {
  background: rgba(255,255,255,0.04);
  border-color: rgba(110,231,183,0.18);
  color: var(--color-text-secondary);
}
.page-num.active {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
  border-color: transparent;
}

/* Product page price card */
.product-price-block {
  background: rgba(110,231,183,0.06);
  border-color: rgba(110,231,183,0.20);
}
.price-big { color: #ecfdf5; }
.price-save {
  background: rgba(14,234,152,0.18);
  color: #6ee7b7;
}

.mini-badge {
  background: rgba(255,255,255,0.04);
  border-color: rgba(110,231,183,0.18);
  color: var(--color-text-secondary);
}

/* Reviews / price history widgets */
.reviews-big-number { color: #ecfdf5; }
.review-card {
  background: rgba(110,231,183,0.05);
  border-color: rgba(110,231,183,0.12);
}
.review-avatar {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
}
.review-meta strong { color: #ecfdf5; }
.review-bar-track { background: rgba(110,231,183,0.08); }
.chart-bar {
  background: linear-gradient(180deg, rgba(110,231,183,0.25) 0%, #6ee7b7 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, #0eea98 0%, #6ee7b7 100%);
  box-shadow: 0 0 16px rgba(14,234,152,0.40);
}
.chart-note {
  background: rgba(14,234,152,0.10);
  color: #6ee7b7;
}

/* Pros / cons */
.pros-cons-widget h3 { color: #ecfdf5; }
.pros-heading { color: #6ee7b7; }
.cons-heading { color: #fca5a5; }
.check-icon { color: #6ee7b7; }

/* Delivery */
.delivery-item svg { color: #6ee7b7; }
.delivery-item strong { color: #ecfdf5; }

/* Social proof */
.social-proof-popup {
  background: #0a5d47;
  border: 1px solid rgba(110,231,183,0.25);
}
.popup-text strong { color: #ecfdf5; }
.popup-icon {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
}

/* Brand showcase */
.brand-showcase-section { background: #053e2f; }
.brand-initial {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
}
.brand-tagline { color: var(--color-text-muted); }

.trending-section { background: rgba(255,255,255,0.02); }
.trending-rank { color: #6ee7b7; }
.trending-hot {
  background: rgba(113,77,225,0.18);
  color: #b9a4ee;
}

/* Search */
.search-overlay {
  background: rgba(6,78,59,0.95);
  border-bottom-color: rgba(110,231,183,0.18);
}
.search-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(110,231,183,0.22);
  color: #ecfdf5;
}
.search-input:focus {
  border-color: #6ee7b7;
  box-shadow: 0 0 0 3px rgba(110,231,183,0.18);
}

/* Mobile menu */
.mobile-menu {
  background: rgba(6,78,59,0.97);
}
.mobile-nav-link {
  color: #ecfdf5;
  border-bottom-color: rgba(110,231,183,0.15);
}
.mobile-menu-toggle span { background: #ecfdf5; }

/* Breadcrumb */
.breadcrumb {
  background: rgba(255,255,255,0.02);
  border-bottom-color: rgba(110,231,183,0.15);
}

/* Cookie banner */
.cookie-banner {
  background: #0a5d47;
  border-top-color: rgba(110,231,183,0.20);
  color: var(--color-text);
}
.cookie-banner button {
  background: linear-gradient(135deg, #6ee7b7, #0eea98);
  color: #064e3b;
}

@media (max-width: 768px) {
  .hero::before { opacity: 0.5; }
}