/* =====================================================
   Public testimonials page «Τι λένε οι χρήστες μας» (mk).
   Uses marketplace.css tokens. Loaded only on /reviews.
   ===================================================== */

/* Clear the fixed 56px topbar (same as /dealers, /pro, etc.) so the hero
   isn't tucked underneath it. */
body{ padding-top:56px; background:var(--bg); }

.rv-page{ max-width:1080px; margin:0 auto; padding:26px 16px 56px; }

/* ── Hero ── */
.rv-hero{ text-align:center; padding:14px 0 22px; }
.rv-kicker{
  display:inline-block; font-size:.72rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
  color:var(--blue-txt); background:var(--blue-dim); padding:4px 11px; border-radius:999px;
}
.rv-hero h1{ font-size:clamp(1.6rem, 4vw, 2.3rem); font-weight:800; letter-spacing:-.02em; margin:13px 0 0; color:var(--text); }
.rv-lead{ max-width:560px; margin:9px auto 0; color:var(--text-2); font-size:1rem; line-height:1.55; }

.rv-agg{
  display:inline-flex; align-items:center; gap:14px; margin-top:20px;
  padding:12px 20px; background:var(--surface); border:1px solid var(--line);
  border-radius:calc(var(--r) * 2.2); box-shadow:var(--shadow-card);
}
.rv-agg-score{ font-size:2.4rem; font-weight:800; line-height:1; color:var(--text); letter-spacing:-.02em; }
.rv-agg-meta{ text-align:left; }
.rv-agg-stars{ font-size:1.05rem; letter-spacing:2px; color:var(--line-2); }
.rv-agg-stars .on{ color:var(--gold); }
.rv-agg-count{ font-size:.8rem; color:var(--text-2); margin-top:2px; }

/* ── Grid of testimonials ── */
.rv-grid{
  display:grid; gap:16px; margin-top:8px;
  grid-template-columns:repeat(auto-fill, minmax(290px, 1fr));
}
.rv-card{
  margin:0; display:flex; flex-direction:column; gap:11px;
  background:var(--surface); border:1px solid var(--line);
  border-radius:calc(var(--r) * 2); padding:20px;
  box-shadow:var(--shadow-card); transition:transform .14s ease, box-shadow .14s ease;
}
.rv-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow-hover); }
.rv-stars{ font-size:1rem; letter-spacing:2px; color:var(--line-2); }
.rv-stars .on{ color:var(--gold); }
.rv-quote{
  margin:0; font-size:.98rem; line-height:1.6; color:var(--text); font-weight:500;
  position:relative;
}
.rv-quote--plain{ color:var(--text-2); font-style:italic; }
.rv-card .rv-by{ display:flex; align-items:center; gap:10px; margin-top:auto; padding-top:6px; }
.rv-av{
  flex:none; width:40px; height:40px; border-radius:50%; display:grid; place-items:center;
  font-weight:800; font-size:1rem; color:#fff;
  background:linear-gradient(135deg, var(--blue), var(--blue-hover));
}
.rv-av.biz{ background:linear-gradient(135deg, #243149, #3d4f74); }
.rv-av svg{ width:20px; height:20px; }
.rv-who{ min-width:0; flex:1; line-height:1.3; }
.rv-who b{ display:block; font-size:.9rem; color:var(--text); font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rv-who small{ display:block; font-size:.76rem; color:var(--text-2); }
.rv-verified{
  flex:none; width:24px; height:24px; display:grid; place-items:center; border-radius:50%;
  background:rgba(49,162,76,.14); color:var(--green);
}
.rv-verified svg{ width:14px; height:14px; }

/* ── Pager ── */
.rv-pager{ display:flex; align-items:center; justify-content:center; gap:16px; margin-top:30px; }
.rv-pager a{
  font-weight:700; font-size:.88rem; color:var(--text);
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r);
  padding:9px 15px; text-decoration:none; transition:background .15s, border-color .15s;
}
.rv-pager a:hover{ background:var(--hover); border-color:var(--line-2); }
.rv-pager-mid{ font-size:.82rem; color:var(--text-2); }

/* ── Empty + footer CTA ── */
.rv-empty{ text-align:center; padding:48px 20px; max-width:460px; margin:18px auto 0; }
.rv-empty-ic{ width:64px; height:64px; margin:0 auto 14px; display:grid; place-items:center; color:var(--gold); }
.rv-empty-ic svg{ width:46px; height:46px; }
.rv-empty h2{ font-size:1.25rem; font-weight:800; margin:0 0 6px; color:var(--text); }
.rv-empty p{ color:var(--text-2); line-height:1.55; margin:0 0 18px; }

.rv-foot-cta{
  text-align:center; margin-top:42px; padding:34px 20px;
  background:radial-gradient(120% 120% at 50% 0%, var(--blue-dim), transparent 70%);
  border:1px solid var(--line); border-radius:calc(var(--r) * 2.4);
}
.rv-foot-cta h2{ font-size:1.3rem; font-weight:800; margin:0 0 6px; color:var(--text); }
.rv-foot-cta p{ color:var(--text-2); margin:0 0 18px; }

.rv-cta{
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--blue); color:#fff; font-weight:700; font-size:.95rem;
  padding:12px 26px; border-radius:var(--r); text-decoration:none;
  transition:background .15s;
}
.rv-cta:hover{ background:var(--blue-hover); }
