* { box-sizing: border-box; }
body {
  margin: 0;
  background: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.site-header {
  background-color: #2C2C2C;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .brand {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
}
.site-header nav a {
  color: #C8C8C8;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.95rem;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: #fff;
}

.review-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  text-align: center;
}
.review-page h1 { margin-bottom: 4px; }
.subtitle { color: #666; margin-top: 0; }

.star-rating {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 6px;
  margin: 24px 0 8px;
  user-select: none;
}
.star-rating-track,
.star-rating-fill {
  white-space: nowrap;
}
.star-rating-track { color: #E0E0E0; }
.star-rating-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  overflow: hidden;
  color: #AA967B;
  transition: width 0.15s ease;
}
.star-rating-hits {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.star-hit {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.rating-readout {
  font-weight: bold;
  color: #444;
  min-height: 1.5em;
}

.hidden { display: none !important; }

.feedback-form {
  text-align: left;
  margin-top: 24px;
}
.feedback-form label {
  display: block;
  margin: 16px 0 4px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
}
.feedback-form .required { color: #C0392B; }
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #CDCDCD;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.feedback-form button {
  margin-top: 20px;
  background-color: #AA967B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
}
.feedback-form button:hover { background-color: #8f7d64; }

.form-message { margin-top: 12px; font-size: 0.9rem; }
.form-message.error { color: #C0392B; }

#highRatingMessage { margin-top: 24px; color: #444; }
