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

:root {
  --color-bg: #f0f9ff;
  --color-bg-2: #e0f2fe;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 240, 249, 255;
  --color-bg-white-rgb: 255, 255, 255;
  --color-surface: rgba(77, 124, 15, 0.04);
  --color-surface-hover: rgba(77, 124, 15, 0.08);
  --color-text: #1a2e1a;
  --color-text-secondary: #4a5d4a;
  --color-text-muted: #7a8c7a;

  --color-accent: #e58033;
  --color-accent-2: #45e256;
  --color-accent-3: #3f6be3;
  --color-accent-warm: #ed8314;
  --color-accent-soft: #f0e9e4;
  --color-accent-2-soft: #e4f0e5;
  --color-accent-3-soft: #e4e7f0;
  --color-accent-warm-soft: #f1eae3;

  --color-border: #d4e7d4;
  --color-border-light: #e7f0e7;

  --color-footer-bg: #2d4a1f;
  --color-footer-text: #f0f9ff;
  --color-footer-muted: #a8c4a0;
  --color-footer-link: #d4e7c8;
  --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.15);

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

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

  --shadow-sm: 0 2px 6px rgba(77, 124, 15, 0.06), 0 1px 2px rgba(63, 107, 227, 0.04);
  --shadow-md: 0 6px 16px rgba(77, 124, 15, 0.08), 0 2px 6px rgba(63, 107, 227, 0.05);
  --shadow-lg: 0 14px 32px rgba(77, 124, 15, 0.1), 0 4px 12px rgba(63, 107, 227, 0.06);
  --shadow-xl: 0 24px 48px rgba(77, 124, 15, 0.12), 0 8px 20px rgba(63, 107, 227, 0.08);
}

body {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(77, 124, 15, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(63, 107, 227, 0.05) 0%, transparent 50%),
    var(--color-bg);
}

/* Decorative droplet pattern overlay on hero */
.hero {
  text-align: center;
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(77, 124, 15, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #f0f9ff 0%, #e8f5e9 50%, #f0f9ff 100%);
  position: relative;
}

.hero-content {
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(77, 124, 15, 0.08) 0%, transparent 6%),
    radial-gradient(circle at 88% 25%, rgba(63, 107, 227, 0.1) 0%, transparent 5%),
    radial-gradient(circle at 18% 75%, rgba(69, 226, 86, 0.08) 0%, transparent 4%),
    radial-gradient(circle at 82% 70%, rgba(229, 128, 51, 0.08) 0%, transparent 5%),
    radial-gradient(circle at 50% 90%, rgba(77, 124, 15, 0.06) 0%, transparent 6%);
  pointer-events: none;
  animation: droplets-float 12s ease-in-out infinite;
}

@keyframes droplets-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
  50% { transform: translateY(-8px) scale(1.02); opacity: 1; }
}

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

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

.hero-badge {
  background: linear-gradient(135deg, rgba(77, 124, 15, 0.12), rgba(63, 107, 227, 0.08));
  color: #4d7c0f;
  border: 1px solid rgba(77, 124, 15, 0.2);
}

.hero-title {
  color: #1a2e1a;
}

