/* =========================================================
   SnapReady Lab — Editorial Design System
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --ink: #0b1220;
  --ink-2: #1a2233;
  --ink-3: #2a3447;
  --paper: #ffffff;
  --paper-2: #f7f8fb;
  --paper-3: #eef0f5;
  --line: #e3e6ee;
  --line-2: #d2d6e1;
  --muted: #5b6478;
  --muted-2: #8089a0;
  --accent: #e08a1a;
  --accent-2: #f59e0b;
  --accent-soft: #fef3c7;
  --gold: #b88513;
  --green: #15803d;
  --red: #c0362e;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 1px 3px rgba(11,18,32,.06);
  --shadow-md: 0 6px 18px -8px rgba(11,18,32,.18), 0 4px 8px -4px rgba(11,18,32,.08);
  --shadow-lg: 0 22px 48px -22px rgba(11,18,32,.22), 0 6px 16px -8px rgba(11,18,32,.10);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1180px;
  --hd-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0 0 .6em;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.028em; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

/* ==== Header ==== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.84);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--hd-h); gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--ink); letter-spacing: -.02em;
  white-space: nowrap;
}
.brand__mark {
  width: 38px; height: 38px;
  background: var(--ink);
  border-radius: 10px;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px -6px rgba(11,18,32,.4);
  position: relative; overflow: hidden;
}
.brand__mark img { width: 30px; height: 30px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
.brand__mark::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(245,158,11,.28), transparent 55%);
  pointer-events: none;
}
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name strong { font-weight: 800; font-size: 1.05rem; }
.brand__name small { font-weight: 500; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: .94rem;
  transition: background .18s ease, color .18s ease;
}
.site-nav a:hover { background: var(--paper-2); color: var(--ink); }
.site-nav a.is-active { color: var(--ink); background: var(--paper-2); }
.site-nav a.cta {
  margin-left: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.site-nav a.cta:hover { background: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.site-nav a.cta::after { content: "→"; transition: transform .2s ease; }
.site-nav a.cta:hover::after { transform: translateX(3px); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 1px;
  transition: transform .25s ease;
}

@media (max-width: 880px) {
  .site-nav {
    position: absolute; top: var(--hd-h); right: 16px;
    flex-direction: column; gap: 2px; align-items: stretch;
    background: #fff; border: 1px solid var(--line);
    padding: 10px; border-radius: 14px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: .22s ease;
    min-width: 220px;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { width: 100%; }
  .site-nav a.cta { margin: 6px 0 0; justify-content: center; }
  .nav-toggle { display: flex; }
}

/* ==== Hero ==== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #0d1626 0%, #131e34 60%, #0f1a2f 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('images/hero.webp');
  background-size: cover; background-position: center;
  opacity: .42;
  filter: saturate(0.95);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(245,158,11,.18), transparent 60%),
    radial-gradient(80% 100% at 0% 100%, rgba(11,40,80,.55), transparent 60%),
    linear-gradient(180deg, rgba(11,18,32,.20) 0%, rgba(11,18,32,.65) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #f8d896;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  letter-spacing: -.028em;
  margin-top: 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #ffc869 0%, #f59e0b 60%, #d77a05 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .96rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 28px -10px rgba(224,138,26,.55); }
.btn--primary:hover { background: #c8770e; transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #060a14; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 15px 26px; font-size: 1rem; }

/* ==== Hero Showcase Card ==== */
.hero__showcase {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 60%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero__logo-card {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 32px 24px 22px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
}
.hero__logo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(245,158,11,.18), transparent 65%);
  pointer-events: none;
}
.hero__logo-orb {
  position: relative;
  width: 184px; height: 184px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.95), rgba(241,243,249,.85) 38%, rgba(232,236,244,.78) 60%, rgba(216,221,233,.72) 100%);
  display: grid; place-items: center;
  box-shadow:
    inset 0 4px 18px rgba(11,18,32,.10),
    inset 0 -4px 12px rgba(11,18,32,.06),
    0 22px 44px -16px rgba(0,0,0,.55);
}
.hero__logo-orb::before {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, transparent 0%, rgba(245,158,11,.65) 35%, rgba(255,200,100,.35) 50%, transparent 65%, rgba(80,140,220,.45) 90%, transparent 100%);
  filter: blur(14px);
  opacity: .85;
  z-index: -1;
  animation: orbSpin 18s linear infinite;
}
@keyframes orbSpin { to { transform: rotate(360deg); } }
.hero__logo-orb::after {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: linear-gradient(165deg, rgba(255,255,255,.5) 0%, transparent 35%, transparent 100%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__logo-orb img {
  position: relative;
  width: 76%; height: 76%; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(11,18,32,.22));
  z-index: 1;
}
.hero__logo-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.55rem;
  color: #fff; letter-spacing: -.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero__logo-name span { color: var(--accent-2); }
.hero__logo-tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: #ffd58a;
  padding: 5px 14px;
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 999px;
}

