/* FAQ Tricot Expert - Luxury Design */
.faq-tricot-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e8dfd5;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: #8b7355;
  margin-bottom: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #6d5a45;
}

.faq-question::before {
  content: '▶';
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.faq-question.active::before {
  transform: rotate(90deg);
}

.faq-answer {
  color: #333;
  line-height: 1.6;
  padding-left: 1.3rem;
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.faq-category {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.faq-category h2 {
  color: #8b7355;
  font-size: 1.5rem;
  border-bottom: 2px solid #8b7355;
  padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .faq-tricot-container {
    padding: 1rem 0.5rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
}
