www.kikimilk.com Open in urlscan Pro
23.227.38.74  Public Scan

Submitted URL: http://www.kikimilk.com/
Effective URL: https://www.kikimilk.com/
Submission: On April 10 via api from US — Scanned from CA

Form analysis 2 forms found in the DOM

POST /cart

<form action="/cart" method="post" class="cart__form" novalidate="">
  <script defer="defer">
    $(function() {
      rivets.binders.color = function(el, value) {
        el.style.color = value
      }
      rivets.binders.bg_color = function(el, value) {
        el.style.background = value
      }
      // Adds zero if item is less than 10.
      rivets.formatters.and_not = function(expression1, expression2) {
        return Boolean(expression1) && !Boolean(expression2);
      }
      // Adds zero if item is less than 10.
      rivets.formatters.round_off = function(number) {
        return parseFloat(number).toFixed(0);
      }
      // Adds zero if item is less than 10.
      rivets.formatters.with_zero = function(value) {
        return parseFloat(value) < 10 ? `0${ value }` : value;
      }
      // Greater than or equal-to format.
      rivets.formatters.gte = function(num1, num2) {
        return parseFloat(num1) >= parseFloat(num2);
      }
      // Division format.
      rivets.formatters.div = function(num1, num2) {
        console.log({
          num1,
          num2
        });
        return parseFloat(num1) / parseFloat(num2);
      }
      // Formats number to currency. 
      rivets.formatters.currency = function(value) {
        const amount = (parseFloat(value) / 100).toFixed(2).replace(/[.,]00$/, "");
        return `$${ amount }`;
      }
      // Checks if array is truthy.
      rivets.formatters.has_items = function(value) {
        console.log('value', value);
        return value && value.length > 0;
      }
      // Checks if array is a Sample pack Property.
      rivets.formatters.has_propery = function(items) {
        for (var i = 0; i < items.length; i++) {
          if (items[i].properties != null && items[i].properties['_samplePack'] != null) {
            console.log(items[i].properties);
            return true;
          }
        }
      }
      // Checks if cart has no subscription item.
      rivets.formatters.no_subscription_items = function(items) {
        if (items && items.length > 0) {
          for (var i = 0; i < items.length; i++) {
            if (items[i].selling_plan_allocation && items[i].selling_plan_allocation.selling_plan) {
              return false;
            }
          }
        }
        return true;
      }
      // Checks whether an ID is not in the cart.
      rivets.formatters.not_in_cart = function(id, collection) {
        let flag = true;
        if (collection && Array.isArray(collection)) {
          // If collection already exceeds 2, hide callouts.
          // if( collection.length >= 2 ) flag = false;
          if ($('.cart__product .props[data-up-tag="straws"]').length == 1 && $('.cart__product .props[data-straws="true"]').length == 0) flag = true;
          else if ($('.cart__product .props[data-up-tag]:not([data-up-tag="straws"])').length >= 4) flag = false;
          else {
            collection.forEach(item => {
              JSON.stringify(item);
              // If flag isn't false yet, and a match is found, set flag to true.
              if (flag && id == item.id) flag = false;
            });
          }
        }
        return flag;
      }
      $(document).on('cart.ready', function(event, cart) {
        upsellLogic(cart);
      });
      $(document).on('cart.requestComplete', function(event, cart) {
        upsellLogic(cart);
      });
      $(document).on('cart.requestStarted', function(event, cart) {
        console.log('cart.requestStarted');
      });
    });

    function upsellLogic(cart) {
      macNutPreorderText(cart);
      macNutFreeStraw(cart);
      var upsellTag = ['8oz_original', '8oz_chocolate', '32oz_original', '32oz_chocolate', '32oz_macnut'];
      var remianUpsellTag = JSON.parse(JSON.stringify(upsellTag));
      var upsellCombi = {
        0: ['8oz_chocolate', '32oz_original'],
        1: ['8oz_original', '32oz_chocolate'],
        2: ['8oz_original', '32oz_chocolate'],
        3: ['8oz_chocolate', '32oz_original'],
        4: ['32oz_original', '32oz_chocolate']
      };
      $('.cart__callout[data-up-tag]').hide();
      if (cart.item_count == 0) {
        $('.cart__callout[data-up-tag="' + upsellTag[0] + '"], .cart__callout[data-up-tag="' + upsellTag[1] + '"]').show();
        $('.cart__callout[data-straws="true"]').hide();
      } else {
        remianUpsellTag = arrayRetun(remianUpsellTag, $('.cart__product .props[data-up-tag]'));
        console.log('remianUpsellTag ', remianUpsellTag, upsellTag);
        if ($('.cart__product .props[data-up-tag="straws"]').length > 0 && $('.cart__callout[data-up-tag="straws"]').length > 0) {
          showUpcell('', true);
        } else {
          if ($('.cart__product .props[data-up-tag]').length == 1) {
            var _idx = upsellTag.indexOf($('.cart__product .props[data-up-tag]').attr('data-up-tag'));
            if (_idx > -1) {
              showUpcell(upsellCombi[_idx]);
            }
          }
          if (remianUpsellTag.length == 3 && remianUpsellTag.length > 0) {
            var _idx = upsellTag.indexOf($('.cart__product .props[data-up-tag]:not([data-up-tag="straws"])').attr('data-up-tag'));
            if (_idx > -1) {
              showUpcell(upsellCombi[_idx]);
            }
          }
          if (remianUpsellTag.length < 3 && remianUpsellTag.length > 0) {
            showUpcell(remianUpsellTag);
          }
          if (remianUpsellTag.length == upsellTag.length) {
            showUpcell(remianUpsellTag.splice(0, 2));
          }
        }
      }
      return;
    }

    function macNutPreorderText(cart) {
      let _preOrderFound = false;
      for (var i = 0; i < cart.items.length; i++) {
        let item = cart.items[i];
        if (item.properties['_PreOrder'] != null && item.properties['_PreOrder'] == 'mac-nut') {
          $('.ship-mac-nut').removeClass('hide');
          _preOrderFound = true;
          break;
        }
      }
      if (!_preOrderFound) $('.ship-mac-nut').addClass('hide');
      return;
    }

    function macNutFreeStraw(cart) {
      let _appedFreeText = false,
        count = 0,
        items_subtotal_price = cart.items_subtotal_price;
      $('.cart-items .cart__product.enableFreeText .product__price .mac-nut-straw-free, .cart-items .cart__product.enableFreeText .product__quantity .quntityfreeText').remove();
      $('.cart-items .cart__product.enableFreeText .product__price.freeText').removeClass('freeText');
      $('.cart-items .cart__product.enableFreeText .product__quantity.freeTextQty').removeClass('freeTextQty');
      $('.cart-items .cart__product.enableFreeText').removeClass('enableFreeText');
      for (var i = 0; i < cart.items.length; i++) {
        let item = cart.items[i];
        if (item.properties['_hasStraws'] != null && item.properties['_hasStraws'] == "true" && item.properties['_PreOrder'] == "mac-nut" && item.quantity == 1) {
          console.log('-------------------------------------------------------');
          console.log('item', item, $('.cart-items .cart__product:eq(' + i + ')'));
          console.log('-------------------------------------------------------');
          count = count + 1;
          $('.cart-items .cart__product:eq(' + i + ')').addClass('enableFreeText');
          items_subtotal_price = items_subtotal_price - item.line_price;
        }
        if (item.properties['_PreOrder'] != null && item.properties['_PreOrder'] == 'mac-nut' && item.properties['_hasStraws'] == null) {
          count = count + 1;
        }
        if (cart.item_count == 1 && item.properties['_macNutFreeStraw'] != null) {}
      }
      if (count == 2) {
        $('.cart-items .cart__product.enableFreeText').find('.product__price .mac-nut-straw-free, .product__quantity .quntityfreeText').remove();
        $('.cart-items .cart__product.enableFreeText').find('.product__price').append('<div class="mac-nut-straw-free">Free</div>').addClass('freeText');
        $('.cart-items .cart__product.enableFreeText').find('.product__quantity').append('<div class="quntityfreeText">01<span> Pack</span></div>').addClass('freeTextQty');
        items_subtotal_price = '$' + (items_subtotal_price / 100).toFixed(2);
        $('.cart__form-footer .subtotal-number').empty().text(items_subtotal_price);
      }
      return true;
    }

    function arrayRetun(_array, _each) {
      const array = _array;
      $(_each).each(function(idx, ele) {
        const index = array.indexOf($(ele).attr('data-up-tag'));
        if (index > -1) { // only splice array when item is found
          array.splice(index, 1); // 2nd parameter means remove one item only
        }
      });
      console.log('arrayRetun', array);
      return array;
    }

    function showUpcell(_array, straws = false) {
      console.log(straws, 'straws');
      if (straws) {
        $('.cart__callout[data-up-tag]').hide();
        if ($('.cart__callout[data-up-tag]:visible').length == 1 && $('.cart__callout[data-up-tag="straws"]').length > 0) {
          $('.cart__callout[data-up-tag="straws"]').addClass('onlyShow');
        }
        $('.cart__callout[data-straws="true"]').show();
      } else {
        for (var i = 0; i < _array.length; i++) {
          $('.cart__callout[data-up-tag="' + _array[i] + '"]').show();
        }
      }
      return true;
    }
  </script>
  <div class="cart__form-top">
    <div class="cart__title">
      <h1 class="h1">Your Cart</h1>
    </div>
    <div class="cart__shipping cart-shipping cSh-SP_true" rv-show="cart.items | has_items" rv-showsp="cart.items  | has_propery" style="display: none;">
      <div rv-show="cart.items ">
        <p class="cart-shipping__met cSh-SP_text"> Congratulations! You're enjoying free US shipping. </p> <!-- rivets: if cart.total_price | gte 5000  -->
        <p class="ship-mac-nut hide">Mac-Nut is on Pre-order! Your entire order will ship in 1-2 weeks.</p> <!-- rivets: if cart.total_price | lt 5000  -->
        <p class="cart-shipping__not-met">You're <span class="price" rv-html="5000 | minus cart.total_price | currency">$50</span> away from free US shipping! </p>
      </div>
    </div>
    <div class="cart-items"> <!-- rivets: each-item --><!-- rivets: if 43300516397295 | not_in_cart cart.items -->
      <div class="cart__callout callout" data-product-id="43300516397295" data-background-color="#d1ebf7" data-text-color="#006853" data-product-title="Original" data-compare-price="" data-up-tag="8oz_original"
        style="background-color: rgb(209, 235, 247); display: block;">
        <div class="callout__inner">
          <div class="callout__image"> <img srcset="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_OG2-3Q-Web_x109.png?v=1663192967 44w" class=" " sizes="44px" alt="Original Kiki Milk - 8 fl oz - Pack of 12" loading="lazy"
              width="44" height="auto"> </div>
          <div class="callout__body">
            <p class="callout__title"> Original </p>
            <div class="callout__rating rating">
              <div class="yotpo bottomLine yotpo-medium" data-appkey="fkgCuWjzOPT8D6D14Gqrpww31T69tovsmmcTPgDI" data-domain="kiki-milk.myshopify.com" data-product-id="6838052749488" data-product-models="6838052749488"
                data-name="Original Kiki Milk - 8 fl oz - Pack of 12" data-url="https://www.kikimilk.com/products/plant-milk-original"
                data-image-url="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_OG2-3Q-Web_large.png%3Fv=1663192967"
                data-description="<meta charset=&quot;utf-8&quot;><div id=&quot;productDescription_feature_div&quot; class=&quot;celwidget&quot; data-feature-name=&quot;productDescription&quot; data-csa-c-type=&quot;widget&quot; data-csa-c-content-id=&quot;productDescription&quot; data-csa-c-slot-id=&quot;productDescription_feature_div&quot; data-csa-c-asin=&quot;&quot; data-csa-c-is-in-initial-active-row=&quot;false&quot; data-csa-c-id=&quot;8xcbjh-qwe3mz-x6r79s-2ear42&quot; data-cel-widget=&quot;productDescription_feature_div&quot; data-mce-fragment=&quot;1&quot;><div data-mce-fragment=&quot;1&quot;><div data-feature-name=&quot;productDescription&quot; data-template-name=&quot;productDescription&quot; id=&quot;productDescription_feature_div&quot; class=&quot;a-row feature&quot; data-cel-widget=&quot;productDescription_feature_div&quot; data-mce-fragment=&quot;1&quot;><div id=&quot;productDescription&quot; class=&quot;a-section a-spacing-small&quot; data-mce-fragment=&quot;1&quot;><p data-mce-fragment=&quot;1&quot;><span data-mce-fragment=&quot;1&quot;>Say hello to Original Kiki Milk, the most delicious, nutrient-dense, organic plant-based milk on Planet Earth. And finally say farewell to milk that uses additives and preservatives like gums, oils and artificial flavors. Original Kiki Milk is made exclusively with organic whole foods like oats, sprouted pumpkin seeds, hemp seeds, coconuts, and a nourishing superfood blend of <meta charset=&quot;utf-8&quot;>Aquamin™ (seaweed), banana, and amla. This wildly nutritious and climate friendly beverage fuels your play all day long.</span></p></div></div></div></div>"
                data-bread-crumbs="8oz_original;Product_Original;Size_8 oz;YGroup_milk;" data-allow-empty="" data-yotpo-element-id="1">
                <div class="yotpo-display-wrapper" style="visibility: hidden;">
                  <div class="standalone-bottomline" data-source="default" tabindex="-1">
                    <div class="yotpo-bottomline pull-left  star-clickable" tabindex="0"> <span class="yotpo-stars"> <span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-half-star rating-star pull-left"></span><span class="sr-only">4.7 star rating</span> </span> <a href="javascript:void(0)" class="text-m" aria-label="825 reviews" tabindex="-1">825 Reviews</a>
                      <div class="yotpo-clr"></div>
                    </div>
                    <div class="yotpo-clr"></div>
                  </div>
                  <div class="yotpo-clr"></div>
                </div>
              </div>
            </div><button class="callout__button button add-to-cart" type="button"> Add to Cart </button>
          </div>
        </div>
        <div class="callout__subscription callout-subscription">
          <p class="callout-subscription__title">Add to subscription plan?</p>
          <div class="callout-subscription__options"><label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-6838052749488" value="3155558639" checked=""
                aria-label="selling_plan-6838052749488">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">2 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-6838052749488" value="3155591407" aria-label="selling_plan-6838052749488">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">4 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-6838052749488" value="3155624175" aria-label="selling_plan-6838052749488">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">6 Week(s)</span> </p>
            </label> </div>
          <div class="callout-subscription__actions"> <button type="button" class="callout-subscription__add button">Add</button> <button type="button" class="callout-subscription__cancel">Skip</button> </div>
        </div>
      </div><!-- rivets: if 43834130890991 | not_in_cart cart.items -->
      <div class="cart__callout callout" data-product-id="43834130890991" data-background-color="#d1ebf7" data-text-color="#006853" data-product-title="Original" data-compare-price="" data-up-tag="8oz_original"
        style="background-color: rgb(209, 235, 247);">
        <div class="callout__inner">
          <div class="callout__image"> <img srcset="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_OG2-3Q-Web_14c39ff2-07bd-468f-8f3e-801eba04a08f_x109.png?v=1678395821 44w" class=" " sizes="44px"
              alt="Original Kiki Milk - 8 fl oz - Pack of 12" loading="lazy" width="44" height="auto"> </div>
          <div class="callout__body">
            <p class="callout__title"> Original </p>
            <div class="callout__rating rating">
              <div class="yotpo bottomLine yotpo-small" data-appkey="fkgCuWjzOPT8D6D14Gqrpww31T69tovsmmcTPgDI" data-domain="kiki-milk.myshopify.com" data-product-id="8017040834799" data-product-models="8017040834799"
                data-name="Original Kiki Milk - 8 fl oz - Pack of 12" data-url="https://www.kikimilk.com/products/original-kiki-milk-8-fl-oz-pack-of-12-2"
                data-image-url="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_OG2-3Q-Web_14c39ff2-07bd-468f-8f3e-801eba04a08f_large.png%3Fv=1678395821"
                data-description="<meta charset=&quot;utf-8&quot;><div id=&quot;productDescription_feature_div&quot; class=&quot;celwidget&quot; data-feature-name=&quot;productDescription&quot; data-csa-c-type=&quot;widget&quot; data-csa-c-content-id=&quot;productDescription&quot; data-csa-c-slot-id=&quot;productDescription_feature_div&quot; data-csa-c-asin=&quot;&quot; data-csa-c-is-in-initial-active-row=&quot;false&quot; data-csa-c-id=&quot;8xcbjh-qwe3mz-x6r79s-2ear42&quot; data-cel-widget=&quot;productDescription_feature_div&quot; data-mce-fragment=&quot;1&quot;><div data-mce-fragment=&quot;1&quot;><div data-feature-name=&quot;productDescription&quot; data-template-name=&quot;productDescription&quot; id=&quot;productDescription_feature_div&quot; class=&quot;a-row feature&quot; data-cel-widget=&quot;productDescription_feature_div&quot; data-mce-fragment=&quot;1&quot;><div id=&quot;productDescription&quot; class=&quot;a-section a-spacing-small&quot; data-mce-fragment=&quot;1&quot;><p data-mce-fragment=&quot;1&quot;><span data-mce-fragment=&quot;1&quot;>Say hello to Original Kiki Milk, the most delicious, nutrient-dense, organic plant-based milk on Planet Earth. And finally say farewell to milk that uses additives and preservatives like gums, oils and artificial flavors. Original Kiki Milk is made exclusively with organic whole foods like oats, sprouted pumpkin seeds, hemp seeds, coconuts, and a nourishing superfood blend of <meta charset=&quot;utf-8&quot;>Aquamin™ (seaweed), banana, and amla. This wildly nutritious and climate friendly beverage fuels your play all day long.</span></p></div></div></div></div>"
                data-bread-crumbs="8oz_original;A/B test;Product_Original;Size_8 oz;YGroup_milk;" data-allow-empty="" data-yotpo-element-id="2">
                <div class="yotpo-display-wrapper" style="visibility: hidden;">
                  <div class="standalone-bottomline" data-source="default" tabindex="-1">
                    <div class="yotpo-bottomline pull-left  star-clickable" tabindex="0"> <span class="yotpo-stars"> <span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-half-star rating-star pull-left"></span><span class="sr-only">4.7 star rating</span> </span> <a href="javascript:void(0)" class="text-m" aria-label="825 reviews" tabindex="-1">825 Reviews</a>
                      <div class="yotpo-clr"></div>
                    </div>
                    <div class="yotpo-clr"></div>
                  </div>
                  <div class="yotpo-clr"></div>
                </div>
              </div>
            </div><button class="callout__button button add-to-cart" type="button"> Add to Cart </button>
          </div>
        </div>
        <div class="callout__subscription callout-subscription">
          <p class="callout-subscription__title">Add to subscription plan?</p>
          <div class="callout-subscription__options"><label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-8017040834799" value="3848929519" checked=""
                aria-label="selling_plan-8017040834799">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">2 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-8017040834799" value="3848962287" aria-label="selling_plan-8017040834799">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">4 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-8017040834799" value="3848995055" aria-label="selling_plan-8017040834799">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">6 Week(s)</span> </p>
            </label> </div>
          <div class="callout-subscription__actions"> <button type="button" class="callout-subscription__add button">Add</button> <button type="button" class="callout-subscription__cancel">Skip</button> </div>
        </div>
      </div><!-- rivets: if 42125673464047 | not_in_cart cart.items -->
      <div class="cart__callout callout" data-product-id="42125673464047" data-background-color="#baefe4" data-text-color="#683026" data-product-title="Chocolate" data-compare-price="" data-up-tag="8oz_chocolate"
        style="background-color: rgb(186, 239, 228); display: block;">
        <div class="callout__inner">
          <div class="callout__image"> <img srcset="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_CHOC2-3Q-Web_x109.png?v=1663193120 44w" class=" " sizes="44px" alt="Chocolate Kiki Milk - 8 fl oz - Pack of 12" loading="lazy"
              width="44" height="auto"> </div>
          <div class="callout__body">
            <p class="callout__title"> Chocolate </p>
            <div class="callout__rating rating">
              <div class="yotpo bottomLine yotpo-medium" data-appkey="fkgCuWjzOPT8D6D14Gqrpww31T69tovsmmcTPgDI" data-domain="kiki-milk.myshopify.com" data-product-id="6838051930288" data-product-models="6838051930288"
                data-name="Chocolate Kiki Milk - 8 fl oz - Pack of 12" data-url="https://www.kikimilk.com/products/plant-chocolate-milk"
                data-image-url="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_CHOC2-3Q-Web_large.png%3Fv=1663193120"
                data-description="Why make chocolate milk an indulgence when it doesn’t have to be? Enter Chocolate Kiki Milk, a dairy-free milk you can regularly enjoy, with 80% less sugar than other chocolate milks. Booyah!"
                data-bread-crumbs="8oz_chocolate;Product_Chocolate;Size_8 oz;YGroup_chocolate;" data-allow-empty="" data-yotpo-element-id="3">
                <div class="yotpo-display-wrapper" style="visibility: hidden;">
                  <div class="standalone-bottomline" data-source="default" tabindex="-1">
                    <div class="yotpo-bottomline pull-left  star-clickable" tabindex="0"> <span class="yotpo-stars"> <span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-half-star rating-star pull-left"></span><span class="sr-only">4.7 star rating</span> </span> <a href="javascript:void(0)" class="text-m" aria-label="601 reviews" tabindex="-1">601 Reviews</a>
                      <div class="yotpo-clr"></div>
                    </div>
                    <div class="yotpo-clr"></div>
                  </div>
                  <div class="yotpo-clr"></div>
                </div>
              </div>
            </div><button class="callout__button button add-to-cart" type="button"> Add to Cart </button>
          </div>
        </div>
        <div class="callout__subscription callout-subscription">
          <p class="callout-subscription__title">Add to subscription plan?</p>
          <div class="callout-subscription__options"><label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-6838051930288" value="3155460335" checked=""
                aria-label="selling_plan-6838051930288">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">2 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-6838051930288" value="3155493103" aria-label="selling_plan-6838051930288">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">4 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-6838051930288" value="3155525871" aria-label="selling_plan-6838051930288">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">6 Week(s)</span> </p>
            </label> </div>
          <div class="callout-subscription__actions"> <button type="button" class="callout-subscription__add button">Add</button> <button type="button" class="callout-subscription__cancel">Skip</button> </div>
        </div>
      </div><!-- rivets: if 43834098254063 | not_in_cart cart.items -->
      <div class="cart__callout callout" data-product-id="43834098254063" data-background-color="#baefe4" data-text-color="#683026" data-product-title="Chocolate" data-compare-price="" data-up-tag="8oz_chocolate"
        style="background-color: rgb(186, 239, 228);">
        <div class="callout__inner">
          <div class="callout__image"> <img srcset="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_CHOC2-3Q-Web_6eb80c85-a800-438c-9ce4-ee6adb80eb03_x109.png?v=1678395723 44w" class=" " sizes="44px"
              alt="Chocolate Kiki Milk - 8 fl oz - Pack of 12" loading="lazy" width="44" height="auto"> </div>
          <div class="callout__body">
            <p class="callout__title"> Chocolate </p>
            <div class="callout__rating rating">
              <div class="yotpo bottomLine yotpo-small" data-appkey="fkgCuWjzOPT8D6D14Gqrpww31T69tovsmmcTPgDI" data-domain="kiki-milk.myshopify.com" data-product-id="8017034543343" data-product-models="8017034543343"
                data-name="Chocolate Kiki Milk - 8 fl oz - Pack of 12" data-url="https://www.kikimilk.com/products/chocolate-kiki-milk-8-fl-oz-pack-of-12-2"
                data-image-url="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220707_Render_8oz_CHOC2-3Q-Web_6eb80c85-a800-438c-9ce4-ee6adb80eb03_large.png%3Fv=1678395723"
                data-description="Why make chocolate milk an indulgence when it doesn’t have to be? Enter Chocolate Kiki Milk, a dairy-free milk you can regularly enjoy, with 80% less sugar than other chocolate milks. Booyah!"
                data-bread-crumbs="8oz_chocolate;A/B test;Product_Chocolate;Size_8 oz;YGroup_chocolate;" data-allow-empty="" data-yotpo-element-id="4">
                <div class="yotpo-display-wrapper" style="visibility: hidden;">
                  <div class="standalone-bottomline" data-source="default" tabindex="-1">
                    <div class="yotpo-bottomline pull-left  star-clickable" tabindex="0"> <span class="yotpo-stars"> <span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-half-star rating-star pull-left"></span><span class="sr-only">4.7 star rating</span> </span> <a href="javascript:void(0)" class="text-m" aria-label="601 reviews" tabindex="-1">601 Reviews</a>
                      <div class="yotpo-clr"></div>
                    </div>
                    <div class="yotpo-clr"></div>
                  </div>
                  <div class="yotpo-clr"></div>
                </div>
              </div>
            </div><button class="callout__button button add-to-cart" type="button"> Add to Cart </button>
          </div>
        </div>
        <div class="callout__subscription callout-subscription">
          <p class="callout-subscription__title">Add to subscription plan?</p>
          <div class="callout-subscription__options"><label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-8017034543343" value="3849027823" checked=""
                aria-label="selling_plan-8017034543343">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">2 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-8017034543343" value="3849060591" aria-label="selling_plan-8017034543343">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">4 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-8017034543343" value="3849093359" aria-label="selling_plan-8017034543343">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">6 Week(s)</span> </p>
            </label> </div>
          <div class="callout-subscription__actions"> <button type="button" class="callout-subscription__add button">Add</button> <button type="button" class="callout-subscription__cancel">Skip</button> </div>
        </div>
      </div><!-- rivets: if 43300519149807 | not_in_cart cart.items -->
      <div class="cart__callout callout" data-product-id="43300519149807" data-background-color="#c5edff" data-text-color="#006853" data-product-title="Original Family Size" data-compare-price="" data-up-tag="32oz_original"
        style="background-color: rgb(197, 237, 255); display: none;">
        <div class="callout__inner">
          <div class="callout__image"> <img srcset="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220621_KikiMilk_OG_32oz-3Q-Web_x109.png?v=1663108236 44w" class=" " sizes="44px" alt="Original Kiki Milk • 32 fl oz • Pack of 6" loading="lazy"
              width="44" height="auto"> </div>
          <div class="callout__body">
            <p class="callout__title"> Original Family Size </p>
            <div class="callout__rating rating">
              <div class="yotpo bottomLine yotpo-medium" data-appkey="fkgCuWjzOPT8D6D14Gqrpww31T69tovsmmcTPgDI" data-domain="kiki-milk.myshopify.com" data-product-id="7830650913007" data-product-models="7830650913007"
                data-name="Original Kiki Milk • 32 fl oz • Pack of 6" data-url="https://www.kikimilk.com/products/original-kiki-milk-32oz-pack-of-6"
                data-image-url="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220621_KikiMilk_OG_32oz-3Q-Web_large.png%3Fv=1663108236"
                data-description="<meta charset=&quot;utf-8&quot;><span data-mce-fragment=&quot;1&quot;>Say hello to Original Kiki Milk, the most delicious, nutrient-dense, organic plant-based milk on Planet Earth. And finally say farewell to milk that uses additives and preservatives like gums, oils and artificial flavors. Original Kiki Milk is made exclusively with organic whole foods like oats, sprouted pumpkin seeds, hemp seeds, coconuts, and a nourishing superfood blend of</span><span data-mce-fragment=&quot;1&quot;>&nbsp;</span><meta charset=&quot;utf-8&quot;><span data-mce-fragment=&quot;1&quot;>Aquamin™ (seaweed), banana, and amla. This wildly nutritious and climate friendly beverage fuels your play all day long.</span>"
                data-bread-crumbs="32oz_original;New;Product_Original;Size_32 oz;YGroup_milk;" data-allow-empty="" data-yotpo-element-id="5">
                <div class="yotpo-display-wrapper" style="visibility: hidden;">
                  <div class="standalone-bottomline" data-source="default" tabindex="-1">
                    <div class="yotpo-bottomline pull-left  star-clickable" tabindex="0"> <span class="yotpo-stars"> <span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-half-star rating-star pull-left"></span><span class="sr-only">4.7 star rating</span> </span> <a href="javascript:void(0)" class="text-m" aria-label="825 reviews" tabindex="-1">825 Reviews</a>
                      <div class="yotpo-clr"></div>
                    </div>
                    <div class="yotpo-clr"></div>
                  </div>
                  <div class="yotpo-clr"></div>
                </div>
              </div>
            </div><button class="callout__button button add-to-cart" type="button"> Add to Cart </button>
          </div>
        </div>
        <div class="callout__subscription callout-subscription">
          <p class="callout-subscription__title">Add to subscription plan?</p>
          <div class="callout-subscription__options"><label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-7830650913007" value="3497787631" checked=""
                aria-label="selling_plan-7830650913007">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">2 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-7830650913007" value="3497853167" aria-label="selling_plan-7830650913007">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">4 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-7830650913007" value="3497885935" aria-label="selling_plan-7830650913007">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #006853;"></span> <span class="sub-option__text">6 Week(s)</span> </p>
            </label> </div>
          <div class="callout-subscription__actions"> <button type="button" class="callout-subscription__add button">Add</button> <button type="button" class="callout-subscription__cancel">Skip</button> </div>
        </div>
      </div><!-- rivets: if 43300816814319 | not_in_cart cart.items -->
      <div class="cart__callout callout" data-product-id="43300816814319" data-background-color="#baefe4" data-text-color="#683026" data-product-title="Chocolate Family Size" data-compare-price="" data-up-tag="32oz_chocolate"
        style="background-color: rgb(186, 239, 228); display: none;">
        <div class="callout__inner">
          <div class="callout__image"> <img srcset="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220621_KikiMilk_Choc_32oz-3Q-Web_x109.png?v=1663108077 44w" class=" " sizes="44px" alt="Chocolate Kiki Milk • 32 fl oz • Pack of 6" loading="lazy"
              width="44" height="auto"> </div>
          <div class="callout__body">
            <p class="callout__title"> Chocolate Family Size </p>
            <div class="callout__rating rating">
              <div class="yotpo bottomLine yotpo-medium" data-appkey="fkgCuWjzOPT8D6D14Gqrpww31T69tovsmmcTPgDI" data-domain="kiki-milk.myshopify.com" data-product-id="7830732341487" data-product-models="7830732341487"
                data-name="Chocolate Kiki Milk • 32 fl oz • Pack of 6" data-url="https://www.kikimilk.com/products/chocolate-kiki-milk-32-fl-oz-pack-of-6"
                data-image-url="//cdn.shopify.com/s/files/1/0575/7838/9680/products/220621_KikiMilk_Choc_32oz-3Q-Web_large.png%3Fv=1663108077"
                data-description="Why make chocolate milk an indulgence when it doesn’t have to be? Enter Chocolate Kiki Milk, a dairy-free milk you can regularly enjoy, with 80% less sugar than other chocolate milks. Booyah!"
                data-bread-crumbs="32oz_chocolate;New;Product_Chocolate;Size_32 oz;YGroup_chocolate;" data-allow-empty="" data-yotpo-element-id="6">
                <div class="yotpo-display-wrapper" style="visibility: hidden;">
                  <div class="standalone-bottomline" data-source="default" tabindex="-1">
                    <div class="yotpo-bottomline pull-left  star-clickable" tabindex="0"> <span class="yotpo-stars"> <span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-half-star rating-star pull-left"></span><span class="sr-only">4.7 star rating</span> </span> <a href="javascript:void(0)" class="text-m" aria-label="601 reviews" tabindex="-1">601 Reviews</a>
                      <div class="yotpo-clr"></div>
                    </div>
                    <div class="yotpo-clr"></div>
                  </div>
                  <div class="yotpo-clr"></div>
                </div>
              </div>
            </div><button class="callout__button button add-to-cart" type="button"> Add to Cart </button>
          </div>
        </div>
        <div class="callout__subscription callout-subscription">
          <p class="callout-subscription__title">Add to subscription plan?</p>
          <div class="callout-subscription__options"><label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-7830732341487" value="3497722095" checked=""
                aria-label="selling_plan-7830732341487">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">2 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-7830732341487" value="3497754863" aria-label="selling_plan-7830732341487">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">4 Week(s)</span> </p>
            </label> <label class="callout-subscription__option sub-option"> <input class="sub-option__input" type="radio" name="selling_plan-7830732341487" value="3497820399" aria-label="selling_plan-7830732341487">
              <p class="sub-option__label"> <span class="sub-option__background" style="background-color: #683026;"></span> <span class="sub-option__text">6 Week(s)</span> </p>
            </label> </div>
          <div class="callout-subscription__actions"> <button type="button" class="callout-subscription__add button">Add</button> <button type="button" class="callout-subscription__cancel">Skip</button> </div>
        </div>
      </div><!-- rivets: if 43711123914991 | not_in_cart cart.items -->
      <div class="cart__callout callout" data-product-id="43711123914991" data-background-color="" data-text-color="" data-product-title="Kiki Milk Straws" data-compare-price="" data-straws="true" data-up-tag="straws" style="display: none;">
        <div class="callout__inner">
          <div class="callout__image"> <img srcset="//cdn.shopify.com/s/files/1/0575/7838/9680/products/NewShot2-Edit_x109.jpg?v=1673561425 44w" class="has-jpg-img " sizes="44px" alt="Kiki Milk Straws • 4 Pack" loading="lazy" width="44"
              height="auto"> </div>
          <div class="callout__body">
            <p class="callout__title"> Kiki Milk Straws </p>
            <div class="callout__rating rating">
              <div class="yotpo bottomLine yotpo-medium" data-appkey="fkgCuWjzOPT8D6D14Gqrpww31T69tovsmmcTPgDI" data-domain="kiki-milk.myshopify.com" data-product-id="7974802161903" data-product-models="7974802161903"
                data-name="Kiki Milk Straws • 4 Pack" data-url="https://www.kikimilk.com/products/kiki-milk-straws-4-pack" data-image-url="//cdn.shopify.com/s/files/1/0575/7838/9680/products/NewShot2-Edit_large.jpg%3Fv=1673561425"
                data-description="<p><meta charset=&quot;utf-8&quot;><meta charset=&quot;utf-8&quot;><span data-metadata=&quot;&amp;lt;!--(figmeta)eyJmaWxlS2V5IjoiODlBNzN4Z3g4cWx5WVp1TzdRY0Y1RiIsInBhc3RlSUQiOjIxMjI3NTU2MzksImRhdGFUeXBlIjoic2NlbmUifQo=(/figmeta)--&amp;gt;&quot; data-mce-fragment=&quot;1&quot;></span><span data-buffer=&quot;&amp;lt;!--(figma)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(/figma)--&amp;gt;&quot; data-mce-fragment=&quot;1&quot;></span><span data-mce-fragment=&quot;1&quot;>To improve your drinking experience AND be kind to our planet, we made Kiki Reusable Straws.</span><br></p><p>Whats Inside:&nbsp;</p><ul><li><span>4 multi-colored, stainless steel, silicone-tipped reusable straws</span></li><li><span>1&nbsp;cleaning brush so you can wash and reuse</span></li></ul><p><span><meta charset=&quot;utf-8&quot;> <meta charset=&quot;utf-8&quot;>Straw Dimensions:</span></p><ul><li><span>9 inches tall</span></li><li><span>0.8 centimeters wide</span></li></ul>"
                data-bread-crumbs="straws;" data-allow-empty="" data-yotpo-element-id="7">
                <div class="yotpo-display-wrapper" style="visibility: hidden;">
                  <div class="standalone-bottomline" data-source="default" tabindex="-1">
                    <div class="yotpo-bottomline pull-left  star-clickable" tabindex="0"> <span class="yotpo-stars"> <span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span
                          class="yotpo-icon yotpo-icon-star rating-star pull-left"></span><span class="sr-only">5.0 star rating</span> </span> <a href="javascript:void(0)" class="text-m" aria-label="8 reviews" tabindex="-1">8 Reviews</a>
                      <div class="yotpo-clr"></div>
                    </div>
                    <div class="yotpo-clr"></div>
                  </div>
                  <div class="yotpo-clr"></div>
                </div>
              </div>
            </div><button class="callout__button button add-to-cart" type="button"> Add to Cart </button>
          </div>
        </div>
      </div>
    </div>
  </div>
  <div class="cart__form-footer">
    <div class="cart__total">
      <div class="subtotal">Subtotal</div>
      <div class="subtotal-number no-margin" rv-html="cart.total_price | money Currency.currentCurrency">0</div>
    </div>
    <div class="cart__checkout-button"> <!-- <input type="submit" name="checkout" class="button primary border" value="Check Out"> --> <button type="submit" name="checkout" class="button secondary"> <span class="text">Checkout</span> </button> <small
        class="tax-note caption-large rte">Taxes and shipping calculated at checkout</small> </div>
    <div class="cart__details">
      <div class="meta-label"> Taxes and shipping calculated at checkout </div>
    </div>
  </div>