.hero__showcase-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.hero__chip {
  text-align: center;
  padding: 14px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.hero__chip strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: #ffd58a; margin-bottom: 2px;
}
.hero__chip span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); }

@media (max-width: 880px) {
  .hero { padding: 50px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__showcase { padding: 22px; }
  .hero__logo-orb { width: 144px; height: 144px; }
}

/* ==== Affiliate disclosure bar ==== */
.disclosure-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
  color: var(--muted);
  padding: 12px 0;
}
.disclosure-bar .container {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.disclosure-bar strong { color: var(--ink); font-weight: 700; margin-right: 2px; }
.disclosure-bar svg { color: var(--accent); flex-shrink: 0; }

/* ==== Section base ==== */
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 44px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head .eyebrow {
  display: inline-block;
  font-size: .76rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--accent); margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.04rem; }
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  margin: 18px auto 0;
}

/* ==== Editor's Top Picks ==== */
.top-picks {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.picks-stage {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.pick-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.pick-card__media {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: var(--paper-3);
}
.pick-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.pick-card:hover .pick-card__media img { transform: scale(1.04); }
.pick-card__rank {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .04em;
  box-shadow: 0 6px 14px -6px rgba(11,18,32,.45);
}
.pick-card__rank::before {
  content: "★"; color: var(--accent-2); font-size: 1rem;
}
.pick-card__medal {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, #fde7a8, #f59e0b);
  color: #573700;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(245,158,11,.6);
}
.pick-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pick-card__brand { font-size: .72rem; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.pick-card__title {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1.18rem; line-height: 1.25; color: var(--ink);
  margin: 2px 0 4px;
}
.pick-card__rating {
  display: flex; align-items: center; gap: 8px;
}
.pick-card__rating .stars { color: var(--accent); letter-spacing: 1px; font-size: .92rem; }
.pick-card__rating .num { font-weight: 700; font-size: .92rem; color: var(--ink); }
.pick-card__verdict {
  font-size: .94rem; color: var(--muted); margin-top: 6px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pick-card__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px dashed var(--line);
  gap: 10px;
}
.pick-card__price {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--ink);
}
.pick-card__price small { color: var(--muted); font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.pick-card__cta {
  font-weight: 600; font-size: .9rem; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.pick-card__cta::after { content: "→"; transition: transform .2s ease; }
.pick-card:hover .pick-card__cta::after { transform: translateX(4px); }

.pick-card--featured {
  grid-row: span 2;
  display: grid; grid-template-rows: 1fr;
}
.pick-card--featured .pick-card__media { aspect-ratio: 16/12; }
.pick-card--featured .pick-card__body { padding: 28px 28px 30px; }
.pick-card--featured .pick-card__title { font-size: 1.55rem; }
.pick-card--featured .pick-card__verdict { font-size: 1rem; -webkit-line-clamp: 4; }

@media (max-width: 980px) {
  .picks-stage { grid-template-columns: 1fr 1fr; }
  .pick-card--featured { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 600px) {
  .picks-stage { grid-template-columns: 1fr; }
  .pick-card--featured { grid-column: auto; }
}

/* ==== Filter Bar ==== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.filter-label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 9px 32px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>") no-repeat right 12px center / 10px;
  font-size: .9rem; color: var(--ink); font-weight: 500;
  cursor: pointer;
}
.filter-select:focus { outline: 2px solid var(--accent-soft); outline-offset: 1px; border-color: var(--accent); }
.filter-reset {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--ink-2); font-weight: 500; font-size: .88rem;
}
.filter-reset:hover { background: var(--paper-2); }
.filter-results { margin-left: auto; color: var(--muted); font-size: .88rem; font-weight: 500; }

/* ==== Product grid ==== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  color: var(--ink);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.product-card__media {
  position: relative; aspect-ratio: 4/3;
  background: var(--paper-3);
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__brand-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(11,18,32,.85);
  color: #fff; padding: 5px 10px;
  border-radius: 999px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.product-card__rate-badge {
  position: absolute; top: 10px; right: 10px;
  background: #fff;
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700; font-size: .82rem;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: 0 4px 10px -2px rgba(11,18,32,.18);
}
.product-card__rate-badge::before { content: "★"; color: var(--accent); }

.product-card__price-badge {
  position: absolute; bottom: 10px; left: 10px;
  padding: 5px 10px; border-radius: 6px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.product-card__price-badge--deal { background: linear-gradient(135deg, #c0362e, #8e1f1a); }
.product-card__price-badge--popular { background: linear-gradient(135deg, var(--ink), var(--ink-3)); }
.product-card__price-badge--editors { background: linear-gradient(135deg, #b88513, #f59e0b); color: #2a1a05; }
.product-card__price-badge--new { background: linear-gradient(135deg, #15803d, #166534); }
.product-card__price-badge--value { background: linear-gradient(135deg, #1e3a8a, #1e40af); }
.product-card__price-badge--bestseller { background: linear-gradient(135deg, #b91c1c, #dc2626); }

.product-card__body {
  padding: 18px 18px 16px;
  display: flex; flex-direction: column;
  gap: 8px; flex: 1;
}
.product-card__brand {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted);
}
.product-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  line-height: 1.3; color: var(--ink);
  margin: 0;
}
.product-card__rating-row {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem;
}
.product-card__rating-row .stars { color: var(--accent); letter-spacing: 1px; }
.product-card__rating-row .num { font-weight: 700; color: var(--ink); }
.product-card__rating-row .label { color: var(--muted); font-size: .82rem; }

.product-card__price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 2px;
}
.product-card__price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.15rem; color: var(--ink);
}
.product-card__price-strike { color: var(--muted); text-decoration: line-through; font-size: .85rem; font-weight: 500; }
.product-card__price-est { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.product-card__snippet {
  font-size: .88rem; color: var(--muted);
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__foot {
  padding: 0 18px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.product-card__cta {
  font-size: .85rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card__cta::after { content: "→"; transition: transform .2s ease; }
.product-card:hover .product-card__cta::after { transform: translateX(3px); }

/* ==== Compare table ==== */
.compare-section { padding: 64px 0 88px; background: var(--paper-2); border-top: 1px solid var(--line); }
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 740px; }
.compare-table thead { background: var(--ink); color: #fff; }
.compare-table th {
  padding: 14px 16px; text-align: left;
  font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.row-click { cursor: pointer; transition: background .15s; }
.compare-table tr.row-click:hover { background: var(--paper-2); }
.compare-rank { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--accent); font-size: 1.1rem; }
.compare-img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.compare-name { font-weight: 600; color: var(--ink); }
.compare-brand-tag { font-size: .72rem; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: .08em; }
.compare-score { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink); font-size: 1rem; }
.compare-bar { width: 100%; max-width: 120px; height: 6px; background: var(--paper-3); border-radius: 4px; margin-top: 4px; overflow: hidden; }
.compare-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 4px; }
.compare-link { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-weight: 600; font-size: .88rem; }
.compare-link::after { content: "→"; }

/* ==== Page hero / breadcrumbs ==== */
.page-hero {
  padding: 28px 0 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { padding-bottom: 22px; }
.breadcrumb {
  font-size: .85rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb sep { color: var(--line-2); margin: 0 2px; }
.breadcrumb span:last-child { color: var(--ink); font-weight: 500; }

/* ==== Product page layout ==== */
.product-page { padding: 32px 0 80px; }
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Gallery */
.gallery { position: sticky; top: calc(var(--hd-h) + 24px); align-self: start; }
.gallery-main {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; }
.gallery-thumb {
  flex: 0 0 84px; height: 84px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden; cursor: pointer;
  background: var(--paper-2);
  transition: border-color .15s, transform .15s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--accent); box-shadow: 0 6px 16px -4px rgba(245,158,11,.4); }

/* Product info */
.product-info { display: flex; flex-direction: column; gap: 16px; }
.p-eyebrow { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.p-brand-pill {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.p-cat-pill {
  background: var(--accent-soft);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.p-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 6px 0 4px;
  color: var(--ink);
  line-height: 1.15;
}
.p-rating {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: .95rem;
}
.p-rating .stars { color: var(--accent); letter-spacing: 1.5px; font-size: 1.05rem; }
.p-rating .score { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.p-rating .reviews-ct { color: var(--muted); }

.score-bar {
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 14px 18px; border-radius: var(--radius);
}
.score-bar__row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px; font-size: .82rem;
}
.score-bar__label { font-weight: 700; color: var(--ink-2); letter-spacing: .04em; text-transform: uppercase; font-size: .72rem; }
.score-bar__num { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink); }
.score-bar__track { background: var(--paper-3); height: 8px; border-radius: 4px; overflow: hidden; }
.score-bar__fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 4px; }

/* Price block */
.price-block {
  display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--paper-2));
}
.price-block__main {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.85rem;
  color: var(--ink);
  line-height: 1;
}
.price-block__strike {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem; font-weight: 500;
}
.price-block__save {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fee2e2; color: var(--red);
  padding: 4px 10px; border-radius: 999px;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.price-block__hint {
  font-size: .72rem; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
  width: 100%;
  font-weight: 600;
  margin-top: 4px;
}

/* Verdict */
.verdict {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 24px 26px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.verdict::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 80% at 100% 0%, rgba(245,158,11,.18), transparent 60%);
  pointer-events: none;
}
.verdict__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 700; margin-bottom: 8px;
}
.verdict__label::before {
  content: ""; width: 16px; height: 2px; background: var(--accent-2);
}
.verdict__text { font-size: 1rem; color: rgba(255,255,255,.92); margin: 0; line-height: 1.65; }

/* CTA group */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-buy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: .96rem;
  box-shadow: 0 12px 24px -10px rgba(224,138,26,.55);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.cta-buy:hover { transform: translateY(-1px); background: #c8770e; }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-radius: 999px;
  background: var(--paper-2); color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 600; font-size: .92rem;
}
.cta-secondary:hover { background: var(--paper-3); }
.cta-disclosure {
  font-size: .78rem; color: var(--muted);
  margin: 6px 0 0; line-height: 1.5;
}

/* Features list */
.feature-block { margin-top: 6px; }
.feature-block h3 {
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin-bottom: 12px;
}
.features-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.features-list li {
  position: relative;
  padding: 10px 14px 10px 38px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--ink-2);
}
.features-list li::before {
  content: "";
  position: absolute; left: 12px; top: 12px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='7' cy='7' r='6.5' fill='%23fef3c7'/><path d='M3 7.5l3 3 5-7' stroke='%23e08a1a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 16px 16px;
}

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .pros-cons { grid-template-columns: 1fr; } }
.pc-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.pc-box__head {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
}
.pc-box--pros .pc-box__head { color: var(--green); border-color: var(--green); }
.pc-box--cons .pc-box__head { color: var(--red); border-color: var(--red); }
.pc-box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pc-box li { position: relative; padding-left: 26px; font-size: .94rem; color: var(--ink-2); line-height: 1.55; }
.pc-box--pros li::before { content: "+"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px; border-radius: 50%; background: #dcfce7; color: var(--green); display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.pc-box--cons li::before { content: "−"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px; border-radius: 50%; background: #fee2e2; color: var(--red); display: grid; place-items: center; font-weight: 800; font-size: .9rem; }

/* Diagrams */
.diagrams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .diagrams { grid-template-columns: 1fr; } }
.diagram {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.diagram__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 6px; color: var(--ink);
}
.diagram__sub { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }

