/* ============================================================
   NaschSalon - faq.css
   ============================================================ */

.faq-section { background: var(--bg); }

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border2);
}
.faq-item:first-child {
  border-top: 1px solid var(--border2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--choc);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--caramel); }
.faq-q[aria-expanded="true"] { color: var(--caramel); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--caramel);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 0 1.4rem;
  animation: faq-open .2s ease;
}
.faq-a p {
  font-size: 0.92rem;
  color: var(--choc3);
  line-height: 1.85;
  max-width: 640px;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .faq-q { font-size: 0.95rem; }
}