</form>

<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-YhgKyk" novalidate="" tabindex="-1"
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; border-radius: 2px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgba(255, 255, 255, 0); background-repeat: no-repeat; background-position-y: 50%; padding: 10px 5px; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; justify-content: center;">
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" style="width: 100%;">
          <p style="text-align:center;font-size:14px;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;font-weight:400;"><span class="ql-font-apercu"
              style="color:rgb(255, 255, 255);font-size:24px;font-family:Apercu, Arial, 'Helvetica Neue', Helvetica, sans-serif;font-weight:400;">JOIN OUR NEWSLETTER</span></p>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 4px 6px; position: relative; flex: 1 0 0px;">
        <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="email_64407486" class="needsclick go3089260806 kl-private-reset-css-Xuajs1" type="email"
            autocomplete="email" name="email" tabindex="0" placeholder="Email Address" aria-label="Email Address" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 2px; padding: 0px 0px 0px 16px; height: 51px; text-align: left; color: rgb(0, 0, 0); font-family: Apercu, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 24px; font-weight: 400; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgba(180, 187, 195, 0);">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 9px 10px 7px 0px; position: relative; flex: 0 1 auto;"><button
          class="needsclick go3894874857 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgb(202, 234, 254); border-radius: 9px; border-style: none; border-color: rgb(0, 0, 0); border-width: 0px; color: rgb(23, 119, 162); font-family: Apercu, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 1px; line-height: 1; white-space: normal; padding: 11px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: auto;">SUBSCRIBE</button>
      </div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>

