/* Review editorial — scoped to .review-editorial, maps to WP Customizer vars */

.review-editorial {
  --ink: var(--black);
  --ink-soft: var(--light-black);
  --ink-mute: var(--dark-gray);
  --paper: var(--light-gray);
  --surface: var(--white);
  --surface-2: color-mix(in srgb, var(--light-gray) 70%, var(--white));
  --line: var(--gray);
  --line-soft: color-mix(in srgb, var(--gray) 50%, var(--white));
  --accent: var(--primary);
  --accent-2: var(--dark-primary);
  --accent-tint: color-mix(in srgb, var(--primary) 14%, transparent);
  --cta: var(--purchase);
  --cta-hover: var(--dark-purchase);
  --cta-tint: color-mix(in srgb, var(--purchase) 14%, transparent);
  --pos: var(--green);
  --pos-tint: color-mix(in srgb, var(--green) 18%, transparent);
  --neg: var(--red);
  --neg-tint: color-mix(in srgb, var(--red) 18%, transparent);
  --band: var(--dark-black);
  --band-2: var(--black);
  --r-sm: 5px;
  --r: 8px;
  --r-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.05);
  --shadow: 0 4px 14px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.06);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.16), 0 4px 14px rgba(0,0,0,.08);
  --maxw: 1120px;
  --read: 680px;
  --gut: clamp(18px, 5vw, 40px);
  --font-display: var(--heading-font);
  --font-label: Oswald, "Arial Narrow", sans-serif;
  --font-body: var(--body-font);
  --pad-block: clamp(48px, 8vw, 92px);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  overflow-x: clip;
}

.review-editorial p { margin: 0 0 1.15em; line-height: 1.72; }
.review-editorial a { color: var(--link); font-weight: 700; }
.review-editorial a:hover { color: var(--link-hover); }
.review-editorial h1, .review-editorial h2, .review-editorial h3, .review-editorial h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

