/* ==========================================================================
   GRILLBLOOM · BBQ ATLAS — Editorial Design System
   ========================================================================== */

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

:root {
  /* Palette — warm editorial with charcoal & ember */
  --ember: #E8551C;
  --ember-soft: #F47A3A;
  --amber: #F5A742;
  --gold: #C8893A;
  --char: #1A1614;
  --char-soft: #2B2522;
  --slate: #4A413B;
  --muted: #7A6F66;
  --line: #E8E1D5;
  --line-strong: #D5CBB8;
  --paper: #F8F4EC;
  --paper-warm: #F2EBDD;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --sage: #4A5A4F;
  --leaf: #6B7A60;
  --rose: #B23A3A;

  /* Typography */
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 22, 20, .06), 0 1px 3px rgba(26, 22, 20, .04);
  --shadow: 0 4px 14px rgba(26, 22, 20, .07), 0 2px 5px rgba(26, 22, 20, .05);
  --shadow-md: 0 10px 30px rgba(26, 22, 20, .10), 0 4px 10px rgba(26, 22, 20, .05);
  --shadow-lg: 0 24px 60px rgba(26, 22, 20, .14), 0 8px 18px rgba(26, 22, 20, .06);

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

/* Reset & base ---------------------------------------------------------- */
*, *::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(--char);
  background: var(--cream);
  font-feature-settings: 'kern', 'liga', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ember); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--char); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--char); letter-spacing: -.015em; line-height: 1.15; margin: 0 0 .6em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; letter-spacing: -.025em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }

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

.kicker {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ember);
  display: inline-block;
}

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ember) 0%, var(--amber) 50%, var(--ember) 100%);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 28px; max-width: var(--container); margin: 0 auto; }

.brand {
  display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--char);
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cream) 0%, var(--paper-warm) 100%);
  padding: 4px;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px var(--line-strong), 0 6px 18px rgba(232, 85, 28, .18);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  color: var(--char);
}
.brand-name em { font-style: italic; color: var(--ember); font-weight: 700; }
.brand-tag {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--muted);
}

.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--char-soft);
  border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.primary-nav a:hover { color: var(--ember); background: var(--paper); }
.primary-nav a.active { color: var(--ember); }
.primary-nav .cta {
  margin-left: 10px;
  background: var(--char);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(26, 22, 20, .18);
}
.primary-nav .cta:hover { background: var(--ember); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(232, 85, 28, .35); }

.nav-toggle { display: none; background: transparent; border: 1px solid var(--line-strong); border-radius: var(--radius); width: 42px; height: 42px; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--char); border-radius: 1px; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 12px 20px 20px; background: var(--cream); border-bottom: 1px solid var(--line); display: none; gap: 0; box-shadow: var(--shadow-md); }
  .primary-nav.open { display: flex; }
  .primary-nav a, .primary-nav .cta { padding: 14px; border-radius: var(--radius); font-size: 1rem; text-align: left; margin: 0; }
  .primary-nav .cta { text-align: center; margin-top: 6px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--char);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 25% 50%, rgba(232, 85, 28, .18), transparent 60%),
    linear-gradient(120deg, rgba(26, 22, 20, .92) 0%, rgba(26, 22, 20, .72) 50%, rgba(26, 22, 20, .55) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 110px 28px 120px;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--cream);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(250, 247, 242, .08);
  border: 1px solid rgba(250, 247, 242, .15);
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber);
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember); box-shadow: 0 0 0 4px rgba(232, 85, 28, .25);
}
.hero h1 {
  color: var(--cream);
  margin: 22px 0 22px;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  letter-spacing: -.03em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  font-feature-settings: 'ss01';
}
.hero-lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(250, 247, 242, .82);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  background: var(--ember);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  box-shadow: 0 10px 28px rgba(232, 85, 28, .35);
  transition: all .25s var(--ease);
}
.btn-primary:hover { background: var(--char); color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(26, 22, 20, .35); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, .25);
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s var(--ease);
}
.btn-ghost:hover { background: rgba(250, 247, 242, .08); color: var(--white); border-color: rgba(250, 247, 242, .5); }