Text Content

Back

Accessibility options



Are you sure you want to hide the widget forever? If you need it back, please
clear your cookies.

OkCancel

Content

Bigger Text

Bigger Text


Bigger Cursor

Bigger Cursor

Text Reader

Tooltips

Line Height

Line Height


Hide Images

Hide images

Readable Fonts

Readable fonts

Dyslexic Font

Dyslexic Font

Stop Animations

Stop Animations

Colors

Invert Color

Invert Colors

Brightness

Brightness


Contrast

Contrast


Grayscale Color

Grayscale

Saturation

Saturation



Navigation

Reading Line

Reading Line

Highlight Links

Highlight Links

Reading Mask

Reading Mask

Page Structure

Page Structure

Language

English (USA)
Language Options
English
(USA)SwedishFinnishGermanSpanishPortugueseTurkishFrenchJapaneseKoreanHebrewLatvian

Accessibly App Accessibility Statement

Accessibly App is committed to making sites accessible for all, including people
with disabilities. We are continuously improving the service we provide through
our app to comply with increased accessibility standards, guidelines, and to
make the browsing experience better for everyone. Accessibly App is committed to
making sites accessible for all, including people with disabilities. We are
continuously improving the service we provide through our app to comply with
increased accessibility standards, guidelines, and to make the browsing
experience better for everyone. Learn more here.

