/* ============================================================
   P&P Atelier — Professional editorial stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink: #11203A;
  --ink-2: #1B2D4D;
  --gold: #B8862F;
  --gold-soft: #D9B66E;
  --cream: #FBF7EE;
  --paper: #FFFCF5;
  --line: #E6E0D2;
  --line-strong: #C9C2B0;
  --muted: #6B6557;
  --text: #2A2620;
  --accent: #8E2A2A;
  --accent-2: #2C5C4F;
  --shadow-sm: 0 1px 2px rgba(17,32,58,.06), 0 1px 3px rgba(17,32,58,.08);
  --shadow-md: 0 6px 16px rgba(17,32,58,.08), 0 2px 6px rgba(17,32,58,.06);
  --shadow-lg: 0 18px 50px rgba(17,32,58,.14), 0 6px 16px rgba(17,32,58,.08);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  font-feature-settings: 'kern', 'liga', 'calt', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1em; }

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

/* HEADER */
header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; gap: 24px;
}
@media (max-width: 720px) { .header-inner { padding: 10px 18px; } }

.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-weight: 700; font-size: 1.18rem; color: var(--ink);
  letter-spacing: .01em;
  line-height: 1;
}
.logo .logo-img {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 3px;
  box-shadow: var(--shadow-sm);
}
.logo-mark { display: flex; flex-direction: column; gap: 2px; }
.logo-mark .lm-name { font-size: 1.18rem; font-weight: 700; }
.logo-mark .lm-tag {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

nav {
  display: flex; align-items: center; gap: 6px;
}
nav a {
  position: relative;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all .2s ease;
}
nav a:hover { color: var(--ink); background: rgba(17,32,58,.04); }
nav a.active { color: var(--ink); }
nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
nav a.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 9px 18px; margin-left: 6px;
  font-weight: 600;
  border: 1px solid var(--ink);
}
nav a.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 40px; height: 40px;
  border-radius: 8px;
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 10px 18px 18px; gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: .25s ease;
  }
  nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  nav a { padding: 12px 14px; }
  nav a.nav-cta { margin: 6px 0 0; text-align: center; }
}

/* HERO */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(.85) contrast(.96);
  opacity: .55;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(251,247,238,.4) 0%, rgba(251,247,238,.95) 60%, var(--cream) 100%);
  z-index: -1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px; align-items: center;
}
@media (max-width: 900px) {
  .hero { padding: 60px 0 70px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  background: rgba(184, 134, 47, .1);
  border: 1px solid rgba(184, 134, 47, .25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  margin-bottom: 22px;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}
.hero-lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--paper);
  padding: 14px 26px; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid var(--ink);
  transition: all .25s ease;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink);
  padding: 14px 26px; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid var(--line-strong);
  transition: all .25s ease;
}
.btn-secondary:hover { background: var(--paper); border-color: var(--ink); }