/* Hero showpiece — Editorial Trust Seal */
.hero-showpiece {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.seal {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245, 167, 66, .25), transparent 60%), rgba(250, 247, 242, .04);
  border: 1px solid rgba(250, 247, 242, .15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid; place-items: center;
  overflow: hidden;
}
.seal::before, .seal::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(250, 247, 242, .12);
}
.seal::before { inset: 12px; }
.seal::after { inset: 26px; border-style: solid; border-color: rgba(245, 167, 66, .15); }

.seal-rotor {
  position: absolute;
  inset: 6px;
  animation: spin 60s linear infinite;
}
.seal-rotor svg { width: 100%; height: 100%; }
.seal-rotor text {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  fill: rgba(250, 247, 242, .7);
}
@keyframes spin { to { transform: rotate(360deg); } }

.seal-core {
  position: relative;
  width: 58%; height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--cream) 0%, var(--paper-warm) 70%, var(--paper) 100%);
  display: grid; place-items: center;
  box-shadow:
    inset 0 0 0 1px rgba(232, 85, 28, .18),
    inset 0 8px 20px rgba(232, 85, 28, .08),
    0 18px 40px rgba(0, 0, 0, .45),
    0 0 60px rgba(232, 85, 28, .25);
}
.seal-core img {
  width: 76%; height: 76%; object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(232, 85, 28, .3));
}
.seal-marks {
  position: absolute;
  inset: -8px;
  pointer-events: none;
}
.seal-mark {
  position: absolute;
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--ember);
  font-size: 1.1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(232, 85, 28, .25);
  text-align: center;
}
.seal-mark.tl { top: 4%; left: 4%; }
.seal-mark.tr { top: 4%; right: 4%; }
.seal-mark.bl { bottom: 4%; left: 4%; }
.seal-mark.br { bottom: 4%; right: 4%; }
.seal-mark span { display: block; font-size: .55rem; font-family: var(--sans); font-style: normal; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--char); margin-top: -2px; line-height: 1.1; }
.seal-mark strong { display: block; font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1; color: var(--ember); }

/* Hero meta strip — replaces the boring stats block */
.hero-meta {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 247, 242, .14);
  border-bottom: 1px solid rgba(250, 247, 242, .14);
}
.hero-meta-item {
  padding: 22px 18px 22px 0;
  border-right: 1px solid rgba(250, 247, 242, .14);
}
.hero-meta-item:last-child { border-right: none; padding-right: 0; }
.hero-meta-item:not(:first-child) { padding-left: 22px; }
.hero-meta-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.hero-meta-label::before {
  content: ''; width: 18px; height: 1px; background: var(--amber);
}
.hero-meta-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.hero-meta-value em { font-style: italic; color: var(--amber); font-weight: 400; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; padding: 80px 28px 90px; }
  .hero-showpiece { max-width: 380px; }
}
@media (max-width: 580px) {
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta-item { border-right: none; border-bottom: 1px solid rgba(250, 247, 242, .14); padding: 18px 0; }
  .hero-meta-item:last-child { border-bottom: none; }
  .hero-meta-item:not(:first-child) { padding-left: 0; }
  .seal-mark { width: 50px; height: 50px; }
  .seal-mark strong { font-size: 1rem; }
  .seal-mark span { font-size: .5rem; }
}

/* ==========================================================================
   DISCLOSURE BAR (neutral)
   ========================================================================== */
