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

:root {
  --color-bg: #faf6f0;
  --color-bg-2: #f3ece2;
  --color-bg-white: #fffdf9;
  --color-bg-rgb: 250, 246, 240;
  --color-bg-white-rgb: 255, 253, 249;
  --color-surface: rgba(180, 160, 120, 0.04);
  --color-surface-hover: rgba(180, 160, 120, 0.08);
  --color-text: #3d3226;
  --color-text-secondary: #6b5d4f;
  --color-text-muted: #a89a8a;
  --color-border: #e8dfd3;
  --color-border-light: #f0e9df;
  --color-accent: #0d8ce9;
  --color-accent-2: #e50acf;
  --color-accent-3: #e4a709;
  --color-accent-warm: #e8bf27;
  --color-accent-soft: #e3ebf1;
  --color-accent-2-soft: #f2e3f0;
  --color-accent-3-soft: #f2ede3;
  --color-accent-warm-soft: #f1eee3;
  --color-star: #e4a709;
  --color-success: #2e9e6a;
  --color-footer-bg: #3d3226;
  --color-footer-text: #f3ece2;
  --color-footer-muted: #a89a8a;
  --color-footer-link: #d6cabb;
  --color-footer-border: rgba(255, 255, 255, 0.1);
  --color-footer-social-bg: rgba(255, 255, 255, 0.08);
  --color-footer-social-border: rgba(255, 255, 255, 0.12);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Nunito', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(60, 50, 38, 0.04);
  --shadow-sm: 0 1px 4px rgba(60, 50, 38, 0.06), 0 1px 2px rgba(60, 50, 38, 0.03);
  --shadow-md: 0 4px 12px rgba(60, 50, 38, 0.07), 0 2px 4px rgba(60, 50, 38, 0.03);
  --shadow-lg: 0 10px 28px rgba(60, 50, 38, 0.09), 0 4px 10px rgba(60, 50, 38, 0.04);
  --shadow-xl: 0 20px 44px rgba(60, 50, 38, 0.1), 0 8px 16px rgba(60, 50, 38, 0.04);
}

/* ── Green Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #2e9e6a 0%, #3ab87e 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46, 158, 106, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 22px rgba(46, 158, 106, 0.35);
  filter: brightness(1.05);
}
.btn-cta {
  background: linear-gradient(135deg, #2e9e6a 0%, #3ab87e 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(46, 158, 106, 0.2);
}
.btn-cta:hover {
  box-shadow: 0 4px 16px rgba(46, 158, 106, 0.3);
  filter: brightness(1.05);
}
.cookie-banner button {
  background: linear-gradient(135deg, #2e9e6a 0%, #3ab87e 100%);
}
.cookie-banner button:hover {
  filter: brightness(1.05);
}
.newsletter-form button {
  background: linear-gradient(135deg, #2e9e6a 0%, #3ab87e 100%);
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, #28895d 0%, #2e9e6a 100%);
}

/* ── Announcement Bar ──────────────────────────────────────────────────── */
.announcement-bar {
  background: #3d3226;
}

