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

:root {
  --color-accent: #eb1c5e;
  --color-accent-2: #a9e244;
  --color-accent-3: #10eee9;
  --color-accent-warm: #e9bd22;
  --color-accent-soft: #f1e3e8;
  --color-accent-2-soft: #ecf0e4;
  --color-accent-3-soft: #e3f1f1;
  --color-accent-warm-soft: #f1eee3;

  --color-bg: #ecfdf5;
  --color-bg-2: #dcf5e7;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 236, 253, 245;
  --color-bg-white-rgb: 255, 255, 255;

  --color-text: #14532d;
  --color-text-secondary: #166534;
  --color-text-muted: #6b8a76;

  --color-border: #c8e6d2;
  --color-border-light: #dcf0e2;

  --color-footer-bg: #14532d;
  --color-footer-text: #ecfdf5;
  --color-footer-muted: #a7c4b1;
  --color-footer-link: #c8e6d2;
  --color-footer-border: rgba(255,255,255,0.1);

  --font-heading: 'EB Garamond', 'Georgia', serif;
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --shadow-sm: 0 2px 8px rgba(20,83,45,0.06);
  --shadow-md: 0 6px 18px rgba(20,83,45,0.08);
  --shadow-lg: 0 14px 32px rgba(20,83,45,0.10);
  --shadow-xl: 0 24px 48px rgba(20,83,45,0.12);
}

body {
  background:
    radial-gradient(ellipse 60% 50% at 8% 18%, rgba(22,101,52,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 92% 78%, rgba(169,226,68,0.12) 0%, transparent 60%),
    var(--color-bg);
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.97); }
}

.hero {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(22,101,52,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -8%;
  width: 420px;
  height: 420px;
  border-radius: 62% 38% 55% 45% / 48% 60% 40% 52%;
  background: radial-gradient(circle, rgba(22,101,52,0.18) 0%, rgba(169,226,68,0.08) 60%, transparent 80%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  animation: blob-drift 18s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions { justify-content: center; }

.hero-subtitle {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  background: rgba(22,101,52,0.10);
  color: #166534;
  border: 1px solid rgba(22,101,52,0.18);
  border-radius: 999px;
}

.hero-title { color: #14532d; }

.btn,
.btn-primary,
.btn-cta,
.btn-outline,
.filter-btn,
.page-btn,
.page-num,
.newsletter-form input,
.newsletter-form button,
.search-input,
.hero-badge,
.cookie-banner button {
  border-radius: 999px;
}

.btn-primary {
  background: #166534;
  color: #fff;
  box-shadow: 0 6px 18px rgba(22,101,52,0.22);
}
.btn-primary:hover {
  background: #14532d;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22,101,52,0.30);
  filter: none;
}

.btn-cta {
  background: #166534;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(22,101,52,0.18);
}
.btn-cta:hover {
  background: #14532d;
  filter: none;
}

.btn-outline {
  border: 1.5px solid #166534;
  color: #166534;
  background: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(22,101,52,0.08);
  border-color: #166534;
}

.site-header {
  background: rgba(236,253,245,0.85);
}

.nav-link.active {
  color: #166534;
  background: rgba(22,101,52,0.10);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(22,101,52,0.12);
  border-color: rgba(22,101,52,0.25);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body .btn-cta { margin-top: auto; }

.card-brand { color: #166534; }
.card-title a:hover { color: #166534; }

.category-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: rgba(169,226,68,0.18);
  z-index: 0;
  transition: transform 0.5s ease;
}
.category-card:hover::before { transform: scale(1.15) rotate(8deg); }
.category-card > * { position: relative; z-index: 1; }
.category-icon {
  background: rgba(22,101,52,0.10);
  color: #166534;
}

.newsletter-section {
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(169,226,68,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(22,101,52,0.10) 0%, transparent 60%),
    var(--color-bg-2);
}
.newsletter-text h3 { color: #14532d; }
.newsletter-form input:focus { border-color: #166534; }
.newsletter-form button { background: #166534; }
.newsletter-form button:hover { background: #14532d; }

.faq-section {
  background:
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(22,101,52,0.06) 0%, transparent 60%),
    var(--color-accent-2-soft);
}
.faq-item[open] { border-color: #166534; }
.faq-item[open] .faq-question::after { color: #166534; }

.guide-card { border-radius: var(--radius-lg); }
.guide-card:hover { border-color: var(--color-accent-warm); }
.guide-number {
  background: var(--color-accent-warm);
  border-radius: 999px;
}

.testimonials-section {
  background:
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(16,238,233,0.10) 0%, transparent 60%),
    var(--color-accent-3-soft);
}
.testimonial-card { border-radius: var(--radius-lg); }

.top-picks-section {
  background:
    radial-gradient(ellipse 50% 70% at 90% 10%, rgba(233,189,34,0.10) 0%, transparent 60%),
    var(--color-accent-warm-soft);
}
.top-pick-item { border-radius: var(--radius-md); }
.top-pick-rank { color: var(--color-accent-warm); }

.stats-section {
  background: linear-gradient(135deg, #166534 0%, #15803d 60%, #a9e244 100%);
}

.section-title { color: #14532d; }

.filter-btn.active,
.page-num.active {
  background: #166534;
  border-color: #166534;
}

.price-history-section {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(169,226,68,0.12) 0%, transparent 60%),
    #ffffff;
  border: 1px solid var(--color-border);
}
.chart-bar {
  background: linear-gradient(180deg, rgba(22,101,52,0.18) 0%, #166534 100%);
  border-radius: 12px 12px 0 0;
}
.chart-bar-current {
  background: linear-gradient(180deg, #a9e244 0%, #166534 100%);
  box-shadow: 0 0 14px rgba(22,101,52,0.30);
}
.chart-note {
  background: rgba(22,101,52,0.08);
  color: #166534;
  border-radius: 999px;
}

.user-reviews-section {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(22,101,52,0.06) 0%, transparent 60%),
    #ffffff;
  border: 1px solid var(--color-border);
}
.reviews-big-number { color: #14532d; }
.review-card { border-radius: var(--radius-md); background: var(--color-bg); }
.review-avatar {
  background: #166534;
  border-radius: 50%;
}

.pros-cons-widget {
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(169,226,68,0.12) 0%, transparent 60%),
    var(--color-bg-2);
  border: 1px solid var(--color-border);
}

.delivery-widget {
  border-radius: var(--radius-md);
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
}
.delivery-item svg { color: #166534; }

.social-proof-popup {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(20,83,45,0.18);
}
.popup-icon {
  background: #166534;
  border-radius: 50%;
}

.brand-initial {
  background: linear-gradient(135deg, #166534, #a9e244);
  border-radius: 50%;
}
.brand-card { border-radius: var(--radius-md); }
.trending-item { border-radius: var(--radius-md); }
.trending-rank { color: #166534; }

.product-price-block { border-radius: var(--radius-md); }
.gallery-main { border-radius: var(--radius-lg); }
.thumb { border-radius: var(--radius-sm); }

@media (max-width: 768px) {
  .hero::before {
    width: 260px;
    height: 260px;
    top: -8%;
    left: -20%;
    filter: blur(14px);
  }
}