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

:root {
  --color-bg: #fffbeb;
  --color-bg-2: #fdf4d4;
  --color-bg-white: #fffefa;
  --color-bg-rgb: 255, 251, 235;
  --color-bg-white-rgb: 255, 254, 250;
  --color-surface: rgba(217, 119, 6, 0.04);
  --color-surface-hover: rgba(217, 119, 6, 0.08);
  --color-text: #3b2410;
  --color-text-secondary: #78532a;
  --color-text-muted: #b08a5a;

  --color-accent: #20ea23;
  --color-accent-2: #2460e9;
  --color-accent-3: #e60aa0;
  --color-accent-warm: #e8550c;
  --color-accent-soft: #e3f1e4;
  --color-accent-2-soft: #e3e7f1;
  --color-accent-3-soft: #f2e3ed;
  --color-accent-warm-soft: #f1e8e3;

  --color-border: rgba(217, 119, 6, 0.25);
  --color-border-light: rgba(217, 119, 6, 0.12);

  --color-footer-bg: #2a1810;
  --color-footer-text: #fef3c7;
  --color-footer-muted: #c9a878;
  --color-footer-link: #fde4a1;
  --color-footer-border: rgba(217, 119, 6, 0.18);
  --color-footer-social-bg: rgba(217, 119, 6, 0.12);
  --color-footer-social-border: rgba(217, 119, 6, 0.25);

  --font-heading: 'Yeseva One', 'Georgia', serif;
  --font-body: 'Mulish', -apple-system, sans-serif;

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

  --shadow-xs: 0 1px 2px rgba(180, 83, 9, 0.06);
  --shadow-sm: 0 1px 3px rgba(180, 83, 9, 0.08), 0 1px 2px rgba(180, 83, 9, 0.05);
  --shadow-md: 0 4px 12px rgba(180, 83, 9, 0.10), 0 2px 4px rgba(180, 83, 9, 0.06);
  --shadow-lg: 0 12px 28px rgba(180, 83, 9, 0.14), 0 4px 10px rgba(180, 83, 9, 0.08);
  --shadow-xl: 0 24px 48px rgba(180, 83, 9, 0.18), 0 8px 16px rgba(180, 83, 9, 0.10);
}