.review-editorial .shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.review-editorial .read { max-width: var(--read); margin-left: auto; margin-right: auto; }
.review-editorial .band { background: var(--band); color: #efe9dc; }

.review-editorial .layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.review-editorial .reviews-content { min-width: 0; }

/* Type helpers */
.review-editorial .kicker {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 600;
  font-size: .72rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin: 0;
}
.review-editorial .kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.review-editorial .kicker.no-rule::before { display: none; }
.review-editorial .h-xl { font-size: clamp(2.5rem, 6vw, 4.1rem); font-weight: 900; line-height: 1.04; }
.review-editorial .h-lg { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.review-editorial .h-md { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.review-editorial .lead { font-size: 1.24rem; line-height: 1.6; color: var(--ink-soft); }
.review-editorial .label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
}
.review-editorial .muted { color: var(--ink-mute); }
.review-editorial .eyebrow-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

/* Section head */
.review-editorial .section-head { margin-bottom: clamp(22px, 3vw, 36px); }
.review-editorial .section-head.center { text-align: center; }

/* Buttons */
.review-editorial .re-btn {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1.5em;
  border-radius: var(--r);
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1;
  color: #fff;
}
.review-editorial .re-btn-cta { background: var(--cta); box-shadow: var(--shadow-sm); }
.review-editorial .re-btn-cta:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }
.review-editorial .re-btn-sm { padding: .6em 1.05em; font-size: .82rem; }
.review-editorial .re-btn-block { width: 100%; }

/* Badges */
.review-editorial .badge {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  font-size: .72rem;
  padding: .5em .85em;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: .45em;
}
.review-editorial .badge-choice { background: var(--accent); color: #fff; }
.review-editorial .badge-soft { background: var(--accent-tint); color: var(--accent); }

/* Stars */
.review-editorial .re-stars {
  --pct: calc(var(--rating, 5) / 5 * 100%);
  position: relative;
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  font-family: "Times New Roman", serif;
  letter-spacing: 2px;
}
.review-editorial .re-stars::before { content: "★★★★★"; color: var(--line); }
.review-editorial .re-stars::after {
  content: "★★★★★";
  color: var(--accent);
  position: absolute;
  inset: 0;
  width: var(--pct);
  overflow: hidden;
  white-space: nowrap;
}
.review-editorial .rating-row { display: inline-flex; align-items: baseline; gap: .5em; }
.review-editorial .rating-num { font-family: var(--font-label); font-weight: 600; font-size: 1.02em; }
.review-editorial .score-pill {
  font-family: var(--font-display);
  font-weight: 900;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  line-height: 1;
}
.review-editorial .score-pill .n { font-size: 1.5rem; }
.review-editorial .score-pill .d {
  font-family: var(--font-label);
  font-size: .58rem;
  letter-spacing: .14em;
  opacity: .7;
  margin-top: 2px;
}

/* Cards */
.review-editorial .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.review-editorial .card-hover { transition: transform .2s ease, box-shadow .2s ease; }
.review-editorial .card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Hero */
.review-editorial .re-hero {
  position: relative;
  overflow: hidden;
  background-image: repeating-radial-gradient(circle at 80% 36%, color-mix(in srgb, var(--accent) 12%, transparent) 0 2px, transparent 2px 9px);
}
.review-editorial .re-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.review-editorial .re-hero-card { max-width: 420px; }
.review-editorial .re-breadcrumbs {
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--accent-2);
  margin-bottom: 22px;
  opacity: .92;
}
.review-editorial .re-breadcrumbs a { color: inherit; text-decoration: none; font-weight: 500; }
.review-editorial .re-breadcrumbs a:hover { text-decoration: underline; }
.review-editorial .re-breadcrumbs .sep { opacity: .5; margin: 0 .5em; }
.review-editorial .re-trust-pill {
  font-family: var(--font-label);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #e7e0d0;
  padding: .5em .85em;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  display: inline-block;
}
.review-editorial .re-hero-author { display: flex; align-items: center; gap: 14px; margin: 26px 0 22px; flex-wrap: wrap; }
.review-editorial .re-hero-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-editorial .re-card-header {
  background: var(--accent);
  color: #fff;
  padding: .7em 1.1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-editorial .re-card-img { width: 100%; aspect-ratio: 5 / 4; object-fit: contain; background: var(--surface-2); display: block; }
.review-editorial .re-card-body { padding: 1.1em 1.25em 1.3em; }

/* Disclosure */
.review-editorial .disclosure {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1em 1.2em;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: .82rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-top: clamp(28px, 4vw, 44px);
}
.review-editorial .disclosure-icon { color: var(--accent); font-size: 1.1rem; line-height: 1.3; flex-shrink: 0; }
.review-editorial .disclosure p { margin: 0; }

/* Verdict */
.review-editorial .re-verdict { padding-top: var(--pad-block); }
.review-editorial .re-verdict-card { overflow: hidden; box-shadow: var(--shadow-lg); border-top: 4px solid var(--accent); }
.review-editorial .re-verdict-head {
  background: var(--ink);
  color: #fdfbf5;
  padding: clamp(18px, 3vw, 28px) clamp(20px, 3vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.review-editorial .re-verdict-body { padding: clamp(22px, 3.5vw, 40px); }
.review-editorial .re-verdict-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.review-editorial .re-verdict-lead {
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.55;
  margin: 0 0 1.4em;
}
.review-editorial .re-deal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.15em 1.4em;
  margin-top: clamp(22px, 3vw, 32px);
}
.review-editorial .re-deal-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
}

/* Gallery */
.review-editorial .gallery { display: grid; grid-template-columns: 76px 1fr; gap: 12px; }
.review-editorial .gallery-thumbs { display: flex; flex-direction: column; gap: 8px; }
.review-editorial .gallery-thumbs button {
  border: 2px solid transparent;
  border-radius: var(--r);
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  transition: border-color .15s ease;
}
.review-editorial .gallery-thumbs button.active { border-color: var(--accent); }
.review-editorial .gallery-thumbs img { width: 76px; height: 60px; object-fit: cover; display: block; }
.review-editorial .gallery-main { position: relative; }
.review-editorial .gallery-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); display: block; }
.review-editorial .gallery-main .mlab {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--font-label);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.72);
  color: #fff;
  padding: .35em .65em;
  border-radius: 6px;
}

