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

:root {
  /* Warm homely neutrals anchored on #854d0e */
  --color-bg: #faf6f0;
  --color-bg-2: #f2ebe1;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 250, 246, 240;
  --color-bg-white-rgb: 255, 255, 255;
  --color-surface: rgba(133,77,14,0.03);
  --color-surface-hover: rgba(133,77,14,0.07);
  --color-text: #2b2018;
  --color-text-secondary: #6b5d50;
  --color-text-muted: #a8998a;
  --color-border: #e7ddce;
  --color-border-light: #f2ebe1;

  /* Mandated accent palette — used exactly as given */
  --color-accent: #63ed10;
  --color-accent-2: #1dacea;
  --color-accent-3: #d926e8;
  --color-accent-warm: #e4b73c;
  --color-accent-soft: #e8f1e3;
  --color-accent-2-soft: #e3edf1;
  --color-accent-3-soft: #f0e3f1;
  --color-accent-warm-soft: #f0ede4;

  --color-star: #e4b73c;
  --color-success: #4a7c2f;
  --color-badge: #854d0e;
  --color-info: #1dacea;

  /* Footer — warm brand brown block */
  --color-footer-bg: #3a2410;
  --color-footer-text: #f5ede0;
  --color-footer-muted: #b8a894;
  --color-footer-link: #ddccb5;
  --color-footer-border: rgba(255,255,255,0.1);
  --color-footer-social-bg: rgba(255,255,255,0.07);
  --color-footer-social-border: rgba(255,255,255,0.12);

  /* Typography */
  --font-heading: 'Manrope', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Default radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Flat design — no shadows, only color blocks */
  --shadow-xs: none;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;
}

/* ── Bold typographic hierarchy ─────────────────────────────────── */
.hero-title,
.section-title,
.page-title,
.product-title,
.logo-text,
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-title { font-size: 34px; }
.hero-title { font-weight: 900; }

/* ── Underline-on-hover links ───────────────────────────────────── */
.nav-link:hover,
.mobile-nav-link:hover,
.breadcrumb a:hover,
.footer-col a:hover,
.card-title a:hover,
.product-brand-link:hover,
.card-brand:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* ── Flat buttons — solid color blocks, no shadow ───────────────── */
.btn-primary,
.btn-cta,
.btn-cta:hover,
.btn-primary:hover {
  box-shadow: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #14320a;
  font-weight: 800;
}
.btn-primary:hover { filter: brightness(0.94); transform: none; }
.btn-cta {
  background: var(--color-badge);
  color: #fff;
}
.btn-cta:hover { filter: none; background: #6d3f0b; transform: none; }
.btn-outline:hover { background: var(--color-accent-2-soft); }

/* ── Announcement bar — warm brand block ────────────────────────── */
.announcement-bar {
  background: #854d0e;
  color: #fff;
}
.announcement-bar strong { color: var(--color-accent-warm); }

/* ── Hero — centered stack with tactile color-block backdrop ────── */
.hero {
  text-align: center;
  background: var(--color-bg-2);
}
.hero,
.hero-content,
.hero--split .hero-content {
  text-align: center;
}
.hero-actions,
.hero--split .hero-actions { justify-content: center; }
.hero-subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
/* Decorative full-bleed warm radial layer behind the centered stack */
.hero::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 140%; height: 160%;
  background:
    radial-gradient(ellipse at 50% 25%, rgba(133,77,14,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 70%, rgba(29,172,234,0.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero-badge {
  background: var(--color-badge);
  color: #fff;
  border-radius: var(--radius-sm);
}

/* ── Product cards — flat, border-driven, no shadow ─────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--color-border);
  box-shadow: none;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border-color: var(--color-badge);
  background: var(--color-bg-white);
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body .btn-cta { margin-top: auto; }
.card-brand { color: var(--color-badge); }
.card-title a:hover { color: var(--color-badge); }

/* Category / guide / testimonial / top-pick cards — flat blocks */
.category-card,
.guide-card,
.testimonial-card,
.top-pick-item,
.brand-card,
.trending-item,
.faq-item {
  box-shadow: none;
  border: 1.5px solid var(--color-border);
}
.category-card:hover { box-shadow: none; border-color: var(--color-accent-2); }
.guide-card:hover,
.top-pick-item:hover { box-shadow: none; border-color: var(--color-accent-warm); }
.testimonial-card:hover,
.brand-card:hover { box-shadow: none; border-color: var(--color-accent-3); transform: translateY(-3px); }

/* ── Newsletter — accent-2 block ────────────────────────────────── */
.newsletter-form button:hover { background: #178fc4; transform: none; }

/* ── Stats bar keeps its multi-accent gradient block ────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--color-badge), var(--color-accent-2));
}

/* ── New widgets — flat color-blocked, brand-accented left rails ── */
.price-history-section,
.user-reviews-section,
.pros-cons-widget,
.delivery-widget {
  box-shadow: none;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-white);
}
.price-history-section { border-left: 5px solid var(--color-accent-2); }
.user-reviews-section { border-left: 5px solid var(--color-accent-warm); }
.pros-cons-widget { border-left: 5px solid var(--color-accent); }
.delivery-widget { border-left: 5px solid var(--color-badge); }
.delivery-item svg { color: var(--color-badge); }
.chart-bar {
  background: linear-gradient(180deg, var(--color-accent-warm-soft) 0%, var(--color-accent-warm) 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, #6da33f 0%, var(--color-success) 100%);
  box-shadow: none;
}
.review-avatar { background: var(--color-badge); }
.social-proof-popup {
  box-shadow: none;
  border: 1.5px solid var(--color-border);
  border-left: 5px solid var(--color-success);
  background: var(--color-bg-white);
}
.popup-icon { background: var(--color-success); }

/* ── Misc flat cleanups ─────────────────────────────────────────── */
.banner-link,
.banner-link:hover { box-shadow: none; }
.banner-link:hover { transform: translateY(-2px); border-color: var(--color-badge); }
.cookie-banner { box-shadow: none; border-top: 2px solid var(--color-border); }
.nav-link.active { background: var(--color-accent-soft); color: var(--color-badge); }