body {
  background:
    radial-gradient(circle at 15% 20%, rgba(217, 119, 6, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(232, 85, 12, 0.05) 0%, transparent 50%),
    var(--color-bg);
}

.announcement-bar {
  background: linear-gradient(90deg, #3b2410 0%, #78532a 50%, #3b2410 100%);
}
.announcement-bar strong { color: #fcd34d; }

.site-header {
  background: rgba(255, 251, 235, 0.88);
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 1px 0 rgba(217, 119, 6, 0.05);
}

.logo-text {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link.active {
  color: #b45309;
  background: rgba(217, 119, 6, 0.10);
}

/* HERO — amber glass with sunset glow */
.hero {
  background:
    radial-gradient(ellipse at 50% -10%, rgba(252, 211, 77, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(217, 119, 6, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232, 85, 12, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 80% 60%, rgba(217, 119, 6, 0.08) 0%, transparent 28%);
  pointer-events: none;
}
.hero-content { text-align: center; }
.hero-actions { justify-content: center; }
.hero-subtitle { margin-left: auto; margin-right: auto; }

.hero-badge {
  color: #b45309;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(217, 119, 6, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.08);
}

.hero-title {
  color: #3b2410;
  letter-spacing: -0.5px;
}

/* SUNSET GRADIENT CTA */
.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 35%, #d97706 65%, #b45309 100%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.05);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid #d97706;
  color: #b45309;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(217, 119, 6, 0.08);
  border-color: #b45309;
  color: #92400e;
}

.btn-cta {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 60%, #b45309 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.38);
}

/* AMBER GLASS CARDS */
.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 254, 250, 0.7);
  border: 1px solid rgba(217, 119, 6, 0.25);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: #d97706;
  box-shadow: 0 16px 36px rgba(217, 119, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

.card-brand { color: #b45309; }
.card-image-wrapper {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* CATEGORIES */
.category-card {
  background: rgba(255, 254, 250, 0.7);
  border: 1px solid rgba(217, 119, 6, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.category-card:hover {
  border-color: #2460e9;
  box-shadow: 0 12px 28px rgba(36, 96, 233, 0.12);
  transform: translateY(-4px);
}
.category-icon {
  background: linear-gradient(135deg, rgba(36, 96, 233, 0.12), rgba(36, 96, 233, 0.05));
  color: #2460e9;
  border: 1px solid rgba(36, 96, 233, 0.18);
}

/* SECTIONS — distinct tints */
.faq-section {
  background:
    radial-gradient(ellipse at top, rgba(36, 96, 233, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #fffbeb 0%, #fdf6e3 100%);
}
.faq-item {
  background: rgba(255, 254, 250, 0.75);
  border: 1px solid rgba(36, 96, 233, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.faq-item[open] { border-color: #2460e9; }
.faq-item[open] .faq-question::after { color: #2460e9; }

.testimonials-section {
  background:
    radial-gradient(ellipse at top, rgba(230, 10, 160, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #fffbeb 0%, #fdf2f8 100%);
}
.testimonial-card {
  background: rgba(255, 254, 250, 0.75);
  border: 1px solid rgba(230, 10, 160, 0.15);
  backdrop-filter: blur(6px);
}
.testimonial-avatar {
  background: linear-gradient(135deg, rgba(230, 10, 160, 0.15), rgba(230, 10, 160, 0.05));
  color: #e60aa0;
}

.top-picks-section {
  background:
    radial-gradient(ellipse at top, rgba(232, 85, 12, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #fffbeb 0%, #fff1e6 100%);
}
.top-pick-item {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid rgba(232, 85, 12, 0.18);
  backdrop-filter: blur(6px);
}
.top-pick-item:hover { border-color: #e8550c; }
.top-pick-rank { color: #e8550c; }
.top-pick-tag {
  background: rgba(232, 85, 12, 0.12);
  color: #c2410c;
}

.guide-section {
  background: linear-gradient(180deg, #fffbeb 0%, #fdf4d4 100%);
}
.guide-card {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid rgba(232, 85, 12, 0.18);
  backdrop-filter: blur(6px);
}
.guide-card:hover { border-color: #e8550c; box-shadow: 0 10px 24px rgba(232, 85, 12, 0.12); }
.guide-number {
  background: linear-gradient(135deg, #f59e0b 0%, #e8550c 100%);
  box-shadow: 0 4px 10px rgba(232, 85, 12, 0.3);
}

.stats-section {
  background:
    radial-gradient(ellipse at top, rgba(252, 211, 77, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #d97706 0%, #b45309 50%, #78532a 100%);
}

/* NEWSLETTER */
.newsletter-section {
  background:
    radial-gradient(ellipse at top, rgba(217, 119, 6, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #fff7d6 0%, #fef3c7 100%);
  border-top: 1px solid rgba(217, 119, 6, 0.2);
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}
.newsletter-form input {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(217, 119, 6, 0.25);
  backdrop-filter: blur(6px);
}
.newsletter-form input:focus { border-color: #2460e9; }
.newsletter-form button {
  background: linear-gradient(135deg, #2460e9 0%, #1d4ed8 100%);
  box-shadow: 0 4px 14px rgba(36, 96, 233, 0.3);
}
.newsletter-form button:hover { background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); }

/* FILTERS */
.filter-btn {
  background: rgba(255, 254, 250, 0.7);
  border: 1px solid rgba(217, 119, 6, 0.22);
  backdrop-filter: blur(6px);
}
.filter-btn:hover { border-color: #d97706; color: #b45309; }
.filter-btn.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-color: transparent;
}

/* TRUST */
.trust-item svg { color: #d97706; }

/* WIDGETS — amber glass styling */
.price-history-section,
.user-reviews-section {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid rgba(217, 119, 6, 0.22);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.chart-bar {
  background: linear-gradient(180deg, #fde68a 0%, #d97706 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, #fbbf24 0%, #b45309 100%);
  box-shadow: 0 0 14px rgba(217, 119, 6, 0.4);
}
.chart-note {
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
}

.pros-cons-widget,
.delivery-widget {
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(217, 119, 6, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pros-heading { color: #15803d; }
.cons-heading { color: #b91c1c; }
.delivery-item svg { color: #d97706; }

.review-card {
  background: rgba(255, 251, 235, 0.6);
  border: 1px solid rgba(217, 119, 6, 0.15);
}
.review-avatar {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.social-proof-popup {
  background: rgba(255, 254, 250, 0.92);
  border: 1px solid rgba(217, 119, 6, 0.28);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 12px 32px rgba(180, 83, 9, 0.18);
}
.popup-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* FOOTER */
.site-footer {
  background:
    radial-gradient(ellipse at top, rgba(217, 119, 6, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #2a1810 0%, #1a0f08 100%);
}
.social-links a:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: #d97706;
}

/* DECORATIVE — subtle amber shimmer accent on section titles */
.section-title {
  position: relative;
  display: inline-block;
}
.section-header {
  text-align: center;
}
.section-header .section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, #d97706 50%, transparent);
  border-radius: 2px;
}

@keyframes amber-glow {
  0%, 100% { box-shadow: 0 6px 20px rgba(217, 119, 6, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
  50% { box-shadow: 0 8px 26px rgba(217, 119, 6, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}
.hero .btn-primary {
  animation: amber-glow 3.2s ease-in-out infinite;
}

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