/* Pros / cons */
.review-editorial .pc { list-style: none; padding: 0; margin: 0; }
.review-editorial .pc li {
  display: flex;
  gap: .6em;
  align-items: flex-start;
  margin-bottom: .55em;
  line-height: 1.5;
}
.review-editorial .pc li::before {
  flex-shrink: 0;
  font-family: var(--font-label);
  font-weight: 700;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8em;
  margin-top: .15em;
}
.review-editorial .pc.pros li::before { content: "+"; background: var(--pos-tint); color: var(--pos); }
.review-editorial .pc.cons li::before { content: "–"; background: var(--neg-tint); color: var(--neg); }
.review-editorial .pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
}

/* Glance grid */
.review-editorial .glance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.review-editorial .glance .cell {
  background: var(--surface);
  padding: 1em 1.05em;
  display: flex;
  flex-direction: column;
  gap: .35em;
}
.review-editorial .glance .cell .lbl {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .64rem;
  color: var(--ink-mute);
}
.review-editorial .glance .cell .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
}
.review-editorial .glance-at { padding-top: var(--pad-block); }
.review-editorial .glance-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 38px);
  align-items: start;
}

/* Score bars */
.review-editorial .bar-row { margin-bottom: .85em; }
.review-editorial .bar-row:last-child { margin-bottom: 0; }
.review-editorial .bar-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .3em; }
.review-editorial .bar-head .lbl {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.review-editorial .bar-head .val {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .85rem;
  color: var(--accent);
}
.review-editorial .bar-track { height: 7px; border-radius: 50em; background: var(--line-soft); overflow: hidden; }
.review-editorial .bar-fill {
  height: 100%;
  border-radius: 50em;
  background: var(--accent);
  width: 0;
  transition: width 1s cubic-bezier(.2,.7,.2,1);
}
.review-editorial .scorecard { padding: 1.5em 1.6em; }

/* Opinions */
.review-editorial .re-opinions { padding-top: var(--pad-block); }
.review-editorial .opinions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.review-editorial .opinion-card { padding: 1.4em 1.45em; height: 100%; display: flex; flex-direction: column; }
.review-editorial .opinion-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-editorial .opinion-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 4px;
}
.review-editorial .opinion-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
}

/* Review sections */
.review-editorial .re-review { padding-top: var(--pad-block); }
.review-editorial .re-feature {
  scroll-margin-top: 80px;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(20px, 3vw, 30px);
  border-top: 1px solid var(--line);
}
.review-editorial .re-feature:first-child { border-top: 0; padding-top: 0; }
.review-editorial .re-feature-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.review-editorial .re-feature-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: .9;
  color: var(--accent);
  flex-shrink: 0;
}
.review-editorial .re-overview { padding-top: var(--pad-block); }

/* Alternatives band */
.review-editorial .re-alternatives {
  padding-top: var(--pad-block);
  padding-bottom: var(--pad-block);
}
.review-editorial .alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.review-editorial .alt-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--band-2);
  border: 1px solid rgba(255,255,255,.12);
}
.review-editorial .alt-card .alt-head {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  font-size: .7rem;
  padding: .6em 1em;
  text-align: center;
}
.review-editorial .alt-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: var(--surface-2); }
.review-editorial .alt-card-body { padding: 1.1em 1.2em 1.25em; display: flex; flex-direction: column; flex: 1; color: #fdfbf5; }
.review-editorial .alt-card-body p { color: #bdb6a6; font-size: .9rem; flex: 1; }
.review-editorial .alt-price { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; }
.review-editorial .alt-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 1em; flex-wrap: wrap; }

/* Trust */
.review-editorial .re-trust { padding-top: var(--pad-block); }
.review-editorial .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.review-editorial .stat-tile {
  text-align: center;
  padding: 1.4em 1em;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.review-editorial .stat-tile .n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
}
.review-editorial .stat-tile .l {
  font-family: var(--font-label);
  font-size: .74rem;
  color: var(--ink-mute);
  margin-top: 8px;
  letter-spacing: .06em;
}
.review-editorial .trust-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.review-editorial .timeline { list-style: none; padding: 0; margin: 0; }
.review-editorial .timeline li { display: flex; gap: 18px; padding-bottom: 22px; }
.review-editorial .timeline .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  flex-shrink: 0;
}
.review-editorial .author-trust-card {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.12);
  padding: 1.6em 1.5em;
  color: #fdfbf5;
}
.review-editorial .author-trust-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.review-editorial .logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 52px);
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.review-editorial .logo-strip img { height: 24px; width: auto; opacity: .55; filter: grayscale(1); }

