@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,400;7..72,500;7..72,600;7..72,700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #faf7f1;
  --color-bg-2: #f3ede2;
  --color-bg-white: #fffdf8;
  --color-bg-rgb: 250, 247, 241;
  --color-bg-white-rgb: 255, 253, 248;
  --color-surface: rgba(120, 113, 108, 0.04);
  --color-surface-hover: rgba(120, 113, 108, 0.08);
  --color-text: #3d342a;
  --color-text-secondary: #6b5f53;
  --color-text-muted: #a8a29e;
  --color-border: #e8e0d2;
  --color-border-light: #f1eadd;

  --color-accent: #d4e207;
  --color-accent-2: #3de3b9;
  --color-accent-3: #5c0ce9;
  --color-accent-warm: #eebe10;
  --color-accent-soft: #f1f2e2;
  --color-accent-2-soft: #e4f0ed;
  --color-accent-3-soft: #e8e3f1;
  --color-accent-warm-soft: #f1eee3;

  --color-footer-bg: #2e2820;
  --color-footer-text: #f3ede2;
  --color-footer-muted: #a8a29e;
  --color-footer-link: #d6cdbf;
  --color-footer-border: rgba(255,253,248,0.1);
  --color-footer-social-bg: rgba(255,253,248,0.07);
  --color-footer-social-border: rgba(255,253,248,0.12);

  --font-heading: 'Literata', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 6px rgba(120, 95, 60, 0.06);
  --shadow-md: 0 6px 18px rgba(120, 95, 60, 0.08);
  --shadow-lg: 0 14px 36px rgba(120, 95, 60, 0.1);
  --shadow-xl: 0 24px 50px rgba(120, 95, 60, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 162, 158, 0.10) 0%, transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(238, 190, 16, 0.06) 0%, transparent 45%),
    var(--color-bg);
}

.announcement-bar {
  background: #3d342a;
  color: #faf7f1;
}

.site-header {
  border-bottom: 1px solid rgba(168, 162, 158, 0.25);
  background: rgba(var(--color-bg-white-rgb), 0.85);
}

.logo-text {
  letter-spacing: -0.5px;
  color: #3d342a;
}

.hero {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 226, 7, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #fffdf8 0%, #f3ede2 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  background:
    radial-gradient(circle at 30% 40%, rgba(168, 162, 158, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(238, 190, 16, 0.10) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(61, 227, 185, 0.07) 0%, transparent 50%);
  transform: translate(-50%, -50%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

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

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

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

.hero-badge {
  background: #f1eee3;
  color: #8a6d0a;
  border: 1px solid rgba(168, 162, 158, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.5);
}

.hero-title {
  color: #2e2820;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.section-title {
  letter-spacing: -0.6px;
  font-weight: 600;
}

.btn-primary {
  background: #6b5f53;
  color: #fffdf8;
  box-shadow: 0 4px 14px rgba(107, 95, 83, 0.25);
}
.btn-primary:hover {
  background: #3d342a;
  filter: none;
  box-shadow: 0 8px 22px rgba(61, 52, 42, 0.3);
}

.btn-outline {
  border-color: #c9bda9;
  color: #6b5f53;
  background: rgba(255, 253, 248, 0.7);
}
.btn-outline:hover {
  background: #f3ede2;
  border-color: #a8a29e;
  color: #3d342a;
}

.btn-cta {
  background: #3d342a;
  color: #fffdf8;
  box-shadow: 0 2px 8px rgba(61, 52, 42, 0.18);
}
.btn-cta:hover {
  background: #2e2820;
  filter: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-white);
  border: 1px solid rgba(168, 162, 158, 0.22);
  border-radius: var(--radius-lg);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1), border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 162, 158, 0.45);
  box-shadow: 0 20px 44px rgba(120, 95, 60, 0.12);
}

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

.card-brand {
  color: #8a7a68;
  letter-spacing: 1.4px;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 500;
}

.category-card {
  border: 1px solid rgba(168, 162, 158, 0.25);
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 238, 227, 0.6) 0%, transparent 60%),
    var(--color-bg-white);
}
.category-card:hover {
  border-color: rgba(168, 162, 158, 0.5);
  transform: translateY(-5px);
}

.category-icon {
  background: #f1eee3;
  color: #8a6d0a;
  box-shadow: inset 0 0 0 6px rgba(255, 253, 248, 0.6), 0 4px 12px rgba(168, 162, 158, 0.15);
}

.newsletter-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(228, 240, 237, 0.5) 0%, transparent 60%),
    var(--color-bg-2);
  border-color: rgba(168, 162, 158, 0.2);
}

.newsletter-form button {
  background: #3d342a;
  color: #fffdf8;
}
.newsletter-form button:hover {
  background: #2e2820;
  transform: translateY(-1px);
}

.faq-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(228, 240, 237, 0.6) 0%, transparent 50%),
    #f7f1e6;
}
.faq-item {
  border: 1px solid rgba(168, 162, 158, 0.22);
  border-radius: var(--radius-lg);
}
.faq-item[open] { border-color: rgba(168, 162, 158, 0.5); }

.testimonials-section {
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 227, 241, 0.55) 0%, transparent 50%),
    #f7f1e6;
}
.testimonial-card {
  border: 1px solid rgba(168, 162, 158, 0.22);
  border-radius: var(--radius-lg);
}

.guide-section,
.top-picks-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 238, 227, 0.6) 0%, transparent 50%),
    #faf4e8;
}
.guide-card,
.top-pick-item {
  border: 1px solid rgba(168, 162, 158, 0.22);
  border-radius: var(--radius-lg);
}

.stats-section {
  background: linear-gradient(135deg, #6b5f53 0%, #a8a29e 100%);
}

.price-history-section,
.user-reviews-section {
  background: var(--color-bg-white);
  border: 1px solid rgba(168, 162, 158, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(120, 95, 60, 0.06);
}

.pros-cons-widget,
.delivery-widget {
  background:
    radial-gradient(circle at 0% 0%, rgba(241, 238, 227, 0.5) 0%, transparent 60%),
    #f7f1e6;
  border: 1px solid rgba(168, 162, 158, 0.22);
  border-radius: var(--radius-lg);
}

.social-proof-popup {
  background: var(--color-bg-white);
  border: 1px solid rgba(168, 162, 158, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(120, 95, 60, 0.18);
}
.popup-icon {
  background: #6b5f53;
}

.chart-bar {
  background: linear-gradient(180deg, #f1eee3 0%, #a8a29e 100%);
}

.brand-initial {
  background: linear-gradient(135deg, #6b5f53, #a8a29e);
}

.site-footer {
  background:
    radial-gradient(circle at 80% 10%, rgba(168, 162, 158, 0.08) 0%, transparent 50%),
    var(--color-footer-bg);
}

@keyframes nestFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -52%) scale(1.04); opacity: 0.9; }
}

.hero::before {
  animation: nestFloat 14s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero::before {
    width: 360px;
    height: 360px;
    filter: blur(30px);
  }
}