/* ============================================================
   review.css — Leave a Review page specific styles
   ============================================================ */

.review-section { background: var(--warm-white); }

.review-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.review-form-col {}

.form-submit-btn {
  width: 100%; text-align: center;
  padding: 16px; font-size: 0.9rem;
  cursor: pointer; border: none;
  margin-top: 8px;
}
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Star rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}
.star-rating input { display: none; }
.star-rating label {
  font-size: 2rem;
  color: var(--sage-light);
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--amber);
}

/* Permission checkbox */
.review-permission {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem; color: var(--body-text);
  line-height: 1.6; font-weight: 300; cursor: pointer;
}
.review-permission input {
  margin-top: 4px; flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--sage-dark);
}

/* Info column */
.review-info-col { position: sticky; top: 96px; }

.review-info-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 28px 28px;
  margin-bottom: 20px;
}
.review-info-card:last-child { margin-bottom: 0; }

.review-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.review-info-card p {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 12px;
}
.review-info-card p:last-child { margin-bottom: 0; }

.review-steps {
  list-style: none;
  counter-reset: review-steps;
}
.review-steps li {
  counter-increment: review-steps;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184,206,202,0.3);
  font-size: 0.85rem; color: var(--body-text);
  font-weight: 300; display: flex; gap: 12px;
}
.review-steps li:last-child { border-bottom: none; }
.review-steps li::before {
  content: counter(review-steps);
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  color: var(--sage); flex-shrink: 0;
  min-width: 16px;
}

/* Mobile */
@media (max-width: 900px) {
  .review-layout { grid-template-columns: 1fr; gap: 48px; }
  .review-info-col { position: static; }
}
