.custom-view-cart-bar {
            background-color: #007bff;
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 8px;
            margin: 0 auto 5% auto;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 15px;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }

        .custom-view-cart-bar a.added_to_cart {
            background-color: #0056b3;
            color: #fff;
            padding: 3px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
            margin-left: 15px;
        }
		a.added_to_cart.wc-forward {
    	margin-top: 0%;
		}	

        .custom-view-cart-bar a.added_to_cart:hover {
            background-color: #003d80;
        }

        /* Hide default "view cart" under Add to Cart button */
        .woocommerce-variation-add-to-cart a.added_to_cart {
            display: none !important;
        }
/* Responsive for small screens */
@media (max-width: 600px) {
    .custom-view-cart-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        font-size: 14px;
    }

    .custom-view-cart-bar a.added_to_cart {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}