/* =============================================================
   CPAP Club — Unified FAQ Accordion
   File: faq-accordion.css
   Upload to: /assets/themes/cpapclub-25/css/faq-accordion.css

   Class prefix: .cc-faq-* (CPAP Club FAQ)
   Used by:
     - FAQ landing page  (/faq/cpap-faq/)
     - Product page FAQ builder (all product descriptions)
   ============================================================= */

/* ── Section wrapper ──────────────────────────────────────── */
.cc-faq-section {
  margin-bottom: 1.5rem;
}

/* ── Individual item ──────────────────────────────────────── */
.cc-faq-item {
  padding-bottom: 18px;
}


/* ── Question button ──────────────────────────────────────── */
.cc-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  background-color: #f8f8f8;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
  gap: 12px;
}

.cc-faq-q:hover {
  background-color: #f0f0f0;
}

.cc-faq-q[aria-expanded="true"] {
  background-color: #ebebeb;
}

/* ── Chevron ──────────────────────────────────────────────── */
.cc-faq-q::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #555555;
  border-bottom: 2px solid #555555;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -4px;
}

.cc-faq-q[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* ── Answer panel ─────────────────────────────────────────── */
.cc-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background-color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.cc-faq-a.is-open {
  max-height: 2200px;
  padding: 14px 16px 18px;
}

.cc-faq-a p:last-child {
  margin-bottom: 0;
}

.cc-faq-a ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.cc-faq-a ul li {
  margin-bottom: 0.35rem;
}

/* ── Table inside answer ──────────────────────────────────── */
.cc-faq-a .table {
  font-size: 13px;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.cc-faq-a .table th {
  background-color: #f4f4f4;
  font-weight: 600;
}