/* ============================================================
   GardenToolsGuru — Professional Stylesheet
   Clean, modern design for garden tool reviews
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }

:root {
  /* Brand greens */
  --green-900: #1b3a12;
  --green-800: #2d5016;
  --green-700: #3d6b1f;
  --green-600: #558b2f;
  --green-500: #7cb342;

  /* Accent gold */
  --gold: #c8964e;
  --gold-light: #ddb880;
  --gold-dark: #a87a3a;

  /* Neutrals */
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-2: #f4f2ed;
  --surface-3: #ede9e2;
  --text: #2c2c2c;
  --text-secondary: #5a5a5a;
  --muted: #7d7d7d;
  --border: #e2ddd5;
  --border-light: #eeebe5;

  /* Radii */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.04);
  --shadow: 0 1px 8px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.04);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.12);

  /* Fonts */
  --font-head: 'Merriweather', Georgia, serif;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--green-700); text-decoration: none; transition: color .2s var(--ease) }
a:hover { color: var(--green-600); text-decoration: underline }
img { max-width: 100%; display: block }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px }
.section { padding: 80px 0 }
.section-sm { padding: 48px 0 }

/* ── Header ─────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green-900);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
  transition: box-shadow .3s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: #fff }

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.15);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

nav { display: flex; align-items: center; gap: 2px }

nav a {
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: color .18s var(--ease), background .18s var(--ease);
  text-decoration: none;
}
nav a:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-900) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-full) !important;
  margin-left: 6px;
  transition: background .18s var(--ease), transform .15s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background: linear-gradient(160deg, #162e0d 0%, var(--green-900) 40%, #1f4d28 100%);
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .22;
  filter: saturate(.8);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(22,46,13,.7) 0%, rgba(22,46,13,.35) 100%);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,150,78,.18);
  border: 1px solid rgba(200,150,78,.35);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.hero h1 span { color: var(--gold-light) }

.hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap }
.hero-stat-num { font-size: 1.5rem; font-weight: 700; color: #fff; font-family: var(--font-head) }
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px }

/* ── Affiliate Disclosure Bar ───────────────────────────────── */
.aff-bar {
  background: var(--green-800);
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.aff-bar strong { color: rgba(255,255,255,.9) }

/* ── Section Headings ───────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 48px }

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.section-head p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-head .divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Product Grid ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

.card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--surface-3);
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .card-img-wrap img { transform: scale(1.05) }

.card-img-wrap.no-img {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-900), #2d5a3d);
}
.card-img-placeholder { font-size: 3.5rem; opacity: .3 }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.card-rating-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(27,58,18,.9);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .82rem; font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  display: flex; align-items: center; gap: 3px;
}
.card-rating-badge .si { color: var(--gold-light); font-size: .85rem }

.card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-brand {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-600);
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
}

.card-snippet {
  font-size: .84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px }
.stars-char { color: var(--gold); font-size: .95rem; letter-spacing: 1px }
.rating-num { font-weight: 700; font-size: .9rem }
.rating-count { font-size: .8rem; color: var(--muted) }

.card-footer { padding: 14px 20px; border-top: 1px solid var(--border-light) }

.btn-review {
  display: block; text-align: center;
  background: var(--green-700);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600;
  transition: background .2s var(--ease);
}
.btn-review:hover { background: var(--green-600); text-decoration: none; color: #fff }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 52px; flex-wrap: wrap;
}

.page-btn {
  min-width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 500;
  cursor: pointer;
  transition: all .2s var(--ease);
  color: var(--text);
  padding: 0 4px;
}
.page-btn:hover, .page-btn.active {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
.page-btn.disabled { opacity: .35; pointer-events: none }
.page-nav { padding: 0 16px; width: auto; font-size: .82rem }

/* ── Featured Strip ─────────────────────────────────────────── */
.featured-strip {
  background: linear-gradient(160deg, #162e0d, var(--green-900));
  padding: 72px 0;
}
.featured-strip .section-head h2 { color: #fff }
.featured-strip .section-head p { color: rgba(255,255,255,.6) }
.featured-strip .divider { background: linear-gradient(90deg, var(--gold), var(--gold-light)) }
.featured-strip .container { display: flex; flex-direction: column; align-items: center }
.featured-strip .section-head, .featured-strip .featured-grid { width: 100% }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width:860px) { .featured-grid { grid-template-columns: 1fr } }

.featured-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
  color: inherit;
  text-decoration: none;
}
.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,150,78,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  text-decoration: none;
  color: inherit;
}

