/* =====================================================
   FAQ Page — native <details>/<summary> accordion
   ===================================================== */

.pp-faq-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.pp-faq-item {
  border: 1px solid rgba(92, 46, 46, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.pp-faq-item[open] {
  border-color: rgba(92, 46, 46, 0.22);
  box-shadow: 0 12px 28px rgba(61, 31, 31, 0.08);
}

.pp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--pp-text, #3d1f1f);
  cursor: pointer;
  list-style: none;
}

.pp-faq-item summary::-webkit-details-marker {
  display: none;
}

.pp-faq-item summary:focus-visible {
  outline: 2px solid var(--pp-gold, #c58e4f);
  outline-offset: -2px;
  border-radius: 16px;
}

.pp-faq-item summary i {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(92, 46, 46, 0.08);
  color: var(--pp-accent, #5c2e2e);
  font-size: 0.8rem;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.pp-faq-item[open] summary i {
  transform: rotate(45deg);
  background: var(--pp-accent, #5c2e2e);
  color: #fff;
}

.pp-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--pp-muted, #5a3b3b);
  line-height: 1.55;
}
