/* VerifiedWatchDealers — Custom Styles */

/* Review Cards */
.review-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.review-stars .star {
  width: 1rem;
  height: 1rem;
}

.review-stars .star.filled {
  color: #d4af37;
}

.review-stars .star.empty {
  color: #cbd5e0;
}

.review-date {
  font-size: 0.875rem;
  color: #718096;
}

.review-text {
  color: #4a5568;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b8912e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d3748;
}

/* Specialty Badges */
.specialty-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: #fef9ee;
  color: #92600a;
  border: 1px solid #f5e6c8;
}

/* Dealer Stars in profile header */
.dealer-star {
  width: 1.25rem;
  height: 1.25rem;
}

.dealer-star.filled {
  color: #d4af37;
}

.dealer-star.empty {
  color: #cbd5e0;
}

/* Mobile menu transition */
#mobile-menu {
  transition: max-height 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .review-card {
    padding: 1rem;
  }

  .review-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
