/* ==========================================================================
   PlanterHaven — Premium Editorial Stylesheet
   Refined palette, typography, header/footer, and components
   ========================================================================== */

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

:root {
  --bg: #fbfaf6;
  --bg-soft: #f4f1ea;
  --bg-paper: #ffffff;
  --ink: #16221c;
  --ink-2: #2c3a32;
  --muted: #6b766f;
  --muted-2: #98a298;
  --line: #e6e1d5;
  --line-2: #efeae0;

  --brand: #1f5132;
  --brand-2: #2d7a4a;
  --brand-deep: #143521;
  --brand-soft: #e9f1ea;

  --accent: #c66a3a;
  --accent-2: #e0855a;
  --accent-soft: #f7eee5;

  --gold: #b08a3e;
  --rose: #d6a89a;

  --shadow-1: 0 1px 2px rgba(20, 35, 25, .04), 0 2px 8px rgba(20, 35, 25, .04);
  --shadow-2: 0 6px 20px rgba(20, 35, 25, .07), 0 2px 6px rgba(20, 35, 25, .05);
  --shadow-3: 0 18px 48px rgba(20, 35, 25, .12), 0 4px 12px rgba(20, 35, 25, .06);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --container: 1200px;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', 'Helvetica Neue', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Resets */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-2); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .55em;
  line-height: 1.15;
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-2); }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; color: var(--ink-2); }
li { margin: .25em 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px){ .container { padding: 0 18px; } }

/* ==========================================================================
   HEADER — Premium editorial bar
   ========================================================================== */
header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.header-top {
  background: var(--brand-deep);
  color: #f5f1e6;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.header-top-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 28px;
  max-width: var(--container); margin: 0 auto;
}
.header-top-tag { opacity: .8; }
.header-top-links { display: flex; gap: 22px; }
.header-top-links a { color: #f5f1e6; opacity: .8; }
.header-top-links a:hover { opacity: 1; color: #fff; }
@media (max-width: 720px){ .header-top { display: none; } }

.header-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 28px; max-width: var(--container); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 700;
  font-size: 1.45rem; color: var(--ink);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 36;
}
.logo:hover { color: var(--brand); }
.logo-img {
  width: 42px; height: 42px;
  background: var(--brand-soft);
  border-radius: 12px;
  padding: 4px;
  border: 1px solid var(--line);
}
.logo-mark { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -.03em; }
.logo-tag { font-family: var(--sans); font-weight: 500; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
nav a {
  position: relative;
  padding: 10px 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .94rem;
  color: var(--ink-2);
  border-radius: 8px;
}
nav a:hover { color: var(--brand); background: var(--brand-soft); }
nav a.active { color: var(--brand); }
nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--brand); border-radius: 2px;
}
nav a.nav-cta {
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  margin-left: 10px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 4px 12px rgba(31,81,50,.22);
}
nav a.nav-cta:hover { background: var(--brand-deep); color: #fff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 9px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink); margin: 4px 0; border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,.06);
  }
  header.nav-open nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  nav a { padding: 14px 8px; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  nav a.nav-cta { margin: 14px 0 4px; text-align: center; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 86px 0 96px;
  background: var(--bg-soft);
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(.95) brightness(1.02);
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(251,250,246,.96) 0%, rgba(251,250,246,.78) 38%, rgba(251,250,246,.5) 100%);
  z-index: -1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
}
@media (max-width: 920px) {
  .hero { padding: 64px 0 72px; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; text-align: center; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(45,122,74,.18);
}
.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-variation-settings: "opsz" 144;
  letter-spacing: -.025em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.hero h1 .accent {
  display: inline-block;
  position: relative;
  color: var(--brand-deep);
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 12px;
  background: rgba(192,141,72,.28);
  z-index: -1;
  border-radius: 2px;
}
.hero p.lede {
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 520px;
  margin: 18px 0 28px;
}
@media (max-width: 920px) { .hero p.lede { margin-left: auto; margin-right: auto; } }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 920px) { .hero-cta-row { justify-content: center; } }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(31,81,50,.25);
}
.btn-primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

