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

:root {
  --color-accent: #ea1e73;
  --color-accent-2: #b4ec17;
  --color-accent-3: #38e4d0;
  --color-accent-warm: #e6c22e;
  --color-accent-soft: #f1e3e9;
  --color-accent-2-soft: #edf1e3;
  --color-accent-3-soft: #e4f0ef;
  --color-accent-warm-soft: #f1eee4;

  --color-bg: #faf7f2;
  --color-bg-2: #f3ede2;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 250, 247, 242;
  --color-bg-white-rgb: 255, 255, 255;

  --color-text: #2d3318;
  --color-text-secondary: #5a6442;
  --color-text-muted: #8a9170;

  --color-border: #e3dccb;
  --color-border-light: #efe9da;

  --color-footer-bg: #3f6212;
  --color-footer-text: #f3ede2;
  --color-footer-muted: #c4d49a;
  --color-footer-link: #dde9b8;
  --color-footer-border: rgba(255,255,255,0.12);
  --color-footer-social-bg: rgba(255,255,255,0.1);
  --color-footer-social-border: rgba(255,255,255,0.18);

  --font-heading: 'Aleo', 'Georgia', serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

  --shadow-sm: 0 1px 3px rgba(63,98,18,0.08), 0 1px 2px rgba(63,98,18,0.04);
  --shadow-md: 0 4px 10px rgba(63,98,18,0.08);
  --shadow-lg: 0 12px 28px rgba(63,98,18,0.10);
  --shadow-xl: 0 20px 40px rgba(63,98,18,0.12);
}

/* ── Subtle linen texture on background ──────────────────────────────────── */
body {
  background-image:
    repeating-linear-gradient(0deg, rgba(63,98,18,0.025) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(63,98,18,0.025) 0 1px, transparent 1px 3px);
  background-color: var(--color-bg);
}

/* ── Announcement & Header ───────────────────────────────────────────────── */
.announcement-bar {
  background: #3f6212;
  color: #f3ede2;
}
.announcement-bar strong { color: var(--color-accent-warm); }

.site-header {
  background: rgba(250,247,242,0.94);
  border-bottom: 1px solid #d8cfb8;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #3f6212;
  letter-spacing: 0.2px;
}