/* Conclusion */
.review-editorial .re-conclusion { padding-top: var(--pad-block); }
.review-editorial .who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
  margin: 1.8em 0;
}
.review-editorial .who-card { padding: 1.2em 1.3em; }
.review-editorial .who-card.buy { border-top: 3px solid var(--pos); }
.review-editorial .who-card.skip { border-top: 3px solid var(--ink-mute); }
.review-editorial .conv {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--ink);
  color: #efe9dc;
  border-radius: var(--r-lg);
  padding: 1.2em 1.4em;
  margin: var(--pad-block) 0;
  position: relative;
  overflow: hidden;
  background-image: repeating-radial-gradient(circle at 78% 38%, color-mix(in srgb, var(--accent) 10%, transparent) 0 2px, transparent 2px 9px);
}
.review-editorial .conv .ribbon {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .72rem;
  color: var(--ink);
  background: var(--accent-2);
  padding: .4em .8em;
  border-radius: 50em;
  white-space: nowrap;
}
.review-editorial .conv .nm { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fdfbf5; }
.review-editorial .conv .meta { font-size: .85rem; color: #bdb6a6; }
.review-editorial .conv .spacer { flex: 1; min-width: 12px; }
.review-editorial .conv .pz { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--accent-2); }

/* FAQ accordion */
.review-editorial .re-faq { padding-top: var(--pad-block); }
.review-editorial .faq-list { display: flex; flex-direction: column; gap: 12px; }
.review-editorial .faq-item { overflow: hidden; }
.review-editorial .faq-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.1em 1.3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.review-editorial .faq-toggle .q-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.3;
}
.review-editorial .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  transition: all .2s ease;
  font-size: 1.1rem;
}
.review-editorial .faq-item.is-open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.review-editorial .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.review-editorial .faq-item.is-open .faq-answer { max-height: 360px; }
.review-editorial .faq-answer p { padding: 0 1.3em 1.2em; margin: 0; color: var(--ink-soft); line-height: 1.65; }

/* Newsletter */
.review-editorial .re-newsletter {
  padding-top: var(--pad-block);
  padding-bottom: var(--pad-block);
}
.review-editorial .news-grid {
  background: var(--accent);
  border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
  background-image: repeating-radial-gradient(circle at 78% 38%, rgba(255,255,255,.08) 0 2px, transparent 2px 9px);
}
.review-editorial .news-grid .kicker { color: #fff; opacity: .9; }
.review-editorial .news-grid h2 { color: #fff; }
.review-editorial .news-grid .news-desc { color: rgba(255,255,255,.88); margin: 0; font-size: 1.02rem; }
.review-editorial .news-form input[type="email"] {
  padding: 1em 1.1em;
  border-radius: var(--r);
  border: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  width: 100%;
  margin-bottom: 10px;
}
.review-editorial .re-btn-ink { background: var(--ink); color: var(--paper); }
.review-editorial .re-btn-ink:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--paper); }
.review-editorial .news-note { color: rgba(255,255,255,.75); font-size: .74rem; text-align: center; margin: .5em 0 0; }

