/* ── FAQ Drawer ────────────────────────────────────────────────────────────── */

.faq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1200;
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
}
.faq-overlay.open { display: flex; }

.faq-drawer {
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--sidebar, #0f1923);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,.4);
  overflow: hidden;
}

.faq-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}
.faq-header-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 3px;
}
.faq-header-text p {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.faq-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  flex-shrink: 0;
}
.faq-close:hover { color: #fff; }

.faq-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-group-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin: 14px 0 4px 2px;
}
.faq-group-label:first-child { margin-top: 4px; }

.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 11px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background .15s, border-color .15s;
}
.faq-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.faq-item.prebaked { border-color: rgba(110,231,183,.2); }

.faq-item-text {
  font-size: .84rem;
  color: rgba(255,255,255,.85);
  line-height: 1.35;
}
.faq-item-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.faq-instant-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee7b7;
  display: none;
}
.faq-item.prebaked .faq-instant-dot { display: block; }

.faq-arrow {
  color: rgba(255,255,255,.25);
  font-size: .75rem;
}
.faq-item:hover .faq-arrow { color: rgba(255,255,255,.6); }

.faq-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.faq-cache-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}
.faq-clear-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.3);
  font-size: .72rem;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.faq-clear-btn:hover { color: rgba(255,255,255,.6); }
