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

:root {
  --color-bg: #f0f7ff;
  --color-bg-2: #dbeafe;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 240, 247, 255;
  --color-bg-white-rgb: 255, 255, 255;
  --color-text: #1e3a5f;
  --color-text-secondary: #3d5a80;
  --color-text-muted: #7a92b0;

  --color-accent: #e04ece;
  --color-accent-2: #e2b807;
  --color-accent-3: #08e466;
  --color-accent-warm: #e38e3e;
  --color-accent-soft: #f0e4ee;
  --color-accent-2-soft: #f2efe2;
  --color-accent-3-soft: #e3f2e9;
  --color-accent-warm-soft: #f0eae4;

  --color-border: #c7ddf5;
  --color-border-light: #e0eefd;

  --font-heading: 'Fredoka', 'Quicksand', sans-serif;
  --font-body: 'Quicksand', sans-serif;

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

  --shadow-sm: 0 2px 6px rgba(74, 144, 226, 0.1);
  --shadow-md: 0 6px 16px rgba(74, 144, 226, 0.12);
  --shadow-lg: 0 12px 28px rgba(74, 144, 226, 0.15);
  --shadow-xl: 0 20px 40px rgba(74, 144, 226, 0.18);
}

body {
  background: var(--color-bg);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(74, 222, 128, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(219, 234, 254, 0.6) 0%, transparent 40%);
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes float-cloud {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -8px); }
}

.announcement-bar {
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 50%, #4ade80 100%);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.announcement-bar strong {
  color: #fef3c7;
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px dashed #c7ddf5;
}

.logo-text {
  color: #4ade80;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-link.active {
  background: #dbeafe;
  color: #1e3a5f;
  font-weight: 700;
}

