/* RoboReview — Premium Review-Site Design System
   Palette: slate neutrals + indigo brand (+ amazon orange CTA).
   Layered, tinted shadows · soft dot texture · confident accent gradients. */:root {

  /* Brand — emerald, single confident accent (clean / trustworthy) */
  --brand: #0E9F73;          /* emerald-600 */
  --brand-dark: #0B7E5A;     /* emerald-700 */
  --brand-2: #14B8A6;        /* teal-500 (gradient partner for dots/badges) */
  --brand-light: #E6F6EF;    /* emerald-50 */
  --brand-soft: #F1FAF6;     /* soft emerald wash */
  --ink: #16191F;            /* near-black, warm-neutral */
  --ink-2: #565E6B;          /* body text (≈7:1 on white) */
  --ink-3: #8A93A1;         /* muted secondary */
  --line: #E9E9E3;           /* warm hairline */
  --line-strong: #D6D6CE;    /* stronger hairline */
  --bg: #ffffff;
  --bg-soft: #F7F7F2;        /* warm paper tint */
  --bg-soft-2: #EEEEE7;
  --green: #16A34A;
  --green-2: #16A34A;
  --green-bg: #F0FAF2;
  --red: #E11D48;
  --red-bg: #FEF1F4;
  --amber: #E08A00;
  --amber-bg: #FDF6E9;
  --star: #F5A623;
  --amazon: #ff9900;
  --amazon-ink: #232f3e;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(17,25,31,.05);
  --shadow: 0 1px 2px rgba(17,25,31,.04), 0 10px 28px -18px rgba(17,25,31,.22);
  --shadow-lg: 0 22px 54px -26px rgba(14,159,115,.42);
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}
* {
 margin: 0; padding: 0; box-sizing: border-box; }
html {
 scroll-behavior: smooth; scroll-padding-top: 86px; }
