/* ==============================
   RATING SLIDER
============================== */
.rating-box {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255,105,180,0.2);
  margin-top: 30px;
  text-align: center;
}

.rating-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-value {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #ff69b4;
  font-weight: bold;
  text-shadow: 0 0 6px #ff00ff;
}