.bar-diagram { display: grid; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 50px; gap: 12px; align-items: center; }
.bar-row__label { font-size: .82rem; color: var(--ink-2); font-weight: 600; }
.bar-row__track { background: var(--paper-3); height: 10px; border-radius: 5px; overflow: hidden; }
.bar-row__fill { height: 100%; border-radius: 5px; }
.bar-row__num { font-family: 'JetBrains Mono', monospace; font-size: .82rem; color: var(--ink); font-weight: 600; text-align: right; }
@media (max-width: 520px) {
  .bar-row { grid-template-columns: 100px 1fr 44px; }
}

.donut-wrap { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.donut-svg { width: 160px; height: 160px; flex-shrink: 0; }
.donut-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; flex: 1; min-width: 140px; }
.donut-list li { display: flex; align-items: center; gap: 8px; font-size: .85rem; }
.donut-list li .swatch { width: 12px; height: 12px; border-radius: 3px; }
.donut-list li .lbl { color: var(--ink-2); }
.donut-list li .val { margin-left: auto; font-weight: 700; color: var(--ink); font-family: 'JetBrains Mono', monospace; font-size: .82rem; }

/* Description */
.product-desc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  background: #fff;
  margin-bottom: 56px;
  box-shadow: var(--shadow-sm);
}
.product-desc h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem; margin-bottom: 18px;
  position: relative; padding-bottom: 12px;
}
.product-desc h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 44px; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.product-desc p { color: var(--ink-2); line-height: 1.75; font-size: 1rem; margin-bottom: 14px; }