body {

  font-family: var(--font);
  color: var(--ink); background: var(--bg); line-height: 1.65; font-size: 16px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img {
 max-width: 100%; height: auto; display: block; }
a {
 color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover {
 text-decoration: underline; }
a:focus-visible, button:focus-visible, .btn:focus-visible,
.bp-card:focus-visible, .model-card:focus-visible, .rec-card:focus-visible,
.pick-item:focus-visible, .o-step:focus-visible,
.nav-links a:focus-visible, .tier-nav a:focus-visible,
.wizard-opt:focus-visible, .brand-strip a:focus-visible {

  outline: 2px solid var(--brand);
  outline-offset: 2px;
  text-decoration: none;
}
h1, h2 {
 font-family: var(--font-display); letter-spacing: -.022em; line-height: 1.08; }
h3, h4, h5 {
 letter-spacing: -.015em; line-height: 1.25; font-weight: 700; }
.container {
 max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
/* ---------- Header ---------- */
.site-header {
 background: rgba(255,255,255,.8); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header .container {
 display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo {
 font-weight: 800; font-size: 19px; color: var(--ink); display: flex; align-items: center; gap: 11px; letter-spacing: -.03em; }
.logo:hover {
 text-decoration: none; }
.logo .dot {
 width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: 800; box-shadow: 0 6px 16px rgba(79,70,229,.4); }
.main-nav {
 display: flex; gap: 28px; align-items: center; }
.main-nav a {
 color: var(--ink-2); font-size: 14.5px; font-weight: 600; position: relative; }
.main-nav a:hover {
 color: var(--ink); text-decoration: none; }
.main-nav a::after {
 content:""; position:absolute; left:0; right:0; bottom:-23px; height:2px; background: var(--brand); transform: scaleX(0); transition: transform .18s ease; border-radius: 2px; }
.main-nav a:hover::after {
 transform: scaleX(1); }
.nav-cta {
 background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff !important; padding: 10px 19px; border-radius: 100px; font-weight: 700; box-shadow: 0 8px 20px -6px rgba(79,70,229,.6); }
.nav-cta:hover {
 filter: brightness(1.06); text-decoration: none; transform: translateY(-1px); }
.nav-cta::after {
 display: none; }
@media (max-width: 760px) {
 .main-nav { display: none; } }
/* ---------- Buttons / CTA ---------- */
.btn {
 display: inline-block; font-weight: 600; font-size: 14.5px; border-radius: 100px; padding: 12px 23px; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, filter .15s ease; }
.btn-primary {
 background: var(--brand); color: #fff !important; box-shadow: 0 10px 22px -10px rgba(14,159,115,.55); }
.btn-primary:hover {
 background: var(--brand-dark); text-decoration: none; transform: translateY(-1px); }
.btn-outline {
 border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn-outline:hover {
 border-color: var(--brand); color: var(--brand-dark); text-decoration: none; transform: translateY(-1px); }
.btn-block {
 display: block; text-align: center; }
.btn-lg {
 padding: 15px 30px; font-size: 16px; }
.btn-amazon {
 background: linear-gradient(180deg, #ffb23e, #ff9900); color: var(--amazon-ink) !important; font-weight: 800; border: 1px solid #f08c00; box-shadow: 0 10px 24px -10px rgba(255,153,0,.7); }
.btn-amazon:hover {
 background: linear-gradient(180deg, #ffa822, #f08c00); text-decoration: none; color: var(--amazon-ink) !important; transform: translateY(-1px); }
/* ---------- Hero ---------- */
.hero {
 position: relative; padding: 88px 0 66px; border-bottom: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(60% 50% at 85% -10%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(54% 48% at 6% 6%, rgba(79,70,229,.16), transparent 60%),
    radial-gradient(48% 44% at 50% 115%, rgba(56,189,248,.12), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg-soft) 100%);
}
.hero::before {

  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image: radial-gradient(rgba(79,70,229,.16) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.hero .container {
 position: relative; z-index: 2; }
.hero h1 {
 font-size: clamp(36px, 5.4vw, 58px); line-height: 1.04; font-weight: 800; letter-spacing: -.035em; max-width: 16ch; }
.hero h1 .hl {
 background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 60%, #ec4899 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub {
 color: var(--ink-2); font-size: 18.5px; max-width: 640px; margin-top: 20px; }
.hero .meta-row {
 margin-top: 26px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.pill .dotc {
 width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
/* ---------- New-visitor 3-step onboarding ---------- */
.onboard {
 background: var(--bg); border-bottom: 1px solid var(--line); padding: 32px 0; }
.onboard .o-head {
 display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.onboard .o-kicker {
 font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-dark); background: var(--brand-light); padding: 5px 12px; border-radius: 999px; }
.onboard .o-title {
 font-size: 20px; font-weight: 800; }
.o-steps {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.o-step {
 display: flex; gap: 14px; align-items: flex-start; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, #fff, var(--bg-soft)); transition: border-color .15s, box-shadow .15s, transform .15s; }
.o-step:hover {
 border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.o-num {
 flex: none; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 6px 14px -4px rgba(79,70,229,.6); }
.o-step h4 {
 font-size: 15.5px; margin-bottom: 3px; }
.o-step p {
 font-size: 13.5px; color: var(--ink-2); margin: 0; }
@media (max-width: 820px) {
 .o-steps { grid-template-columns: 1fr; } }
/* ---------- Brand picker (visual entry grid) ---------- */
.section {
 padding: 60px 0; }
.section.alt {
 background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head {
 max-width: 720px; margin-bottom: 28px; }
.section-head .eyebrow {
 font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.section-head h2 {
 font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; margin-top: 8px; }
.section-head p {
 color: var(--ink-2); font-size: 16px; margin-top: 10px; }
.brand-picker {
 display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.bp-card {
 position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: border-color .18s ease, box-shadow .2s ease, transform .2s ease; overflow: hidden; }
.bp-card::after {
 content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.bp-card:hover {
 border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-4px); text-decoration: none; }
.bp-card:hover::after {
 transform: scaleX(1); }
.bp-rank {
 position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 12px; font-weight: 800; color: #fff; background: var(--ink); padding: 3px 9px; border-radius: 999px; }
.bp-img {
 width: 100%; aspect-ratio: 1/1; object-fit: contain; background: linear-gradient(160deg, #fbfcff, #eef2ff); border-radius: 14px; padding: 14px; margin-bottom: 14px; }
.bp-name {
 font-size: 17px; font-weight: 800; text-align: center; color: var(--ink); }
.bp-pos {
 font-size: 12.5px; color: var(--ink-2); text-align: center; margin: 4px 0 12px; min-height: 34px; }
.bp-foot {
 margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
.bp-score {
 display: flex; align-items: center; gap: 8px; }
.bp-score .s {
 font-size: 18px; font-weight: 800; color: var(--ink); }
.bp-score .l {
 font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.bp-go {
 font-size: 13px; font-weight: 700; color: var(--brand); }
.bp-card:hover .bp-go {
 text-decoration: underline; }
@media (max-width: 980px) {
 .brand-picker { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) {
 .brand-picker { grid-template-columns: repeat(2, 1fr); } }
/* ---------- Generic card / grid ---------- */
.grid {
 display: grid; gap: 18px; }
.grid-3 {
 grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
 .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.card h3 {
 margin-top: 0; }
/* ---------- Score ring ---------- */
.score-ring {
 --val: 90; --size: 56px; width: var(--size); height: var(--size); border-radius: 50%; background: conic-gradient(var(--brand) calc(var(--val) * 1%), var(--line) 0); display: inline-flex; align-items: center; justify-content: center; position: relative; flex: none; box-shadow: 0 6px 16px -6px rgba(79,70,229,.45); }
.score-ring::before {
 content: ""; position: absolute; inset: 6px; background: #fff; border-radius: 50%; }
.score-ring span {
 position: relative; font-weight: 800; font-size: 16px; color: var(--ink); }
.stars .dim {
 color: #e2e8f0; }
.score-bar > span {
 display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 999px; }
/* ---------- Quick picks ---------- */
.quick-pick {
 background: linear-gradient(180deg, var(--brand-soft), #fff); border: 1px solid var(--brand-light); border-radius: var(--radius); padding: 26px; }
.quick-pick h3 {
 color: var(--brand-dark); font-size: 18px; margin: 0 0 16px; }
.pick-item .pick-for {
 font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); font-weight: 800; margin-bottom: 5px; }
.pick-item .pick-brand {
 font-weight: 800; font-size: 17px; }
.pick-item .pick-why {
 font-size: 13px; color: var(--ink-2); margin-top: 4px; }
@media (max-width: 880px) {
 .pick-row { grid-template-columns: repeat(2, 1fr); } }
/* ---------- Recommendation chips (Best For X) ---------- */
.rec-grid {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rec-card {
 display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform .15s, border-color .15s, box-shadow .2s; position: relative; overflow: hidden; }
.rec-card::after {
 content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.rec-card:hover {
 transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow-lg); text-decoration: none; }
.rec-card:hover::after {
 transform: scaleX(1); }
.rec-card .r-ico {
 width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(135deg, var(--brand-light), #fff); color: var(--brand-dark); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 13px; box-shadow: inset 0 0 0 1px var(--brand-light); }
.rec-card h4 {
 font-size: 16px; color: var(--ink); }
.rec-card p {
 font-size: 13.5px; color: var(--ink-2); margin: 5px 0 12px; }
.rec-card .r-win {
 font-size: 13px; font-weight: 700; color: var(--brand); }
@media (max-width: 880px) {
 .rec-grid { grid-template-columns: 1fr; } }
/* ---------- Link chips (comparisons / best-of) ---------- */
.nav-links {
 display: flex; flex-wrap: wrap; gap: 10px; }
.nav-links a {
 display: inline-flex; align-items: center; gap: 7px; padding: 10px 17px; background: #fff; border: 1px solid var(--line); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); transition: border-color .15s, color .15s, transform .15s, box-shadow .15s; }
.nav-links a:hover {
 background: var(--brand-soft); border-color: var(--brand); color: var(--brand-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.nav-links a::before {
 content: "→"; color: var(--brand); font-weight: 800; }
/* Wrapper around a heading + chip row ("More Best-Of Lists", "Compare", ...).
   Gives the block its own rhythm so consecutive nav sections never collide
   with the FAQ or with each other. */
.nav-section {
 margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
.nav-section > h2 {
 font-size: 21px; margin: 0 0 16px; }
.nav-section + .nav-section {
 margin-top: 30px; }
@media (max-width: 560px) {

  .nav-section { margin-top: 32px; padding-top: 24px; }
  .nav-section > h2 { font-size: 19px; }
}
/* ---------- Tables ---------- */
.table-wrap {
 overflow-x: auto; margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
table {
 width: 100%; border-collapse: collapse; font-size: 14.5px; background: #fff; }
th {
 background: var(--bg-soft); text-align: left; padding: 14px 16px; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); white-space: nowrap; }
td {
 padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--ink-2); vertical-align: middle; }
tr:last-child td {
 border-bottom: none; }
tr:hover td {
 background: #fafbff; }
.winner-row td:first-child {
 border-left: 3px solid var(--green-2); }
/* ---------- Page hero (inner pages) ---------- */
.page-hero {
 padding: 46px 0 30px; border-bottom: 1px solid var(--line); background:
    radial-gradient(50% 60% at 92% -20%, rgba(124,58,237,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), #fff); }
.page-hero h1 {
 font-size: clamp(28px, 3.8vw, 40px); font-weight: 800; letter-spacing: -.03em; max-width: 820px; }
.page-hero .sub {
 color: var(--ink-2); margin-top: 12px; max-width: 760px; font-size: 17px; }
.updated {
 color: var(--ink-3); font-size: 13px; margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; }
.crumbs {
 font-size: 13px; color: var(--ink-3); padding: 12px 0 0; }
.crumbs a {
 color: var(--ink-3); }
.crumbs span {
 margin: 0 6px; }
/* ---------- Content layout ---------- */
.content {
 padding: 44px 0 64px; }
.prose h2 {
 font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin: 40px 0 16px; scroll-margin-top: 86px; padding-top: 6px; border-top: 1px solid var(--line); }
.prose h3 {
 font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.prose p {
 margin: 12px 0; color: var(--ink-2); }
.prose ul, .prose ol {
 margin: 12px 0 12px 22px; color: var(--ink-2); }
.prose li {
 margin: 6px 0; }
.prose strong {
 color: var(--ink); }
/* ---------- Sticky tier sub-nav (brand pages) ---------- */
.tier-nav {
 position: sticky; top: 66px; z-index: 30; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 14px; padding: 11px 14px; margin: 22px 0; display: flex; gap: 8px; flex-wrap: wrap; box-shadow: var(--shadow); }
.tier-nav a {
 font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 6px 14px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); }
.tier-nav a:hover {
 background: var(--brand-soft); color: var(--brand-dark); text-decoration: none; }
/* ---------- Brand hub model cards ---------- */
.model-card {
 position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: border-color .18s ease, box-shadow .2s ease, transform .2s ease; overflow: hidden; }
.model-card::after {
 content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.model-card:hover {
 border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.model-card:hover::after {
 transform: scaleX(1); }
.model-imgwrap {
 display: block; margin-bottom: 12px; border-radius: 14px; background: linear-gradient(160deg, #fbfcff, #eef2ff); padding: 12px; }
.model-imgwrap img {
 width: 100%; max-width: 320px; height: auto; aspect-ratio: 1 / 1; object-fit: contain; margin: 0 auto; border-radius: 8px; }
.model-name {
 font-size: 16px; margin: 4px 0 8px; line-height: 1.3; }
.model-name a {
 color: var(--ink); }
.model-name a:hover {
 color: var(--brand); text-decoration: none; }
.model-score {
 display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.model-score .score-label {
 font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.model-price {
 font-size: 13px; color: var(--ink-3); margin: 0 0 14px; font-weight: 600; }
.tag {
 font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; background: var(--brand-light); color: var(--brand-dark); border-radius: 7px; padding: 4px 10px; display: inline-block; }
/* ---------- Buyereviews-style ranked product card (single column) ----------
   Same .model-row used by both brand-hub and best-of pages. Layout is a
   5-column grid: [rank] [image] [name+bullets] [score block] [CTA stack]. */
.model-rows {
 display: flex; flex-direction: column; gap: 22px; padding: 4px 0 12px; }
.model-row {

  position: relative;
  display: grid;
  grid-template-columns: 56px 132px 1fr 110px 188px;
  gap: 24px;
  align-items: center;
  background: #fff;
  /* Buyerewards-style: no card border / shadow — cards separated by whitespace only. */
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 22px 6px;
  box-shadow: none;
  transition: background .15s ease;
}
.model-row:last-child {
 border-bottom: 0; }
.model-row:hover {
 background: var(--bg-soft); border-color: var(--brand); }
.mr-topleft {
 display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.mr-rank {
 font-size: 24px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.mr-hotdeal {
 display: inline-block; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #7c2d12; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 5px 11px; border-radius: 7px; box-shadow: 0 5px 12px -3px rgba(245,158,11,.5); white-space: nowrap; }
/* Discount badge — red ribbon banner at top-right of card, with a folded corner. */
.mr-discount {
 position: absolute; top: 0; right: 16px; background: #ef4444; color: #fff; font-size: 13px; font-weight: 800; padding: 7px 18px; border-radius: 4px 4px 0 0; box-shadow: 0 3px 10px -2px rgba(239,68,68,.5); letter-spacing: .02em; }
.mr-discount::after {
 content: ""; position: absolute; bottom: -6px; right: 0; width: 0; height: 0; border-left: 8px solid transparent; border-top: 6px solid #dc2626; }
/* Prime Exclusive — yellow price-tag shape overlapping the right edge of the button. */
/* Prime badge — premium luggage-tag style: layered gold gradient, top sheen,
   refined ribbon tail (::before), and a punched metal hole (::after). */
.mr-prime {

  position: absolute; right: -34px; top: 50%; transform: translateY(-50%) rotate(15deg);
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1.04;
  padding: 7px 14px 7px 22px;
  border-radius: 4px 11px 11px 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 42%),
    linear-gradient(135deg, #fde68a 0%, #fcd34d 46%, #f59e0b 100%);
  color: #78350f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 7px 18px -7px rgba(217,119,6,.65);
  border: 1px solid rgba(180,83,9,.28);
  z-index: 3; white-space: nowrap;
}
.mr-prime .mp-t {
 font-size: 12px; font-weight: 800; letter-spacing: -.01em; text-shadow: 0 1px 0 rgba(255,255,255,.45); }
.mr-prime .mp-s {
 font-size: 8px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; opacity: .82; margin-top: 1px; }
.mr-prime::before {

  content: ""; position: absolute; left: -7px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  border-right: 8px solid #f59e0b; filter: drop-shadow(-1px 1px 1px rgba(217,119,6,.45));
}
.mr-prime::after {

  content: ""; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(124,45,18,.16);
  box-shadow: inset 0 1px 2px rgba(124,45,18,.55), 0 1px 0 rgba(255,255,255,.55);
}
/* Image — clean, no extra chrome. */
.model-row .model-imgwrap {
 margin: 0; padding: 0; background: transparent; border-radius: 8px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.model-row .model-imgwrap img {
 max-width: 100%; max-height: 100%; width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; border-radius: 6px; }
.mr-info {
 display: flex; flex-direction: column; gap: 6px; min-width: 0; }
/* Buyereviews: product name is a blue hyperlink (classic Google-link blue). */
.mr-name {
 font-size: 18px; font-weight: 700; line-height: 1.3; margin: 0; }
.mr-name a {
 color: var(--ink); text-decoration: none; }
.mr-name a:hover {
 color: var(--brand); text-decoration: underline; }
.mr-bullets {
 list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.mr-bullets li {
 position: relative; padding-left: 18px; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.mr-bullets li::before {
 content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green-2); font-weight: 800; font-size: 13px; }
.mr-meta-link {
 margin-top: 6px; font-size: 12.5px; color: var(--brand); font-weight: 700; text-decoration: none; align-self: flex-start; }
.mr-meta-link:hover {
 color: var(--brand-dark); text-decoration: underline; }
/* Score block — buyereviews-style: tinted chip with a big number + 5 yellow stars + tiny review count. */
.mr-score {
 background: var(--brand-light); border: 1px solid #cdeede; border-radius: 16px; padding: 18px 16px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; box-shadow: inset 0 1px 0 #fff; margin-right: 4px; }
.mr-score-num {
 font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.mr-stars {
 position: relative; color: #d1d5db; font-size: 12.5px; letter-spacing: 2px; line-height: 1; display: inline-block; }
.mr-stars::after {
 content: "★★★★★"; color: #f59e0b; position: absolute; left: 0; top: 0; overflow: hidden; width: calc((var(--r, 0) / 5) * 100%); white-space: nowrap; }
.mr-reviews {
 font-size: 11.5px; color: var(--ink-3); margin-top: 2px; font-weight: 600; }
.mr-cta {
 display: flex; flex-direction: column; align-items: stretch; gap: 14px; margin-top: 8px; position: relative; padding-top: 4px; }
.mr-cta .btn-amazon {
 width: 100%; text-align: center; padding: 15px 28px; font-size: 14.5px; position: relative;
  /* model-row uses a clean blue button (not Amazon orange) per reference design */
  background: linear-gradient(180deg, #5b9cf6, #3b82f6); border-color: #3b82f6; color: #fff !important;
  box-shadow: 0 8px 20px -8px rgba(59,130,246,.55); border-radius: 12px; font-weight: 700; letter-spacing: .01em;
}
.mr-cta .btn-amazon:hover {
 background: linear-gradient(180deg, #4a8ff0, #2563eb); border-color: #2563eb; transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(59,130,246,.65); }
.mr-az {
 font-size: 11.5px; color: var(--ink-3); display: flex; align-items: center; justify-content: center; gap: 4px; padding-top: 4px; }
.mr-az .az-mark {
 display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.mr-az .az-word {
 font-weight: 700; color: #232f3e; font-size: 13.5px; letter-spacing: -.01em; }
.mr-az .az-smile {
 display: block; width: 50px; height: 9px; margin-top: 2px; }
.mr-az strong {
 color: var(--ink); font-weight: 800; }
/* model-row "Check Price" uses the standard Amazon-orange button for
   consistency and shopper trust — no blue override. */

@media (max-width: 960px) {

  .model-row { grid-template-columns: 50px 110px 1fr; gap: 14px; padding: 18px 0; }
  .mr-topleft { grid-column: 1; grid-row: 1 / 3; }
  .model-row .model-imgwrap { grid-column: 2; grid-row: 1 / 3; }
  .mr-info { grid-column: 3; grid-row: 1; }
  .mr-score { grid-column: 3; grid-row: 2; flex-direction: row; gap: 12px; padding: 8px 14px; align-self: start; justify-content: flex-start; }
  .mr-cta { grid-column: 1 / 4; grid-row: 3; flex-direction: row; align-items: center; }
  .mr-cta .btn-amazon { flex: 1; }
  .mr-prime { display: none; }
  .mr-discount { top: 0; right: 8px; font-size: 11px; padding: 5px 14px; }
}
@media (max-width: 540px) {

  .model-row { grid-template-columns: 40px 88px 1fr; gap: 10px; padding: 16px 0; }
  .mr-rank { font-size: 18px; }
  .mr-hotdeal { font-size: 9.5px; padding: 4px 8px; }
  .mr-discount { font-size: 11px; padding: 4px 9px; }
  .mr-score-num { font-size: 22px; }
  .mr-bullets li { font-size: 12.5px; }
}
/* ---------- Pros / Cons ---------- */
.pc-grid {
 display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
@media (max-width: 640px) {
 .pc-grid { grid-template-columns: 1fr; } }
.pros h4, .cons h4 {
 font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.pros h4 {
 color: var(--green-2); }
.cons h4 {
 color: var(--red); }
.pros ul, .cons ul {
 list-style: none; margin: 0; }
.pros li, .cons li {
 font-size: 14.5px; padding-left: 22px; position: relative; margin: 7px 0; color: var(--ink-2); }
.pros li::before {
 content: "✓"; position: absolute; left: 0; color: var(--green-2); font-weight: 700; }
.cons li::before {
 content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
/* ---------- Verdict / note / toc ---------- */
.verdict {
 border: 1.5px solid var(--brand); border-radius: var(--radius); padding: 24px; margin: 28px 0; background: linear-gradient(180deg, var(--brand-soft), #fff); box-shadow: var(--shadow); }
.verdict h3 {
 margin-top: 0; color: var(--brand-dark); }
.toc strong {
 font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.toc ol {
 margin: 8px 0 0 18px; }
.toc li {
 margin: 5px 0; font-size: 14.5px; }
/* ---------- FAQ ---------- */
.faq-item {
 border: 1px solid var(--line); border-radius: 14px; margin: 10px 0; background: #fff; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.faq-item:hover {
 border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-item summary {
 cursor: pointer; padding: 16px 18px; font-weight: 600; font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after {
 content: "+"; color: var(--brand); font-size: 22px; font-weight: 700; transition: transform .2s; }
.faq-item[open] summary::after {
 content: "–"; }
.faq-item .faq-a {
 padding: 0 18px 16px; color: var(--ink-2); font-size: 14.5px; }
/* ---------- Footer ---------- */
.site-footer {
 background: linear-gradient(180deg, var(--bg-soft), #eef1f7); color: var(--ink-2); padding: 52px 0 30px; margin-top: 52px; font-size: 14px; border-top: 1px solid var(--line); }
.site-footer a {
 color: var(--ink-2); }
.site-footer a:hover {
 color: var(--brand-dark); }
.site-footer .foot-grid {
 display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.site-footer h5 {
 color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.site-footer ul {
 list-style: none; }
.site-footer li {
 margin: 8px 0; }
.foot-legal {
 border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 760px) {
 .site-footer .foot-grid { grid-template-columns: 1fr 1fr; } }
/* ===== Help-me-choose wizard ===== */
.wizard .section-head {
 margin-bottom: 22px; }
.wz-steps {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.wz-step {
 background: linear-gradient(180deg, #fff, var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.wz-q {
 font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 14px; display: flex; gap: 10px; align-items: center; line-height: 1.3; }
.wz-num {
 display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 100px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 13px; font-weight: 700; flex: none; box-shadow: 0 4px 10px -3px rgba(79,70,229,.6); }
.wz-opts {
 display: flex; flex-wrap: wrap; gap: 10px; }
.wizard-opt {
 font: inherit; font-size: 14px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 10px 16px; cursor: pointer; transition: border-color .15s, background .15s, transform .15s, color .15s; }
.wizard-opt:hover {
 border-color: var(--brand); color: var(--brand-dark); transform: translateY(-1px); }
.wizard-opt.is-on {
 background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-color: transparent; color: #fff; box-shadow: 0 8px 18px -6px rgba(79,70,229,.55); }
.wz-result {
 min-height: 70px; }
.wz-placeholder {
 color: var(--ink-3); font-size: 14px; padding: 22px; border: 1px dashed var(--line-strong); border-radius: var(--radius); text-align: center; background: var(--bg-soft); }
.wz-head {
 font-weight: 600; font-size: 15px; margin: 4px 0 14px; }
.wz-cards {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wz-card {
 background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: border-color .18s, box-shadow .2s, transform .2s; position: relative; }
.wz-card::after {
 content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.wz-card:hover {
 border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-4px); text-decoration: none; }
.wz-card:hover::after {
 transform: scaleX(1); }
.wz-card img {
 width: 100%; height: 168px; object-fit: contain; background: linear-gradient(160deg, #fbfcff, #eef2ff); padding: 14px; }
.wz-card-body {
 padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.wz-card-top {
 display: flex; justify-content: space-between; align-items: center; }
.wz-brand {
 font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
.wz-badge {
 font-size: 11px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); padding: 3px 9px; border-radius: 100px; }
.wz-name {
 font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.wz-why {
 font-size: 13px; color: var(--ink-2); flex: 1; }
.wz-meta {
 display: flex; align-items: baseline; gap: 10px; }
.wz-score {
 font-size: 19px; font-weight: 700; color: var(--ink); }
.wz-score::after {
 content: " score"; font-size: 11px; font-weight: 500; color: var(--ink-3); }
.wz-price {
 font-size: 13px; color: var(--ink-2); }
.wz-btn {
 margin-top: 4px; text-align: center; }
.wz-review-link {
 display: block; margin-top: 8px; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--ink-2); text-decoration: none; border-bottom: 1px solid transparent; align-self: center; }
.wz-review-link:hover {
 color: var(--brand); border-bottom-color: currentColor; }
.wz-reset {
 margin-top: 18px; font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-2); background: none; border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; cursor: pointer; transition: border-color .15s, color .15s; }
.wz-reset:hover {
 border-color: var(--ink); color: var(--ink); }
@media (max-width: 760px) {

  .wz-steps, .wz-cards { grid-template-columns: 1fr; }
}
/* ---------- Ad slot ---------- */
.ad-slot {
 border: 1.5px dashed var(--line-strong); border-radius: 14px; background: var(--bg-soft); color: var(--ink-3); text-align: center; font-size: 12px; padding: 22px 14px; margin: 26px 0; letter-spacing: .08em; text-transform: uppercase; }
/* ---------- Author / E-E-A-T ---------- */
.byline {
 display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.byline .avatar {
 width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; box-shadow: 0 6px 14px -4px rgba(79,70,229,.5); }
.byline .who {
 font-size: 13.5px; color: var(--ink-3); }
.byline .who strong {
 color: var(--ink); display: block; font-size: 14px; }
/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
 display: none; }
@media (max-width: 760px) {

  .mobile-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; box-shadow: 0 -6px 24px rgba(15,23,42,.14); }
  .mobile-cta a { flex: 1; text-align: center; }
  body { padding-bottom: 64px; }
}
/* ---------- Single-product review page ---------- */
.review-grid {
 display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; margin-top: 8px; }
.review-aside {
 position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.review-aside .model-imgwrap {
 background: linear-gradient(160deg, #fbfcff, #eef2ff); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; display: block; }
.review-aside .model-imgwrap img {
 width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.review-score {
 display: flex; align-items: center; gap: 12px; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); }
.score-label {
 color: var(--ink-2); font-size: 13px; font-weight: 500; }
.at-glance {
 list-style: none; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.at-glance li {
 display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 14px; }
.at-glance li:last-child {
 border-bottom: 0; }
.at-glance li span {
 color: var(--ink-3); }
.at-glance li b {
 color: var(--ink); font-weight: 600; text-align: right; }
.review-body h2 {
 font-size: 22px; margin: 26px 0 10px; letter-spacing: -.01em; }
.review-body p {
 color: var(--ink-2); margin-bottom: 12px; }
.pros-cons {
 display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
.pc-col {
 border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; background: var(--bg-soft); box-shadow: var(--shadow-sm); }
.pc-col h3 {
 font-size: 15px; margin-bottom: 8px; }
.pc-pros h3 {
 color: var(--green-2); }
.pc-cons h3 {
 color: var(--red); }
.pc-col ul {
 list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pc-col li {
 position: relative; padding-left: 22px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.pc-pros li::before {
 content: "\2713"; position: absolute; left: 0; color: var(--green-2); font-weight: 700; }
.pc-cons li::before {
 content: "\2715"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
@media (max-width: 860px) {

  .review-grid { grid-template-columns: 1fr; gap: 24px; }
  .review-aside { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
}
/* ---------- card "read full review" link ---------- */
.card-more {
 display: block; text-align: center; margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--brand); text-decoration: none; }
.card-more:hover {
 color: var(--brand-dark); text-decoration: underline; }
/* ---------- comparison table ---------- */
.cmp-table {
 width: 100%; border-collapse: collapse; margin: 18px 0 8px; font-size: 15px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cmp-table th, .cmp-table td {
 padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp-table thead th {
 background: var(--bg-soft); font-weight: 700; color: var(--ink); }
.cmp-table tbody th {
 width: 150px; color: var(--ink-3); font-weight: 600; background: var(--bg-soft-2); }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td {
 border-bottom: 0; }
.cmp-table a {
 color: var(--brand); font-weight: 600; text-decoration: none; }
.cmp-table a:hover {
 text-decoration: underline; }
/* ---------- E-E-A-T footer link block ---------- */
.foot-eeat {
 text-align: center; font-size: 13px; margin: 10px 0 14px; }
.foot-eeat a {
 color: var(--ink-2); margin: 0 11px; text-decoration: none; }
.foot-eeat a:hover {
 color: var(--brand); text-decoration: underline; }
/* ---------- Trust note in review body ---------- */
.trust-note {
 font-size: 13.5px; color: var(--ink-2); background: var(--brand-soft); border: 1px solid var(--brand-light); border-radius: var(--radius-sm); padding: 12px 14px; margin: 18px 0 4px; }
.trust-note a {
 color: var(--brand); font-weight: 600; }
/* ---------- Our Team page ---------- */
.team-grid {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 28px 0; }
.team-card {
 border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--bg); box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.team-card:hover {
 transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-card h3 {
 font-size: 17px; margin: 14px 0 4px; }
.team-role {
 color: var(--brand); font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.team-card .avatar {
 width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--a, #4f46e5), var(--b, #7c3aed)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; letter-spacing: .02em; box-shadow: 0 8px 18px -6px rgba(79,70,229,.6); }
@media (max-width: 760px) {
 .team-grid { grid-template-columns: 1fr; } }
/* ---------- Site landing (root /index.html) ---------- */
.site-hero {
 position: relative; padding: 84px 0 64px; border-bottom: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(56% 48% at 88% -10%, rgba(236,72,153,.12), transparent 60%),
    radial-gradient(50% 46% at 5% 8%, rgba(79,70,229,.16), transparent 60%),
    radial-gradient(46% 44% at 50% 110%, rgba(56,189,248,.12), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg-soft) 100%);
}
.site-hero::before {

  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image: radial-gradient(rgba(79,70,229,.16) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(72% 60% at 50% 30%, #000, transparent 78%);
          mask-image: radial-gradient(72% 60% at 50% 30%, #000, transparent 78%);
}
.site-hero .container {
 position: relative; z-index: 2; max-width: 900px; }
.site-hero h1 {
 font-size: clamp(34px, 5vw, 54px); line-height: 1.06; font-weight: 800; letter-spacing: -.035em; }
.site-hero h1 .hl {
 background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 55%, #ec4899 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-hero .sub {
 color: var(--ink-2); font-size: 18.5px; max-width: 720px; margin-top: 18px; }
.site-hero .eyebrow {
 font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--brand-light); }
.eyebrow {
 font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.nav-active {
 color: var(--ink) !important; }
.nav-active::after {
 transform: scaleX(1) !important; }
/* ---------- Category landing (/ {
cat}
/index.html) ---------- */
.cat-hero {
 padding: 56px 0 36px; border-bottom: 1px solid var(--line); background:
    radial-gradient(50% 60% at 92% -20%, rgba(124,58,237,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), #fff); }
.cat-hero .container {
 display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.cat-hero h1 {
 font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.03em; margin-top: 6px; }
.cat-hero .sub {
 color: var(--ink-2); margin-top: 12px; font-size: 17px; max-width: 760px; }
.cat-hero .muted {
 color: var(--ink-3); font-size: 14.5px; }
.cat-hero .eyebrow {
 color: var(--brand); margin-bottom: 4px; }
.cat-hero .cat-emoji,
.section .cat-emoji {
 display: inline-flex; align-items: center; justify-content: center; }
.cat-hero > .container > .cat-emoji {
 font-size: 64px; width: 110px; height: 110px; border-radius: 26px; background: linear-gradient(160deg, var(--brand-light), #fff); box-shadow: 0 12px 30px -10px rgba(79,70,229,.35); flex: 0 0 110px; }
/* ---------- Category picker grid (on site landing) ---------- */
.cat-grid {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card::after {
 content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.cat-card:hover::after {
 transform: scaleX(1); }
.cat-card .cat-emoji {
 font-size: 38px; width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(160deg, var(--brand-light), #fff); display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1px var(--brand-light); }
.cat-card h3 {
 font-size: 22px; font-weight: 800; margin-top: 4px; }
.cat-card .cat-tag {
 color: var(--ink-2); font-size: 14px; margin: 0; }
.cat-card .cat-status {
 color: var(--ink-2); font-size: 13px; font-weight: 600; margin-top: 4px; }
.cat-card .cat-status strong {
 color: var(--ink); font-weight: 800; }
.cat-card .cat-status-soon {
 background: var(--bg-soft); display: inline-block; padding: 5px 11px; border-radius: 999px; color: var(--ink-3); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.cat-card .cat-cta {
 margin-top: auto; padding-top: 14px; font-size: 14px; font-weight: 700; color: var(--brand); border-top: 1px solid var(--line); }
@media (max-width: 880px) {
 .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) {
 .cat-grid { grid-template-columns: 1fr; } }
/* ---------- Coming soon block ---------- */
.coming-soon {
 text-align: center; padding: 40px 0 60px; }
.coming-soon .coming-emoji {
 font-size: 80px; width: 140px; height: 140px; margin: 0 auto 24px; border-radius: 30px; background: linear-gradient(160deg, var(--brand-light), #fff); display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 40px -12px rgba(79,70,229,.35); }
.coming-soon h2 {
 font-size: 28px; margin-bottom: 8px; }
.coming-soon p {
 color: var(--ink-2); max-width: 560px; margin: 8px auto; }
.coming-soon .muted {
 color: var(--ink-3); font-size: 14px; }
.coming-soon .btn {
 margin-top: 22px; }
/* ---------- Home: buyereviews-style hero + categories + trending ---------- */
.site-hero-min {
 padding: 64px 0 32px; border-bottom: 1px solid var(--line); }
.site-hero-min h1 {
 font-size: clamp(28px, 3.8vw, 38px); font-weight: 800; line-height: 1.18; letter-spacing: -.025em; max-width: 820px; color: var(--ink); }
.site-hero-min .sub {
 color: var(--ink-2); font-size: 17px; max-width: 720px; margin-top: 14px; }
/* ---------- Product-first homepage hero ---------- */
.home-hero {
 position: relative; padding: 72px 0 60px; background: linear-gradient(165deg, #eef1ff 0%, #f7f8ff 42%, #ffffff 100%); border-bottom: 1px solid var(--line); overflow: hidden; }
.home-hero::after {
 content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,.16), transparent 60%); pointer-events: none; }
.home-hero-copy .eyebrow {
 font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; display: inline-block; padding: 5px 12px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--brand-light); }
.home-hero-copy h1 {
 font-size: clamp(32px, 4.4vw, 50px); line-height: 1.06; font-weight: 800; letter-spacing: -.035em; color: var(--ink); margin: 0; }
.home-hero-copy .sub {
 color: var(--ink-2); font-size: 18px; max-width: 560px; margin: 18px 0 24px; }
.hero-stats > div {
 display: flex; flex-direction: column; }
.hero-stats strong {
 font-size: 27px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.hero-stats span {
 font-size: 12.5px; color: var(--ink-3); margin-top: 5px; font-weight: 600; }
/* Featured #1 product card in the hero */
.home-feat {
 background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px 22px 18px; box-shadow: var(--shadow); text-align: center; max-width: 340px; margin-left: auto; }
.home-feat-img img {
 width: 100%; height: 100%; object-fit: contain; }
.home-feat-name a {
 color: var(--ink); }
.home-feat-name a:hover {
 color: var(--brand); text-decoration: none; }
.home-feat-score span {
 font-size: 30px; font-weight: 800; color: var(--brand); letter-spacing: -.03em; }
.home-feat-score small {
 font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.home-feat-bullets li {
 position: relative; padding-left: 18px; font-size: 13px; color: var(--ink-2); line-height: 1.4; }
.home-feat-bullets li::before {
 content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green-2); font-weight: 800; }
.home-feat .btn-amazon {
 width: 100%; background: linear-gradient(180deg, #5b9cf6, #3b82f6) !important; border-color: #3b82f6 !important; color: #fff !important; box-shadow: 0 8px 20px -8px rgba(59,130,246,.55) !important; border-radius: 12px; font-weight: 700; }
.home-feat .mr-az {
 justify-content: center; margin-top: 7px; }
.section-foot {
 text-align: center; margin-top: 26px; }
@media (max-width: 960px) {

  .home-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .home-feat { margin: 0 auto; max-width: 360px; }
}
@media (max-width: 540px) {

  .home-hero { padding: 48px 0 40px; }
  .hero-stats { gap: 18px; }
  .hero-stats strong { font-size: 22px; }
}
.cat-feature-body h3 {
 font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 4px; }
.cat-feature-meta strong {
 color: var(--ink); font-weight: 800; }
@media (max-width: 720px) {
 .cat-feature { grid-template-columns: 56px 1fr; gap: 14px; padding: 16px; } .cat-feature-cta { grid-column: 1 / -1; padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 10px; } }
.cat-soon-line span {
 margin: 0 4px; }
.trending-grid a {
 display: block; padding: 10px 14px; color: var(--ink); font-size: 14.5px; font-weight: 600; border-radius: 10px; transition: background .15s ease, color .15s ease; }
.trending-grid a:hover {
 background: var(--brand-light); color: var(--brand-dark); text-decoration: none; }
@media (max-width: 720px) {
 .trending-grid { grid-template-columns: repeat(2, 1fr); } }
/* =====================================================================
   NEW editorial homepage hero (RoboReview UI v2 — editorial / trust)
   ===================================================================== */
.section-head h2 {
 font-weight: 600; }
.page-hero h1, .cat-hero h1 {
 font-weight: 600; }
.rr-hero {
 position: relative; padding: 78px 0 66px; border-bottom: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(58% 50% at 88% -12%, rgba(20,184,166,.12), transparent 60%),
    radial-gradient(54% 48% at 4% 4%, rgba(14,159,115,.14), transparent 60%),
    linear-gradient(180deg, #FBFDFB 0%, var(--bg-soft) 100%);
}
.rr-hero::before {
 content:""; position:absolute; inset:0; z-index:1; opacity:.45;
  background-image: radial-gradient(rgba(14,159,115,.12) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.rr-hero-grid {
 position: relative; z-index:2; display:grid; grid-template-columns: 1.5fr 1fr; gap: 54px; align-items: center; }
/* min-width:0 stops the long display headline from forcing the grid wider
   than the viewport on narrow screens (grid items default to min-content). */
.rr-hero-copy {
 min-width: 0; }
.rr-eyebrow {
 display:inline-block; font-size:12px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:var(--brand-dark); background:var(--brand-light); padding:6px 13px; border-radius:999px; margin-bottom:18px; }
.rr-title {
 font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); line-height:1.04; font-weight:600; letter-spacing:-.02em; color:var(--ink); margin:0; }
.rr-title .hl {
 color: var(--brand); font-style: italic; }
.rr-sub {
 color: var(--ink-2); font-size:19px; max-width:560px; margin:20px 0 28px; line-height:1.6; }
.rr-cta {
 display:flex; gap:14px; flex-wrap:wrap; }
.rr-stats {
 list-style:none; display:flex; gap:34px; margin:36px 0 0; padding:0; flex-wrap:wrap; }
.rr-stats li {
 display:flex; flex-direction:column; }
.rr-stats strong {
 font-family:var(--font-display); font-size:30px; font-weight:600; color:var(--ink); letter-spacing:-.02em; line-height:1; }
.rr-stats span {
 font-size:12.5px; color:var(--ink-3); margin-top:6px; font-weight:600; }
.rr-feat {
 background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding:24px 24px 20px; box-shadow: var(--shadow); text-align:center; max-width:350px; margin-left:auto; position:relative; }
.rr-feat-tag {
 position:absolute; top:-13px; left:50%; transform:translateX(-50%); background: linear-gradient(135deg, #fbbf24, #f59e0b); color:#7c2d12; font-size:11px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; padding:6px 14px; border-radius:999px; box-shadow:0 8px 18px -6px rgba(245,158,11,.5); white-space:nowrap; }
.rr-feat-img {
 display:block; margin:10px auto 10px; width:210px; height:210px; border-radius:18px; background: linear-gradient(160deg,#fbfdfb,#e9f6f0); padding:12px; }
.rr-feat-img img {
 width:100%; height:100%; object-fit:contain; }
.rr-feat-name {
 font-size:19px; font-weight:800; letter-spacing:-.01em; margin:4px 0 8px; }
.rr-feat-name a {
 color:var(--ink); }
.rr-feat-name a:hover {
 color:var(--brand); text-decoration:none; }
.rr-feat-score {
 display:flex; align-items:baseline; justify-content:center; gap:8px; margin-bottom:10px; }
.rr-feat-score span {
 font-family:var(--font-display); font-size:34px; font-weight:600; color:var(--brand); letter-spacing:-.02em; }
.rr-feat-score small {
 font-size:13px; color:var(--ink-3); font-weight:600; }
.rr-feat-bullets {
 list-style:none; margin:0 0 16px; padding:0; text-align:left; display:flex; flex-direction:column; gap:7px; }
.rr-feat-bullets li {
 position:relative; padding-left:20px; font-size:13.5px; color:var(--ink-2); line-height:1.45; }
.rr-feat-bullets li::before {
 content:"\2713"; position:absolute; left:0; top:0; color:var(--brand); font-weight:800; }
.rr-feat .btn-amazon {
 width:100%; background: linear-gradient(180deg, #5b9cf6, #3b82f6) !important; border-color: #3b82f6 !important; color: #fff !important; box-shadow: 0 8px 20px -8px rgba(59,130,246,.55) !important; border-radius: 12px; font-weight: 700; }
.rr-az {
 font-size:11.5px; color:var(--ink-3); margin-top:9px; }
@media (max-width:1000px) {
 .rr-hero-grid{ grid-template-columns:1fr; gap:34px; } .rr-feat{ margin:0 auto; max-width:380px; } }
@media (max-width:560px) {
 .rr-hero{ padding:48px 0 40px; } .rr-stats{ gap:20px; } .rr-stats strong{ font-size:24px; } }