Conformance status

The app uses the Web Content Accessibility Guidelines (WCAG) defined
requirements to improve accessibility for people with disabilities. It defines
three levels of conformance: Level A, Level AA, and Level AAA. Accessibly App is
following the best guidelines and is partially conformant with WCAG 2.1 level
AA.

Technical information

Accessibly App is an app supported in Shopify and Wordpress environments. The
app relies on the following technologies:

 * HTML
 * CSS
 * JavaScript
 * NodeJs
 * MongoDB

Accessibly App features

When a site has Accessibly App i ac-h4nstalled, the website can be adjusted with
keyboard navigation using the “tab” key (WCAG 2.1/2.1.1). Additionally, see the
list of all provided Accessibly App features and tools for better website
experience:

Zoom | WCAG 2.1 / 1.4.4

This feature enables users to enhance the size of the text to up to three times
the original text for better text readability.

Bigger cursor

Makes the cursor bigger and more prominent. Increases the size for better site
browsing.

Invert colors

Invert the colors of the website content. For those with decreased vision, the
high contrast greatly helps to read the site better.

Tweak Contrast | WCAG 2.1 / 1.4.6

This feature lets users manually select from two options: to enhance the
contrast of the website or to decrease the contrast.

Tweak Brightness | WCAG 2.1 / 1.4.6