.hero {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(74, 222, 128, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(219, 234, 254, 0.8) 0%, transparent 50%),
    linear-gradient(180deg, #f0f7ff 0%, #dbeafe 100%);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 8%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ffffff 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0.7;
  animation: float-cloud 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

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

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

.hero-subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: #3d5a80;
}

.hero-badge {
  background: #4ade80;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.35);
  border: 3px solid #ffffff;
  transform: rotate(-2deg);
  display: inline-flex;
}

.hero-title {
  color: #1e3a5f;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.btn-primary {
  background: #4ade80;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(74, 222, 128, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1);
  padding: 14px 32px;
}
.btn-primary:hover {
  background: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(74, 222, 128, 0.5);
}

.btn-outline {
  background: #ffffff;
  border: 2px solid #4ade80;
  color: #22c55e;
  border-radius: 999px;
  font-weight: 700;
}
.btn-outline:hover {
  background: #dbeafe;
  border-color: #4ade80;
  color: #1e3a5f;
}

.btn-cta {
  background: #4ade80;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(74, 222, 128, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}
.btn-cta:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

.section-title {
  color: #1e3a5f;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: #4ade80;
  box-shadow: 0 16px 32px rgba(74, 222, 128, 0.18);
}

.card-image-wrapper {
  background: linear-gradient(135deg, #dbeafe 0%, #e3f2e9 100%);
}

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

.card-badge {
  background: #fbbf24;
  color: #1e3a5f;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 800;
  font-size: 11px;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transform: rotate(-4deg);
  letter-spacing: 0.5px;
  animation: wiggle 4s ease-in-out infinite;
}

.card-brand {
  color: #4ade80;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.card-title {
  color: #1e3a5f;
  font-weight: 600;
}

.price-current {
  color: #1e3a5f;
  font-weight: 800;
}

.filter-btn {
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #dbeafe;
  font-weight: 600;
}
.filter-btn:hover {
  border-color: #4ade80;
  color: #22c55e;
}
.filter-btn.active {
  background: #4ade80;
  border-color: #4ade80;
  color: #ffffff;
}

.category-card {
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 28px;
  transition: all 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px) rotate(1deg);
  border-color: #fbbf24;
  box-shadow: 0 14px 28px rgba(251, 191, 36, 0.2);
}
.category-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

.stats-section {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #fbbf24 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 10%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 15%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.stat-number {
  color: #ffffff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.newsletter-section {
  background: linear-gradient(135deg, #f2efe2 0%, #fef3c7 100%);
  border-top: 3px dashed #fbbf24;
  border-bottom: 3px dashed #fbbf24;
}
.newsletter-form input {
  border-radius: 999px;
  border: 2px solid #fbbf24;
  background: #ffffff;
}
.newsletter-form button {
  background: #fbbf24;
  color: #1e3a5f;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}
.newsletter-form button:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.faq-section {
  background: #e3f2e9;
}
.faq-item {
  border: 2px solid #c7ddf5;
  border-radius: 20px;
  background: #ffffff;
}
.faq-item[open] {
  border-color: #08e466;
  box-shadow: 0 6px 16px rgba(8, 228, 102, 0.15);
}
.faq-question {
  font-weight: 700;
  color: #1e3a5f;
}

.guide-section {
  background: #f0eae4;
}
.guide-card {
  background: #ffffff;
  border: 2px solid #f0eae4;
  border-radius: 28px;
}
.guide-card:hover {
  border-color: #e38e3e;
  transform: translateY(-4px);
}
.guide-number {
  background: #e38e3e;
  color: #ffffff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(227, 142, 62, 0.3);
}

.testimonials-section {
  background: #f0e4ee;
}
.testimonial-card {
  background: #ffffff;
  border: 2px solid #f0e4ee;
  border-radius: 28px;
}
.testimonial-card:hover {
  border-color: #e04ece;
  transform: translateY(-4px);
}
.testimonial-avatar {
  background: linear-gradient(135deg, #e04ece 0%, #e04ece 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 3px 8px rgba(224, 78, 206, 0.3);
}

.top-picks-section {
  background: #f2efe2;
}
.top-pick-item {
  border: 2px solid #f2efe2;
  border-radius: 20px;
  background: #ffffff;
}
.top-pick-item:hover {
  border-color: #e2b807;
  box-shadow: 0 8px 20px rgba(226, 184, 7, 0.2);
}
.top-pick-rank {
  color: #e2b807;
  font-weight: 800;
}

.price-history-section {
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 28px;
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.08);
}
.chart-bar {
  background: linear-gradient(180deg, #dbeafe 0%, #4ade80 100%);
  border-radius: 10px 10px 0 0;
}
.chart-bar-current {
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  box-shadow: 0 0 14px rgba(74, 222, 128, 0.4);
}
.chart-note {
  background: rgba(74, 222, 128, 0.12);
  color: #22c55e;
  border-radius: 999px;
  font-weight: 600;
}

.user-reviews-section {
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 28px;
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.08);
}
.reviews-big-number {
  color: #4ade80;
  font-weight: 800;
}
.review-card {
  background: #f0f7ff;
  border: 2px solid #dbeafe;
  border-radius: 20px;
}
.review-avatar {
  background: #4ade80;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 8px rgba(74, 222, 128, 0.3);
}
.review-bar-fill {
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.pros-cons-widget {
  background: #f0f7ff;
  border: 2px solid #dbeafe;
  border-radius: 20px;
}
.pros-cons-widget h3 {
  color: #1e3a5f;
}
.pros-heading { color: #22c55e; font-weight: 700; }
.cons-heading { color: #e04ece; font-weight: 700; }

.delivery-widget {
  background: linear-gradient(135deg, #f0f7ff 0%, #e3f2e9 100%);
  border: 2px solid #dbeafe;
  border-radius: 20px;
}
.delivery-item svg {
  color: #4ade80;
}

.social-proof-popup {
  background: #ffffff;
  border: 2px solid #4ade80;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(74, 222, 128, 0.25);
}
.popup-icon {
  background: #4ade80;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 8px rgba(74, 222, 128, 0.3);
  animation: bounce-soft 2s ease-in-out infinite;
}

.brand-card {
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: #4ade80;
}
.brand-initial {
  background: linear-gradient(135deg, #4ade80 0%, #fbbf24 100%);
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(74, 222, 128, 0.3);
}

.trending-item {
  background: #f0f7ff;
  border: 2px solid #dbeafe;
  border-radius: 20px;
}
.trending-rank {
  color: #4ade80;
  font-weight: 800;
}
.trending-hot {
  background: rgba(224, 78, 206, 0.12);
  color: #e04ece;
  border-radius: 999px;
  font-weight: 700;
}

.site-footer {
  background: #1e3a5f;
  color: #dbeafe;
}
.footer-col h4 {
  color: #4ade80;
}

.product-title {
  color: #1e3a5f;
  font-weight: 700;
}
.price-big {
  color: #4ade80;
  font-weight: 800;
}
.product-price-block {
  background: #f0f7ff;
  border: 2px solid #dbeafe;
  border-radius: 20px;
}
.price-save {
  background: #4ade80;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero::before { display: none; }
  .card-badge { transform: rotate(-2deg); }
  .hero-badge { transform: rotate(-1deg); }
}