/* UNIPLAST — "Add to Cart" / "View Cart" button on the product detail page.
   The button should turn green once the product is in the cart, but the
   site's compiled CSS is missing that rule, so it falls back to the
   default navy hover style instead. This file adds it back, with enough
   specificity to beat the default .btn-outline:hover navy style. */

.product-detail-cart-btn.is-in-cart {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}

.product-detail-cart-btn.is-in-cart:hover,
.product-detail-cart-btn.is-in-cart:focus {
    background: #1ebd5a !important;
    border-color: #1ebd5a !important;
    color: #fff !important;
}
