body {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.reviews-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.header-section {
  text-align: center;
  margin-bottom: 35px;
}

.header-section h1 {
  color: #ffb400;
  font-size: 32px;
  margin-bottom: 8px;
}

.header-section p {
  color: #aaa;
  font-size: 16px;
}

.rating-summary-card {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.overall-score {
  text-align: center;
}

.overall-score .score-number {
  font-size: 48px;
  font-weight: bold;
  color: #ffb400;
  line-height: 1;
}

.overall-score .stars {
  color: #ffb400;
  font-size: 20px;
  margin: 8px 0;
}

.overall-score .count {
  color: #888;
  font-size: 14px;
}

.action-card {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.action-card h3 {
  margin-top: 0;
  color: #fff;
}

.action-card a {
  color: #ffb400;
  font-weight: bold;
  text-decoration: none;
}

.action-card a:hover {
  text-decoration: underline;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.filter-btn {
  background: #1e1e1e;
  border: 1px solid #333;
  color: #ccc;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn.active, .filter-btn:hover {
  background: #ffb400;
  color: #121212;
  font-weight: bold;
  border-color: #ffb400;
}

.review-card {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-name {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.verified-badge {
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid #2e7d32;
  color: #81c784;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
}

.review-stars {
  color: #ffb400;
  font-size: 16px;
}

.review-date {
  color: #666;
  font-size: 12px;
  margin-bottom: 10px;
}

.review-text {
  color: #ddd;
  font-size: 15px;
  line-height: 1.5;
}

.owner-reply {
  background: #262626;
  border-left: 3px solid #ffb400;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin-top: 15px;
}

.owner-title {
  font-size: 13px;
  font-weight: bold;
  color: #ffb400;
  margin-bottom: 4px;
}

.owner-text {
  font-size: 14px;
  color: #bbb;
  margin: 0;
}

.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: #e65100;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.back-btn:hover { 
  background: #ff9800; 
  color: #000; 
}

/* Container for star picker */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  font-size: 2rem;
  gap: 6px;
}

/* Hide radio inputs */
.star-rating input {
  display: none;
}

/* Unselected stars (gray) */
.star-rating label {
  color: #444444;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

/* Gold color on hover and when checked */
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ffc107;
}

/* Gold class for display stars on customer review cards */
.gold-stars {
  color: #ffc107;
}