.featured-img { height: 200px; overflow: hidden }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease) }
.featured-card:hover .featured-img img { transform: scale(1.06) }
.featured-img.no-img { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.04) }

.featured-body { padding: 20px }

.featured-rank {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.featured-title {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: #fff; line-height: 1.4;
  margin-bottom: 10px;
}

.featured-stars { color: var(--gold-light); font-size: .88rem; margin-bottom: 14px }

.featured-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light);
  font-size: .82rem; font-weight: 600;
  transition: color .2s var(--ease);
}
.featured-link:hover { color: #fff; text-decoration: none }
.featured-link::after { content: ' →' }

/* ── Compare Table ──────────────────────────────────────────── */
.compare-section {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--surface);
}

.compare-table th {
  background: var(--green-900);
  color: #fff;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: .87rem;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none }
.compare-table tr[data-href] { cursor: pointer; transition: background .15s var(--ease) }
.compare-table tr[data-href]:hover td { background: rgba(85,139,47,.07) }
.compare-table tr:hover td { background: rgba(85,139,47,.04) }

.compare-rank { font-size: 1.3rem; font-weight: 700; color: var(--gold); text-align: center }

.compare-img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.compare-img.placeholder {
  background: linear-gradient(135deg, var(--green-900), #2d5a3d);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; opacity: .5;
}

.compare-name {
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .88rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 3px;
}
.compare-brand-tag {
  font-size: .68rem; color: var(--green-600);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em;
}

.compare-bar { height: 6px; background: var(--border); border-radius: 3px; margin-top: 5px; overflow: hidden }
.compare-bar-fill { height: 100%; background: linear-gradient(90deg, var(--green-600), var(--gold)); border-radius: 3px }
.compare-score { font-weight: 700; color: var(--green-600); font-size: .95rem }

.compare-link {
  display: inline-block;
  background: var(--green-700);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  font-size: .78rem; font-weight: 600;
  transition: background .2s var(--ease);
  white-space: nowrap;
}
.compare-link:hover { background: var(--green-600); text-decoration: none; color: #fff }

/* ── Sidebar ────────────────────────────────────────────────── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media(max-width:1040px) { .content-with-sidebar { grid-template-columns: 1fr } .sidebar { display: none } }

.sidebar { min-width: 0 }

.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}

.sidebar-widget h3 {
  font-family: var(--font-head);
  font-size: .95rem; font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}

.sidebar-list { display: flex; flex-direction: column; gap: 0 }

.sidebar-item {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0 }

.sidebar-rank { font-size: .85rem; font-weight: 700; color: var(--gold); min-width: 20px; text-align: center; flex-shrink: 0 }
.sidebar-img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; background: var(--surface-3) }
.sidebar-info { flex: 1; min-width: 0 }
.sidebar-name { font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 2px }
.sidebar-stars { color: var(--gold); font-size: .72rem }
.sidebar-link { font-size: .72rem; color: var(--green-600); font-weight: 600; display: block; margin-top: 2px }
.sidebar-link:hover { color: var(--green-700) }

/* ── Brand Cloud ────────────────────────────────────────────── */
.brand-cloud-section {
  background: var(--surface-2);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.brand-cloud-label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 12px;
}

.brand-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center }

.brand-tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .2s var(--ease);
  background: var(--surface);
  user-select: none;
  line-height: 1.4;
}
.brand-tag:hover {
  border-color: var(--green-600);
  color: var(--green-700);
  background: rgba(85,139,47,.06);
}
.brand-tag.active {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}

/* ── Filter Bar ─────────────────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

.filter-label {
  font-size: .75rem; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.filter-select {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .84rem;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .2s var(--ease);
  appearance: auto;
}
.filter-select:focus { outline: none; border-color: var(--green-600) }

.filter-reset {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: .8rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: var(--font);
}
.filter-reset:hover { border-color: var(--green-600); color: var(--green-700) }

.filter-results {
  font-size: .8rem; color: var(--muted);
  margin-left: auto; white-space: nowrap;
}

/* ── Product Page ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #162e0d, var(--green-900));
  padding: 28px 0;
}

.breadcrumb {
  display: flex; align-items: center;
  gap: 6px; font-size: .82rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.75) }
.breadcrumb a:hover { color: #fff; text-decoration: none }
.breadcrumb sep { color: rgba(255,255,255,.35); margin: 0 2px }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 52px 0;
}
@media(max-width:900px) { .product-layout { grid-template-columns: 1fr; gap: 32px } }

/* Gallery */
.gallery {
  display: flex; flex-direction: column;
  gap: 12px;
  position: sticky; top: 88px;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--surface-3);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover }
