button.button.wishlist-btn.in-cart{
    font-size: 24px;
    background-color: #e6394700;
    border: none;
    color: red;
}

button.button.wishlist-btn.out-cart{
    font-size: 24px;
    background-color: #e6394700;
    border: none;
    color: green;
}

button.button.wishlist-btn.out-cart:hover{
    background-color: green;
    color: white;
}
button.button.wishlist-btn.in-cart:hover{
    background-color: #e63947;
    color: white;
}

button.remove-from-wishlist-btn{
    font-size: 24px;
    background-color: #e6394700;
    border: none;
    color: red;
}

button.remove-from-wishlist-btn:hover{
    background-color: #e63947;
    color: white;
}

a.add_to_cart_button i {
    font-size: 24px;
    margin: 0;
}


a.add_to_cart_button {
    width: 50px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: white;
    color: rgb(128, 48, 48);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}


a.add_to_cart_button:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}