/* === Review Section Styling === */
.custom-product-reviews {
  margin-bottom: 30px;
}

.custom-product-reviews .reviews-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.custom-product-reviews .review-list {
  list-style: none;
  padding: 0;
}

.custom-product-reviews .single-review {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.custom-product-reviews .star-rating {
  color: #ffb400;
}

/* === Review Form Styling === */
.custom-review-form {
  margin-top: 30px;
}

.custom-review-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.custom-review-form textarea,
.custom-review-form input[type="text"],
.custom-review-form input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Fix the checkbox alignment */
.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.comment-form-cookies-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Button styling (not full width anymore) */
.custom-review-form input[type="submit"] {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 12px 25px !important;
  border-radius: 100px;
  cursor: pointer;
  display: inline-block; /* prevents full width */
  width: auto;           /* ensures natural width */
  transition: all 0.3s ease;
}

.custom-review-form input[type="submit"]:hover {
  background-color: #fff !important;
  color: #000;
}
