/* ══════════════════════════════════════════════════════════════════
   S18 — Unified FAQ page (/faqs/)
   Dark theme, native <details>/<summary> accordions, lifestyle hero
   banners per product section, sticky pill nav.
   ══════════════════════════════════════════════════════════════════ */

.vb-faq-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 60px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

/* ── Pill navigation (sticky) ── */
.vb-faq-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: #0C0F16;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}
.vb-faq-nav__pill {
    display: inline-block;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.vb-faq-nav__pill:hover,
.vb-faq-nav__pill--active {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

/* ── Section shared ── */
.vb-faq-section {
    margin-bottom: 48px;
    scroll-margin-top: 70px;
}

/* ── Section header (General — no hero image) ── */
.vb-faq-section__header {
    text-align: center;
    padding: 48px 0 32px;
}
.vb-faq-section__title {
    font-family: 'Red Rose', 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 8px;
}
.vb-faq-section__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ── Hero split layout (product sections) ── */
.vb-faq-section__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 32px 40px;
    background: #11141B;
    min-height: 180px;
}
.vb-faq-section__hero-text {
    flex: 1;
    min-width: 0;
}
.vb-faq-section__hero-text .vb-faq-section__title {
    font-size: 36px;
    letter-spacing: 5px;
    margin-bottom: 4px;
}
.vb-faq-section__hero-text .vb-faq-section__subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.vb-faq-section__hero-img {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vb-faq-section__hero-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

/* ── Accent colors per product ── */
.vb-faq-section--ilivit .vb-faq-section__hero-text .vb-faq-section__subtitle {
    color: rgba(93, 166, 74, 0.85);
}
.vb-faq-section--ipolix .vb-faq-section__hero-text .vb-faq-section__subtitle {
    color: rgba(255, 0, 110, 0.85);
}
.vb-faq-section--equilium .vb-faq-section__hero-text .vb-faq-section__subtitle {
    color: rgba(34, 186, 191, 0.85);
}

/* ── Accordion items ── */
.vb-faq-section__body {
    padding: 0;
}
.vb-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vb-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
}
.vb-faq-item summary::-webkit-details-marker {
    display: none;
}
.vb-faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    margin-left: 16px;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, color 0.2s;
}
.vb-faq-item[open] summary::after {
    content: '\2212';
    color: rgba(255, 255, 255, 0.6);
}
.vb-faq-item summary:hover {
    color: rgba(255, 255, 255, 0.85);
}
.vb-faq-item__answer {
    padding: 0 4px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.75;
}
.vb-faq-item__answer p {
    margin: 0;
}

/* ── CTA section ── */
.vb-faq-cta {
    text-align: center;
    padding: 48px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 16px;
}
.vb-faq-cta__title {
    font-family: 'Red Rose', 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0 0 24px;
}
.vb-faq-cta__links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.vb-faq-cta__btn {
    display: inline-block;
    padding: 11px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #0C0F16;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    transition: opacity 0.2s;
}
.vb-faq-cta__btn:hover {
    opacity: 0.85;
    text-decoration: none;
    color: #0C0F16;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .vb-faq-page {
        padding: 0 16px 40px;
    }
    .vb-faq-nav {
        gap: 6px;
        padding: 10px 12px;
    }
    .vb-faq-nav__pill {
        padding: 6px 14px;
        font-size: 11px;
    }
    .vb-faq-section__header {
        padding: 32px 0 24px;
    }
    .vb-faq-section__title {
        font-size: 22px;
    }
    .vb-faq-section__hero {
        padding: 24px 20px;
        min-height: 140px;
        border-radius: 8px;
    }
    .vb-faq-section__hero-text .vb-faq-section__title {
        font-size: 26px;
        letter-spacing: 3px;
    }
    .vb-faq-section__hero-img {
        width: 110px;
        height: 110px;
    }
    .vb-faq-item summary {
        padding: 16px 0;
        font-size: 14px;
    }
    .vb-faq-item__answer {
        font-size: 13px;
        padding: 0 0 16px;
    }
    .vb-faq-cta__links {
        flex-direction: column;
        align-items: center;
    }
    .vb-faq-cta__btn {
        width: 200px;
        text-align: center;
    }
}