/* ── Hero — warm beige gradient with soft botanical pattern ────────────── */
.hero {
  background: linear-gradient(170deg, #fffdf9 0%, #f3ece2 40%, #faf6f0 100%);
}
.hero::before {
  background: radial-gradient(ellipse at 30% 20%, rgba(13, 140, 233, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(229, 10, 207, 0.03) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(228, 167, 9, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

/* ── Decorative floating petals animation ──────────────────────────────── */
@keyframes floatPetal {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-120px) rotate(180deg); opacity: 0; }
}
.hero-content::before {
  content: '✿';
  position: absolute;
  top: -30px;
  right: -60px;
  font-size: 28px;
  color: rgba(229, 10, 207, 0.15);
  animation: floatPetal 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-content::after {
  content: '❀';
  position: absolute;
  bottom: -20px;
  left: -50px;
  font-size: 22px;
  color: rgba(228, 167, 9, 0.15);
  animation: floatPetal 8s ease-in-out 2s infinite;
  pointer-events: none;
}

/* ── Cards — soft warm style with hover glow ───────────────────────────── */
.product-card {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
  box-shadow: var(--shadow-xs);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(60, 50, 38, 0.1);
  border-color: #d6cabb;
}

.category-card {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
}
.category-card:hover {
  border-color: var(--color-accent-2);
  box-shadow: 0 8px 24px rgba(229, 10, 207, 0.08);
}

/* ── Section backgrounds — warm alternation ────────────────────────────── */
.faq-section {
  background: var(--color-accent-2-soft);
}
.testimonials-section {
  background: var(--color-accent-3-soft);
}
.top-picks-section {
  background: var(--color-accent-warm-soft);
}
.newsletter-section {
  background: linear-gradient(135deg, #f3ece2 0%, #f0e9df 100%);
  border-top: 1px solid #e8dfd3;
  border-bottom: 1px solid #e8dfd3;
}
.newsletter-form input {
  background: #fffdf9;
  border-color: #e8dfd3;
}
.newsletter-form input:focus {
  border-color: var(--color-accent-2);
  box-shadow: 0 0 0 3px rgba(229, 10, 207, 0.08);
}

/* ── Stats section — warm beige gradient ───────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
}

/* ── Guide cards — warm hover ──────────────────────────────────────────── */
.guide-card {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
}
.guide-card:hover {
  border-color: var(--color-accent-warm);
  box-shadow: 0 8px 24px rgba(232, 191, 39, 0.1);
}

/* ── FAQ warm interaction ──────────────────────────────────────────────── */
.faq-item {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
}
.search-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(13, 140, 233, 0.08);
}

/* ── Testimonial cards ─────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(228, 167, 9, 0.08);
}

/* ── Brand showcase ────────────────────────────────────────────────────── */
.brand-showcase-section {
  background: var(--color-bg-2);
}
.brand-card {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
}
.brand-card:hover {
  box-shadow: 0 8px 20px rgba(60, 50, 38, 0.08);
}

/* ── Price History ─────────────────────────────────────────────────────── */
.price-history-section {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
  box-shadow: var(--shadow-sm);
}
.chart-bar {
  background: linear-gradient(180deg, var(--color-accent-soft) 0%, var(--color-accent) 100%);
  border-radius: 6px 6px 0 0;
}
.chart-bar-current {
  background: linear-gradient(180deg, #a3e4c4 0%, #2e9e6a 100%);
  box-shadow: 0 0 12px rgba(46, 158, 106, 0.25);
}
.chart-note {
  background: rgba(46, 158, 106, 0.08);
  color: #2e9e6a;
}

/* ── User Reviews ──────────────────────────────────────────────────────── */
.user-reviews-section {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
  box-shadow: var(--shadow-sm);
}
.review-card {
  background: var(--color-bg-2);
  border: 1px solid #e8dfd3;
}
.review-avatar {
  background: linear-gradient(135deg, var(--color-accent-warm), var(--color-accent-3));
}

/* ── Pros & Cons ───────────────────────────────────────────────────────── */
.pros-cons-widget {
  background: var(--color-bg-2);
  border: 1px solid #e8dfd3;
}

/* ── Delivery Widget ───────────────────────────────────────────────────── */
.delivery-widget {
  background: var(--color-bg-2);
  border: 1px solid #e8dfd3;
}

/* ── Social Proof Popup ────────────────────────────────────────────────── */
.social-proof-popup {
  background: var(--color-bg-white);
  border: 1px solid #e8dfd3;
  box-shadow: 0 12px 36px rgba(60, 50, 38, 0.12);
}
.popup-icon {
  background: linear-gradient(135deg, #2e9e6a, #3ab87e);
}

/* ── Banner Row ────────────────────────────────────────────────────────── */
.banner-row-3 .banner-link {
  border: 1px solid #e8dfd3;
  box-shadow: var(--shadow-sm);
}
.banner-row-3 .banner-link:hover {
  box-shadow: var(--shadow-lg);
}
.banner-link {
  border: 1px solid #e8dfd3;
}

/* ── Price save badge warm override ────────────────────────────────────── */
.price-save {
  background: rgba(46, 158, 106, 0.1);
  color: #2e9e6a;
}

/* ── Trending section ──────────────────────────────────────────────────── */
.trending-section {
  background: var(--color-bg-white);
}
.trending-item {
  background: var(--color-bg-2);
  border: 1px solid #e8dfd3;
}

/* ── Filter & pagination warm style ────────────────────────────────────── */
.filter-btn.active {
  background: linear-gradient(135deg, #2e9e6a 0%, #3ab87e 100%);
  border-color: #2e9e6a;
}
.filter-btn:hover {
  border-color: #2e9e6a;
  color: #2e9e6a;
}
.page-num.active {
  background: linear-gradient(135deg, #2e9e6a 0%, #3ab87e 100%);
  border-color: #2e9e6a;
}
.page-btn:hover, .page-num:hover {
  border-color: #2e9e6a;
  color: #2e9e6a;
}

/* ── Soft warm divider accent ──────────────────────────────────────────── */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-warm), var(--color-accent-3));
  border-radius: 3px;
  margin: 14px auto 0;
}

/* ── Social links hover — green accent ─────────────────────────────────── */
.social-links a:hover {
  background: #2e9e6a;
  border-color: #2e9e6a;
}

/* ── Warm thumb active ─────────────────────────────────────────────────── */
.thumb.active, .thumb:hover {
  border-color: var(--color-accent);
}