/* Hero brand-mark visual */
.hero-mark {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
@media (max-width: 920px) { .hero-mark { min-height: 280px; } }

.hero-mark-frame {
  position: relative;
  width: 100%; max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.55) 40%, rgba(255,255,255,.2) 70%, transparent 100%),
    conic-gradient(from 220deg, var(--brand-soft) 0%, #fff 30%, var(--accent-soft) 60%, #fff 100%);
  padding: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px rgba(20,53,33,.18), inset 0 0 0 1px rgba(255,255,255,.55);
}
.hero-mark-frame::before {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(31,81,50,.35);
  pointer-events: none;
}
.hero-mark-frame::after {
  content: "";
  position: absolute; inset: -22px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(31,81,50,.10), transparent 70%);
  z-index: -1;
}
.hero-mark-inner {
  width: 88%; height: 88%;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px var(--line), 0 6px 18px rgba(20,53,33,.06);
}
.hero-mark-inner img { width: 62%; height: 62%; object-fit: contain; }

.hero-mark-orbit {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-mark-orbit span {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-2);
}
.hero-mark-orbit span:nth-child(1){ top: 4%;  left: 0;  transform: rotate(-8deg); }
.hero-mark-orbit span:nth-child(2){ top: 10%; right: 0; transform: rotate(6deg);  }
.hero-mark-orbit span:nth-child(3){ bottom: 8%; left: 4%; transform: rotate(8deg); }
.hero-mark-orbit span:nth-child(4){ bottom: 4%; right: 4%; transform: rotate(-6deg); }

.hero-name-card {
  position: absolute;
  bottom: -22px; left: 50%; transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-2);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.hero-name-card .nm-name { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 1rem; }
.hero-name-card .nm-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-name-card .nm-tag { font-size: .72rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

/* Hero highlights — replaces stats block */
.hero-highlights {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 560px;
}
@media (max-width: 920px) { .hero-highlights { margin: 28px auto 0; } }
@media (max-width: 540px) { .hero-highlights { grid-template-columns: 1fr; gap: 12px; } }
.hh-card {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 16px 14px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-1);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hh-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.hh-icon {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-deep);
}
.hh-icon svg { width: 16px; height: 16px; }
.hh-title {
  font-family: var(--serif); font-weight: 700;
  font-size: 1rem; color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.hh-sub { font-size: .78rem; color: var(--muted); letter-spacing: .02em; }

/* ==========================================================================
   AFFILIATE DISCLOSURE BAR
   ========================================================================== */
.aff-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  padding: 11px 0;
}
.aff-bar strong { color: var(--ink-2); font-weight: 600; }

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */
.section { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 .35em;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  margin: 22px auto 0;
  border-radius: 2px;
}

/* ==========================================================================
   EDITOR'S TOP PICKS — Editorial layout
   ========================================================================== */
.top-picks-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.top-picks-section::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.top-picks-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 22px;
  align-items: end;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 900px) {
  .top-picks-grid { grid-template-columns: 1fr; align-items: stretch; gap: 16px; }
}
.tp-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-1);
}
.tp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
  border-color: var(--brand);
}
.tp-card.featured { border: 1.5px solid var(--gold); transform: translateY(-12px); }
.tp-card.featured:hover { transform: translateY(-18px); }
@media (max-width: 900px) {
  .tp-card.featured, .tp-card.featured:hover { transform: none; }
}

.tp-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  overflow: hidden;
}
.tp-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.tp-card:hover .tp-img img { transform: scale(1.06); }
.tp-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.18) 100%);
}

.tp-rank {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  padding: 7px 12px 7px 9px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  border: 1px solid var(--line);
}
.tp-rank-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--brand-deep); color: #fff;
  border-radius: 50%;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
}
.tp-card.featured .tp-rank-num { background: var(--gold); }