.disclosure-bar {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.disclosure-bar .container {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 28px;
  font-size: .85rem;
  color: var(--slate);
}
.disclosure-bar svg { flex-shrink: 0; color: var(--ember); }
.disclosure-bar strong { color: var(--char); margin-right: 6px; }

/* ==========================================================================
   SECTIONS & HEADINGS
   ========================================================================== */
.section { padding: 90px 0; position: relative; }
.section--paper { background: var(--paper); }
.section--char { background: var(--char); color: var(--cream); }
.section--char h2, .section--char h3 { color: var(--cream); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .kicker { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head h2 em { font-style: italic; color: var(--ember); font-weight: 400; }
.section-head p { color: var(--slate); font-size: 1.08rem; line-height: 1.6; }
.section-head .rule { width: 56px; height: 3px; background: var(--ember); margin: 18px auto 0; border-radius: 2px; }

.section-head--left { text-align: left; margin: 0 0 48px; }
.section-head--left .rule { margin-left: 0; }

/* ==========================================================================
   EDITOR'S TOP PICKS — Magazine spread
   ========================================================================== */
.picks-mag {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 28px;
}
.pick-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--char);
  text-decoration: none;
  color: var(--cream);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pick-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 20, .95) 0%, rgba(26, 22, 20, .55) 40%, rgba(26, 22, 20, .15) 70%, transparent 100%);
  pointer-events: none;
}
.pick-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.pick-card:hover img { transform: scale(1.06); }
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pick-card .pick-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}
.pick-rank {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--ember);
  color: var(--white);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(232, 85, 28, .4);
}
.pick-rank::before { content: '★'; font-size: .85rem; letter-spacing: 0; }
.pick-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 10px;
}
.pick-rating {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem;
  color: rgba(250, 247, 242, .85);
  margin-bottom: 14px;
}
.pick-rating .stars { color: var(--amber); letter-spacing: 1px; }
.pick-rating .num { font-weight: 700; color: var(--amber); }
.pick-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--amber);
  border-bottom: 1px solid rgba(245, 167, 66, .4);
  padding-bottom: 3px;
}
.pick-cta::after { content: '→'; transition: transform .3s var(--ease); }
.pick-card:hover .pick-cta::after { transform: translateX(4px); }

.pick-feature {
  aspect-ratio: 4 / 5;
  min-height: 540px;
}
.pick-feature .pick-body { padding: 36px; }
.pick-feature .pick-rank { font-size: .72rem; }

.picks-side { display: grid; grid-template-rows: 1fr 1fr; gap: 28px; }
.picks-side .pick-card { aspect-ratio: 4 / 3; min-height: 0; }
.picks-side .pick-title { font-size: 1.35rem; }

