/* ============================================================
   CARRY VOYAGE — Editorial Travel-Gear Review Magazine
   v2.0  Complete redesign
   ============================================================ */

@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');

/* ---------- Tokens ---------- */
:root {
  --ink:        #0c1a2b;
  --ink-2:      #16273d;
  --ink-soft:   #2a3b54;
  --paper:      #fbf7f0;
  --paper-2:    #f3ece0;
  --paper-3:    #ece2d1;
  --line:       #e2d8c5;
  --line-2:     #d2c5ad;
  --muted:      #6d6b6a;
  --muted-2:    #8a857d;
  --gold:       #b8893d;
  --gold-2:     #d4a85a;
  --teal:       #2d6f72;
  --teal-2:     #1f5457;
  --rose:       #b3534b;
  --green:      #2f7a55;
  --red:        #b94a45;
  --bg:         #fbf7f0;
  --card-bg:    #ffffff;

  --serif:      'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:       'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  --shadow-sm:  0 1px 2px rgba(12,26,43,.06), 0 1px 3px rgba(12,26,43,.08);
  --shadow-md:  0 8px 28px rgba(12,26,43,.10), 0 2px 6px rgba(12,26,43,.06);
  --shadow-lg:  0 22px 60px rgba(12,26,43,.18);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  22px;
  --maxw:       1240px;
  --header-h:   72px;
}

*,*::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: "kern", "liga", "calt";
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .18s ease, opacity .18s ease; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: #fff; }

h1,h2,h3,h4,h5 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.18rem; font-weight: 600; }
p  { margin: 0 0 1em; }
strong { color: var(--ink); font-weight: 600; }

.container {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
}

/* ============================================================ HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251,247,240,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 30px rgba(12,26,43,.08);
  background: rgba(251,247,240,.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.brand-tag {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-top: 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.main-nav > a {
  position: relative;
  padding: 10px 16px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.main-nav > a:hover { color: var(--ink); background: var(--paper-2); }
.main-nav > a.is-active { color: var(--ink); }
.main-nav > a.is-active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--paper) !important;
  font-weight: 600;
  font-size: .88rem;
  border-radius: 999px;
  letter-spacing: 0;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--gold); color: #fff !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  width: 40px; height: 40px;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ============================================================ HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(251,247,240,.96) 0%, rgba(251,247,240,.82) 38%, rgba(251,247,240,.45) 62%, rgba(251,247,240,0) 90%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(12,26,43,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,26,43,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 80%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  padding: 90px 0 100px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero-lede {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .96rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: 0 6px 24px rgba(12,26,43,.18); }
.btn-primary:hover { background: var(--gold); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(184,137,61,.32); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(160deg, #ffffff 0%, var(--paper-2) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 30px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.7);
  text-align: center;
  isolation: isolate;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px dashed var(--line-2);
  border-radius: 28px;
  z-index: -1;
  opacity: .85;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.hero-stamp {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(12,26,43,.25);
  border: 2px solid var(--paper);
}
.hero-logo-circle {
  width: 132px;
  height: 132px;
  margin: 8px auto 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, #ffffff, var(--paper-2));
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(12,26,43,.12), inset 0 0 0 1px var(--line);
}
.hero-logo-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: .55;
}
.hero-logo-circle::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed var(--line-2);
  animation: rotateRing 36s linear infinite;
}
@keyframes rotateRing { to { transform: rotate(360deg); } }
.hero-logo-circle img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-card-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}
.hero-card-tag {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-card-divider {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-card-divider::before, .hero-card-divider::after {
  content: ''; width: 60px; height: 1px; background: var(--line);
}
.hero-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.hero-card-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-card-meta strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  font-style: italic;
}
.hero-card-meta span {
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}

/* ============================================================ DISCLOSURE BAR */
.disclosure-bar {
  background: var(--ink);
  color: rgba(251,247,240,.94);
  padding: 14px 0;
  font-size: .87rem;
  text-align: center;
  font-family: var(--sans);
}
.disclosure-bar strong { color: var(--gold-2); font-weight: 600; }
.disclosure-bar a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ SECTIONS */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 600; margin-bottom: 14px; }
.section-head h2 em { font-style: italic; color: var(--ink-soft); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; max-width: 580px; margin: 0 auto; }
.section-rule {
  width: 70px;
  height: 1px;
  background: var(--line-2);
  margin: 22px auto 0;
  position: relative;
}
.section-rule::before, .section-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.section-rule::before { left: -2px; }
.section-rule::after  { right: -2px; }