/* Droplet-shaped product images using clip-path */
.card-image-wrapper {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin: 12px 12px 0;
  padding-top: calc(100% - 24px);
  background: linear-gradient(135deg, #e8f5e9 0%, #f0f9ff 100%);
  box-shadow: inset 0 2px 8px rgba(77, 124, 15, 0.08);
  transition: border-radius 0.6s ease;
}

.product-card:hover .card-image-wrapper {
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-white);
  border: 1px solid rgba(77, 124, 15, 0.12);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(77, 124, 15, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.product-card:hover::before {
  transform: scale(1.4);
}

.product-card:hover {
  border-color: rgba(77, 124, 15, 0.3);
  box-shadow: 0 16px 36px rgba(77, 124, 15, 0.12);
}

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

.card-brand {
  color: #4d7c0f;
}

.btn-primary {
  background: linear-gradient(135deg, #4d7c0f 0%, #65a30d 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(77, 124, 15, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3f6212 0%, #4d7c0f 100%);
  box-shadow: 0 6px 18px rgba(77, 124, 15, 0.35);
  filter: none;
}

.btn-cta {
  margin-top: auto;
  background: linear-gradient(135deg, #4d7c0f 0%, #65a30d 100%);
  box-shadow: 0 3px 10px rgba(77, 124, 15, 0.22);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #3f6212 0%, #4d7c0f 100%);
  filter: none;
}

.btn-outline {
  border: 1.5px solid #4d7c0f;
  color: #4d7c0f;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(77, 124, 15, 0.08);
  border-color: #4d7c0f;
}

.section-title {
  color: #1a2e1a;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4d7c0f, #65a30d);
  border-radius: 2px;
  margin: 12px auto 0;
}

.announcement-bar {
  background: linear-gradient(90deg, #2d4a1f 0%, #4d7c0f 50%, #2d4a1f 100%);
  color: #f0f9ff;
}

.announcement-bar strong {
  color: #ed8314;
}

.category-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(77, 124, 15, 0.12);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(63, 107, 227, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.category-icon {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, rgba(77, 124, 15, 0.12), rgba(63, 107, 227, 0.08));
  color: #4d7c0f;
  transition: transform var(--transition);
}

.category-card:hover .category-icon {
  transform: scale(1.08) rotate(-4deg);
}

.newsletter-section {
  background: linear-gradient(135deg, #e8f5e9 0%, #f0f9ff 100%);
  border-top: 1px solid rgba(77, 124, 15, 0.1);
  border-bottom: 1px solid rgba(77, 124, 15, 0.1);
}

.newsletter-form button {
  background: #4d7c0f;
}

.newsletter-form button:hover {
  background: #3f6212;
}

.faq-section {
  background: rgba(228, 240, 229, 0.5);
}

.guide-section {
  background: rgba(241, 234, 227, 0.4);
}

.guide-number {
  background: linear-gradient(135deg, #ed8314, #e58033);
  box-shadow: 0 4px 12px rgba(237, 131, 20, 0.25);
}

.testimonials-section {
  background: rgba(228, 231, 240, 0.5);
}

.testimonial-avatar {
  background: linear-gradient(135deg, #3f6be3, #6b8de8);
  color: #fff;
}

.stats-section {
  background: linear-gradient(135deg, #4d7c0f 0%, #3f6be3 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(255,255,255,0.08) 0%, transparent 4%),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.08) 0%, transparent 5%),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.06) 0%, transparent 3%);
  pointer-events: none;
}

.top-picks-section {
  background: rgba(241, 234, 227, 0.4);
}

.top-pick-rank {
  color: #ed8314;
}

.brand-initial {
  background: linear-gradient(135deg, #4d7c0f, #3f6be3);
}

.trending-rank {
  color: #4d7c0f;
}

.price-history-section {
  background: var(--color-bg-white);
  border: 1px solid rgba(77, 124, 15, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(77, 124, 15, 0.06);
  position: relative;
  overflow: hidden;
}

.price-history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4d7c0f, #65a30d, #3f6be3);
}

.chart-bar {
  background: linear-gradient(180deg, rgba(77, 124, 15, 0.2) 0%, #4d7c0f 100%);
  border-radius: 8px 8px 0 0;
}

.chart-bar-current {
  background: linear-gradient(180deg, #65a30d 0%, #4d7c0f 100%);
  box-shadow: 0 0 16px rgba(77, 124, 15, 0.4);
}

.chart-note {
  background: rgba(77, 124, 15, 0.08);
  color: #4d7c0f;
}

.user-reviews-section {
  background: var(--color-bg-white);
  border: 1px solid rgba(77, 124, 15, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(77, 124, 15, 0.06);
}

.reviews-big-number {
  background: linear-gradient(135deg, #4d7c0f, #3f6be3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-avatar {
  background: linear-gradient(135deg, #4d7c0f, #65a30d);
}

.review-bar-fill {
  background: linear-gradient(90deg, #ed8314, #f59e0b);
}

.review-card {
  background: rgba(240, 249, 255, 0.6);
  border: 1px solid rgba(77, 124, 15, 0.08);
}

.pros-cons-widget {
  background: linear-gradient(135deg, rgba(228, 240, 229, 0.5), rgba(240, 249, 255, 0.5));
  border: 1px solid rgba(77, 124, 15, 0.12);
  border-radius: var(--radius-lg);
}

.pros-heading {
  color: #4d7c0f;
}

.delivery-widget {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.7), rgba(228, 240, 229, 0.5));
  border: 1px solid rgba(77, 124, 15, 0.12);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.delivery-widget::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(77, 124, 15, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.delivery-item svg {
  color: #4d7c0f;
}

.social-proof-popup {
  background: var(--color-bg-white);
  border: 1px solid rgba(77, 124, 15, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(77, 124, 15, 0.18);
  border-left: 4px solid #4d7c0f;
}

.popup-icon {
  background: linear-gradient(135deg, #4d7c0f, #65a30d);
}

.site-header {
  background: rgba(240, 249, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(77, 124, 15, 0.1);
}

.nav-link.active {
  color: #4d7c0f;
  background: rgba(77, 124, 15, 0.1);
}

.logo-text {
  color: #2d4a1f;
}

@media (max-width: 768px) {
  .hero::before { opacity: 0.5; }
  .card-image-wrapper { margin: 8px 8px 0; padding-top: calc(100% - 16px); }
}