/***********************************************************************************
* add-to-cart-button Styles
***********************************************************************************/

.add-to-cart-button-success {
    background-color: #28a745 !important; /* Green background */
    color: #ffffff !important; /* White text */
    border-color: #28a745 !important; /* Green border */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

/* Disabled button appearance */
.single_add_to_cart_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}