/* =========================================================
   VELOURA EAST — PRODUCT FAQ (frontend)
   Reuses existing tokens; pp__ prefix to match the other
   always-on product blocks (Specifications, Feature Cards).
========================================================= */

.pp__faq-sec { scroll-margin-top: 90px; }

.pp__faq-search {
  display: flex; align-items: center; gap: 10px; max-width: 420px; margin-bottom: 28px;
  padding: 12px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 30px;
  color: var(--muted);
}
.pp__faq-search input {
  border: none; outline: none; background: none; flex: 1; font-size: 13.5px; color: var(--text); font-family: inherit;
}
.pp__faq-search input::placeholder { color: var(--muted); }

.pp__faq-list { max-width: 820px; }
.pp__faq-item { border-bottom: 1px solid var(--border); scroll-margin-top: 100px; }
.pp__faq-item:first-child { border-top: 1px solid var(--border); }

.pp__faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; text-align: left; cursor: pointer; padding: 20px 4px;
  font-family: inherit; font-size: 14.5px; font-weight: 500; color: var(--black);
}
.pp__faq-q:hover { color: var(--gold-2); }
.pp__faq-chevron { flex-shrink: 0; color: var(--gold); transition: transform .35s ease; }
.pp__faq-q[aria-expanded="true"] .pp__faq-chevron { transform: rotate(180deg); }

.pp__faq-a {
  overflow: hidden; max-height: 0; transition: max-height .4s ease;
}
.pp__faq-a.is-open { max-height: 800px; }
.pp__faq-a-inner { padding: 0 4px 22px; font-size: 13.5px; line-height: 1.85; color: var(--muted); max-width: 68ch; }
.pp__faq-a-inner p { margin-bottom: 12px; }
.pp__faq-a-inner p:last-child { margin-bottom: 0; }

/* Highlight briefly when arrived at via a deep link (#faq-...) */
.pp__faq-item.pp__faq-target .pp__faq-q { color: var(--gold-2); }

.pp__faq-empty { padding: 30px 4px; color: var(--muted); font-size: 13.5px; }

@media (prefers-reduced-motion: reduce) {
  .pp__faq-a { transition: none; }
  .pp__faq-chevron { transition: none; }
}