/* ============================================================ TOP PICKS */
.top-picks-section {
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse at top, rgba(184,137,61,.06), transparent 50%),
    var(--paper);
  position: relative;
}
.top-picks-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 30%, var(--line-2) 70%, transparent);
}
.picks-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.pick-feature {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 540px;
  text-decoration: none;
  color: inherit;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  box-shadow: var(--shadow-sm);
}
.pick-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pick-feature-img {
  position: relative;
  background: var(--paper-3);
  overflow: hidden;
  height: 360px;
}
.pick-feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.pick-feature:hover .pick-feature-img img { transform: scale(1.05); }
.pick-feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,26,43,.45));
}
.pick-feature-tag {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 8px 16px;
  border-radius: 999px;
  z-index: 2;
}
.pick-feature-quote {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.pick-feature-body {
  padding: 28px 30px 30px;
  border-top: 1px solid var(--line);
  background: var(--card-bg);
}
.pick-feature-rank {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 10px;
}
.pick-feature-rank::before { content: '★'; font-size: .88rem; }
.pick-feature h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
}
.pick-feature-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: .9rem;
  color: var(--muted);
}
.pick-feature-meta .stars { color: var(--gold); letter-spacing: 1px; }
.pick-feature-cta {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
}

.picks-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}
.pick-side {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.pick-side:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.pick-side-img {
  position: relative;
  background: var(--paper-3);
  overflow: hidden;
}
.pick-side-img img { width: 100%; height: 100%; object-fit: cover; }
.pick-side-rank {
  position: absolute;
  top: 16px; left: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.pick-side-body {
  padding: 22px 22px 22px 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.pick-side-eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 8px;
}
.pick-side h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--ink);
}
.pick-side-meta {
  display: flex; gap: 14px; font-size: .82rem; color: var(--muted);
  align-items: center;
}
.pick-side-meta .stars { color: var(--gold); letter-spacing: 1px; }
.pick-side-link {
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex; gap: 5px;
}
.pick-side-link::after { content: '→'; transition: transform .2s; }
.pick-side:hover .pick-side-link::after { transform: translateX(3px); }

/* ============================================================ CATALOG */
.catalog-section { padding: 80px 0; }
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.toolbar-results {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.toolbar-results span { color: var(--gold); }
.toolbar-controls { display: flex; gap: 10px; flex-wrap: wrap; }
.toolbar-controls select, .toolbar-controls button {
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.toolbar-controls select:hover, .toolbar-controls button:hover {
  border-color: var(--gold);
  background: var(--card-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-3);
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-img-wrap.no-img {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--paper-2), var(--paper-3));
}
.card-img-placeholder { font-size: 3.6rem; opacity: .35; }
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(12,26,43,.92);
  backdrop-filter: blur(6px);
  color: var(--paper);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 6px 10px;
  border-radius: 6px;
}
.card-rating-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: .82rem;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: 4px;
}
.card-rating-badge .si { color: var(--gold); }

