/* ═══════════════════════════════════════════
   Thm-Samsung-v5 Luxe — Reviews V1 Cards
   Dark Theme + Red Brand (#DC2626) + Gold Accent (#B8860B)
   ═══════════════════════════════════════════ */

.fl-luxe-reviews-v1 {
  padding: 56px 48px;
  margin-bottom: 48px;
  background: #2D2D4E;
  border: 1px solid #3D3D5C;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.fl-luxe-reviews-v1-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

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

.fl-luxe-reviews-v1-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid #B8860B;
  background: rgba(184, 134, 11, 0.05);
}

.fl-luxe-reviews-v1-rating-value {
  font-size: 24px;
  font-weight: 700;
  color: #B8860B;
  font-family: 'Georgia', serif;
}

.fl-luxe-reviews-v1-rating-label {
  font-size: 14px;
  color: #9A9ABF;
  font-family: 'Georgia', serif;
}

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

.fl-luxe-reviews-v1-card {
  padding: 32px 24px;
  background: #1A1A2E;
  border: 1px solid #3D3D5C;
  transition: all 0.3s ease;
}

.fl-luxe-reviews-v1-card:hover {
  border-color: #B8860B;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.fl-luxe-reviews-v1-avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DC2626;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.fl-luxe-reviews-v1-name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #E8E8E8;
  font-family: 'Georgia', serif;
}

.fl-luxe-reviews-v1-city {
  font-size: 13px;
  color: #9A9ABF;
  font-family: 'Georgia', serif;
}

.fl-luxe-reviews-v1-stars {
  margin: 16px 0;
  color: #B8860B;
  font-size: 14px;
  letter-spacing: 3px;
}

.fl-luxe-reviews-v1-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #9A9ABF;
  font-family: 'Georgia', serif;
}

.fl-luxe-reviews-v1-tier {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: #B8860B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
}

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

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

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