/* Animated green style for WooCommerce Checkout/Place Order buttons */
.woocommerce a.button.checkout,
.woocommerce-page a.button.checkout,
.woocommerce button.button.alt#place_order,
.woocommerce-page button.button.alt#place_order,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    background-color: #27ae60 !important;
    color: #ffffff !important;
    animation: pulse-green-dc4b33cf 2s infinite !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
}

.woocommerce a.button.checkout:hover,
.woocommerce button.button.alt#place_order:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #219150 !important;
    transform: scale(1.02) !important;
}

@keyframes pulse-green-dc4b33cf {
    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);
    }
}