@media (max-width: 880px) {
  .picks-mag { grid-template-columns: 1fr; }
  .pick-feature { aspect-ratio: 4 / 5; min-height: 420px; }
  .picks-side { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .picks-side .pick-title { font-size: 1.1rem; }
}
@media (max-width: 600px) {
  .picks-side { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FILTER / TOOLBAR
   ========================================================================== */
.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.toolbar-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.toolbar select {
  padding: 9px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  color: var(--char);
  cursor: pointer;
  transition: border-color .2s var(--ease);
}
.toolbar select:hover { border-color: var(--ember); }
.toolbar select:focus { outline: 2px solid var(--ember); outline-offset: 2px; }
.toolbar-reset {
  margin-left: auto;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  transition: all .2s var(--ease);
}
.toolbar-reset:hover { background: var(--char); color: var(--white); border-color: var(--char); }
.toolbar-results { font-size: .85rem; color: var(--muted); font-weight: 500; }

/* ==========================================================================
   LAYOUT — content + sidebar
   ========================================================================== */
.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .with-sidebar { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCT GRID & CARD
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 580px)  { .products-grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }

.card-brand-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 11px;
  background: var(--white);
  color: var(--char);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.card-rating-pill {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 11px;
  background: var(--char);
  color: var(--amber);
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.card-rating-pill::before { content: '★'; }

.card-price-badge {
  position: absolute; bottom: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  background: var(--ember);
  color: var(--white);
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(232, 85, 28, .35);
}
.card-price-badge--cool { background: var(--char); color: var(--amber); box-shadow: 0 4px 12px rgba(26, 22, 20, .3); }
.card-price-badge--editor { background: var(--gold); color: var(--char); box-shadow: 0 4px 12px rgba(200, 137, 58, .35); }
.card-price-badge--value { background: var(--leaf); color: var(--cream); box-shadow: 0 4px 12px rgba(107, 122, 96, .35); }

.card-body {
  padding: 22px 22px 0;
  display: flex; flex-direction: column;
  flex: 1;
}
.card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 10px;
}
.card-meta strong { color: var(--ember); }
.card-meta span { color: var(--line-strong); }

.card-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: var(--char);
  margin: 0 0 12px;
}

.card-stars-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.card-stars-row .stars { color: var(--amber); letter-spacing: 1px; font-size: .95rem; }
.card-stars-row .num { font-weight: 700; color: var(--char); font-size: .92rem; }
.card-stars-row .label { font-size: .82rem; color: var(--muted); }

.card-snippet {
  font-size: .93rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 22px 22px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.card-price {
  display: flex; flex-direction: column; line-height: 1.1;
}
.card-price-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.card-price-value { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--char); margin-top: 2px; }
.card-price-value em { font-style: normal; font-size: .8rem; color: var(--muted); font-weight: 500; }
.card-cta {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ember);
  display: inline-flex; align-items: center; gap: 4px;
}
.card-cta::after { content: '→'; transition: transform .3s var(--ease); }
.card:hover .card-cta::after { transform: translateX(3px); }

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card + .sidebar-card { margin-top: 22px; }
.sidebar-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-card h3 .badge {
  font-size: .55rem; font-family: var(--sans); font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  background: var(--ember); color: var(--white);
  padding: 3px 7px; border-radius: 3px;
}

.sidebar-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-item {
  display: grid;
  grid-template-columns: 32px 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background .2s var(--ease);
}
.sidebar-item:hover { background: var(--paper); }
.sidebar-rank {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ember);
  text-align: center;
  font-style: italic;
  letter-spacing: -.04em;
}
.sidebar-img {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.sidebar-info { display: flex; flex-direction: column; line-height: 1.3; }
.sidebar-name { font-size: .85rem; font-weight: 600; color: var(--char); margin-bottom: 4px; }
.sidebar-stars { font-size: .78rem; color: var(--amber); letter-spacing: .5px; }

/* ==========================================================================
   BRAND CHIPS
   ========================================================================== */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--char-soft);
  cursor: pointer;
  transition: all .2s var(--ease);
  user-select: none;
}
.chip:hover { background: var(--paper); border-color: var(--line-strong); }
.chip.active, .chip[data-active="true"] { background: var(--char); color: var(--cream); border-color: var(--char); }

/* ==========================================================================
   COMPARE TABLE
   ========================================================================== */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 880px; }
.compare-table thead {
  background: var(--char);
}
.compare-table th {
  padding: 16px 18px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cream);
  text-align: left;
  border-bottom: 1px solid rgba(250, 247, 242, .15);
}
.compare-table td {
  padding: 18px;
  font-size: .92rem;
  color: var(--char);
  border-top: 1px solid var(--line);
  vertical-align: middle;
}
.compare-table tbody tr { transition: background .2s var(--ease); cursor: pointer; }
.compare-table tbody tr:hover { background: var(--paper); }
.compare-rank {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  color: var(--ember);
  letter-spacing: -.03em;
}
.compare-img { width: 80px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.compare-name { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; line-height: 1.2; margin-bottom: 4px; }
.compare-brand { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.compare-score { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: var(--char); }
.compare-score em { font-style: normal; font-size: .75rem; color: var(--muted); font-weight: 500; }
.compare-bar { width: 100%; max-width: 110px; height: 5px; background: var(--line); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.compare-bar-fill { height: 100%; background: linear-gradient(90deg, var(--ember), var(--amber)); border-radius: 3px; }
.compare-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 7px 13px;
  background: var(--ember);
  color: var(--white);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}
.compare-link:hover { background: var(--char); color: var(--white); }

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.page-hero {
  background: var(--char);
  color: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid rgba(250, 247, 242, .12);
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem;
  color: rgba(250, 247, 242, .7);
}
.breadcrumb a { color: var(--amber); text-decoration: none; }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb sep, .breadcrumb .sep { color: rgba(250, 247, 242, .35); margin: 0 4px; }

.product-page { padding: 50px 0 80px; }

.product-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}
@media (max-width: 920px) { .product-top { grid-template-columns: 1fr; gap: 36px; } }

.gallery-main {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-thumb {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
  transition: border-color .2s var(--ease);
}
.gallery-thumb:hover { border-color: var(--ember); }
.gallery-thumb.active { border-color: var(--ember); box-shadow: 0 0 0 2px rgba(232, 85, 28, .15); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.p-meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.p-brand-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--char);
  color: var(--cream);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.p-cat-pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: var(--paper);
  color: var(--slate);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.p-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--char);
  margin: 0 0 18px;
}

