.rating {
  display: flex;
  justify-content: start;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.star {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.star-icon {
  color: #ccc;
  transition: color 0.2s ease;
}

.star-icon.active {
  color: #FFBD13;
}

.reviewtextarea {
  width: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  resize: none;
  outline: none;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-submit-btn {
  padding: .4rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  background: #131618;
}
.review-submit-btn:hover{
  background: #fc9928;
}