/*
 * Luxe Reviews V1 — Cards
 * Theme: Thm-Teepublic / Luxe
 * Dark cards with gold tier badges
 */

.fl-luxe-reviews-v1 {
  padding: 64px 48px;
  margin-bottom: 48px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
}

.fl-luxe-reviews-v1-header {
  margin-bottom: 40px;
}

.fl-luxe-reviews-v1-title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: 'Georgia', serif;
}

.fl-luxe-reviews-v1-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-top: 16px;
  background: rgba(185, 28, 28, 0.15);
  border: 1px solid rgba(185, 28, 28, 0.3);
  border-radius: 8px;
}

.fl-luxe-reviews-v1-rating-value {
  font-size: 20px;
  font-weight: 700;
  color: #C9A84C;
}

.fl-luxe-reviews-v1-rating-label {
  font-size: 11px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fl-luxe-reviews-v1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fl-luxe-reviews-v1-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s ease;
}

.fl-luxe-reviews-v1-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.fl-luxe-reviews-v1-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fl-luxe-reviews-v1-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(185, 28, 28, 0.2);
  border: 1px solid rgba(185, 28, 28, 0.4);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: #C9A84C;
  flex-shrink: 0;
}

.fl-luxe-reviews-v1-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fl-luxe-reviews-v1-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.fl-luxe-reviews-v1-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #C9A84C;
  text-transform: uppercase;
}

.fl-luxe-reviews-v1-tier--verified {
  color: #4ADE80;
}

.fl-luxe-reviews-v1-stars {
  font-size: 13px;
  color: #C9A84C;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.fl-luxe-reviews-v1-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #AAAAAA;
  font-style: italic;
  font-family: 'Georgia', serif;
}

.fl-luxe-reviews-v1-verified {
  font-size: 11px;
  color: #4ADE80;
  font-weight: 600;
}

@media (max-width: 768px) {
  .fl-luxe-reviews-v1 {
    padding: 48px 24px;
  }

  .fl-luxe-reviews-v1-title {
    font-size: 28px;
  }

  .fl-luxe-reviews-v1-grid {
    grid-template-columns: 1fr;
  }
}
