/* AllMyReviews - minimal CSS for product listings (stars summary).
   Accent = brand amaranth #e62249, matching the front-v2 bundle used on
   home/PDP, so listing stars are the same red — not the legacy brown #a98a72
   that this file used to hard-code (which looked orange/odd once the unreached
   star became a filled glyph). */
:root { --agr-accent: #e62249; }

.agr-star--filled { color: var(--agr-accent, #e62249); }
/* Unreached stars keep the same filled glyph/accent colour but faded, so a 4/5
   rating reads as "4 solid + 1 dimmed" instead of a hollow outline. */
.agr-star--empty { color: var(--agr-accent, #e62249); opacity: 0.3; }

.agr-product-list-summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  margin-top: 6px;
}

.agr-product-list-summary .agr-stars { display: inline-flex; gap: 1px; }