This feature lets users update the brightness on the site. The content can
either be made brighter or darker.

Grayscale | WCAG 2.1 / 1.4.6

Users can turn on grayscale, making the website content appear only in shades of
gray. This benefits people with visual impairment.

Reading Line

Add a supportive reading line to the site.

Readable fonts

Convert the fonts available on-site to one of the most easily readable fonts:
Helvetica.

Alt Text and Images

Ability to read alt text of images. As of now, our tool has added a feature
where alt descriptions for images without them are generated using Google's
Vision AI. In the event that you haven't manually written these image
descriptions yourself, this greatly helps people with visual impairment browse
your site.

Tooltips | WCAG 2.1 / 2.5.3

Add labels to images that contain a written description of the image.

Highlight links

Highlight links to make them more prominent.

Hide images

Hide images on the site. This provides better site readability for people with
visual impairment.

Read page

A feature that allows a voice to read the text on your site out loud to
visitors.

Notes & Feedback

We always try to update our services and operate in the best possible manner to
benefit all of our clients and their site visitors.

We cannot control or correct problems with third-party sites, but please let us
know if you encounter difficulty with any sites we link to so we can pass the
information along to the site owners. You may also want to address your concerns
directly to these third parties.


Reset settings
Accessibility statementReport an issue


Skip to content
 * Shop
   
   * Original
   
   * Chocolate
   
   * Mac Nut
   
   * Sample Box
   
   * Straws
 * About Us
   * Ingredients
   * Sustainability
   * Our Story
   * PlantBaby
   * FAQ
 * Explore
   
   

