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

:root {
  --color-accent: #2573e8;
  --color-accent-2: #ee10af;
  --color-accent-3: #e8d20b;
  --color-accent-warm: #e0ae51;
  --color-accent-soft: #e3e9f1;
  --color-accent-2-soft: #f1e3ed;
  --color-accent-3-soft: #f1f0e3;
  --color-accent-warm-soft: #f0ece4;

  --color-bg: #fefce8;
  --color-bg-2: #fdf9d7;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 254, 252, 232;
  --color-bg-white-rgb: 255, 255, 255;

  --color-text: #14532d;
  --color-text-secondary: #3f6b4a;
  --color-text-muted: #7a8c7f;

  --color-border: #e5e7c4;
  --color-border-light: #f0f2d8;

  --color-footer-bg: #14532d;
  --color-footer-text: #f4f1d8;
  --color-footer-muted: #a8b89c;
  --color-footer-link: #d4d8b8;
  --color-footer-border: rgba(255,255,255,0.1);
  --color-footer-social-bg: rgba(255,255,255,0.08);
  --color-footer-social-border: rgba(255,255,255,0.12);

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Nunito', sans-serif;

  --radius-sm: 24px 8px 24px 8px;
  --radius-md: 24px 8px 24px 8px;
  --radius-lg: 32px 12px 32px 12px;
  --radius-xl: 40px 16px 40px 16px;

  --shadow-xs: 0 1px 2px rgba(132, 204, 22, 0.10);
  --shadow-sm: 0 2px 6px rgba(132, 204, 22, 0.12), 0 1px 2px rgba(20, 83, 45, 0.05);
  --shadow-md: 0 6px 14px rgba(132, 204, 22, 0.16), 0 2px 6px rgba(20, 83, 45, 0.06);
  --shadow-lg: 0 14px 30px rgba(132, 204, 22, 0.18), 0 4px 12px rgba(20, 83, 45, 0.08);
  --shadow-xl: 0 24px 48px rgba(132, 204, 22, 0.22), 0 8px 20px rgba(20, 83, 45, 0.1);
}

body {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(132, 204, 22, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(20, 83, 45, 0.05) 0%, transparent 40%),
    var(--color-bg);
}

.hero-title,
.section-title,
.page-title,
.product-title,
.logo-text {
  color: #14532d;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.hero {
  background: linear-gradient(165deg, #fefce8 0%, #f4f7d3 55%, #e8f0c6 100%);
  position: relative;
  text-align: center;
}
.hero-content,
.hero--split .hero-content { text-align: center; margin-left: auto; margin-right: auto; }
.hero-actions,
.hero--split .hero-actions { justify-content: center; }
.hero-subtitle { max-width: 560px; margin-left: auto; margin-right: auto; color: #3f6b4a; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(132, 204, 22, 0.18) 0%, transparent 30%),
    radial-gradient(circle at 88% 75%, rgba(20, 83, 45, 0.10) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.18), rgba(20, 83, 45, 0.10));
  color: #14532d;
  border: 1px solid rgba(132, 204, 22, 0.35);
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  color: #14532d;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 6px 18px rgba(132, 204, 22, 0.35);
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(132, 204, 22, 0.45);
  filter: none;
}

.btn-outline {
  border: 1.5px solid #84cc16;
  color: #14532d;
  background: #ffffff;
  border-radius: 24px 8px 24px 8px;
}
.btn-outline:hover {
  background: rgba(132, 204, 22, 0.12);
  border-color: #65a30d;
}

.btn-cta {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  color: #14532d;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.28);
  font-weight: 700;
}
.btn-cta:hover {
  background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  filter: none;
  box-shadow: 0 8px 18px rgba(132, 204, 22, 0.4);
}

