/* Conteneur pleine largeur en bas de toutes les pages */
.boutons-global {
    width: 100vw;
    margin-top: 15px !important;
    margin-bottom: 20px !important;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: transparent;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Style des boutons */
.bouton-custom {
    flex: 0 0 48%;
    max-width: 48%;
    text-decoration: none;
    border: 2px solid #ffffff !important;
    border-radius: 0;
    padding: 14px;
    font-weight: bold;
    font-size: 26px !important;
    text-align: center;
    line-height: 1.1;
    box-shadow: none !important;
    white-space: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    background: transparent;
    text-shadow: none !important;
    color: inherit;
}

/* Variante : bouton "ADHÉRER" */
.bouton-custom.btn-adherer {
    color: #ff3b3b !important;
    background: #000 !important;
}

/* Variante : bouton "FAIRE UN DON" */
.bouton-custom.btn-don {
    color: #ffd904 !important;
    background: #000 !important;
}

/* Sous-texte des boutons */
.bouton-custom span {
    display: block;
    font-weight: normal;
    font-size: 14px !important;
    margin-top: 2px;
    line-height: 1.1;
    box-shadow: none !important;
    text-shadow: none !important;
    word-break: break-word;
    color: #ffffff !important;
}

/* Responsive mobile */
@media (max-width: 600px) {
    .boutons-global {
        flex-wrap: nowrap;
    }

    .bouton-custom {
        font-size: 18px !important;
        padding: 8px !important;
    }
}

/* Conteneur vertical dans le widget */
.boutons-widget {
    display: flex;
    flex-direction: column;
    margin-top: 20px !important;
    gap: 10px;
}

/* Boutons du widget */
.bouton-widget {
    text-decoration: none;
    border: 2px solid #ffffff !important;
    border-radius: 0;
    padding: 14px;
    font-weight: bold;
    font-size: 26px !important;
    text-align: center;
    line-height: 1.1;
    box-shadow: none !important;
    white-space: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    background: transparent;
    text-shadow: none !important;
    color: inherit;
}

/* Couleurs précises des boutons du widget */
.bouton-widget.btn-adherer {
    color: #ff3b3b !important;
    background: #000000 !important;
}

.bouton-widget.btn-don {
    color: #ffd904 !important;
    background: #000000 !important;
}

/* Sous-texte */
.bouton-widget span {
    display: block;
    font-weight: normal;
    font-size: 14px !important;
    margin-top: 2px;
    line-height: 1.1;
    box-shadow: none !important;
    text-shadow: none !important;
    word-break: break-word;
    color: #ffffff !important;
}
