:root {
  --bg: #fff;
  --fg: #1a1d24;
  --muted: #5c6470;
  --line: #e5e7eb;
  --accent: #00b67a; /* trustpilot-ish green */
  --accent-warm: #ffb800;
  --bg-card: #fff;
  --bg-soft: #f7f8fa;
  --radius: 8px;
  --maxw: 760px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg-soft);
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 56px; gap: 16px; flex-wrap: wrap; }
.brand { color: var(--fg); text-decoration: none; font-size: 16px; }
.brand-sub { color: var(--muted); font-weight: 400; }
.site-nav { display: flex; gap: 14px; font-size: 14px; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--accent); }

.hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin: 24px 0;
  text-align: center;
}
.hero h1 { font-size: 28px; margin: 0 0 12px; }
.hero-rating { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hero-stars { font-size: 28px; color: var(--accent); }
.hero-rating-num strong { font-size: 32px; }
.hero-count { display: block; color: var(--muted); font-size: 14px; }
.hero-blurb { color: var(--muted); max-width: 520px; margin: 12px auto 0; font-size: 14px; }
.hero--category h1 { font-size: 22px; }

.rating-breakdown { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; max-width: 360px; margin-left: auto; margin-right: auto; }
.rating-row { display: grid; grid-template-columns: 32px 1fr 40px; gap: 8px; align-items: center; padding: 4px 8px; border-radius: 4px; color: var(--fg); text-decoration: none; }
.rating-row:hover { background: var(--bg-soft); }
.rating-row__label { font-weight: 600; color: var(--muted); }
.rating-row__bar { height: 8px; background: var(--line); border-radius: 4px; position: relative; overflow: hidden; }
.rating-row__bar::after { content: ""; position: absolute; inset: 0; width: var(--pct, 0%); background: var(--accent); border-radius: 4px; }
.rating-row__count { text-align: right; color: var(--muted); font-size: 14px; }

.reviews { display: flex; flex-direction: column; gap: 12px; }
.review { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.review--1star, .review--2star { background: #fafafa; }
.review__head { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center; margin-bottom: 8px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review__avatar--placeholder { background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review__meta { display: flex; flex-direction: column; min-width: 0; }
.review__author { font-weight: 600; font-size: 14px; }
.review__date { color: var(--muted); font-size: 12px; }
.review__rating { font-size: 14px; }
.stars { letter-spacing: 1px; color: var(--accent); }
.stars--4 { color: var(--accent); }
.stars--3 { color: var(--accent-warm); }
.stars--2, .stars--1 { color: #d23f3f; }
.review__title { font-size: 16px; margin: 0 0 6px; }
.review__title a { color: var(--fg); text-decoration: none; }
.review__title a:hover { text-decoration: underline; }
.review__title-single { font-size: 22px; margin: 16px 0 12px; }
.review__body { color: var(--fg); font-size: 15px; white-space: pre-line; word-wrap: break-word; }
.review__body--single { font-size: 16px; line-height: 1.65; }
.review__reply { margin-top: 12px; padding: 12px; background: var(--bg-soft); border-left: 3px solid var(--accent); border-radius: 4px; font-size: 14px; }
.review__reply strong { display: block; margin-bottom: 4px; color: var(--accent); }
.review__verified { display: inline-block; margin-top: 8px; padding: 2px 8px; background: var(--bg-soft); color: var(--muted); border-radius: 4px; font-size: 11px; }
.review__source { margin-top: 12px; font-size: 13px; }
.review__source a { color: var(--muted); }

.review--single { padding: 24px 20px; margin: 20px 0; }

.breadcrumb { font-size: 13px; color: var(--muted); margin: 16px 0; }
.breadcrumb a { color: var(--muted); }

.related { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.related h2 { font-size: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related-card { display: block; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--fg); }
.related-card:hover { border-color: var(--accent); }
.related-card strong { display: block; margin: 6px 0 4px; font-size: 14px; }
.related-card__author { display: block; color: var(--muted); font-size: 12px; }

.prose h1 { font-size: 26px; margin: 24px 0 12px; }
.prose h2 { font-size: 18px; margin: 24px 0 8px; }
.prose p, .prose ul { font-size: 15px; color: var(--fg); }
.prose ul { padding-left: 20px; }
.rating-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.rating-table th, .rating-table td { padding: 8px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }

.reviews-status { text-align: center; color: var(--muted); padding: 24px 0; font-size: 14px; }

.site-footer { margin-top: 48px; padding: 24px 0; background: #fff; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.site-footer a { color: var(--fg); }
.site-footer a:hover { color: var(--accent); }
.site-footer .disclosure { font-size: 12px; max-width: 600px; line-height: 1.55; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; margin: 16px 0 12px; padding: 12px 16px; background: var(--bg-soft); border-radius: var(--radius); }
.footer-nav strong { color: var(--fg); margin-right: 4px; }
.footer-nav a { font-weight: 500; }
.footer-links { font-size: 12px; }

.hero-cta { margin-top: 14px; font-size: 14px; color: var(--muted); }
.hero-cta a { color: var(--accent); font-weight: 600; }
.hero-brand-link { color: var(--accent); font-weight: 600; }

.review__brand-cta { margin-top: 20px; padding: 14px 16px; background: var(--bg-soft); border-left: 3px solid var(--accent); border-radius: 4px; font-size: 14px; color: var(--muted); }
.review__brand-cta a { color: var(--accent); font-weight: 600; }
.review__brand-cta strong { color: var(--fg); }

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-stars { font-size: 22px; }
  .hero-rating-num strong { font-size: 24px; }
  .review { padding: 12px; }
  .review__head { grid-template-columns: 36px 1fr auto; gap: 8px; }
  .review__avatar { width: 36px; height: 36px; }
  .site-nav { gap: 10px; font-size: 13px; }
}
