Skip to content
We Are Proudly A Canadian Company 🇨🇦 - We Offer Free Shipping Over $79* Across Canada
We Are Proudly A Canadian Company 🇨🇦 - We Offer Free Shipping Over $79* Across Canada

Country

Cappuccino Cups

  • Original price $120.10 - Original price $120.10
    Original price
    $120.10
    $120.10 - $120.10
    Current price $120.10

    Lavazza Java Jacket Small 8 & 12 oz (1300/Case)

    Lavazza

    Lavazza Java Jacket Small 8 & 12 oz (1300/Case)

    Original price $120.10 - Original price $120.10
    Original price
    $120.10
    $120.10 - $120.10
    Current price $120.10
    Sold out

Compare products

0 of 3 items selected

Select first item to compare

Select second item to compare

Select third item to compare

Compare
// Tracking view_item document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll('.product-form--atc-button').forEach(button => { button.addEventListener('click', function (event) { event.preventDefault(); // Prevents the default action for debugging let product = { item_id: "", item_name: "", price: 0, currency: "CAD" }; // Push event to the dataLayer window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: "add_to_cart", ecommerce: { currency: product.currency, value: product.price, items: [product] } }); console.log("đź›’ add_to_cart event pushed:", product); // Allow form submission after tracking setTimeout(() => { event.target.closest("form").submit(); }, 300); }); }); }); // begin_checkout