.gallery-main.no-img {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-900), #2d5a3d);
  font-size: 5rem; opacity: .35;
}

.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap }

.gallery-thumb {
  flex: 0 0 auto;
  width: 68px; height: 68px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all .2s var(--ease);
  opacity: .65;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gallery-thumb img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block }
.gallery-thumb:hover, .gallery-thumb.active {
  opacity: 1;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(85,139,47,.2);
}

/* Product info */
.p-brand {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(85,139,47,.1);
  color: var(--green-600);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.p-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.p-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px }
.p-rating .stars-char { font-size: 1.1rem; color: var(--gold) }
.p-rating .score { font-size: 1.1rem; font-weight: 700 }
.p-rating .reviews-ct { font-size: .84rem; color: var(--muted) }

.score-bar-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 22px;
}
.score-bar-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-bottom: 6px }
.score-bar-track { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--green-600), var(--green-500)); border-radius: 4px; transition: width .6s var(--ease) }

/* Verdict */
.verdict-box {
  background: linear-gradient(135deg, rgba(85,139,47,.06), rgba(85,139,47,.02));
  border: 1px solid rgba(85,139,47,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.verdict-label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-600);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.verdict-label::before { content: '✦'; color: var(--gold) }
.verdict-text { font-size: .92rem; color: var(--text); line-height: 1.7 }

/* CTA */
.cta-group { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap }

.btn-read-reviews {
  flex: 1; min-width: 140px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .88rem;
  transition: background .2s var(--ease), transform .15s var(--ease);
}
.btn-read-reviews:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  text-decoration: none; color: #fff;
}

/* Features */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px }
.features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; line-height: 1.6 }
.features-list li::before { content: '✓'; color: var(--green-600); font-weight: 700; flex-shrink: 0; margin-top: 2px }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px 0 }
@media(max-width:600px) { .pros-cons { grid-template-columns: 1fr } }

.pros-box, .cons-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.box-head {
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}
.pros-box .box-head { color: #15803d; border-bottom-color: rgba(21,128,61,.15) }
.cons-box .box-head { color: #dc2626; border-bottom-color: rgba(220,38,38,.15) }

.pros-box ul, .cons-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px }
.pros-box li, .cons-box li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; line-height: 1.55 }
.pros-box li::before { content: '✓'; color: #15803d; font-weight: 700; flex-shrink: 0; margin-top: 1px }
.cons-box li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; margin-top: 1px }

/* Description */
.product-desc { margin: 0 0 48px }
.product-desc h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border) }
.product-desc p { margin-bottom: 16px; color: var(--text); font-size: .94rem; line-height: 1.8 }

/* Reviews */
.reviews-section { margin: 0 0 60px }
.reviews-section h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; padding-bottom: 12px; border-bottom: 2px solid var(--border) }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px }

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow) }

.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px }
.reviewer-name { font-weight: 600; font-size: .88rem }
.review-date { font-size: .75rem; color: var(--muted) }
.review-stars { color: var(--gold); font-size: .88rem; margin-bottom: 8px; letter-spacing: 1px }
.review-title { font-weight: 600; font-size: .88rem; margin-bottom: 8px }
.review-text { font-size: .84rem; color: var(--text-secondary); line-height: 1.65 }

/* ── Related Products ───────────────────────────────────────── */
.related-section {
  background: var(--surface-2);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.related-section .section-head h2 { text-align: center }

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media(max-width:960px) { .related-grid { grid-template-columns: repeat(2, 1fr) } }
@media(max-width:520px) { .related-grid { grid-template-columns: 1fr } }

.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
}

.related-img { height: 160px; overflow: hidden; background: var(--surface-3) }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease) }
.related-card:hover .related-img img { transform: scale(1.05) }
.related-img.no-img { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--green-900), #2d5a3d); font-size: 2rem; opacity: .4 }

.related-body { padding: 16px }
.related-brand { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green-600); margin-bottom: 5px }
.related-title { font-size: .84rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden }
.related-stars { color: var(--gold); font-size: .8rem; letter-spacing: 1px }