.card-deal-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(184,137,61,.34);
}
.card-deal-badge.is-bestseller { background: var(--ink); }
.card-deal-badge.is-editors    { background: var(--teal); }
.card-deal-badge.is-staffpick  { background: var(--rose); }

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

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.price-main {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.price-strike {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}
.price-est {
  display: block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 2px;
}
.card-footer {
  padding: 12px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-review {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.product-card:hover .btn-review { color: var(--gold); }

/* sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--header-h) + 20px); align-self: flex-start; }
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.sidebar-list { display: flex; flex-direction: column; }
.sidebar-item {
  display: grid;
  grid-template-columns: 36px 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item:hover { transform: translateX(2px); }
.sidebar-rank {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
}
.sidebar-img, .sidebar-item img.sidebar-img {
  width: 64px; height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper-3);
}
.sidebar-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sidebar-name {
  font-family: var(--serif);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sidebar-stars { color: var(--gold); font-size: .78rem; letter-spacing: 1px; }
.sidebar-link { font-size: .76rem; font-weight: 600; color: var(--ink-soft); }

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.page-btn {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 40px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.page-btn:hover { background: var(--paper-2); border-color: var(--gold); }
.page-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.page-btn.disabled { opacity: .4; cursor: not-allowed; }

.pg-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--card-bg);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  color: var(--muted);
  margin-top: 20px;
  font-size: .95rem;
}
.pg-empty-btn {
  margin-left: 8px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
}

/* ============================================================ BRAND CLOUD */
.brands-section {
  padding: 60px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 22px;
}
.brand-cloud {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 920px;
  margin: 0 auto;
}
.brand-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all .18s;
}
.brand-tag:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.brand-tag.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ============================================================ COMPARE */
.compare-section { padding: 80px 0; }
.compare-table-wrap {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: .92rem;
  min-width: 900px;
}
.compare-table thead { background: var(--ink); color: var(--paper); }
.compare-table th {
  padding: 16px 14px;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: left;
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s;
}
.compare-table tbody tr:hover { background: var(--paper); }
.compare-table tbody tr:last-child { border-bottom: 0; }
.compare-table td { padding: 16px 14px; vertical-align: middle; }
.compare-rank {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
}
.compare-img {
  width: 72px; height: 60px; object-fit: cover;
  border-radius: 6px; background: var(--paper-3);
}
.compare-name { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--ink); }
.compare-brand-tag {
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-top: 4px;
}
.compare-score { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.compare-bar {
  width: 90px; height: 5px;
  background: var(--paper-3);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}
.compare-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 3px;
}
.compare-link {
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ============================================================ PRODUCT PAGE */
.page-hero {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.breadcrumb {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb sep { margin: 0 8px; color: var(--line-2); }
.breadcrumb span { color: var(--ink); font-weight: 500; }

.product-page { padding: 36px 0 80px; }
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.gallery {
  display: flex; flex-direction: column; gap: 14px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: flex-start;
}
.gallery-main {
  aspect-ratio: 4/3;
  background: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.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-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--paper-3);
  transition: border-color .2s;
}
.gallery-thumb:hover { border-color: var(--line-2); }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; }
.p-brand {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold);
  margin-bottom: 14px;
}
.p-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 18px;
}
.p-rating {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
  font-family: var(--sans);
}
.p-rating .stars-char { color: var(--gold); font-size: 1.05rem; }
.p-rating .score {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.p-rating .reviews-ct { font-size: .85rem; color: var(--muted); }

.p-pricebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--paper-2) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 18px 0 24px;
  flex-wrap: wrap;
}
.p-pricebox-left { display: flex; flex-direction: column; gap: 4px; }
.p-pricebox .label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
}
.p-pricebox .price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 10px;
}
.p-pricebox .price s {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.p-pricebox-badge {
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.score-bar-wrap { margin: 6px 0 24px; }
.score-bar-label {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.score-bar-track {
  height: 6px;
  background: var(--paper-3);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 3px;
}

.verdict-box {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.verdict-box::before {
  content: '"';
  position: absolute;
  top: -18px; right: 22px;
  font-family: var(--serif);
  font-size: 7rem;
  color: rgba(184,137,61,.45);
  line-height: 1;
  font-weight: 700;
}
.verdict-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold-2);
  margin-bottom: 10px;
}
.verdict-text { font-size: .98rem; line-height: 1.65; margin: 0; color: var(--paper); }

.cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.btn-buy {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .96rem;
  background: var(--gold);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(184,137,61,.32);
}
.btn-buy:hover { background: var(--ink); color: #fff !important; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(12,26,43,.3); }
.btn-buy.alt { background: var(--ink); }
.btn-buy.alt:hover { background: var(--gold); }
.btn-buy.outline {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn-buy.outline:hover { background: var(--ink); color: var(--paper) !important; }
.btn-read-reviews {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .94rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-read-reviews:hover { border-color: var(--gold); background: var(--card-bg); }

.cta-disclosure {
  font-size: .78rem;
  color: var(--muted);
  margin: -2px 0 22px;
  line-height: 1.55;
}

.features-list, .pros-box ul, .cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  font-size: .96rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.features-list li::before {
  content: '◆';
  position: absolute;
  left: 4px; top: 10px;
  color: var(--gold);
  font-size: .76rem;
}
.features-list li:last-child { border-bottom: none; }
.section-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold);
  margin: 6px 0 12px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 38px;
}
.pros-box, .cons-box {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.pros-box .box-head, .cons-box .box-head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.pros-box .box-head { color: var(--green); }
.cons-box .box-head { color: var(--red); }
.pros-box ul li, .cons-box ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pros-box ul li::before {
  content: '+';
  position: absolute; left: 4px; top: 7px;
  font-weight: 700;
  color: var(--green);
  font-size: 1.05rem;
}
.cons-box ul li::before {
  content: '−';
  position: absolute; left: 4px; top: 7px;
  font-weight: 700;
  color: var(--red);
  font-size: 1.05rem;
}

/* diagrams */
.diagram-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}
.diagram-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.diagram-card h3 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 16px;
}
.diagram-bars { display: flex; flex-direction: column; gap: 14px; }
.dbar { display: grid; grid-template-columns: 110px 1fr 50px; gap: 12px; align-items: center; font-size: .86rem; }
.dbar-label { color: var(--ink-soft); font-weight: 500; }
.dbar-track { height: 8px; background: var(--paper-3); border-radius: 4px; overflow: hidden; }
.dbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ink), var(--gold));
  border-radius: 4px;
}
.dbar-val { font-family: var(--serif); font-weight: 700; color: var(--ink); text-align: right; font-size: .92rem; }

