/* Clean up the Add to Cart area on product pages */

/* Force the Wishlist button to appear on a new line below the Add to Cart button */
.single-product .product .cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.single-product .product .cart .tinv-wraper.tinv-wishlist {
    width: 100%;
    margin-top: 15px;
    flex-basis: 100%;
    order: 10;
}

/* Hide the "View Cart" (Warenkorb anzeigen) notice completely as requested */
.woocommerce-message {
    display: none !important;
}
