.pjf-faq-coming-soon { text-align: center; padding: 80px 0; color: var(--pjf-ink-mute, #7a7e73); }
.pjf-faq-empty { text-align: center; color: var(--pjf-ink-mute, #7a7e73); padding: 60px 0; }

/* ── Recherche ── */
.pjf-faq-search-wrap { max-width: 720px; margin: 32px auto 40px; }
.pjf-faq-search {
  display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--pjf-line-soft, #eae5d5);
  border-radius: 999px; padding: 14px 20px; box-shadow: 0 8px 24px rgba(31,53,39,.08); color: var(--pjf-ink-mute, #7a7e73);
}
.pjf-faq-search-input { flex: 1; border: none; outline: none; background: none; font-size: 14.5px; font-family: inherit; color: var(--pjf-ink, #1b1d17); }
.pjf-faq-search-input::placeholder { color: var(--pjf-ink-mute, #7a7e73); }

/* ── Mise en page ── */
.pjf-faq-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; padding-bottom: 60px; align-items: start; }
@media (max-width: 860px) { .pjf-faq-layout { grid-template-columns: 1fr; } }

/* ── Navigation catégories ── */
.pjf-faq-nav { position: sticky; top: 24px; }
.pjf-faq-nav-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--pjf-ink-mute, #7a7e73); margin-bottom: 10px; padding: 0 4px; }
.pjf-faq-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }

.pjf-faq-nav-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--pjf-ink-soft, #4a4f44) !important; text-decoration: none !important;
}
.pjf-faq-nav-link svg { flex: 0 0 auto; }
.pjf-faq-nav-name { flex: 1; }
.pjf-faq-nav-count {
  font-size: 11px; font-weight: 600; color: var(--pjf-ink-mute, #7a7e73); background: var(--pjf-cream-100, #f6f2e8);
  padding: 1px 8px; border-radius: 999px;
}
.pjf-faq-nav-link:hover { background: var(--pjf-cream-100, #f6f2e8); }
.pjf-faq-nav-link.is-active { background: var(--pjf-green-900, #1f3527); color: #fff !important; }
.pjf-faq-nav-link.is-active .pjf-faq-nav-count { background: rgba(255,255,255,.18); color: #fff; }

@media (max-width: 860px) {
  .pjf-faq-nav { position: static; overflow-x: auto; }
  .pjf-faq-nav-label { display: none; }
  .pjf-faq-nav ul { flex-direction: row; padding-bottom: 4px; }
  .pjf-faq-nav-link { white-space: nowrap; }
}

/* ── Contenu ── */
.pjf-faq-content { min-width: 0; }
.pjf-faq-category {
  background: var(--pjf-cream-50, #fafaf5); border: 1px solid var(--pjf-line-soft, #eae5d5); border-radius: var(--pjf-radius-lg, 16px);
  padding: 26px 28px; margin-bottom: 24px;
}

.pjf-faq-cat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.pjf-faq-cat-icon {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--pjf-line-soft, #eae5d5);
  display: flex; align-items: center; justify-content: center; color: var(--pjf-green-800, #2c4a2e);
}
.pjf-faq-cat-title { font-family: var(--pjf-font-display, serif); font-size: 21px; color: var(--pjf-green-900, #1f3527); margin: 0; }
.pjf-faq-cat-count { font-size: 12px; color: var(--pjf-ink-mute, #7a7e73); }

.pjf-faq-accordion { border-top: 1px solid var(--pjf-line-soft, #eae5d5); }
.pjf-faq-item { border-bottom: 1px solid var(--pjf-line-soft, #eae5d5); }
.pjf-faq-item[hidden] { display: none; }

.pjf-faq-item-row {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 2px; background: none; border: none; text-align: left; cursor: pointer; font-family: inherit;
}
.pjf-faq-item-q { font-size: 14.5px; color: var(--pjf-ink, #1b1d17); line-height: 1.4; }

.pjf-faq-item-toggle {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--pjf-line, #d9d4c3);
  display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--pjf-green-800, #2c4a2e);
  line-height: 1;
}
.pjf-faq-item-row[aria-expanded="true"] .pjf-faq-item-toggle { background: var(--pjf-green-900, #1f3527); color: #fff; border-color: var(--pjf-green-900, #1f3527); }

.pjf-faq-item-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.pjf-faq-item-panel-inner { padding: 0 2px 18px; }
.pjf-faq-item-a { font-size: 14px; color: var(--pjf-ink-soft, #4a4f44); line-height: 1.6; }
.pjf-faq-item-a p { margin: 0 0 10px; }
.pjf-faq-item-a p:last-child { margin-bottom: 0; }
.pjf-faq-item-a-empty { font-style: italic; color: var(--pjf-ink-mute, #7a7e73); }

.pjf-faq-no-results { text-align: center; color: var(--pjf-ink-mute, #7a7e73); padding: 40px 0; }