.p-rating-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.p-rating-row .stars { color: var(--amber); font-size: 1.15rem; letter-spacing: 1px; }
.p-rating-row .score { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--char); }
.p-rating-row .score em { font-style: normal; font-size: .9rem; color: var(--muted); font-weight: 400; }
.p-rating-row .reviews-ct { font-size: .82rem; color: var(--muted); }

.p-price-block {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 22px;
}
.p-price-block .label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }
.p-price-block .value { font-family: var(--serif); font-weight: 900; font-size: 2.2rem; color: var(--char); line-height: 1; margin-top: 6px; letter-spacing: -.02em; }
.p-price-block .value em { font-style: normal; font-size: 1rem; color: var(--muted); font-weight: 500; }
.p-price-block .badge {
  padding: 7px 12px;
  background: var(--ember);
  color: var(--white);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.score-bar-wrap { margin-bottom: 22px; }
.score-bar-label { display: flex; justify-content: space-between; font-size: .8rem; font-weight: 600; color: var(--char); margin-bottom: 8px; }
.score-bar-track { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--ember), var(--amber)); border-radius: 3px; }

.verdict-box {
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--ember);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 22px;
  position: relative;
}
.verdict-label {
  display: inline-block;
  font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .25em;
  color: var(--ember);
  margin-bottom: 8px;
}
.verdict-text { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.5; color: var(--char-soft); margin: 0; font-style: italic; }

.cta-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  background: var(--ember);
  color: var(--white);
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(232, 85, 28, .35);
  transition: all .25s var(--ease);
}
.btn-buy:hover { background: var(--char); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(26, 22, 20, .3); }
.btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  background: transparent;
  color: var(--char);
  border: 1.5px solid var(--char);
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s var(--ease);
}
.btn-secondary:hover { background: var(--char); color: var(--white); }
.cta-disclosure {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin: 4px 0 22px;
}

.features-block h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin: 0 0 14px;
}
.features-list { list-style: none; padding: 0; margin: 0; }
.features-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: .94rem;
  color: var(--char-soft);
  line-height: 1.55;
  border-bottom: 1px dotted var(--line);
}
.features-list li:last-child { border-bottom: none; }
.features-list li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8551C' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 60px;
}
@media (max-width: 720px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.pros-box { border-top: 4px solid var(--leaf); }
.cons-box { border-top: 4px solid var(--rose); }
.box-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.pros-box .box-head { color: var(--leaf); }
.cons-box .box-head { color: var(--rose); }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li, .cons-box li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--char-soft);
  border-bottom: 1px solid var(--line);
}
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }
.pros-box li::before, .cons-box li::before {
  position: absolute; left: 0; top: 12px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}
.pros-box li::before { content: '+'; color: var(--leaf); }
.cons-box li::before { content: '−'; color: var(--rose); }

.product-desc { max-width: 780px; margin: 0 auto 60px; }
.product-desc h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.product-desc p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--char-soft);
  margin: 0 0 1.4em;
}
.product-desc p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 4.4rem;
  float: left;
  line-height: .85;
  margin: 6px 14px 0 0;
  color: var(--ember);
}

