/* Vendor review pages (src/_includes/layouts/vendor-review.njk).
   Everything else on the page (glass, rail-card, rail-verdict, rn-fact grid,
   callout, disclaimer) is shared Aurora chrome already loaded globally —
   this file only covers the one net-new component: the per-peptide price list. */

/* Confidence rating as the "at a glance" eyebrow: our verdict up top, with the
   fact cards below it as the supporting evidence. */
.vr-rating-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vr-rating-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex: none;
}
.vr-rating-label {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 2px;
}
.vr-rating-sub {
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 3px;
}

/* Price-vs-market tier: only the earned signs render ($ cheaper, $$ average,
   $$$ pricey), so the count itself carries the meaning. */
.vr-tier {
  font-weight: 800;
  letter-spacing: 2px;
  color: #3aa76d;
}

/* Community Signals star rating — an empty-star string with a filled-star
   copy clipped to --fill%, not a raw single-source score (e.g. Trustpilot). */
.vr-stars {
  position: relative;
  display: inline-block;
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--hairline);
}

.vr-stars::before {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  inset: 0;
  width: var(--fill, 0%);
  overflow: hidden;
  white-space: nowrap;
  color: #f0a93b;
}

.vr-shop-cta {
  margin-top: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid color-mix(in oklch, var(--accent) 22%, transparent);
}

.vr-shop-cta-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.vr-shop-cta-code {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--accent);
  margin-top: 3px;
}

.vr-shop-cta .btn { white-space: nowrap; }

.vr-price-card .vr-price-rows {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--hairline);
  border-radius: 10px;
  overflow: hidden;
}

.vr-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
  background: var(--glass);
  text-decoration: none;
  transition: background 0.15s ease;
}

.vr-price-row:hover { background: color-mix(in oklch, var(--accent) 8%, var(--glass)); }

.vr-price-row .n {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.vr-price-row .p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.vr-price-row .p small {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.vr-verdict-line {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.vr-verdict-line strong { color: var(--ink); }

.vr-callout {
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 14px;
  background: color-mix(in oklch, var(--accent) 6%, var(--glass));
  border: 1px solid color-mix(in oklch, var(--accent) 18%, transparent);
}

.vr-callout p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.vr-callout p strong { color: var(--ink); }

.vr-disclaimer-note {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--faint);
  margin-top: 24px;
}
