/* --- Bouton WhatsApp Blindé Universel --- */

/* On force le bouton à être un bloc "Flex" rigide */
a.wwa-modern-button {
    display: flex !important;
    flex-direction: row !important; /* Force le côté à côté */
    flex-wrap: nowrap !important;   /* Interdit de passer à la ligne */
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px !important;
    border-radius: 50px !important;
    background-color: var(--wwa-btn-color, #25D366) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    margin: 5px 0 !important;
    width: auto !important;
    min-width: 150px !important;
    line-height: 1 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* On force l'icône à rester petite et fixe */
a.wwa-modern-button .wwa-icon-wrapper,
a.wwa-modern-button svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important; /* NE JAMAIS AGRANDIR */
    max-width: 20px !important;
    flex: 0 0 20px !important;  /* Empêche le rétrécissement ou agrandissement */
    margin-right: 8px !important;
    margin-bottom: 0 !important;
    fill: #ffffff !important;   /* Force la couleur blanche */
}

/* On force le texte à rester sur une seule ligne */
a.wwa-modern-button span.wwa-text {
    white-space: nowrap !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
}