Create account
Sign in
Follow Us
 * Instagram
 * YouTube




YOUR CART

Congratulations! You're enjoying free US shipping.

Mac-Nut is on Pre-order! Your entire order will ship in 1-2 weeks.

You're $50 away from free US shipping!

Original

4.7 star rating 825 Reviews



Add to Cart

Add to subscription plan?

2 Week(s)

4 Week(s)

6 Week(s)

Add Skip

Original

4.7 star rating 825 Reviews



Add to Cart

Add to subscription plan?

2 Week(s)

4 Week(s)

6 Week(s)

Add Skip

Chocolate

4.7 star rating 601 Reviews



Add to Cart

Add to subscription plan?

2 Week(s)

4 Week(s)

6 Week(s)

Add Skip

Chocolate

4.7 star rating 601 Reviews



Add to Cart

Add to subscription plan?

2 Week(s)

4 Week(s)

6 Week(s)

Add Skip

Original Family Size

4.7 star rating 825 Reviews



Add to Cart

Add to subscription plan?

2 Week(s)

4 Week(s)

6 Week(s)

Add Skip

Chocolate Family Size

4.7 star rating 601 Reviews



Add to Cart

Add to subscription plan?

2 Week(s)

4 Week(s)

6 Week(s)

Add Skip

Kiki Milk Straws

5.0 star rating 8 Reviews



Add to Cart
Subtotal
0
Checkout Taxes and shipping calculated at checkout
Taxes and shipping calculated at checkout


🥛 FREE SHIPPING FOR ALL ORDERS OVER $50 TO MOST US STATES 💫
Kiki Milk
 * Shop
   
   * Original
   * Chocolate
   * Mac Nut NEW
   * Sample Box
   * Straws
 * About
   
   * Ingredients
   * Sustainability
   * Our Story
   * Find us
   * PlantBaby
   * FAQ

Kiki Milk

 * Explore
   
   * Blog
   * Press


0



LIMITED SUPPLY!


NOW INTRODUCING
MAC NUT KIKI MILK

Shop Now

new flavor!




SHOP OUR BOOSTED PLANT MILK BLENDS

 * 
 * 


ORIGINAL

 * 
 * 


CHOCOLATE

 * 
 * 


MAC NUT




LOVED BY PICKY KIDS,
MADE FOR PICKY MOMS.

ONLY REAL, WHOLE FOOD



Made with a nourishing blend of organic, whole food ingredients, and boosted
with superfoods like Aquamin™ (seaweed), amla, banana, blueberries and spinach.



NUTRITIONALLY COMPLETE



Complete protein from hemp and sprouted pumpkin seeds, healthy fats from
coconut, and bioavailable calcium from sea plant Aquamin™.



NO WEIRD STUFF



Delicious without natural flavors or refined sugars, creamy without oils, and
nutritious without synthetic fortification of vitamins and minerals.



SAFETY & TRANSPARENCY



Ingredients sourced responsibly from sustainable and regenerative farms, and 3rd
party tested to ensure they are free from glyphosate and heavy metals.



SHOP ORIGINAL AND CHOCOLATE



A VELVETY NUT AND SEED BLEND BURSTING WITH REAL FOOD AND REAL BENEFITS

 * Third-party lab tested for pesticides and heavy metals, is glyphosate free,
   and contains zero additives

 * Every ingredient is naturally scrumptious, good for your insides, and kind to
   the planet




MACADAMIA NUT

Family size carton (32 oz) New
Shop Now


WHAT THE EXPERTS ARE SAYING

DR. JOEL “GATOR” WARSH

MD, Chief Medical Officer at Kiki Milk

“As a Pediatrician and a dad, I am always looking for healthy options for my
patients and my son. Kiki Milk has a clean label, tastes great, and is
nutritious. It is my favorite plant-based milk!”

STEPHANIE MIDDLEBERG

MS, RD, CDN, Kiki Milk Nutritionist

“As a dietitian & mom, I've looked far and wide for healthy, nutritious, and
tasty non-dairy milk. Kiki Milk is by far the best I've come across. There is
nothing on the market like it.”

Sizes For On-The-Go & At Home!


SIZES FOR ON-THE-GO & AT HOME!


ON-THE-GO

 * Fun and compact 8-ounce cartons; 12 per pack and shelf-stable for up to 12
   months
 * The perfect size for packing – in lunchboxes, beach totes, gym duffels, on
   road trips… wherever you go to play!
 * Best consumed in one sitting (shake it up, peel back the foil seal, and
   enjoy!)

SHOP NOW


FAMILY SIZE

 * Generously-sized 32-ounce cartons; 6 per pack and shelf-stable for up to 12
   months
 * Your new kitchen staple, it’s ready to add a nourishing splash to your
   cereal, coffee, smoothies, baking… whatever you dream up!
 * A handy screw cap lets you close it, store it, shake it, and use it again!

SHOP NOW


ON-THE-GO


FAMILY SIZE


ON-THE-GO

 * Fun and compact 8-ounce cartons; 12 per pack and shelf-stable for up to 12
   months
 * The perfect size for packing – in lunchboxes, beach totes, gym duffels, on
   road trips… wherever you go to play!
 * Best consumed in one sitting (shake it up, peel back the foil seal, and
   enjoy!)

SHOP NOW


FAMILY SIZE

 * Generously-sized 32-ounce cartons; 6 per pack and shelf-stable for up to 12
   months
 * Your new kitchen staple, it’s ready to add a nourishing splash to your
   cereal, coffee, smoothies, baking… whatever you dream up!
 * A handy screw cap lets you close it, store it, shake it, and use it again!

SHOP NOW


#FUELYOURPLAY

We want to see how Kiki fuels your play! Tag #fuelyourplay with #KikiMilk.





KIKI IS KIND


KIKI IS KIND

We love Mother Earth and all of her inhabitants, and we show it through kindness
and environmental responsibility. From ingredients, to sourcing, to
partnerships, we aim for the lowest environmental impact, while ensuring our
milks provide optimal nutritional benefits.

Our Impact



KIKI HAS CHARACTER

Roxie Coralheart, our rainbow-winged magical dragon, flies around the mountains
and valleys scooping up all the organic superfoods to create organic milk for
kids, like our delicious Original Kiki Milk. Kai, our wise, rainbow-bellied
whale, explores the depths of our enchanted seas, bringing forth nutritious gems
of the ocean for our Chocolate Kiki Milk.


MAC NUT KIKI MILK • 32 FL OZ • PACK OF 6

