/* =========================================
   FAQ — Retail + wholesale objections
   Extends theme.css custom properties
   ========================================= */

/* ---- Page Header ---- */
.faq-header {
  padding: 8rem 3rem 5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.faq-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.faq-subtitle {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- Intro ---- */
.faq-intro {
  padding: 4rem 3rem 2rem;
  background: var(--bg);
}

.faq-intro-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-intro-body {
  max-width: 620px;
}

.faq-intro-body p {
  color: var(--fg-muted);
  line-height: 1.75;
  font-size: 1rem;
}

/* ---- FAQ Section ---- */
.faq-section {
  padding: 4rem 3rem 5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

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

.faq-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
  line-height: 1.2;
  max-width: 700px;
}

/* ---- Accordion list ---- */
.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-item > summary {
  list-style: none;
  cursor: pointer;
}

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

.faq-item > summary::marker {
  display: none;
  content: '';
}

.faq-question {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--fg);
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent-warm);
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
}

.faq-item[open] > .faq-question {
  color: var(--accent-warm);
}

.faq-item[open] > .faq-question::after {
  content: '–';
  color: var(--accent);
}

.faq-answer {
  padding: 0 0 1.5rem 0;
  max-width: 620px;
}

.faq-answer p {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .faq-header,
  .faq-intro,
  .faq-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .faq-header {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .faq-question {
    padding: 1.1rem 2rem 1.1rem 0;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem 1.75rem 1rem 0;
    font-size: 1rem;
  }
}