.hero-feature {
  position: relative;
  background: linear-gradient(135deg, var(--paper) 0%, #F4ECDA 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-feature::before {
  content: ""; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(184, 134, 47, .25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-feature::after {
  content: ""; position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(44, 92, 79, .15) 0%, transparent 70%);
  border-radius: 50%;
}

.hf-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; position: relative; z-index: 2; }
.hf-emblem {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  padding: 6px;
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hf-emblem img { width: 100%; height: 100%; object-fit: contain; }
.hf-titles { line-height: 1.25; }
.hf-titles .hf-name {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}
.hf-titles .hf-tag {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.hf-signature {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.hf-ring {
  --p: 92;
  width: 96px; height: 96px;
  border-radius: 50%;
  background:
    conic-gradient(var(--gold) calc(var(--p) * 1%), rgba(184,134,47,.15) 0);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
}
.hf-ring::before {
  content: "";
  position: absolute; inset: 8px;
  background: var(--paper);
  border-radius: 50%;
  border: 1px solid var(--line);
}
.hf-ring-content {
  position: relative; z-index: 2;
  text-align: center;
  font-family: var(--serif);
}
.hf-ring-num { font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.hf-ring-of { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; font-family: var(--sans); font-weight: 600; }

.hf-sig-text { line-height: 1.5; }
.hf-sig-quote { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.hf-sig-author { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.hf-meta {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hf-meta-cell {
  text-align: center;
  padding: 10px 8px;
  border-right: 1px solid var(--line);
}
.hf-meta-cell:last-child { border-right: 0; }
.hf-meta-num {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hf-meta-num .gold { color: var(--gold); }
.hf-meta-label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}

/* Affiliate disclosure ribbon */
.aff-bar {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink-2) 100%);
  color: rgba(255,252,245,.92);
  font-size: .86rem;
  padding: 14px 0;
  border-bottom: 3px solid var(--gold);
}
.aff-bar .container { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.aff-bar strong { color: var(--gold-soft); font-weight: 700; letter-spacing: .03em; }

/* Sections, headings */
.section { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

.divider {
  width: 60px; height: 2px; background: var(--gold);
  margin: 18px auto 0;
}

/* Editor's Top Picks */
.top-picks {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tp-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tp-head .tp-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.tp-head .tp-title em { font-style: italic; color: var(--gold); }
.tp-head .tp-sub { color: var(--muted); font-size: .94rem; max-width: 460px; line-height: 1.6; }
.tp-head .tp-issue {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--cream);
}

.tp-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) {
  .tp-layout { grid-template-columns: 1fr; }
}
.tp-stack { display: grid; gap: 24px; grid-template-rows: 1fr 1fr; }

.tp-card {
  position: relative;
  display: grid;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
  color: inherit;
}
.tp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.tp-card.featured { grid-template-rows: minmax(360px, 1fr) auto; }
.tp-card.compact { grid-template-columns: 1fr 1.1fr; }

.tp-img {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #F8F2E1 0%, #EFE7D2 100%);
}
.tp-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .6s ease;
  mix-blend-mode: multiply;
}
.tp-card:hover .tp-img img { transform: scale(1.04); }

.tp-rank {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .92rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.tp-rank::before { content: "★"; color: var(--gold-soft); }
.tp-card.featured .tp-rank {
  background: var(--gold);
  color: var(--ink);
  font-size: 1rem;
  padding: 10px 18px;
}
.tp-card.featured .tp-rank::before { color: var(--ink); }

.tp-body { padding: 24px 26px; }
.tp-card.featured .tp-body { padding: 30px 32px; }
.tp-card.compact .tp-body { padding: 20px 22px; align-self: center; }

.tp-cat {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted);
  margin-bottom: 8px;
}
.tp-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}
.tp-card.featured .tp-name { font-size: 1.6rem; }
.tp-card.compact .tp-name { font-size: 1.1rem; }

.tp-rate {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.tp-stars { color: var(--gold); font-size: .95rem; letter-spacing: .04em; }
.tp-score {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.tp-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.tp-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s ease;
}
.tp-card:hover .tp-link { gap: 12px; color: var(--gold); }
.tp-pricetag {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
}

/* Filter bar */
.filter-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}
.filter-label { font-size: .82rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.filter-select {
  font-family: var(--sans);
  font-size: .9rem;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color .2s ease;
}
.filter-select:hover, .filter-select:focus { border-color: var(--ink); }
.filter-reset {
  font-family: var(--sans);
  font-size: .85rem; font-weight: 600;
  background: transparent;
  color: var(--accent);
  border: 1px solid transparent;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.filter-reset:hover { background: rgba(142,42,42,.08); border-color: rgba(142,42,42,.3); }
.filter-results {
  margin-left: auto;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

/* Layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
@media (max-width: 1000px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
}

/* Product grid + cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

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

.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #F8F2E1 0%, #EFE7D2 100%);
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform .5s ease;
  mix-blend-mode: multiply;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--sans);
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.card-rating-badge {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8rem; font-weight: 700;
  color: var(--paper);
  background: var(--ink);
  padding: 4px 9px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.card-rating-badge .si { color: var(--gold-soft); }

.price-badge {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--sans);
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.price-badge.editors { background: var(--gold); color: var(--ink); border: 1px solid #9c721e; }
.price-badge.deal    { background: var(--accent); color: var(--paper); border: 1px solid #6e1f1f; }
.price-badge.bestv   { background: var(--accent-2); color: var(--paper); border: 1px solid #1f4438; }
.price-badge.staff   { background: var(--ink); color: var(--paper); border: 1px solid #0a1525; }
.price-badge.popular { background: var(--paper); color: var(--ink); border: 1px solid var(--line-strong); }

.card-body { padding: 18px 20px; flex: 1; }
.card-brand {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 700;
}
.stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.stars-char { color: var(--gold); font-size: .95rem; letter-spacing: .04em; }
.rating-num { font-family: var(--mono); font-size: .82rem; font-weight: 600; color: var(--ink); }
.rating-count { font-size: .76rem; color: var(--muted); }
.card-snippet {
  font-size: .88rem; color: var(--muted);
  line-height: 1.55; margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 4px 20px 12px;
  flex-wrap: wrap;
}
.card-price-label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .15em;
}
.card-price {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.card-price-from {
  font-size: .75rem;
  color: var(--muted);
}

.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(184, 134, 47, .04));
  display: flex; align-items: center; justify-content: space-between;
}
.btn-review {
  font-size: .85rem; font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s ease, color .25s ease;
}
.product-card:hover .btn-review { gap: 12px; color: var(--gold); }

/* Sidebar widgets */
.sidebar-widget {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.005em;
}
.sidebar-list { display: flex; flex-direction: column; gap: 14px; }
.sidebar-item {
  display: grid;
  grid-template-columns: 24px 56px 1fr;
  gap: 12px; align-items: center;
  padding: 6px;
  border-radius: 8px;
  transition: background .25s ease;
}
.sidebar-item:hover { background: var(--cream); }
.sidebar-rank {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold);
}
.sidebar-img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.sidebar-name {
  font-family: var(--serif);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.sidebar-stars { font-size: .76rem; color: var(--gold); margin-bottom: 4px; }
.sidebar-link { font-size: .72rem; color: var(--muted); font-weight: 600; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 30px; flex-wrap: wrap;
}
.pagination button, .pagination .page {
  min-width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-family: var(--sans);
  font-size: .88rem; font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0 10px;
}
.pagination .page.active, .pagination button.active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.pagination button:hover:not(.active) { border-color: var(--ink); }

/* Brand cloud */
.brand-cloud-section {
  background: var(--paper);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-cloud-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 18px;
}
.brand-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  background: var(--cream);
  color: var(--text);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.brand-tag:hover { background: var(--paper); border-color: var(--ink); color: var(--ink); }
.brand-tag.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* PRODUCT PAGE */
.page-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 22px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb sep { color: var(--line-strong); }
.breadcrumb span { color: var(--ink); font-weight: 600; }

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  padding: 50px 0 30px;
}
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
}

.gallery {
  position: sticky; top: 92px;
  align-self: start;
}
@media (max-width: 900px) { .gallery { position: static; } }
.gallery-main {
  background: linear-gradient(135deg, #F8F2E1 0%, #EFE7D2 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  display: grid; place-items: center;
  overflow: hidden;
  margin-bottom: 14px;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 30px;
  mix-blend-mode: multiply;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}
.gallery-thumb {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.gallery-thumb.active { border-color: var(--ink); }
.gallery-thumb:hover { transform: translateY(-1px); }

.p-brand {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 14px;
}
.p-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.p-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.p-rating .stars-char { font-size: 1.05rem; }
.p-rating .score { font-family: var(--mono); font-size: 1rem; font-weight: 700; color: var(--ink); }
.p-rating .reviews-ct { font-size: .8rem; color: var(--muted); }

.p-price-bar {
  display: flex; align-items: baseline; gap: 12px;
  margin: 18px 0 24px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}
.p-price-bar .pp-label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted);
  margin-right: auto;
}
.p-price-bar .pp-amount {
  font-family: var(--mono);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
}
.p-price-bar .pp-from { font-size: .82rem; color: var(--muted); }

.score-bar-wrap { margin-bottom: 18px; }
.score-bar-label {
  display: flex; justify-content: space-between;
  font-size: .8rem; font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.score-bar-track {
  height: 8px; background: rgba(184,134,47,.15);
  border-radius: 6px; overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: 6px;
}

.verdict-box {
  background: linear-gradient(135deg, var(--paper) 0%, #F4ECDA 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 20px 0 26px;
}
.verdict-label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 8px;
}
.verdict-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.cta-group {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 22px 0 8px;
}
.btn-buy {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--ink);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700; font-size: .98rem;
  border: 1px solid #9c721e;
  box-shadow: var(--shadow-md);
  transition: all .25s ease;
}
.btn-buy:hover { background: #a87a2a; transform: translateY(-1px); color: var(--paper); }
.btn-buy.alt { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-buy.alt:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-buy.outline { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn-buy.outline:hover { background: var(--ink); color: var(--paper); }

.btn-read-reviews {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid var(--line-strong);
  transition: all .25s ease;
}
.btn-read-reviews:hover { border-color: var(--ink); }

.cta-disclosure {
  font-size: .76rem;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.5;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.features-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--text);
}
.features-list li::before {
  content: "✓";
  position: absolute; left: 12px; top: 10px;
  width: 18px; height: 18px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800; font-size: .8rem;
  border-radius: 50%;
  display: grid; place-items: center;
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin: 26px 0 14px;
  display: block;
}

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

.pros-box, .cons-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.pros-box { border-top: 4px solid var(--accent-2); }
.cons-box { border-top: 4px solid var(--accent); }
.box-head {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.pros-box .box-head { color: var(--accent-2); }
.cons-box .box-head { color: var(--accent); }
.pros-box ul, .cons-box ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.pros-box ul li, .cons-box ul li {
  position: relative;
  padding-left: 24px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.5;
}
.pros-box ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent-2); font-weight: 800;
}
.cons-box ul li::before {
  content: "✗"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}

/* Diagrams */
.diagrams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 30px 0;
}
@media (max-width: 760px) { .diagrams { grid-template-columns: 1fr; } }

.diagram-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.diagram-title {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.diagram-sub {
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  margin-bottom: 18px;
}

.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 110px 1fr 50px; gap: 12px; align-items: center; }
.bar-label { font-size: .85rem; font-weight: 600; color: var(--text); }
.bar-track {
  height: 10px;
  background: rgba(184,134,47,.12);
  border-radius: 6px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: 6px;
}
.bar-fill.alt { background: linear-gradient(90deg, var(--accent-2) 0%, #4F8773 100%); }
.bar-value { font-family: var(--mono); font-size: .82rem; font-weight: 700; color: var(--ink); text-align: right; }

.diagram-radar svg { width: 100%; height: auto; max-width: 320px; margin: 0 auto; display: block; }

.product-desc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 36px;
  margin: 26px 0;
  box-shadow: var(--shadow-sm);
}
.product-desc h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.product-desc p { color: var(--text); font-size: 1rem; line-height: 1.75; }
.product-desc p:last-child { margin-bottom: 0; }

/* Reviews */
.reviews-section { margin: 50px 0; }
.reviews-section h2 {
  font-family: var(--serif); font-size: 1.7rem;
  margin-bottom: 22px;
  text-align: left;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 6px; right: 18px;
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(184, 134, 47, .15);
  line-height: 1;
}
.review-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-size: .82rem;
}
.reviewer-name { font-weight: 700; color: var(--ink); }
.review-date { color: var(--muted); font-family: var(--mono); font-size: .76rem; }
.review-stars { color: var(--gold); margin-bottom: 8px; font-size: .9rem; }
.review-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.review-text { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* Related */
.related-section { padding: 70px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.related-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none; color: inherit;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-img {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  background: linear-gradient(135deg, #F8F2E1 0%, #EFE7D2 100%);
  overflow: hidden;
  display: block;
}
.related-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  mix-blend-mode: multiply;
}
.related-body { padding: 14px 18px; }
.related-brand {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted); margin-bottom: 4px;
}
.related-title {
  font-family: var(--serif);
  font-weight: 700; font-size: .98rem;
  color: var(--ink);
  margin-bottom: 6px; line-height: 1.3;
}
.related-stars { color: var(--gold); font-size: .8rem; margin-bottom: 6px; }
.related-link { font-size: .78rem; font-weight: 600; color: var(--ink); }

/* Static pages */
.static-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.static-hero h1 { margin-bottom: 12px; }
.static-hero p { color: var(--muted); max-width: 660px; margin: 0 auto; font-size: 1.05rem; line-height: 1.65; }

.static-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
  font-size: 1.02rem;
  line-height: 1.85;
}
.static-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-top: 1.6em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.static-content h2:first-child { margin-top: 0; }
.static-content ul { padding-left: 22px; }
.static-content ul li { margin-bottom: 8px; }
.static-content strong { color: var(--ink); }

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255, 252, 245, .82);
  padding: 70px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-weight: 700; font-size: 1.25rem;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer-logo-img {
  width: 40px; height: 40px;
  background: var(--paper);
  border-radius: 50%;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  font-size: .92rem; line-height: 1.65;
  color: rgba(255, 252, 245, .68);
  margin-bottom: 12px;
  max-width: 380px;
}
.footer-disclaimer {
  font-size: .82rem;
  color: var(--gold-soft);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  font-style: italic;
}

footer h4 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0 0 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul li a {
  color: rgba(255, 252, 245, .72);
  font-size: .92rem;
  transition: color .2s ease;
}
footer ul li a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  font-size: .82rem;
  color: rgba(255, 252, 245, .55);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a {
  color: rgba(255, 252, 245, .72);
}
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-info-line {
  font-size: .82rem;
  color: rgba(255,252,245,.55);
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  display: none;
}
#cookie-banner.show { display: block; }
.cookie-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
}
.cookie-text {
  font-size: .9rem; margin: 0; line-height: 1.55;
  color: rgba(255,252,245,.85);
}
.cookie-text strong { color: var(--gold-soft); }
.cookie-text a { color: var(--gold-soft); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept, .cookie-decline {
  font-family: var(--sans);
  font-size: .88rem; font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.cookie-accept { background: var(--gold); color: var(--ink); }
.cookie-accept:hover { background: var(--gold-soft); }
.cookie-decline { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.2); }
.cookie-decline:hover { border-color: rgba(255,255,255,.5); }

/* Ads */
.ad-placement {
  padding: 30px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ad-placement-inner {
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: center;
}
.ad-unit { min-width: 300px; min-height: 250px; background: transparent; }

/* Utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
