/* WooCommerce Cart Buttons Custom Colors */
.woocommerce-cart .woocommerce table.cart td.actions .button[name="update_cart"],
.woocommerce-cart .woocommerce table.cart td.actions .button[name="apply_coupon"] {
    background-color: #59bc26 !important;
    color: #ffffff !important;
    border: 1px solid #59bc26 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Update Cart Hover style - darker green */
.woocommerce-cart .woocommerce table.cart td.actions .button[name="update_cart"]:hover {
    background-color: #46961e !important;
    border-color: #46961e !important;
    color: #ffffff !important;
}

/* Apply Coupon Hover style - outlined with user's theme color */
.woocommerce-cart .woocommerce table.cart td.actions .button[name="apply_coupon"]:hover {
    background-color: #ffffff !important;
    border-color: #59bc26 !important;
    color: #59bc26 !important;
}

/* Make coupon text field wider so full text fits */
.woocommerce-cart .woocommerce table.cart td.actions .coupon .input-text {
    width: 220px !important;
    min-width: 180px !important;
}
