/* Рейтинг звёздами в модалке отзыва */
.star-rating-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.star-label {
  position: relative;
  cursor: pointer;
  font-size: 28px;
  color: #ddd;
  transition: color 0.2s;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.star-rating-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.star-label i {
  display: block;
  color: inherit;
}

.star-label.selected i {
  color: #ffc107;
}

.star-label:not(.selected) i {
  color: #ddd;
}


