/* Business Card Styles */
.rating-count {
  opacity: 0.8;
  font-size: 0.9rem;
}

.no-reviews {
  opacity: 0.5;
  font-size: 0.9rem;
}

.business-meta {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.pro-card-border {
  border: 2px solid #FFD700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.business-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

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

.review-date {
  opacity: 0.7;
  font-size: 0.9rem;
}

.stars {
  color: var(--gold);
  margin-top: 0.25rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-gold {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  color: #000;
}
