/* ═══════════════════════════════════════════
   Thm-Teepublic Luxe — FAQ V1 Accordion
   Dark Red Theme + Brand (#B91C1C)
   ═══════════════════════════════════════════ */

.fl-luxe-faq-v1 {
  padding: 48px;
  margin-bottom: 48px;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-radius: 16px;
}

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

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

.fl-luxe-faq-v1-category {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(221, 25, 26, 0.15);
  color: #B91C1C;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  border-radius: 20px;
}

.fl-luxe-gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #B91C1C, #DC2626);
  margin: 16px 0;
}

.fl-luxe-faq-v1-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-luxe-faq-v1-item {
  border: 1px solid #333333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.fl-luxe-faq-v1-item:hover {
  border-color: rgba(221, 25, 26, 0.3);
}

.fl-luxe-faq-v1-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #222222;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  font-family: 'Georgia', serif;
  transition: all 0.2s ease;
}

.fl-luxe-faq-v1-question:hover {
  background: #2A2A2A;
}

.fl-luxe-faq-v1-number {
  font-size: 20px;
  font-weight: 700;
  color: #B91C1C;
  min-width: 32px;
  font-family: 'Georgia', serif;
}

.fl-luxe-faq-v1-icon {
  margin-left: auto;
  font-size: 18px;
  color: #B91C1C;
  transition: transform 0.2s ease;
}

.fl-luxe-faq-v1-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.fl-luxe-faq-v1-item.is-open .fl-luxe-faq-v1-answer {
  max-height: 500px;
}

.fl-luxe-faq-v1-answer p {
  margin: 0;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #CCCCCC;
  font-family: 'Georgia', serif;
}

.fl-luxe-faq-v1-item.is-open .fl-luxe-faq-v1-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .fl-luxe-faq-v1 {
    padding: 32px 20px;
  }

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

  .fl-luxe-faq-v1-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .fl-luxe-faq-v1-answer p {
    padding: 16px 20px;
  }
}
