   .review-form {
  margin: 2rem 0;
  
  
  border-radius: 8px;
  
}
.body--white .review-form__title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #333;
}

.review-form__title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #e7e7e7;
}

.review-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #e7e7e7;
}
.body--white .review-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #555;
}
.review-form__rating {
  margin-bottom: 1rem;
}

.slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #8a8a8a73;
  border-radius: 4px;
  outline: none;
  margin-top: 0.5rem;
  transition: background 0.3s;
}
.body--white .slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  outline: none;
  margin-top: 0.5rem;
  transition: background 0.3s;
}
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #F9D442;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.slider-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #F9D442;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.slider-input:active::-webkit-slider-thumb {
  background: #e6c53d;
}

#ratingValue {
  font-weight: bold;
  color: #F9D442;
}

.review-form__textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  resize: vertical;
  transition: border 0.2s;
}
.body--white .review-form__textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  resize: vertical;
  transition: border 0.2s;
  color: #333;
}

.review-form__textarea:focus {
  outline: none;
  border-color: #F9D442;
}

.review-form__submit {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #F9D442;
  color: #333;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.review-form__submit:hover {
  background: #e6c53d;
}
.review-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.review-actions button {
  padding: 5px 10px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.review-actions button:hover {
  background: #e0e0e0;
}

.review-form__rating {
  margin-bottom: 15px;
}

.slider-input {
  width: 100%;
  margin-top: 5px;
}

.review-form__message {
  margin-bottom: 15px;
}

.review-form__textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
}

.review-form__submit {
  padding: 10px 20px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.review-form__submit:hover {
  background: #45a049;
}

.review-form__submit:disabled {
  background: #cccccc;
  cursor: not-allowed;
}