@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Warm, tactile neutrals */
  --color-bg: #faf8f4;
  --color-bg-2: #f3efe8;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 250, 248, 244;
  --color-bg-white-rgb: 255, 255, 255;
  --color-surface: rgba(63,49,30,0.02);
  --color-surface-hover: rgba(63,49,30,0.04);
  --color-text: #241d15;
  --color-text-secondary: #5c5346;
  --color-text-muted: #9a8f7f;

  /* Mandatory accent palette — exact */
  --color-accent: #e242b3;
  --color-accent-2: #e8e30c;
  --color-accent-3: #18ec97;
  --color-accent-warm: #e7b02d;
  --color-accent-soft: #f0e4ed;
  --color-accent-2-soft: #f1f1e3;
  --color-accent-3-soft: #e3f1eb;
  --color-accent-warm-soft: #f1ede4;

  --color-star: #e7b02d;
  --color-success: #18a06a;
  --color-badge: #e242b3;
  --color-info: #e242b3;

  --color-border: #e7e0d5;
  --color-border-light: #f1ebe1;

  /* Warm-toned footer */
  --color-footer-bg: #241d15;
  --color-footer-text: #f3efe8;
  --color-footer-muted: #b0a795;
  --color-footer-link: #d8cfbf;
  --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);

  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

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

  /* Soft, homely shadows */
  --shadow-xs: 0 1px 2px rgba(63,49,30,0.05);
  --shadow-sm: 0 1px 3px rgba(63,49,30,0.06), 0 1px 2px rgba(63,49,30,0.04);
  --shadow-md: 0 6px 16px rgba(63,49,30,0.07), 0 2px 6px rgba(63,49,30,0.04);
  --shadow-lg: 0 14px 32px rgba(63,49,30,0.09), 0 4px 12px rgba(63,49,30,0.05);
  --shadow-xl: 0 24px 48px rgba(63,49,30,0.11), 0 8px 20px rgba(63,49,30,0.05);
}

/* ── Hero: centered stack + subtle dot grid (hero only) ─────────────────── */
.hero {
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
}
.hero-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { justify-content: center; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(63,49,30,0.10) 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 0%, transparent 75%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-badge {
  color: var(--color-text);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

/* ── Pill CTAs ──────────────────────────────────────────────────────────── */
.btn,
.btn-primary,
.btn-outline,
.btn-cta,
.btn-cta-large,
.cookie-banner button,
.newsletter-form button {
  border-radius: 999px;
}

.btn-primary {
  background: var(--color-accent);
  box-shadow: 0 6px 18px rgba(226,66,179,0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(226,66,179,0.34);
  filter: brightness(1.03);
}

/* ── Cards: hairline borders + soft shadows (preserve flex layout) ──────── */
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(226,66,179,0.28);
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body .btn-cta { margin-top: auto; }

.category-card:hover { border-color: var(--color-accent-2); }
.category-icon { background: var(--color-accent-3-soft); color: var(--color-success); }

/* ── New widgets ────────────────────────────────────────────────────────── */
.price-history-section,
.user-reviews-section {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.chart-bar {
  background: linear-gradient(180deg, var(--color-accent-soft) 0%, var(--color-accent) 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, #4fe0ad 0%, var(--color-accent-3) 100%);
  box-shadow: 0 0 12px rgba(24,236,151,0.28);
}

.pros-cons-widget,
.delivery-widget {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
}
.delivery-item svg { color: var(--color-accent); }
.review-avatar { background: var(--color-accent); }

.social-proof-popup {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
}
.popup-icon { background: var(--color-success); }

/* ── Warm accent underline on section titles (decorative) ──────────────── */
.section-header .section-title {
  position: relative;
  display: inline-block;
}
.section-header .section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-warm));
}