/**
 * FORÇA BOTÃO VERDE - SEMPRE VERDE, NUNCA MUDA
 */

/* Todos os botões de compra - VERDE FIXO */
button[name="add"],
.product-form__submit,
.product-form button[type="submit"],
form[action="/cart/add"] button[type="submit"],
.buy-buttons button[type="submit"],
product-form-component button[type="submit"],
.buy-buttons-block button[type="submit"] {
    background: rgb(37, 196, 37) !important;
    background-color: rgb(37, 196, 37) !important;
    color: #ffffff !important;
    border-color: rgb(37, 196, 37) !important;
    opacity: 1 !important;
    filter: brightness(1) !important;
    -webkit-filter: brightness(1) !important;
}

/* Hover - verde mais escuro */
button[name="add"]:hover,
.product-form__submit:hover,
.product-form button[type="submit"]:hover {
    background: rgb(20, 182, 125) !important;
    background-color: rgb(20, 182, 125) !important;
}

/* Estados disabled, loading, is-added - SEMPRE VERDE */
button[name="add"][disabled],
button[name="add"].is-loading,
button[name="add"].is-added,
button[name="add"][aria-disabled="true"] {
    background: rgb(37, 196, 37) !important;
    background-color: rgb(37, 196, 37) !important;
    opacity: 1 !important;
}

