/* ============================================================
   Product FAQ Widget — Beps PuroOmega Widgets
   Acordeón de preguntas frecuentes por producto
   ============================================================ */

/* ── 1. CONTENEDOR ───────────────────────────────────────────── */
.beps-product-faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 764px;
    width: 100%;
}

/* ── 2. ITEM ─────────────────────────────────────────────────── */
.beps-faq__item {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #E8E8E8;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.beps-faq__item--open {
    border-color: #130F32;
    border-width: calc(1px + 1px);
}

/* ── 3. HEADER (BOTÓN) ───────────────────────────────────────── */
.beps-faq__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    outline: none;
}

.beps-faq__header:hover,
.beps-faq__header:focus {
    background: none !important;
    color: inherit !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.beps-faq__header:focus-visible {
    outline: 2px solid #130F32;
    outline-offset: -2px;
    border-radius: 14px;
}

/* ── 4. TÍTULO ───────────────────────────────────────────────── */
.beps-faq__title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #130F32;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    margin: 0;
}

/* ── 5. ICONO +/− ────────────────────────────────────────────── */
.beps-faq__icon {
    font-size: 28px;
    font-weight: 300;
    color: #130F32;
    line-height: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding-top: 0.1em;
}

/* ── 6. CUERPO / RESPUESTA ───────────────────────────────────── */
.beps-faq__body {
    padding: 0 24px 22px;
}

.beps-faq__body p,
.beps-faq__body {
    font-size: 18px;
    font-weight: 400;
    color: #130F32;
    line-height: 1.65;
    margin: 0;
}

/* ── 7. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .beps-faq__title {
        font-size: 17px;
    }

    .beps-faq__body,
    .beps-faq__body p {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .beps-product-faq {
        gap: 12px;
    }

    .beps-faq__header {
        padding: 16px 18px;
        gap: 12px;
    }

    .beps-faq__title {
        font-size: 15px;
    }

    .beps-faq__body,
    .beps-faq__body p {
        padding: 0 18px 16px;
        font-size: 15px;
    }

    .beps-faq__icon {
        font-size: 24px;
    }
}