/* Reviews */
.reviews-section { margin-bottom: 56px; }
.reviews-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem; margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.reviews-section h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 44px; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.reviews-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; flex-wrap: wrap; gap: 6px; }
.reviewer-name { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.reviewer-name::before {
  content: ""; width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-2));
  display: inline-block;
}
.review-date { font-size: .82rem; color: var(--muted); }
.review-stars { color: var(--accent); letter-spacing: 1.5px; margin: 4px 0 8px; }
.review-title { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.review-text { font-size: .92rem; color: var(--ink-2); line-height: 1.6; }

/* Related */
.related-section { padding: 64px 0 80px; background: var(--paper-2); border-top: 1px solid var(--line); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.related-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  color: var(--ink);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-img { aspect-ratio: 4/3; background: var(--paper-3); overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.related-brand { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.related-title { font-weight: 600; font-size: .95rem; line-height: 1.3; color: var(--ink); }
.related-stars { color: var(--accent); font-size: .85rem; margin-top: 2px; }
.related-link { margin-top: auto; padding-top: 8px; font-size: .82rem; color: var(--accent); font-weight: 600; }
.related-link::after { content: " →"; }

/* ==== Footer ==== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-block { display: flex; flex-direction: column; gap: 14px; max-width: 380px; }
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; color: #fff; font-size: 1.05rem;
}
.footer-brand__mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14);
}
.footer-brand__mark img { width: 28px; height: 28px; }
.footer-disclaimer {
  font-size: .82rem; line-height: 1.5;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px;
  border-radius: 10px;
  margin: 0;
}
.site-footer h4 {
  color: #fff; font-size: .82rem;
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: rgba(255,255,255,.7); font-size: .92rem; transition: color .15s; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.65); margin: 0 4px; }
.footer-bottom a:hover { color: #fff; }

/* ==== Cookie banner ==== */
#cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 80;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  max-width: 720px; margin: 0 auto;
  display: none;
}
#cookie-banner.is-visible { display: block; animation: slideUp .3s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cookie-text { margin: 0; flex: 1; font-size: .92rem; color: var(--ink-2); min-width: 240px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-accept, .cookie-decline {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); font-size: .9rem; font-weight: 600;
  background: #fff;
}
.cookie-accept { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-decline:hover { background: var(--paper-2); }

/* ==== Static pages ==== */
.static-hero {
  padding: 60px 0 32px;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.static-hero h1 { margin-bottom: 6px; }
.static-hero p { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.static-content {
  max-width: 800px; margin: 0 auto;
  padding: 0 24px 80px;
  font-size: 1rem; line-height: 1.75;
  color: var(--ink-2);
}
.static-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem; margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
  color: var(--ink);
}
.static-content h2:first-child { margin-top: 8px; }
.static-content p { margin-bottom: 16px; }
.static-content ul { padding-left: 22px; margin-bottom: 16px; }
.static-content li { margin-bottom: 8px; }
.static-content strong { color: var(--ink); font-weight: 700; }
.static-content a { color: var(--accent); text-decoration: underline; }

/* ==== Trust strip ==== */
.trust-strip { background: var(--paper); padding: 40px 0; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
.trust-item { display: flex; flex-direction: column; gap: 6px; padding: 14px 6px; }
.trust-item__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 6px; }
.trust-item__title { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink); font-size: .98rem; }
.trust-item__sub { color: var(--muted); font-size: .85rem; }

/* ==== Show more button ==== */
.show-more-wrap { text-align: center; margin-top: 36px; }
.show-more-btn {
  background: var(--ink); color: #fff;
  border: none; padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600; font-size: .94rem;
  cursor: pointer;
  transition: background .15s;
}
.show-more-btn:hover { background: #050912; }

.is-hidden { display: none !important; }
