/* window.dataLayer = window.dataLayer || []; var cartItems = []; var productElements = document.querySelectorAll('li[data-hook="CartItemsDataHook.item"]'); var Tprice= document.querySelector('dd[data-hook="Total.formattedValue"]'); if(Tprice) {var priceTotal = Tprice.innerText.split("$")[1];} else { var priceTotal=0;} productElements.forEach(function(productElement) { // Use productElement to scope the querySelector for each product var productName = productElement.querySelector('p[data-hook="CartItemDataHook.name"]').innerText; //working // Get the price element from within the current productElement var priceText = productElement.querySelector('span[data-hook="CartItemDataHook.price"]').innerText.trim(); // working var price = parseFloat(priceText.replace('$', '')); // Fetch the quantity var quantity = parseFloat(productElement.querySelector('input[aria-label="Choose quantity"]').value); var totalPrice = price * quantity; var items = { item_id: productName.replace(/\s/g, "_"), // Replacing spaces with underscores item_name: productName, item_category: productName.split(" ")[0], price: totalPrice, quantity: quantity }; cartItems.push(items); }); console.log("Cart details:", cartItems); console.log("Pushing cartPageView to adobeDataLayer..."); window.dataLayer = window.dataLayer || []; dataLayer.push({ ecommerce: null }); // Clear the previous ecommerce object. dataLayer.push({ event: "add_to_cart", ecommerce: { currency: "USD", value: priceTotal, items: cartItems } }); */
top of page

Loyalty

Earn points and turn them into rewards

  1. 01

    Sign Up

    Sign up as a member to start enjoying the loyalty program

  2. 02

    Earn Points

    Earn points by signing up to the site and by placing orders.

  3. 03

    Redeem Rewards

    Redeem points for various discounts.

Program tiers

Reach new tiers as you earn more points.

  1. Bronze

    0 total earned points required

    Bronze member who earned up-to 500 points


    Earn Points

    • Purchase a products

      Get 100 points

    • Sign up to the site

      Get 50 points

    Redeem Rewards

    • Flexible reward

      10 Points = $1 discount

  2. Silver

    501 total earned points required

    Silver member who earned 501-1000 points


    Earn Points

    • Purchase a products

      Get 100 points

  3. Gold

    1,001 total earned points required

    Gold member who earned 1001-2000 points


    Earn Points

    • Purchase a products

      Get 100 points

  4. Platinum

    2,001 total earned points required

    Platinum member who earned 2001 & above points


    Earn Points

    • Purchase a products

      Get 100 points

bottom of page