/* ── Hero — garden catalog feel ──────────────────────────────────────────── */
.hero {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(180,236,23,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #faf7f2 0%, #f3ede2 100%);
}
.hero-content { text-align: center; }
.hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background-image:
    repeating-linear-gradient(90deg,
      #3f6212 0 18px,
      transparent 18px 28px,
      #b4ec17 28px 46px,
      transparent 46px 56px,
      #e6c22e 56px 74px,
      transparent 74px 84px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-badge {
  background: var(--color-bg-white);
  color: #3f6212;
  border: 1px dashed #3f6212;
  border-radius: 4px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hero-title { color: #2d3318; font-weight: 700; }
.hero-subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { justify-content: center; }

/* ── Section Titles ──────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  color: #3f6212;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 14px auto 0;
  background: #b4ec17;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  background: #3f6212;
  color: #faf7f2;
  box-shadow: 0 4px 14px rgba(63,98,18,0.22);
}
.btn-primary:hover {
  background: #4d7716;
  filter: none;
}
.btn-outline {
  border: 1.5px solid #3f6212;
  color: #3f6212;
  background: var(--color-bg-white);
}
.btn-outline:hover {
  background: #edf1e3;
  border-color: #3f6212;
  color: #2d3318;
}
.btn-cta {
  background: #3f6212;
  color: #faf7f2;
  box-shadow: 0 2px 6px rgba(63,98,18,0.18);
}
.btn-cta:hover {
  background: #4d7716;
  filter: none;
}

/* ── Product Card — seed-packet inspired ─────────────────────────────────── */
.product-card {
  background: var(--color-bg-white);
  border: 1px solid #d8cfb8;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 #d8cfb8;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(90deg,
    #3f6212 0 8px, transparent 8px 14px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 3;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(63,98,18,0.14);
  border-color: #3f6212;
}
.card-image-wrapper {
  background: #f3ede2;
  border-bottom: 1px dashed #d8cfb8;
}
.card-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card-brand {
  display: inline-block;
  font-family: var(--font-heading);
  color: #3f6212;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  padding: 2px 8px;
  border: 1px solid #3f6212;
  border-radius: 2px;
  background: #edf1e3;
  margin-bottom: 8px;
  align-self: flex-start;
}
.card-title {
  font-family: var(--font-heading);
  color: #2d3318;
}
.card-title a:hover { color: #3f6212; }

/* Seed-packet label tag dangling from card */
.card-badge {
  top: 14px;
  left: 14px;
  background: #faf7f2;
  color: #3f6212;
  border: 1px solid #3f6212;
  border-radius: 4px;
  padding: 4px 12px 4px 18px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(63,98,18,0.12);
}
.card-badge::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3f6212;
  box-shadow: 0 0 0 1px #faf7f2;
}

.card-price { align-items: baseline; }
.price-current { color: #2d3318; }

/* ── Categories ──────────────────────────────────────────────────────────── */
.category-card {
  background: var(--color-bg-white);
  border: 1px dashed #d8cfb8;
  border-radius: var(--radius-md);
}
.category-card:hover {
  border-style: solid;
  border-color: #3f6212;
  box-shadow: 0 10px 24px rgba(63,98,18,0.10);
}
.category-icon {
  background: #edf1e3;
  color: #3f6212;
  border: 1px solid #cdd9a4;
}

/* ── Filters / Pagination ────────────────────────────────────────────────── */
.filter-btn { border: 1px solid #d8cfb8; background: var(--color-bg-white); }
.filter-btn:hover { border-color: #3f6212; color: #3f6212; }
.filter-btn.active {
  background: #3f6212;
  border-color: #3f6212;
  color: #faf7f2;
}
.page-num.active {
  background: #3f6212;
  border-color: #3f6212;
  color: #faf7f2;
}

/* ── Newsletter — garden catalog clip ────────────────────────────────────── */
.newsletter-section {
  background: #edf1e3;
  border-top: 1px solid #cdd9a4;
  border-bottom: 1px solid #cdd9a4;
}
.newsletter-text h3 {
  font-family: var(--font-heading);
  color: #3f6212;
}
.newsletter-form input {
  border-radius: 4px;
  background: var(--color-bg-white);
  border: 1px solid #cdd9a4;
}
.newsletter-form input:focus { border-color: #3f6212; }
.newsletter-form button {
  background: #3f6212;
  color: #faf7f2;
  border-radius: 4px;
}
.newsletter-form button:hover { background: #4d7716; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { background: #edf1e3; }
.faq-item {
  background: var(--color-bg-white);
  border: 1px solid #cdd9a4;
}
.faq-item[open] { border-color: #3f6212; }
.faq-question { font-family: var(--font-heading); color: #2d3318; }
.faq-item[open] .faq-question::after { color: #3f6212; }

/* ── Guide / Top Picks ───────────────────────────────────────────────────── */
.guide-card {
  background: var(--color-bg-white);
  border: 1px solid #e0d4b3;
  border-radius: var(--radius-md);
}
.guide-card:hover { border-color: #e6c22e; }
.guide-number {
  background: #e6c22e;
  color: #2d3318;
  border-radius: 4px;
  font-family: var(--font-heading);
}
.guide-card-title { font-family: var(--font-heading); color: #2d3318; }

.top-picks-section { background: #f1eee4; }
.top-pick-item {
  background: var(--color-bg-white);
  border: 1px solid #e0d4b3;
}
.top-pick-item:hover { border-color: #e6c22e; }
.top-pick-rank { color: #b08a14; font-family: var(--font-heading); }
.top-pick-name { font-family: var(--font-heading); color: #2d3318; }
.top-pick-tag {
  background: #f1eee4;
  color: #8a6c10;
  border: 1px solid #e6c22e;
  border-radius: 4px;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-section { background: #e4f0ef; }
.testimonial-card {
  background: var(--color-bg-white);
  border: 1px solid #b7ddd7;
}
.testimonial-avatar {
  background: #38e4d0;
  color: #0e3b36;
}

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #3f6212 0%, #6b8e1c 100%);
}
.stat-number { color: #faf7f2; }
.stat-label { color: rgba(250,247,242,0.85); }

/* ── Comparison ──────────────────────────────────────────────────────────── */
.comparison-table {
  background: var(--color-bg-white);
  border: 1px solid #d8cfb8;
}
.comparison-table th {
  background: #edf1e3;
  color: #3f6212;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: #3f6212; }
.footer-logo { font-family: var(--font-heading); color: #faf7f2; }
.footer-col h4 { color: #c4d49a; }
.social-links a:hover {
  background: #b4ec17;
  border-color: #b4ec17;
  color: #2d3318;
}

/* ── Trust ───────────────────────────────────────────────────────────────── */
.trust-item svg { color: #3f6212; }
.mini-badge {
  background: var(--color-bg-white);
  border: 1px solid #d8cfb8;
}

/* ── Product Page ────────────────────────────────────────────────────────── */
.product-title { font-family: var(--font-heading); color: #2d3318; }
.product-brand-link {
  color: #3f6212;
  background: #edf1e3;
  border: 1px solid #3f6212;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1.4px;
}
.product-price-block {
  background: #f3ede2;
  border: 1px solid #d8cfb8;
}
.price-save {
  background: #edf1e3;
  color: #3f6212;
  border: 1px solid #b4ec17;
}

/* ── New Widgets ─────────────────────────────────────────────────────────── */
.delivery-widget {
  background: #f3ede2;
  border: 1px solid #d8cfb8;
  border-radius: var(--radius-md);
  position: relative;
}
.delivery-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg,
    #3f6212 0 6px, transparent 6px 12px);
  opacity: 0.5;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.delivery-item svg { color: #3f6212; }
.delivery-item strong { font-family: var(--font-heading); color: #2d3318; }

.pros-cons-widget {
  background: var(--color-bg-white);
  border: 1px solid #d8cfb8;
  border-radius: var(--radius-md);
}
.pros-cons-widget h3 {
  font-family: var(--font-heading);
  color: #3f6212;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d8cfb8;
}
.pros-heading {
  font-family: var(--font-heading);
  color: #3f6212;
  letter-spacing: 0.5px;
}
.cons-heading {
  font-family: var(--font-heading);
  color: #b8434f;
  letter-spacing: 0.5px;
}
.check-icon { color: #3f6212; }

.price-history-section {
  background: var(--color-bg-white);
  border: 1px solid #d8cfb8;
  border-radius: var(--radius-md);
}
.chart-bar {
  background: linear-gradient(180deg, #cdd9a4 0%, #6b8e1c 100%);
  border-radius: 4px 4px 0 0;
}
.chart-bar-current {
  background: linear-gradient(180deg, #b4ec17 0%, #3f6212 100%);
  box-shadow: 0 0 12px rgba(63,98,18,0.25);
}
.chart-note {
  background: #edf1e3;
  color: #3f6212;
  border: 1px dashed #3f6212;
  border-radius: 4px;
}

.user-reviews-section {
  background: var(--color-bg-white);
  border: 1px solid #d8cfb8;
  border-radius: var(--radius-md);
}
.reviews-big-number { font-family: var(--font-heading); color: #3f6212; }
.review-bar-fill { background: #e6c22e; }
.review-card {
  background: #f3ede2;
  border: 1px solid #e3dccb;
  border-radius: var(--radius-sm);
}
.review-avatar { background: #3f6212; color: #faf7f2; }
.verified-badge {
  background: #edf1e3;
  color: #3f6212;
}

.social-proof-popup {
  background: var(--color-bg-white);
  border: 1px solid #3f6212;
  border-left: 4px solid #3f6212;
  border-radius: var(--radius-sm);
}
.popup-icon { background: #3f6212; color: #faf7f2; }
.popup-text strong { font-family: var(--font-heading); color: #2d3318; }

/* ── Brand & Trending ────────────────────────────────────────────────────── */
.brand-showcase-section { background: #edf1e3; }
.brand-card {
  border: 1px dashed #cdd9a4;
  border-radius: var(--radius-md);
}
.brand-card:hover { border-style: solid; border-color: #3f6212; }
.brand-initial {
  background: linear-gradient(135deg, #3f6212, #6b8e1c);
  border-radius: 4px;
  font-family: var(--font-heading);
}
.brand-name { font-family: var(--font-heading); color: #2d3318; }

.trending-item {
  background: #f3ede2;
  border: 1px solid #e3dccb;
}
.trending-rank { color: #3f6212; font-family: var(--font-heading); }
.trending-hot {
  background: #f1e3e9;
  color: #ea1e73;
  border: 1px solid #ea1e73;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero::before { display: none; }
  .product-card::before { height: 4px; }
}