
.shop-review-form {
  background: #f9fff9;
  border: 1px solid #a5d6a7;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
}
.shop-review-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}
.shop-review-form input,
.shop-review-form select,
.shop-review-form textarea {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.shop-review-form button {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
}
.shop-review-form button:hover {
  background: #388e3c;
}
.star-rating span {
  font-size: 22px;
  cursor: pointer;
  color: #ccc;
}
.star-rating span.active {
  color: gold;
}