.related-link {
  display: block; margin-top: 12px;
  text-align: center;
  background: var(--green-700);
  color: #fff;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600;
  transition: background .2s var(--ease);
}
.related-link:hover { background: var(--green-600); text-decoration: none; color: #fff }

/* ── Static Pages ───────────────────────────────────────────── */
.static-hero {
  background: linear-gradient(160deg, #162e0d, var(--green-900));
  padding: 56px 0;
}
.static-hero h1 { font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.6rem); color: #fff; font-weight: 700 }
.static-hero p { color: rgba(255,255,255,.65); font-size: .95rem; margin-top: 10px }

.static-content { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px }
.static-content h2 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; margin: 36px 0 14px; color: var(--text) }
.static-content p { margin-bottom: 16px; line-height: 1.8; font-size: .94rem; color: var(--text-secondary) }
.static-content ul { margin: 12px 0 20px 24px; display: flex; flex-direction: column; gap: 8px; font-size: .94rem }

.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 }
@media(max-width:700px) { .about-grid { grid-template-columns: 1fr } }

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.about-card:hover { box-shadow: var(--shadow); transform: translateY(-2px) }
.about-icon { font-size: 2.2rem; margin-bottom: 14px }
.about-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px }
.about-card p { font-size: .87rem; color: var(--text-secondary); line-height: 1.6 }

/* ── Cookie Banner ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--green-900);
  border-top: 2px solid var(--gold);
  padding: 18px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
#cookie-banner.visible { transform: translateY(0) }

.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap }
.cookie-text { flex: 1; font-size: .84rem; color: rgba(255,255,255,.82); min-width: 220px; line-height: 1.5 }
.cookie-text a { color: var(--gold-light) }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0 }

.cookie-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: .84rem; font-weight: 700;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.cookie-accept:hover { background: var(--gold-dark) }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.45); color: #fff }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media(max-width:880px) { .footer-grid { grid-template-columns: 1fr 1fr } }
@media(max-width:520px) { .footer-grid { grid-template-columns: 1fr } }

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: 14px;
}
.footer-brand .footer-logo-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover }
.footer-brand .footer-logo-icon { width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem }
.footer-brand p { font-size: .84rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px }
.footer-disclaimer { margin-top: 14px; font-size: .76rem; color: rgba(255,255,255,.38); line-height: 1.6 }

footer h4 {
  color: #fff;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px }
footer ul li a { color: rgba(255,255,255,.6); font-size: .84rem; transition: color .2s var(--ease) }
footer ul li a:hover { color: var(--gold-light); text-decoration: none }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5) }
.footer-bottom a:hover { color: var(--gold-light); text-decoration: none }

/* ── Ad Placements — 3 × 300×250 ───────────────────────────── */
.ad-placement { margin: 40px auto; text-align: center }
.ad-placement-inner { display: inline-flex; gap: 16px; justify-content: center; flex-wrap: wrap }
.ad-unit { width: 300px; height: 250px; background: transparent; border: 1px dashed rgba(0,0,0,.06); border-radius: var(--radius-xs) }

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:768px) {
  .header-inner { height: 56px }
  .logo { font-size: 1.1rem }
  .logo-img { width: 32px; height: 32px }
  .hero { padding: 64px 0 56px }
  .section { padding: 56px 0 }
  .container { padding: 0 16px }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px }
  .product-layout { gap: 24px; padding: 36px 0 }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px }

  /* Mobile nav */
  .nav-toggle { display: flex }
  header nav {
    display: none !important;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--green-900);
    padding: 12px 16px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 199;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  header.nav-open nav { display: flex !important }
  header nav a { padding: 12px 14px; font-size: .9rem; border-radius: var(--radius-xs) }
  .nav-cta { margin-left: 0; text-align: center }
}

@media(max-width:480px) {
  .products-grid { grid-template-columns: 1fr }
  .gallery { position: static }
  .hero-stats { gap: 28px }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  header, footer, #cookie-banner, .ad-placement, .nav-toggle { display: none !important }
  body { background: #fff; color: #000; font-size: 12pt }
  .container { max-width: 100%; padding: 0 }
  .product-layout { grid-template-columns: 1fr }
  a { color: #000 }
  a::after { content: ' (' attr(href) ')'; font-size: .8em; color: #555 }
}
