/* Geabsorbeerd 2026-08-17 uit awcf_fbt_add_all: gecombineerde voeg-alles-toe-knop */
/*
 * FBT — gecombineerde "voeg alles toe"-knop (variabele producten).
 * Alleen actief in secties waar onze JS de knop injecteert (.awcf-fbt-addall-active),
 * dus op simpele producten (met YITH's eigen knop) verandert er niets.
 */

/* Hoofdproduct-item weer tonen (klantwens: zichtbaar + aangevinkt). Overschrijft de
 * globale .yith-wfbt-items li:first-child{display:none} uit awcf_algemene_stijl;
 * deze module laadt alfabetisch later, dus wint bij gelijke specificiteit. */
.yith-wfbt-section.awcf-fbt-addall-active .yith-wfbt-items li:first-child {
    display: block !important;
}

.awcf-fbt-addall-wrap {
    margin-top: 14px;
}

.awcf-fbt-addall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 20px;
    background: #02b900;
    color: #fff;
    border: 0;
    border-radius: 90px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color .15s ease, opacity .15s ease;
}

.awcf-fbt-addall:hover {
    background: #123c57;
}

.awcf-fbt-addall.loading {
    opacity: .6;
    pointer-events: none;
}

.awcf-fbt-addall.added {
    background: #123c57;
}
