/* Green pulse animation for Acheter maintenant (Buy Now / Add to Cart) buttons */
.woocommerce a.button.add_to_cart_button,
.woocommerce button.button.single_add_to_cart_button,
.woocommerce-page a.button.add_to_cart_button,
.woocommerce-page button.button.single_add_to_cart_button {
    background-color: #27ae60 !important;
    color: #ffffff !important;
    animation: pulse-green-e58b012f 2s infinite !important;
    transition: all 0.3s ease !important;
}

.woocommerce a.button.add_to_cart_button:hover,
.woocommerce button.button.single_add_to_cart_button:hover {
    background-color: #219150 !important;
    transform: scale(1.03) !important;
}

@keyframes pulse-green-e58b012f {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}