.diagram-radar { display: grid; place-items: center; }
.diagram-radar svg { width: 100%; max-width: 280px; height: auto; }

.product-desc {
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  padding: 28px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 36px 0;
}
.product-desc h2 { font-size: 1.5rem; margin-bottom: 16px; }
.product-desc p { font-size: 1rem; line-height: 1.78; color: var(--ink-soft); }
.product-desc p:last-child { margin-bottom: 0; }

.reviews-section { margin: 50px 0; }
.reviews-section h2 {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 30px;
}
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-size: .86rem;
}
.reviewer-name { font-weight: 700; color: var(--ink); }
.review-date { color: var(--muted); }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.review-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.review-text {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.related-section { padding: 70px 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.related-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3); }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 16px 18px 18px; }
.related-brand {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 8px;
}
.related-title {
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}
.related-stars { color: var(--gold); font-size: .82rem; letter-spacing: 1px; margin-bottom: 8px; }
.related-link { font-size: .82rem; font-weight: 600; color: var(--ink); }

/* ============================================================ STATIC */
.static-hero {
  padding: 70px 0 50px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.static-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.static-hero p { color: var(--ink-soft); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.static-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink-soft);
}
.static-content h2 {
  font-size: 1.55rem;
  margin: 38px 0 12px;
  color: var(--ink);
}
.static-content h2:first-child { margin-top: 0; }
.static-content ul { padding-left: 22px; }
.static-content ul li { margin-bottom: 6px; }
.static-content a { color: var(--gold); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.static-content a:hover { color: var(--ink); }

/* ad placement preserved */
.ad-placement { padding: 30px 0; background: var(--paper-2); }
.ad-placement-inner {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ============================================================ FOOTER */
.site-footer {
  background: var(--ink);
  color: rgba(251,247,240,.78);
  padding: 70px 0 28px;
  margin-top: 60px;
  position: relative;
  font-family: var(--sans);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,137,61,.5), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand-block { max-width: 360px; }
.footer-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.footer-brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(184,137,61,.12);
  box-shadow: 0 0 0 1px rgba(184,137,61,.4);
}
.footer-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 3px;
}
.footer-brand-tag {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-2);
}
.footer-desc {
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(251,247,240,.7);
  margin-bottom: 16px;
}
.footer-disclaimer {
  font-size: .82rem;
  color: rgba(251,247,240,.55);
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--gold);
  padding: 10px 14px;
  border-radius: 4px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a {
  color: rgba(251,247,240,.78);
  font-size: .92rem;
}
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(251,247,240,.55);
  padding-top: 16px;
}
.footer-bottom a { color: rgba(251,247,240,.7); }
.footer-bottom a:hover { color: var(--gold-2); }

/* ============================================================ COOKIE */
#cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s, opacity .35s;
  border: 1px solid rgba(184,137,61,.3);
}
#cookie-banner.visible { transform: translateY(0); opacity: 1; }
#cookie-banner .container { padding: 18px 22px; }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-text {
  flex: 1; min-width: 280px;
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
}
.cookie-text a { color: var(--gold-2); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .86rem;
  border-radius: 999px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
}
.cookie-accept { background: var(--gold); color: #fff; }
.cookie-accept:hover { background: var(--gold-2); }
.cookie-decline {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(251,247,240,.4);
}
.cookie-decline:hover { border-color: var(--paper); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1100px) {
  .picks-layout { grid-template-columns: 1fr; }
  .picks-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sidebar-widget { max-width: 720px; margin: 0 auto; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .gallery { position: static; }
  .diagram-section { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .header-inner { gap: 16px; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px;
    gap: 8px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s, opacity .25s;
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .main-nav { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav > a { width: 100%; padding: 10px 12px; }
  .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; padding: 64px 0 70px; }
  .hero-visual { min-height: 0; }
  .picks-layout { gap: 22px; }
  .pick-side { grid-template-columns: 140px 1fr; }
  .pick-feature-img { height: 280px; }
  .pick-feature h3 { font-size: 1.3rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .pros-cons { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .brand-text { display: none; }
  .picks-side { grid-template-columns: 1fr; }
  .pick-side { grid-template-columns: 110px 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .toolbar-controls { width: 100%; }
  .static-content { padding: 36px 4px; }
  .hero-card { padding: 30px 20px 22px; }
  .hero-card-meta { grid-template-columns: 1fr 1fr; row-gap: 16px; }
  .product-desc { padding: 22px 20px; }
}

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