.tp-medal {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold);
  color: #fff;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tp-body {
  padding: 22px 22px 24px;
}
.tp-cat {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 8px;
}
.tp-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -.015em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.25;
}
.tp-card.featured .tp-title { font-size: 1.45rem; }
.tp-rating {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink-2);
}
.tp-rating .stars-char { color: var(--gold); letter-spacing: 1px; }
.tp-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  color: var(--brand);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s ease;
}
.tp-card:hover .tp-cta { color: var(--brand-deep); }

.tp-quote {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   FILTER BAR
   ========================================================================== */
.filter-bar {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-1);
}
.filter-label {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.filter-select {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink);
  cursor: pointer;
}
.filter-select:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.filter-reset {
  border: none;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: background .15s ease;
}
.filter-reset:hover { background: var(--brand); color: #fff; }
.filter-results { margin-left: auto; font-size: .88rem; color: var(--muted); font-weight: 500; }

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
@media (min-width: 1100px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 820px) and (max-width: 1099px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 540px) and (max-width: 819px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-1);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: var(--brand);
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s 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(--bg-soft), var(--brand-soft));
}
.card-img-placeholder { font-size: 3rem; opacity: .5; }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.card-price-badge {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  box-shadow: var(--shadow-1);
}
.card-price-badge.deal { background: linear-gradient(135deg, #c66a3a, #d87b48); color: #fff; }
.card-price-badge.bestvalue { background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: #fff; }
.card-price-badge.editor { background: linear-gradient(135deg, #b08a3e, #c8a155); color: #fff; }
.card-price-badge.popular { background: #fff; color: var(--brand-deep); border-color: var(--brand); }
.card-price-badge.premium { background: var(--ink); color: #fff; }
.card-price-badge.hot { background: #b73838; color: #fff; }
.card-price-badge.new { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }

.card-rating-badge {
  position: absolute; bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: .82rem;
  color: var(--ink); border: 1px solid var(--line);
}
.card-rating-badge .si { color: var(--gold); }

.card-body { padding: 18px 20px 8px; flex: 1; }
.card-brand {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.stars-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  font-size: .85rem;
  color: var(--muted);
}
.stars-char { color: var(--gold); letter-spacing: 1px; font-size: .9rem; }
.rating-num { font-weight: 700; color: var(--ink); }

.card-price {
  display: flex; align-items: baseline; gap: 8px;
  margin: 6px 0 12px;
  flex-wrap: wrap;
}
.card-price .est-label {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.card-price .est-amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
}
.card-price .est-was {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.card-snippet {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.card-footer {
  padding: 0 20px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.btn-review {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  color: var(--brand);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.product-card:hover .btn-review { color: var(--brand-deep); }

.pg-empty { text-align: center; padding: 50px 20px; color: var(--muted); font-size: 1rem; }
.pg-empty-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 6px;
}

.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 40px; flex-wrap: wrap;
}
.page-btn {
  min-width: 38px; height: 38px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.page-btn:hover:not(.disabled) { border-color: var(--brand); color: var(--brand); }
.page-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.page-btn.disabled { color: var(--muted-2); cursor: not-allowed; }
.page-btn.page-nav { background: var(--bg-soft); }

/* ==========================================================================
   VALUE STRIP
   ========================================================================== */
.value-strip { background: var(--bg-paper); padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  text-align: left;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.value-card .v-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.value-card .v-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1.1rem; margin: 0 0 8px; }
.value-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--ink); font-weight: 500; }
.breadcrumb sep { color: var(--muted-2); margin: 0 4px; }

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

.gallery-main {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.gallery-thumb {
  width: 88px; height: 88px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--line);
  transition: border-color .2s ease, transform .15s ease;
  background: var(--bg-soft);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { border-color: var(--brand); }
.gallery-thumb.active { border-color: var(--brand); transform: scale(1.04); }

.p-brand {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.p-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  letter-spacing: -.02em;
}

.p-rating {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .98rem;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.p-rating .stars-char { font-size: 1.1rem; }
.p-rating .score { font-weight: 700; color: var(--ink); }
.p-rating .reviews-ct { color: var(--muted); font-size: .9rem; }

.score-bar-wrap { margin: 16px 0 24px; }
.score-bar-label {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.score-bar-track {
  background: var(--line-2);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}
.score-bar-fill {
  background: linear-gradient(90deg, var(--brand-2), var(--brand-deep));
  height: 100%;
  border-radius: 999px;
}

.p-price-block {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 16px 0 22px;
}
.p-price-block .est-label {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.p-price-block .est-amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.p-price-block .est-was {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.p-price-block .est-tag {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: auto;
  background: var(--accent);
  color: #fff;
}

.verdict-box {
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  padding: 18px 22px;
  border-radius: 12px;
  margin: 16px 0 24px;
}
.verdict-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 6px;
}
.verdict-text { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink-2); margin: 0; line-height: 1.55; }

.cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 18px 0 6px; }
.btn-buy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(31,81,50,.25);
  transition: transform .15s ease, background .2s ease;
}
.btn-buy:hover { background: var(--brand-deep); color: #fff; transform: translateY(-1px); }
.btn-buy.alt { background: var(--accent); box-shadow: 0 8px 22px rgba(198,106,58,.28); }
.btn-buy.alt:hover { background: #a45628; }
.btn-read-reviews {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.btn-read-reviews:hover { background: var(--bg-soft); border-color: var(--ink); color: var(--ink); }
.cta-disclosure {
  font-size: .8rem;
  color: var(--muted);
  margin: 8px 0 0;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin: 28px 0 12px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.features-list li {
  position: relative;
  padding: 9px 12px 9px 38px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .94rem;
  color: var(--ink-2);
}
.features-list li::before {
  content: "";
  position: absolute; left: 12px; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 2px var(--brand);
}
.features-list li::after {
  content: "";
  position: absolute; left: 16px; top: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 48px 0;
}
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-1);
}
.pros-box { border-top: 4px solid var(--brand-2); }
.cons-box { border-top: 4px solid var(--accent); }
.box-head {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--ink);
}
.pros-box ul, .cons-box ul { margin: 0; padding-left: 20px; }
.pros-box li, .cons-box li { font-size: .94rem; color: var(--ink-2); padding: 4px 0; }

.product-desc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 38px; margin: 48px 0; box-shadow: var(--shadow-1); }
.product-desc h2 { font-size: 1.7rem; }
.product-desc p { font-size: 1.02rem; color: var(--ink-2); }
@media (max-width: 600px) { .product-desc { padding: 24px 22px; } }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 20px;
}
@media (max-width: 800px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
.spec-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  text-align: left;
}
.spec-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.spec-icon svg { width: 18px; height: 18px; }
.spec-label {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.spec-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.diagrams-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  margin: 36px 0;
  box-shadow: var(--shadow-1);
}
@media (max-width: 820px) { .diagrams-block { grid-template-columns: 1fr; padding: 22px; } }
.diagram-card h3 {
  font-size: 1.1rem;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.diagram-card h3::before {
  content: "";
  display: inline-block;
  width: 6px; height: 18px;
  background: var(--brand);
  border-radius: 2px;
}
.bar-row {
  display: grid;
  grid-template-columns: 130px 1fr 50px;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.bar-label { font-family: var(--sans); font-size: .88rem; color: var(--ink-2); font-weight: 500; }
.bar-track { height: 8px; background: var(--line-2); border-radius: 999px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-deep));
}
.bar-num { font-family: var(--sans); font-weight: 700; color: var(--ink); font-size: .88rem; text-align: right; }

.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 14px 0; }
.donut {
  width: 180px; height: 180px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  background:
    radial-gradient(closest-side, #fff 64%, transparent 65%),
    conic-gradient(var(--brand) 0% var(--p, 90%), var(--line-2) 0% 100%);
}
.donut-inner {
  display: flex; flex-direction: column; align-items: center;
}
.donut-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.donut-of { font-family: var(--sans); font-size: .8rem; color: var(--muted); margin-top: 4px; }
.donut-label {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Care timeline / Material legend */
.material-legend {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 18px 0;
}
@media (max-width: 600px) { .material-legend { grid-template-columns: 1fr; } }
.material-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .88rem;
  color: var(--ink-2);
}
.material-chip .swatch {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.06);
}

/* Reviews */
.reviews-section { margin: 56px 0; }
.reviews-section h2 { font-size: 1.7rem; margin-bottom: 22px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-1);
}
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.reviewer-name { font-weight: 700; color: var(--ink); }
.review-date { font-size: .82rem; color: var(--muted); }
.review-stars { color: var(--gold); font-size: .95rem; margin-bottom: 6px; }
.review-title { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.review-text { font-size: .94rem; color: var(--ink-2); line-height: 1.55; }

/* Related */
.related-section { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 70px 0; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
@media (max-width: 960px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-2); }
.related-img { aspect-ratio: 4 / 3; background: var(--bg-soft); overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-card:hover .related-img img { transform: scale(1.04); }
.related-body { padding: 16px 18px; }
.related-brand {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.related-title { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.related-stars { font-size: .82rem; color: var(--gold); margin-bottom: 8px; }
.related-link { font-family: var(--sans); font-weight: 600; font-size: .84rem; color: var(--brand); }

/* Static pages */
.static-hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.static-hero h1 { margin-bottom: 12px; }
.static-hero p { color: var(--muted); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }
.static-content { max-width: 820px; margin: 0 auto; padding: 28px; }
.static-content h2 { margin-top: 36px; font-size: 1.55rem; }
.static-content p, .static-content li { font-size: 1rem; color: var(--ink-2); }

/* Newsletter */
.newsletter {
  padding: 72px 0;
  background: var(--brand-deep);
  color: #f5f1e6;
  text-align: center;
}
.newsletter h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.newsletter p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 22px; }
.newsletter .nl-form {
  display: flex; gap: 8px; justify-content: center;
  max-width: 460px; margin: 0 auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px;
  border-radius: 999px;
}
.newsletter .nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: .95rem;
  outline: none;
}
.newsletter .nl-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter .nl-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s ease;
}
.newsletter .nl-form button:hover { background: #a45628; }
.newsletter .nl-note { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 14px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #0e1812;
  color: #c8d1ca;
  padding: 70px 0 28px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(31,81,50,.4), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(198,106,58,.18), transparent 60%);
  pointer-events: none;
  opacity: .5;
}
footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: #f5f1e6;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0 0 14px;
}
.footer-disclaimer { font-size: .82rem !important; color: rgba(255,255,255,.45) !important; }

footer h4 {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f5f1e6;
  margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin: 8px 0; }
footer ul a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: color .15s ease;
}
footer ul a:hover { color: #fff; }

.footer-contact { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 14px; line-height: 1.6; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; }

/* Cookie banner */
#cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  padding: 16px 22px;
  transform: translateY(140%);
  transition: transform .35s ease;
  max-width: 720px;
  margin: 0 auto;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cookie-text { font-size: .9rem; color: var(--ink-2); margin: 0; flex: 1; min-width: 220px; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-accept, .cookie-decline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.cookie-accept { background: var(--brand); color: #fff; }
.cookie-accept:hover { background: var(--brand-deep); }
.cookie-decline { background: transparent; color: var(--ink); border-color: var(--line); }
.cookie-decline:hover { background: var(--bg-soft); }

.ad-placement { padding: 30px 0; }
.ad-placement-inner { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.ad-unit { min-height: 250px; }

.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