/* Sticky rail */
.review-editorial .sticky-rail { position: sticky; top: 84px; }
.review-editorial .rail-card { overflow: hidden; margin-bottom: 18px; }
.review-editorial .rail-toc { padding: 1.1em 1.2em; }
.review-editorial .rail-toc button {
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: .5em .7em;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  transition: background .15s ease;
  font-size: .88rem;
  color: var(--ink);
  font-family: var(--font-body);
}
.review-editorial .rail-toc button.is-active { background: var(--accent-tint); font-weight: 700; }
.review-editorial .rail-toc .dot {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: transparent;
  flex-shrink: 0;
}
.review-editorial .rail-toc button.is-active .dot { background: var(--accent); }

/* Mobile bar */
.review-editorial .re-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  transform: translateY(120%);
  transition: transform .25s ease;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  padding: .7em 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-editorial .re-mobile-bar.is-visible { transform: translateY(0); }

/* Progress bar */
.review-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  width: 0;
  transition: width .1s linear;
}

/* Visual scroll animations — cards, images, panels only */
.review-editorial.re-motion-on .re-visual {
  opacity: 0;
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--re-delay, 0ms);
}
.review-editorial.re-motion-on .re-visual.is-in {
  opacity: 1;
}

/* Card rise + scale + shadow */
.review-editorial.re-motion-on .re-visual--card {
  transform: translate3d(0, 40px, 0) scale(0.96);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.review-editorial.re-motion-on .re-visual--card.is-in {
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: var(--shadow-lg);
}

/* Panel rise — no scale */
.review-editorial.re-motion-on .re-visual--rise {
  transform: translate3d(0, 24px, 0);
  box-shadow: none;
}
.review-editorial.re-motion-on .re-visual--rise.is-in {
  transform: translate3d(0, 0, 0);
}

/* Gallery clip reveal */
.review-editorial.re-motion-on .re-visual--clip {
  overflow: hidden;
  border-radius: var(--r);
  transform: none;
  opacity: 1;
}
.review-editorial.re-motion-on .re-visual--clip img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.06);
  transition:
    clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--re-delay, 0ms);
  display: block;
  width: 100%;
}
.review-editorial.re-motion-on .re-visual--clip.is-in img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* Footer sections inside review */
.review-editorial .category-feeds { padding-top: var(--pad-block); }
.review-editorial .navigation-posts { margin-top: 2rem; padding-bottom: 2rem; }

/* Responsive */
@media (max-width: 1040px) {
  .review-editorial .layout { grid-template-columns: 1fr; }
  .review-editorial .hide-md { display: none !important; }
  .review-editorial .re-hero-grid { grid-template-columns: 1fr !important; }
  .review-editorial .re-hero-card { max-width: 420px; margin: 0 auto; }
}
@media (min-width: 1041px) {
  .review-editorial .only-md { display: none !important; }
}
@media (max-width: 860px) {
  .review-editorial .opinions-grid,
  .review-editorial .alt-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .review-editorial .stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .review-editorial .re-verdict-grid,
  .review-editorial .glance-grid-wrap,
  .review-editorial .trust-grid { grid-template-columns: 1fr !important; }
  .review-editorial .news-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .review-editorial .opinions-grid,
  .review-editorial .alt-grid { grid-template-columns: 1fr !important; }
  .review-editorial .who-grid,
  .review-editorial .pc-grid { grid-template-columns: 1fr !important; }
  .review-editorial .gallery { grid-template-columns: 60px 1fr; }
  .review-editorial .gallery-thumbs img { width: 60px; height: 48px; }
  .review-editorial .conv .spacer { display: none; }
  .review-editorial { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .review-editorial .re-visual {
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
  }
  .review-editorial .re-visual--clip img {
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
  }
  .review-editorial .bar-fill {
    width: var(--bar-target, 100%) !important;
    transition: none !important;
  }
}

/* Roundup editorial */
.review-editorial.re-roundup-hero,
.review-editorial .re-roundup-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .72)),
    var(--hero-bg, none),
    repeating-radial-gradient(circle at 78% 38%, color-mix(in srgb, var(--accent) 10%, transparent) 0 2px, transparent 2px 9px);
  background-size: cover, cover, auto;
  background-position: center, center, center;
}

