/**
 * FAQ Numeria — style Florâme® (maquette Figma)
 *
 * Fermé : carte blanche, bordure #F0F2EF, titre olive (The Seasons),
 *         pastille olive avec « + » blanc.
 * Ouvert : carte verte #828D7D, titre + texte blancs,
 *          pastille blanche avec « × » olive.
 */

#faq-numeria.toggles {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 0;
}

/* ── Carte ── */
#faq-numeria .toggle {
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #f0f2ef;
    border-radius: 18px;
        box-shadow:3px 3px 8px 0 rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* ── En-tête cliquable ── */
#faq-numeria .toggle .toggle-title {
    margin: 0;
    padding: 0;
    border: 0;
}

#faq-numeria .toggle .toggle-title a.toggle-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 28px 35px;
    border: 0;
    text-decoration: none;
    background: none;
}

#faq-numeria .toggle .faq-q {
    font-family: "the-seasons";
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #828d7d;
    transition: color 0.3s ease;
}

/* ── Pastille +/- (dessinée en CSS) ── */
#faq-numeria .faq-toggle-icon {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #828d7d;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#faq-numeria .faq-toggle-icon::before,
#faq-numeria .faq-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

#faq-numeria .faq-toggle-icon::before { /* barre horizontale */
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

#faq-numeria .faq-toggle-icon::after { /* barre verticale */
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

/* ── Contenu (réponse) ── */
#faq-numeria .faq-item-inner {
    border: 0;
    padding: 0;
}

#faq-numeria .inner-toggle-wrap {
    padding: 0 35px 35px 35px;
}

#faq-numeria .toggle .wpb_wrapper,
#faq-numeria .toggle .wpb_wrapper p,
#faq-numeria .toggle .wpb_wrapper li {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #828d7d;
}

#faq-numeria .toggle .wpb_wrapper p {
    margin: 0 0 1em;
}

#faq-numeria .toggle .wpb_wrapper p:last-child {
    margin-bottom: 0;
}

/* ── État ouvert : carte verte ── */
#faq-numeria .toggle.open {
    background: #828d7d;
    border-color: #828d7d;
    box-shadow:3px 3px 8px 0 rgba(0, 0, 0, 0.08);
}

#faq-numeria .toggle.open .faq-q {
    color: #ffffff;
}

#faq-numeria .toggle.open .wpb_wrapper,
#faq-numeria .toggle.open .wpb_wrapper p,
#faq-numeria .toggle.open .wpb_wrapper li,
#faq-numeria .toggle.open .wpb_wrapper a {
    color: #ffffff;
}

/* Pastille : blanche + croix olive, le « + » pivote en « × » */
#faq-numeria .toggle.open .faq-toggle-icon {
    background: var(--Vert-olive-clair, #B3BEAF);
    transform: rotate(45deg);
    color:#FFF !important;
}

#faq-numeria .toggle.open .faq-toggle-icon::before,
#faq-numeria .toggle.open .faq-toggle-icon::after {
    background: #fff;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    #faq-numeria .toggle .toggle-title a.toggle-heading {
        padding: 20px 22px;
        gap: 16px;
    }
    #faq-numeria .toggle .faq-q {
        font-size: 18px;
    }
    #faq-numeria .inner-toggle-wrap {
        padding: 0 22px 26px;
    }
}
