.rating-box {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  user-select: none;
  transition: transform 0.2s ease;
}

.rating-box:hover {
  transform: scale(1.03);
}

.star {
  font-size: 20px;
  color: #ccc;
  letter-spacing: -7px; /* сближает звёзды */
  transition: color 0.25s ease;
}

.star.active {
  color: gold;
}

.rating-value {
  font-size: 16px;
  color: #333;
  margin-left: 4px;
}
