/* =====================================================================
   Sapins.be — Note produit (étoiles) sous le nom du produit
   ===================================================================== */
.sapins-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin: .35rem 0 .9rem;
  font-size: .95rem;
}

/* Étoiles : couche pleine découpée par-dessus la couche vide */
.sapins-rating__stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}
.sapins-rating__stars-empty,
.sapins-rating__stars-full {
  display: inline-flex;
  line-height: 1;
}
.sapins-rating__stars-empty { color: #dcdcdc; }
.sapins-rating__stars-full {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #f5b301;          /* jaune "étoile" */
}
.sapins-rating .material-icons {
  font-size: 22px;
  line-height: 1;
}

.sapins-rating__score {
  font-weight: 700;
  color: #232323;
}
.sapins-rating__count { color: #7a7a7a; }