.reviews-section { max-width: 920px; margin: 0 auto 50px; }
.reviews-section h2 { text-align: center; font-size: 2rem; margin-bottom: 14px; }
.reviews-section .section-sub { text-align: center; color: var(--muted); margin-bottom: 36px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 720px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 4px; right: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--paper-warm);
  line-height: 1;
}
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; position: relative; z-index: 1; }
.reviewer-name { font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--char); }
.review-date { font-size: .78rem; color: var(--muted); }
.review-stars { color: var(--amber); font-size: .9rem; letter-spacing: 1.5px; margin-bottom: 10px; }
.review-title { font-family: var(--serif); font-weight: 700; font-size: 1.08rem; color: var(--char); margin-bottom: 8px; }
.review-text { font-size: .94rem; line-height: 1.6; color: var(--char-soft); margin: 0; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .related-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   STATIC PAGES
   ========================================================================== */
.static-hero {
  background: var(--char);
  color: var(--cream);
  padding: 80px 0 70px;
  text-align: center;
}
.static-hero h1 { color: var(--cream); margin: 0 0 12px; }
.static-hero h1 em { color: var(--amber); font-style: italic; font-weight: 400; }
.static-hero p { font-size: 1.1rem; color: rgba(250, 247, 242, .7); max-width: 620px; margin: 0 auto; }
.static-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--char-soft);
}
.static-content h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin: 2.4em 0 .8em;
  padding-bottom: .4em;
  border-bottom: 1px solid var(--line);
}
.static-content h2:first-child { margin-top: 0; }
.static-content ul { padding-left: 22px; margin: 0 0 1.4em; }
.static-content li { padding: 6px 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--char);
  color: rgba(250, 247, 242, .7);
  padding: 70px 0 30px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ember) 0%, var(--amber) 50%, var(--ember) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250, 247, 242, .1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

.footer-brand .footer-mark {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-brand .footer-mark-img {
  width: 46px; height: 46px;
  background: linear-gradient(145deg, var(--cream) 0%, var(--paper-warm) 100%);
  padding: 4px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(232, 85, 28, .25);
}
.footer-brand .footer-mark-img img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand .footer-mark-text { display: flex; flex-direction: column; line-height: 1; }
.footer-brand .footer-mark-name { font-family: var(--serif); font-weight: 900; font-size: 1.4rem; color: var(--cream); letter-spacing: -.02em; }
.footer-brand .footer-mark-tag { font-size: .6rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--amber); margin-top: 4px; }
.footer-brand p { font-size: .92rem; line-height: 1.6; margin: 0 0 14px; color: rgba(250, 247, 242, .65); max-width: 360px; }
.footer-disc {
  font-size: .8rem; line-height: 1.55;
  color: rgba(250, 247, 242, .55);
  padding: 12px 14px;
  border-left: 2px solid var(--ember);
  background: rgba(250, 247, 242, .03);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--amber);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 6px 0; }
.site-footer a { color: rgba(250, 247, 242, .7); text-decoration: none; transition: color .2s var(--ease); font-size: .92rem; }
.site-footer a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 30px;
  font-size: .82rem;
  color: rgba(250, 247, 242, .5);
}
.footer-bottom a { color: rgba(250, 247, 242, .65); }
.footer-bottom a:hover { color: var(--cream); }

/* ==========================================================================
   COOKIE BANNER & ADS
   ========================================================================== */
#cookie-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px;
  z-index: 200;
  background: var(--char);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  border: 1px solid rgba(250, 247, 242, .1);
}
#cookie-banner.show { display: block; }
.cookie-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; max-width: var(--container); margin: 0 auto; }
.cookie-text { margin: 0; font-size: .9rem; line-height: 1.5; flex: 1; min-width: 240px; color: rgba(250, 247, 242, .85); }
.cookie-text a { color: var(--amber); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-accept, .cookie-decline {
  padding: 9px 18px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
}
.cookie-accept { background: var(--ember); color: var(--white); }
.cookie-decline { background: transparent; color: var(--cream); border: 1px solid rgba(250, 247, 242, .25); }

.ad-band { padding: 36px 0; background: var(--paper); }
.ad-inner { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination button, .pagination a {
  min-width: 40px; height: 40px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  color: var(--char);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all .2s var(--ease);
}
.pagination button:hover, .pagination a:hover { background: var(--paper); border-color: var(--line-strong); }
.pagination .active { background: var(--char); color: var(--cream); border-color: var(--char); }

.pg-hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media print {
  .site-header, .site-footer, #cookie-banner, .ad-band, .nav-toggle { display: none !important; }
}
