.order-fast-checkout-block {    border: 2px dashed #3a3a3a;
    border-radius: 10px;
    padding: 10px 15px;}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}document.addEventListener("DOMContentLoaded", function () {
    // Créer un lien pour le bouton WhatsApp
    const whatsappButton = document.createElement("a");
    whatsappButton.href = "https://wa.me/21628440802";
    whatsappButton.target = "_blank";
    whatsappButton.setAttribute("aria-label", "Contactez-nous sur WhatsApp");
    whatsappButton.style.position = "fixed";
    whatsappButton.style.bottom = "20px";
    whatsappButton.style.right = "20px";
    whatsappButton.style.width = "60px";
    whatsappButton.style.height = "60px";
    whatsappButton.style.backgroundColor = "#25d366";
    whatsappButton.style.borderRadius = "50%";
    whatsappButton.style.display = "flex";
    whatsappButton.style.justifyContent = "center";
    whatsappButton.style.alignItems = "center";
    whatsappButton.style.boxShadow = "0 4px 6px rgba(0, 0, 0, 0.1)";
    whatsappButton.style.textDecoration = "none";
    whatsappButton.style.zIndex = "1000";
    whatsappButton.style.transition = "transform 0.3s ease, box-shadow 0.3s ease";

    // Ajouter un effet au survol
    whatsappButton.addEventListener("mouseover", function () {
        whatsappButton.style.transform = "scale(1.1)";
        whatsappButton.style.boxShadow = "0 6px 8px rgba(0, 0, 0, 0.15)";
    });

    whatsappButton.addEventListener("mouseout", function () {
        whatsappButton.style.transform = "scale(1)";
        whatsappButton.style.boxShadow = "0 4px 6px rgba(0, 0, 0, 0.1)";
    });

    // Ajouter l'icône WhatsApp
    const whatsappIcon = document.createElement("img");
    whatsappIcon.src = "https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg";
    whatsappIcon.alt = "WhatsApp";
    whatsappIcon.style.width = "32px";
    whatsappIcon.style.height = "32px";
    whatsappIcon.style.filter = "invert(1)";

    // Ajouter l'icône au bouton
    whatsappButton.appendChild(whatsappIcon);

    // Ajouter le bouton au DOM
    document.body.appendChild(whatsappButton);
});


.whatsapp-button img {
    width: 32px;
    height: 32px;
    filter: invert(1);
}