Say hello to our first *nut* and seed blend, Mac Nut Kiki Milk! It’s creamy, a
little nutty, a bit buttery, a tad sweet... and you can actually TASTE the magic
of macadamia nuts.
4.9 star rating 67 Reviews



Shop Now



ORIGINAL KIKI MILK - 8 FL OZ - PACK OF 12

It’s time to completely reimagine milk. Our Original Kiki Milk is boosted with
superfoods, like sprouted pumpkin seeds and amla. It tastes as fresh as it
fuels.
4.7 star rating 825 Reviews



Shop Now



CHOCOLATE KIKI MILK - 8 FL OZ - PACK OF 12

The most delicious and nutrient-dense, dairy-free chocolate milk out there. 80%
less sugar than other chocolate milks, 100% more pizazz.
4.7 star rating 601 Reviews



Shop Now





EXPLORE OUR BLOG

Dive into our blogs and feel the joy of being a lifelong learner.

#FuelYourBrain #FoodForThought.

Dive in
Previous
 * #family
 * #kids
 * #nutrition


FROM DR. GATOR: DOES MY CHILD REALLY NEED MILK, AND IF SO, WHICH SHOULD I
CHOOSE?

5 MINUTE READ

 * # climate-friendly


FROM DR. GATOR: WHY PLANT-BASED MILK IS BETTER FOR THE PLANET

2 MINUTE READ

 * #family
 * #kids
 * #nutrition


WHY KIKI MILK IS GREAT FOR KIDS

5 MINUTE READ

 * #family


THE PLANTBABY ORIGIN STORY

3:30 MINUTE WATCH

 * #nutrition


MAC NUT INGREDIENT DEEP DIVE

5 MINUTE READ

 * #nutrition


3 WHOLESOME WAYS TO USE MAC NUT

2 MINUTE READ

 * #nutrition


KIKI STRAWBERRY MILK

1 MINUTE READ

 * #family
 * #kids


HOLIDAY GIFT GUIDE

8 MINUTE READ

 * #family
 * #nutrition


RECIPE: HOMEMADE CHOCOLATE KIKI MILK

2 MINUTE READ


KIKI MILK’S PRICE: A COMPREHENSIVE OVERVIEW INTO THE COST OF KIKI MILK

14 MINUTE READ

 * #nutrition


WHY WE CHOSE NOT TO FORTIFY WITH VITAMIN D

6 MINUTE READ

 * #family
 * #nutrition


RECIPE: HOMEMADE ORIGINAL KIKI MILK

3 MINUTE READ

 * #family
 * #kids
 * #nutrition


FROM DR. GATOR: DOES MY CHILD REALLY NEED MILK, AND IF SO, WHICH SHOULD I
CHOOSE?

5 MINUTE READ

 * # climate-friendly


FROM DR. GATOR: WHY PLANT-BASED MILK IS BETTER FOR THE PLANET

2 MINUTE READ

 * #family
 * #kids
 * #nutrition


WHY KIKI MILK IS GREAT FOR KIDS

5 MINUTE READ

 * #family


THE PLANTBABY ORIGIN STORY

3:30 MINUTE WATCH

 * #nutrition


MAC NUT INGREDIENT DEEP DIVE

5 MINUTE READ

 * #nutrition


3 WHOLESOME WAYS TO USE MAC NUT

2 MINUTE READ

 * #nutrition


KIKI STRAWBERRY MILK

1 MINUTE READ

 * #family
 * #kids


HOLIDAY GIFT GUIDE

8 MINUTE READ

 * #family
 * #nutrition


RECIPE: HOMEMADE CHOCOLATE KIKI MILK

2 MINUTE READ


KIKI MILK’S PRICE: A COMPREHENSIVE OVERVIEW INTO THE COST OF KIKI MILK

14 MINUTE READ

 * #nutrition


WHY WE CHOSE NOT TO FORTIFY WITH VITAMIN D

6 MINUTE READ

 * #family
 * #nutrition


RECIPE: HOMEMADE ORIGINAL KIKI MILK

3 MINUTE READ

 * #family
 * #kids
 * #nutrition


FROM DR. GATOR: DOES MY CHILD REALLY NEED MILK, AND IF SO, WHICH SHOULD I
CHOOSE?

5 MINUTE READ

 * # climate-friendly


FROM DR. GATOR: WHY PLANT-BASED MILK IS BETTER FOR THE PLANET

2 MINUTE READ

 * #family
 * #kids
 * #nutrition


WHY KIKI MILK IS GREAT FOR KIDS

5 MINUTE READ

Next




MEET THE FOUNDERS


MEET THE FOUNDERS

“Hi there, we’re Lauren and Alex, the parents of our amazing little boy Alakai,
and the creators of Kiki Milk. Our goal with Kiki Milk is to offer you a super
healthy, back-to-basics and convenient option that you can confidently give your
family. We put a lot of love into making Kiki Milk and we hope you can feel (and
taste) the difference!”

- Lauren and Alex Abelin, Co-Founders and Co-Parents

Meet the Fam



FIND US IN YOUR NEIGHBORHOOD


FIND US IN YOUR NEIGHBORHOOD

Kiki’s always close. Discover where you can find a glass near you, or subscribe
for easy, no-stress delivery.

Discover Kiki




