/* V137 — FAQ Section produit */
.faq-section {
  padding: 32px 0;
  background: #f9f4ec;
  border-top: 1px solid rgba(26,77,46,.08);
}
[data-theme="dark"] .faq-section { background: #1A3320; }

.faq-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #1A4D2E;
  margin: 0 0 20px;
}
[data-theme="dark"] .faq-section-title { color: #7EC8A0; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: #fff;
  border: 1px solid rgba(26,77,46,.12);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
[data-theme="dark"] .faq-item { background: #223D2A; border-color: #2E5038; }
.faq-item[open] { box-shadow: 0 4px 16px rgba(26,77,46,.12); }

.faq-question {
  padding: 14px 18px;
  font-weight: 700;
  font-size: .92rem;
  color: #1A4D2E;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  user-select: none;
}
[data-theme="dark"] .faq-question { color: #7EC8A0; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question::-webkit-details-marker { display: none; }

.faq-answer {
  padding: 0 18px 14px;
  font-size: .88rem;
  color: #3A3A3A;
  line-height: 1.7;
  border-top: 1px solid rgba(26,77,46,.08);
}
[data-theme="dark"] .faq-answer { color: #A5C9A8; }
.faq-en { display: none; }