.announcement-bar {
  background: linear-gradient(90deg, #14532d 0%, #166534 50%, #14532d 100%);
  color: #f4f7d3;
}
.announcement-bar strong { color: #a3e635; }

.site-header { border-bottom: 1px solid rgba(132, 204, 22, 0.2); }
.nav-link.active {
  color: #14532d;
  background: rgba(132, 204, 22, 0.18);
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7c4;
  border-radius: 32px 12px 32px 12px;
  box-shadow: 0 4px 14px rgba(132, 204, 22, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(132, 204, 22, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(132, 204, 22, 0.25), 0 6px 14px rgba(20, 83, 45, 0.08);
  border-color: rgba(132, 204, 22, 0.5);
}

.card-brand { color: #65a30d; }
.card-title { color: #14532d; }
.card-title a:hover { color: #65a30d; }

.card-badge {
  background: linear-gradient(135deg, #84cc16, #65a30d);
  color: #14532d;
  border-radius: 16px 4px 16px 4px;
}

.category-card {
  background: #ffffff;
  border: 1px solid #e5e7c4;
  border-radius: 32px 12px 32px 12px;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(132, 204, 22, 0.22);
  border-color: rgba(132, 204, 22, 0.5);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #84cc16, #14532d);
  border-radius: 999px;
}

.faq-section { background: #f4f7d3; }
.faq-item { border-radius: 24px 8px 24px 8px; }
.faq-item[open] { border-color: #84cc16; box-shadow: 0 6px 16px rgba(132, 204, 22, 0.18); }
.faq-question { color: #14532d; }

.testimonials-section { background: rgba(132, 204, 22, 0.08); }
.testimonial-card {
  border-radius: 32px 12px 32px 12px;
  border: 1px solid #e5e7c4;
  box-shadow: 0 4px 14px rgba(132, 204, 22, 0.10);
}
.testimonial-avatar {
  background: linear-gradient(135deg, #84cc16, #14532d);
  color: #fefce8;
}

.guide-section { background: #fefce8; }
.guide-card {
  border-radius: 32px 12px 32px 12px;
  border: 1px solid #e5e7c4;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.10);
}
.guide-card:hover { box-shadow: 0 12px 28px rgba(132, 204, 22, 0.20); }
.guide-number {
  background: linear-gradient(135deg, #84cc16, #65a30d);
  color: #14532d;
}

.top-picks-section { background: #f7f4d8; }
.top-pick-item {
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.10);
}
.top-pick-item:hover { box-shadow: 0 12px 24px rgba(132, 204, 22, 0.20); }
.top-pick-rank { color: #65a30d; }

.newsletter-section {
  background: linear-gradient(135deg, #f4f7d3 0%, #e8f0c6 100%);
  border-top: 1px solid #e5e7c4;
  border-bottom: 1px solid #e5e7c4;
}
.newsletter-form input {
  border-radius: 999px;
  border: 1px solid #d4dba8;
}
.newsletter-form button {
  background: linear-gradient(135deg, #14532d 0%, #166534 100%);
  color: #fefce8;
  border-radius: 999px;
}
.newsletter-form button:hover { background: linear-gradient(135deg, #166534, #14532d); }

.stats-section {
  background: linear-gradient(135deg, #14532d 0%, #166534 50%, #65a30d 100%);
}

.price-history-section {
  background: #ffffff;
  border-radius: 32px 12px 32px 12px;
  border: 1px solid #e5e7c4;
  box-shadow: 0 8px 22px rgba(132, 204, 22, 0.14);
}
.chart-bar {
  background: linear-gradient(180deg, rgba(132, 204, 22, 0.35) 0%, #84cc16 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, #65a30d 0%, #14532d 100%);
  box-shadow: 0 0 14px rgba(132, 204, 22, 0.4);
}
.chart-note {
  background: rgba(132, 204, 22, 0.15);
  color: #14532d;
}

.user-reviews-section {
  background: #ffffff;
  border-radius: 32px 12px 32px 12px;
  border: 1px solid #e5e7c4;
  box-shadow: 0 8px 22px rgba(132, 204, 22, 0.14);
}
.reviews-big-number { color: #14532d; }
.review-card {
  background: #fefce8;
  border-radius: 24px 8px 24px 8px;
  border: 1px solid #f0f2d8;
}
.review-avatar {
  background: linear-gradient(135deg, #84cc16, #14532d);
}

.pros-cons-widget {
  background: #fefce8;
  border-radius: 24px 8px 24px 8px;
  border: 1px solid #e5e7c4;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.10);
}
.pros-cons-widget h3 { color: #14532d; }
.pros-heading { color: #65a30d; }

.delivery-widget {
  background: #fefce8;
  border-radius: 24px 8px 24px 8px;
  border: 1px solid #e5e7c4;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.10);
}
.delivery-item svg { color: #65a30d; }

.social-proof-popup {
  background: #ffffff;
  border-radius: 24px 8px 24px 8px;
  border: 1px solid #e5e7c4;
  box-shadow: 0 14px 32px rgba(132, 204, 22, 0.25), 0 6px 14px rgba(20, 83, 45, 0.1);
}
.popup-icon {
  background: linear-gradient(135deg, #84cc16, #14532d);
  color: #fefce8;
}

.brand-showcase-section { background: #f4f7d3; }
.brand-card {
  border-radius: 24px 8px 24px 8px;
  border: 1px solid #e5e7c4;
}
.brand-initial {
  background: linear-gradient(135deg, #84cc16 0%, #14532d 100%);
  color: #fefce8;
}

.trending-section { background: #ffffff; }
.trending-item {
  background: #fefce8;
  border-radius: 24px 8px 24px 8px;
  border: 1px solid #f0f2d8;
}
.trending-rank { color: #65a30d; }

@keyframes leaf-sway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}
.hero-badge { animation: leaf-sway 4s ease-in-out infinite; }

.product-card,
.category-card,
.guide-card,
.testimonial-card,
.top-pick-item {
  display: flex;
  flex-direction: column;
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .hero::before { opacity: 0.6; }
  .product-card::before { width: 40px; height: 40px; }
}