FREQUENTLY ASKED QUESTIONS

 * Do you only sell 12 packs?
   At this time, yes.
   
   But let us explain why: When it came down to packaging Kiki Milk, we had two
   options: 6 packs wrapped in plastic or 12 packs wrapped in cardboard. Because
   we are committed to bettering planet earth and lowering our carbon footprint,
   this decision was a no-brainer. We’ll pick cardboard over plastic any day,
   especially if that means we can minimize transportation emissions and get you
   more Kiki Milk. Win Win 🏆
   
   If you are hesitant about purchasing a 12-pack of Kiki Milk, we get it. That
   is a lot of milk, especially for first time buyers who have never tried it.
   The good news is we offer a 30-day 100% risk-free guarantee!
   
   We are sure you’ll love Kiki Milk, but if for any reason you aren’t
   satisfied, please contact us within 30 days* of your order and we will
   provide you with a 100% refund, no questions asked!
   
   Read more about our refund policy here.
 * What makes Kiki Milk great for kids?
   Kiki Milk is great for kids because...
   
   ⭐ We use none of these things: (no gums, seed oils, refined sugars,
   preservatives, GMOs, glyphosate, gluten, or soy)
   ⭐ We do not add any ’natural’ or artificial sweeteners, flavors or colors
   ⭐ We only source organic whole food ingredients
   ⭐ Kiki Milk Original and Chocolate are nut free* (we do use coconut)
   ⭐ Although we are totally organic, we go above and beyond to 3rd party
   lab-test all our sourced ingredients in an effort to be extra safe because we
   want to make sure our products do not contain any glyphosate (a common
   pesticide that is pervasive in US foods) or other harmful substances
   ⭐ We work closely with leading pediatricians and nutritionists to deliver
   clean, plant-based milks that support the nutritional needs of growing kiddos
   
   Read our full blog post on why Kiki Milk is great for kids here.
 * FOR WHAT CHILD AGE RANGE IS KIKI MILK RECOMMENDED?
   Generally, doctors and pediatricians recommend mainly breastmilk or formula
   for children until the age of one. *After one, they can begin to transition
   to regular milk or other milk alternatives.
   
   According to our nutritionist, Vicki Kobliner, MS RDN, CD-N, organic whole
   food sources are especially important for young kids since they are still
   developing. Kiki Milk is made with only organic whole food ingredients and
   contains no gums, seed oils, refined sugars, preservatives, GMOs, glyphosate,
   gluten, nuts (except coconuts), or soy. To learn more about why Kiki Milk's
   is great for kids, read our blog post here. For practical advice, talk to
   your child's pediatrician.
   
   *Kiki Milk is not meant to replace breast milk or infant formula.
 * What is Aquamin™ and how much calcium is in Kiki Milk?
   Aquaman is a superhero that possesses superhuman strength, the ability to
   breathe underwater, and the capacity to communicate telepathically with
   creatures of the sea, among other powers. Drink Kiki Milk, and you just might
   be able to do the same!
   
   But, actually:
   
   Aquamin™ is a unique marine multi-mineral complex, providing bioactive
   calcium, magnesium and approximately 72 other trace marine minerals*. It
   supports bone health, reduces inflammation, and makes for a happier and
   healthier gut. It's a seaweed superfood.
   
   Where does it come from?
   ⭐ Aquamin™ is extracted from the cell wall of the red marine algae,
   Lithathamnion calcareum, which is harvested from the cold Atlantic waters off
   the northwest and southwest coast of Ireland. Over the course of its 5-year
   lifespan, the algae absorb trace minerals from the sea, giving Aquamin™ its
   unique multi-mineral content. The algae are then naturally broken down and
   settled into the sea beds forming calcified skeletal remains, which are
   harvested with international standards for sustainable marine aquaculture.
   
   Why do we use Aquamin™ in Kiki Milk?
   ⭐ For plant-based calcium! Thanks to some mighty seaweed, Kiki Milk Original
   has 228 mg of calcium per serving and Kiki Milk Chocolate has 229 mg of
   calcium per serving. That makes a pretty good dent in your daily calcium
   targets and gives you real food fuel to get you through the day.
   
   *Aquamin™ contains a wide spectrum of trace minerals assimilated from sea
   water. Aquamin™ is a natural ingredient and trace mineral levels may vary
   over time.
 * WHY IS THERE NO VITAMIN D IN KIKI MILK?
   Vitamin D is critical for health and development, and we want every child
   that drinks Kiki Milk to have robust amounts in their body from the sun and
   clean supplementation. The problem is that the milk and milk alternatives can
   only be fortified with D2, and this form is not as well absorbed or
   metabolized as the more functional D3. These synthetic and isolated forms of
   the vitamin, D2, also include hidden sub-ingredients like maltodextrin we
   aren’t so keen on. Although companies aren’t required to put this on the
   label, we have ‘a no hidden sub-ingredients policy”. We choose integrity and
   transparency, and although most companies do it, we don’t agree with this
   practice.
   
   Additionally, our bodies can naturally make D3 in the summer from sun
   exposure- 15 to 20 minutes before applying non-toxic sunscreen can do the
   trick. In fall and winter, one or two drops of a good quality D3 liquid
   supplement can provide the daily 600IU a toddler needs. It can even be added
   to your Kiki Milk before drinking.
   
   You want the best for your kids and so do we. That's why we prefer not to add
   the inferior Vitamin D2, when we know D3 is a simple and better choice.
   
   Read more about our ingredients and nutrition facts here.
 * Why does Kiki Milk separate?
   We don’t use emulsifiers, AKA chemical additives that bind ingredients
   together to make them artificially smooth, creamy, and pretty. If you see
   clumps, that’s actually a good sign. They indicate whole food ingredients
   which naturally separate. Just give your Kiki Milk a good shake before
   enjoying and you’ll experience the true taste of nature!
 * How long does Kiki Milk stay fresh?
   Thanks to our shelf-stable packaging, unopened Kiki Milk will keep safe and
   flavorful for at least 12 months (or by the “Best if Used By” date) without
   refrigeration or preservatives! This means you can store it in your pantry or
   even take it with you when traveling.
   
   However, once you are ready to enjoy Kiki Milk, we highly recommend drinking
   it cold for the best experience. Simply add a few cartons (or the entire case
   😉) of Kiki Milk into your fridge for at least 2 hours before consuming. Pro
   tip: The more you add to the fridge at once, the more you have on hand to
   enjoy later without waiting.
   
   If you don’t finish a carton in a single sitting, no problem! Opened Kiki
   Milk stays fresh for up to seven days as long as you refrigerate it.
   
   Just remember: Real food spoils.
 * What's the deal with shelf-stable milk?
   Thanks to some seriously awesome packaging and ultra-high temperature
   pasteurization (AKA UHT pasteurization), perishable foods are made shelf
   stable, meaning they do not need to be refrigerated unless opened. Pretty
   neat, huh?
   
   🤯Tell me more.
   
   Okay so, conventional dairy milk is heated up to at least 161 degrees for 15
   seconds to kill harmful bacteria in the milk. With UHT, it is heated up to
   280 to 300 degrees for two to six seconds. Both methods of pasteurization
   ensure safety and freshness.
   
   In addition to this pasteurization process, sterile packaging and a sterile
   environment in which the packaging happens are key. First, the bottles are
   produced on site; they are then sterilized so that they are absolutely clean.
   Secondly, the milk packaged in those bottles is in a sterile environment so
   that no bacteria or pathogens can contaminate the product.
   
   The combination of UHT pasteurization and bottling sterilization ensures that
   the milk lasts up to six months on the shelf without refrigeration.*
   
   In case you are wondering, “Does shelf stability affect taste or nutrition?
   The answer is nope!
   
   While it might seem more traditional to purchase cold oat milk, shelf-stable
   oat milk is just as delicious and nutritious as its refrigerated counterpart,
   and even has added benefits. It is easier to store, has a longer shelf life,
   often costs less to produce and ultimately is the more sustainable choice.
   
   Learn more about our packaging supplier here.
 * Can I recycle Kiki Milk cartons?
   The short answer is yes. But, it may require a few extra steps.
   
   Kiki Milk is currently packaged in Tetra Pak containers, which are made of
   paperboard, with thin layers of aluminum and plastic. Although these
   materials are sustainably sourced, the layered material is more difficult to
   recycle, requiring specialized facilities and additional energy use. At this
   time, roughly 60% of the US population has access to recycling programs that
   accept TetraPak cartons. While this is a fantastic rate, the goal is 100%.
   
   Realizing that they are not yet perfect, Tetra continues to explore new
   packaging technology that is even more sustainable — and we are excited to
   improve further together.
 * What is glyphosate and how can I avoid it?
   Glyphosate is the world’s most commonly used herbicide. Since being patented
   in 1974, billions of pounds have been applied globally to agricultural crops,
   especially high value crops (e.g., tree nuts, grapes, vegetables) and large
   acreage field crops (e.g., soybean, cotton, corn). In the U.S. specifically,
   although we make up only 4% of the world’s population, we use 20% of the
   world’s glyphosate supply annually.* Then, we wonder why our rates of chronic
   disease are so much higher than other countries.
   
   Although research is still being vastly conducted, recent studies have linked
   glyphosate to cancer, endocrine disruption, infertility, immune dysfunction,
   liver and kidney damage, and disruption of the microbiome. And not only is
   glyphosate harming human health and the health of our future generations,
   it’s also destroying our ecosystems.
   
   So, how do we avoid glyphosate?
   
   Purchasing USDA Organic or Non-GMO Project certified food helps, but,
   unfortunately these labels do not ensure the absence of glyphosate due to
   poor supply chain testing standards. The only way to guarantee that a product
   is glyphosate residue free is to third party test it, which we do with Kiki
   Milk.
   
   Kiki Milk is proud to work with Farmer’s Footprint who is committed to
   restoring harmony in our food and agricultural systems.
 * Can you tell me about how you’re testing for glyphosate and heavy metals?
   Using the LC-MS/MS method, we test all our ingredients annually to ensure
   they are free from glyphosate residue. Because oats, one of our key Kiki Milk
   ingredients, are most at risk for containing glyphosate, we triple check them
   by ensuring that each batch is tested to confirm it is free from glyphosate.
   
   Currently we are working towards receiving our glyphosate free certification,
   which will consist of testing our product 3 times a year and verifying that
   it is not present. Our goal is to have glyphosate free labels on our products
   so you can feel 100% confident you are purchasing a clean-label product.
   
   Heavy metals are tested on all our ingredients. While we test our final
   product annually to confirm that heavy metal levels are staying below
   specific limits, we focus more on testing each individual ingredient before
   it’s mixed with other ingredients. That way we can easily pinpoint sources of
   heavy metals before they contaminate our final product.
   
   *All tests are performed by a 3rd party laboratory.


 * Tiktok
 * Instagram
 * youtube

kikimilk@plantbaby.co

SHOP

 * Original Kiki Milk
 * Chocolate Kiki Milk
 * Mac Nut Kiki Milk
 * Sample Box
 * Straws

MORE

 * Contact Us
 * FAQ
 * Find Us
 * Reviews
 * About Plantbaby
 * My Account

JOIN OUR NEWSLETTER


SUBSCRIBE
 * Tiktok
 * Instagram
 * youtube

kikimilk@plantbaby.co
 * Privacy Policy
 * Refund Policy
 * Terms of Service

© 2022, PlantBaby, inc.

 * Choosing a selection results in a full page refresh.