.review-editorial .qp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.review-editorial .re-qp-badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .72rem;
  padding: .62em 1em;
  text-align: center;
}
.review-editorial .re-qp-card { overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.review-editorial .re-qp-thumb img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.review-editorial .re-qp-body { padding: 1em 1.05em 1.15em; display: flex; flex-direction: column; flex: 1; }
.review-editorial .re-qp-body h3 { font-size: 1.12rem; margin: 0 0 .35em; line-height: 1.2; }
.review-editorial .re-qp-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.review-editorial .re-qp-price { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; }

.review-editorial .callout {
  border-radius: var(--r);
  padding: 1.1em 1.25em;
  margin: 1.4em 0;
  border: 1px solid var(--line);
}
.review-editorial .callout-key { background: var(--accent-tint); border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }
.review-editorial .callout-tip { background: var(--surface-2); }
.review-editorial .callout-label { font-size: .74rem; color: var(--accent); margin: 0 0 .5em; letter-spacing: .12em; }
.review-editorial .callout p:last-child { margin-bottom: 0; }

.review-editorial .pull-quote {
  margin: 1.6em 0;
  padding: 1.2em 0 1.2em 1.4em;
  border-left: 4px solid var(--accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
}
.review-editorial .pull-quote cite {
  display: block;
  margin-top: .6em;
  font-family: var(--font-label);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-style: normal;
}

.review-editorial .comp-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 26px;
}
.review-editorial .comp-filter {
  cursor: pointer;
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
  padding: .55em 1.05em;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #d9d2c2;
  transition: all .15s ease;
}
.review-editorial .comp-filter.is-active {
  border-color: var(--accent-2);
  background: var(--accent-2);
  color: #1b1a17;
}

.review-editorial .ctable { width: 100%; border-collapse: separate; border-spacing: 0; }
.review-editorial .ctable th,
.review-editorial .ctable td { padding: 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.review-editorial .ctable thead th {
  background: var(--surface-2);
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--ink-mute);
}
.review-editorial .ctable tbody tr { transition: background .15s ease, opacity .2s ease; }
.review-editorial .ctable tbody tr:hover { background: var(--surface-2); }
.review-editorial .ctable tbody tr.feat { background: var(--accent-tint); }
.review-editorial .re-comp-thumb {
  width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; color: var(--ink-mute);
  background: var(--surface-2); border: 1px solid var(--line);
}
.review-editorial .re-comp-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--ink); text-align: left;
}
.review-editorial .re-comp-mobile { display: grid; gap: 14px; }

.review-editorial .product-block {
  padding-top: calc(var(--pad-block) * .7);
  padding-bottom: calc(var(--pad-block) * .7);
  border-top: 1px solid var(--line);
}
.review-editorial .product-block-head {
  display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px; flex-wrap: wrap;
}
.review-editorial .product-rank {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: .8; color: var(--accent);
}
.review-editorial .product-block-title { flex: 1; min-width: 240px; }
.review-editorial .pb-media {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
  margin-bottom: 26px;
}
.review-editorial .pb-who { margin: 22px 0; }
.review-editorial .who-card { padding: 1.2em 1.3em; }
.review-editorial .who-buy { border-top: 3px solid var(--pos); }
.review-editorial .who-skip { border-top: 3px solid var(--ink-mute); }

.review-editorial .re-rail-jumps button {
  text-align: left; border: 0; background: transparent; cursor: pointer;
  padding: .55em .7em; border-radius: 6px; display: flex; gap: 10px; align-items: center;
  width: 100%; transition: background .15s ease; font-size: .88rem; color: var(--ink); font-family: var(--font-body);
}
.review-editorial .re-rail-jumps button.is-active { background: var(--accent-tint); font-weight: 700; }
.review-editorial .re-rail-rank {
  font-family: var(--font-display); font-weight: 900; color: var(--accent);
  font-size: .95rem; width: 20px; flex-shrink: 0;
}

@media (max-width: 1040px) {
  .review-editorial .qp-grid { grid-template-columns: repeat(2, 1fr); }
  .review-editorial .pb-media { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .review-editorial .qp-grid { grid-template-columns: 1fr; }
  .review-editorial .pb-who { grid-template-columns: 1fr !important; }
}

