/* Star rating (WooCommerce-style) – shared on index, shop, product */
.star-rating{
  display: inline-flex;
  align-items: center;
  gap: 1px;
  letter-spacing: 0.5px;
  font-size: 1em;
  line-height: 1;
}
.star-rating .star{
  display: inline-block;
}
.star-rating .star--full,
.star-rating .star--half .star__fill{
  color: var(--gold);
}
.star-rating .star--empty,
.star-rating .star--half .star__bg{
  color: rgba(239,229,214,.28);
}
.star-rating .star--half{
  position: relative;
  display: inline-block;
  width: 1em;
}
.star-rating .star--half .star__bg{
  display: block;
}
.star-rating .star--half .star__fill{
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  white-space: nowrap;
}

.star-rating__count{
  margin-left: 8px;
  opacity: .85;
  font-size: 0.92em;
}
