  <!doctype html>
<html>
  <head>
<script src="https://sapi.negate.io/script/3AYT32OwW4ZKobCzA10lCw==?shop=myvillagegreen.myshopify.com"></script>

               <script type='text/javascript'>var easylockdownLocationDisabled = true;</script> <script type='text/javascript' src='//myvillagegreen.com/apps/easylockdown/easylockdown-1.0.8.min.js' data-no-instant></script> <script type='text/javascript'>document.addEventListener('easylockdown_loaded', function() { if(typeof InstantClick == 'object') easylockdown.clearData(); }, {once: true});</script> <script type='text/javascript'>(function() { function tryFallback() { if(typeof easylockdown == 'object' && typeof easylockdown.onLoaded != 'function') { var event = document.createEvent('Event'); event.initEvent('easylockdown_loaded', true, true); document.dispatchEvent(event); return true; } return typeof easylockdown == 'object'; } function onReady() { if(!tryFallback()) { var attempts = 0; var interval = setInterval(function() { if(tryFallback() || ++attempts >= 10) clearInterval(interval); }, 100); } } if(document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', onReady, {once: true}); } else { onReady(); } })();</script> <style type="text/css">#easylockdown-password-form{padding:30px 0;text-align:center}#easylockdown-wrapper,.easylockdown-form-holder{display:inline-block}#easylockdown-password{vertical-align:top;margin-bottom:16px;padding:8px 15px;line-height:1.2em;outline:0;box-shadow:none}#easylockdown-password-error{display:none;color:#fb8077;text-align:left}#easylockdown-password-error.easylockdown-error{border:1px solid #fb8077}#easylockdown-password-form-button:not(.easylockdown-native-styles){vertical-align:top;display:inline-block!important;height:auto!important;padding:8px 15px;background:#777;border-radius:3px;color:#fff!important;line-height:1.2em;text-decoration:none!important}.easylockdown-instantclick-fix,.easylockdown-item-selector{position:absolute;z-index:-999;display:none;height:0;width:0;font-size:0;line-height:0}.easylockdown-collection-item[data-eld-loc-can],.easylockdown-item-selector+*,.easylockdown-item[data-eld-loc-can]{display:none}.easylockdown404-content-container{padding:50px;text-align:center}.easylockdown404-title-holder .easylockdown-title-404{display:block;margin:0 0 1rem;font-size:2rem;line-height:2.5rem}</style> 














<script type='text/javascript'> if(typeof easylockdown == 'object') { easylockdown.hideLinks.push('*[href$="/collections/dr-hauschka-skin-care"],*[data-eld-collection-handle="dr-hauschka-skin-care"],*[href$="/collections/standard-mediherbs"],*[data-eld-collection-handle="standard-mediherbs"],*[href$="/collections/standard-process"],*[data-eld-collection-handle="standard-process"]');}</script>














<script type='text/javascript'>
  document.addEventListener('easylockdown_loaded', function() {
    easylockdown.localeRootUrl = '';
    easylockdown.routerByLocation(); 

    easylockdown.onReady(function(e){
      setTimeout(function() {
        easylockdown.hideAllLinks();
      }, 0);
    });
  }, {once: true});
</script>

<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TKXVFDF');</script>
<!-- End Google Tag Manager -->
<script>
(() => {
  // ===== CONFIGURATION =====
  const CONFIG = {
    cookieExpiry: 30, // days
    cookieNames: {
      gclid: 'last_gclid',
      fbclid: 'last_fbclid'
    }
  };

  // ===== COOKIE MANAGER =====
  const Cookie = {
    // Get root domain for cross-subdomain tracking
    getRootDomain() {
      const hostname = window.location.hostname;
      const parts = hostname.split('.');
      
      // If localhost or IP address, use as-is
      if (parts.length <= 2 || /^\d+\.\d+\.\d+\.\d+$/.test(hostname)) {
        return hostname;
      }
      
      // Return root domain (e.g., .example.com)
      return '.' + parts.slice(-2).join('.');
    },

    set(name, value, days) {
      const expires = new Date();
      expires.setTime(expires.getTime() + (days * 24 * 60 * 60 * 1000));
      
      const cookieString = [
        `${name}=${encodeURIComponent(value)}`,
        `expires=${expires.toUTCString()}`,
        `domain=${this.getRootDomain()}`,
        'path=/',
        'SameSite=Lax'
      ].join('; ');
      
      document.cookie = cookieString;
    },

    get(name) {
      const nameEQ = `${name}=`;
      const cookies = document.cookie.split(';');
      
      for (let cookie of cookies) {
        cookie = cookie.trim();
        if (cookie.startsWith(nameEQ)) {
          return decodeURIComponent(cookie.substring(nameEQ.length));
        }
      }
      return null;
    }
  };

  // ===== URL PARAMETER EXTRACTOR =====
  const getUrlParam = (name) => {
    const urlParams = new URLSearchParams(window.location.search);
    return urlParams.get(name);
  };

  // ===== MAIN ATTRIBUTION TRACKING =====
  const trackAttribution = () => {
    // Check for Google Ads click IDs (gclid, gbraid for iOS, wbraid for Android)
    const gclid = getUrlParam('gclid') || getUrlParam('gbraid') || getUrlParam('wbraid');
    
    // Check for Facebook click ID
    const fbclid = getUrlParam('fbclid');

    // Save to cookies if present in URL (last-touch logic)
    if (gclid) {
      Cookie.set(CONFIG.cookieNames.gclid, gclid, CONFIG.cookieExpiry);
      console.log(`✅ Saved GCLID: ${gclid}`);
    }

    if (fbclid) {
      Cookie.set(CONFIG.cookieNames.fbclid, fbclid, CONFIG.cookieExpiry);
      console.log(`✅ Saved FBCLID: ${fbclid}`);
    }

    // Get current values from cookies (even if not in URL)
    const currentGclid = Cookie.get(CONFIG.cookieNames.gclid);
    const currentFbclid = Cookie.get(CONFIG.cookieNames.fbclid);

    // Push to dataLayer
    window.dataLayer = window.dataLayer || [];
    window.dataLayer.push({
      event: 'attribution_data',
      last_gclid: currentGclid || null,
      last_fbclid: currentFbclid || null
    });

    // Also push to all future ecommerce events
    const originalPush = window.dataLayer.push;
    window.dataLayer.push = function(...args) {
      // Add attribution to ecommerce events
      args.forEach(obj => {
        if (obj && (obj.event?.startsWith('ga4_') || obj.ecommerce)) {
          obj.last_gclid = currentGclid || null;
          obj.last_fbclid = currentFbclid || null;
        }
      });
      
      return originalPush.apply(window.dataLayer, args);
    };

    // Log current attribution state
    console.log('📊 Attribution Data:', {
      last_gclid: currentGclid || '(not set)',
      last_fbclid: currentFbclid || '(not set)',
      domain: Cookie.getRootDomain()
    });
  };

  // ===== RUN ON PAGE LOAD =====
  trackAttribution();
})();
</script>    

<script>
  
  (function() {
      class ga4DataLayer {
        constructor() {
          window.dataLayer = window.dataLayer || []; 
          
          // use a prefix of events name
          this.eventPrefix = 'ga4_';

          //Keep the value false to get non-formatted product ID
          this.formattedItemId = true; 

          // data schema
          this.dataSchema = {
            ecommerce: {
                show: true
            },
            dynamicRemarketing: {
                show: true,
                business_vertical: 'retail'
            }
          }

          // add to wishlist selectors
          this.addToWishListSelectors = {
            'addWishListIcon': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // quick view selectors
          this.quickViewSelector = {
            'quickViewElement': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // mini cart button selector
          this.miniCartButton = [
            'a[href="/cart"]', 
          ];
          this.miniCartAppersOn = 'click';


          // begin checkout buttons/links selectors
          this.beginCheckoutButtons = [
            'input[name="checkout"]',
            'button[name="checkout"]',
            'a[href="/checkout"]',
            '.additional-checkout-buttons',
          ];

          // direct checkout button selector
          this.shopifyDirectCheckoutButton = [
            '.shopify-payment-button'
          ]

          //Keep the value true if Add to Cart redirects to the cart page
          this.isAddToCartRedirect = false;
          
          // keep the value false if cart items increment/decrement/remove refresh page 
          this.isAjaxCartIncrementDecrement = true;
          

          // Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
          this.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
          this.countryCode = "US";
          this.storeURL = "https://myvillagegreen.com";
          localStorage.setItem('shopCountryCode', this.countryCode);
          this.collectData(); 
          this.itemsList = [];
        }

        updateCart() {
          fetch("/cart.js")
          .then((response) => response.json())
          .then((data) => {
            this.cart = data;
          });
        }

       debounce(delay) {         
          let timeoutId;
          return function(func) {
            const context = this;
            const args = arguments;
            
            clearTimeout(timeoutId);
            
            timeoutId = setTimeout(function() {
              func.apply(context, args);
            }, delay);
          };
        }

        eventConsole(eventName, eventData) {
          const css1 = 'background: black; gray: #fff; font-size: normal; border-radius: 3px 0 0 3px; padding: 3px 4px;';
          const css2 = 'background-color: black; color: #fff; font-size: normal; border-radius: 0 3px 3px 0; padding: 3px 4px;';
          console.log('%cGTM DataLayer Event:%c' + eventName, css1, css2, eventData);
        }

        collectData() { 
            this.customerData();
            this.ajaxRequestData();
            this.searchPageData();
            this.miniCartData();
            this.beginCheckoutData();
  
            
  
            
  
            
            
            this.addToWishListData();
            this.quickViewData();
            this.selectItemData(); 
            this.formData();
            this.phoneClickData();
            this.emailClickData();
            this.loginRegisterData();
        }        

        //logged-in customer data 
        customerData() {
            const currentUser = {};
            

            if (currentUser.email) {
              currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            if (currentUser.phone) {
              currentUser.hash_phone = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            window.dataLayer = window.dataLayer || [];
            dataLayer.push({
              customer: currentUser
            });
        }

        // add_to_cart, remove_from_cart, search
        ajaxRequestData() {
          const self = this;
          
          // handle non-ajax add to cart
          if(this.isAddToCartRedirect) {
            document.addEventListener('submit', function(event) {
              const addToCartForm = event.target.closest('form[action="/cart/add"]');
              if(addToCartForm) {
                event.preventDefault();
                
                const formData = new FormData(addToCartForm);
            
                fetch(window.Shopify.routes.root + 'cart/add.js', {
                  method: 'POST',
                  body: formData
                })
                .then(response => {
                    window.location.href = "/cart";
                })
                .catch((error) => {
                  console.error('Error:', error);
                });
              }
            });
          }
          
          // fetch
          let originalFetch = window.fetch;
          let debounce = this.debounce(800);
          
          window.fetch = function () {
            return originalFetch.apply(this, arguments).then((response) => {
              if (response.ok) {
                let cloneResponse = response.clone();
                let requestURL = arguments[0]['url'] || arguments[0];
                
                if(typeof requestURL === 'string' && /.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {   
                  const queryString = requestURL.split('?')[1];
                  const urlParams = new URLSearchParams(queryString);
                  const search_term = urlParams.get("q");

                  debounce(function() {
                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                      .then(res => res.json())
                      .then(function(data) {
                            const products = data.resources.results.products;
                            if(products.length) {
                              const fetchRequests = products.map(product =>
                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                  .then(response => response.json())
                                  .catch(error => console.error('Error fetching:', error))
                              );

                              Promise.all(fetchRequests)
                                .then(products => {
                                    const items = products.map((product) => {
                                      return {
                                        product_id: product.id,
                                        product_title: product.title,
                                        variant_id: product.variants[0].id,
                                        variant_title: product.variants[0].title,
                                        vendor: product.vendor,
                                        total_discount: 0,
                                        final_price: product.price_min,
                                        product_type: product.type, 
                                        quantity: 1
                                      }
                                    });

                                    self.ecommerceDataLayer('search', {search_term, items});
                                })
                            }else {
                              self.ecommerceDataLayer('search', {search_term, items: []});
                            }
                      });
                  });
                }
                else if (typeof requestURL === 'string' && requestURL.includes("/cart/add")) {
                  cloneResponse.text().then((text) => {
                    let data = JSON.parse(text);

                    if(data.items && Array.isArray(data.items)) {
                      data.items.forEach(function(item) {
                         self.ecommerceDataLayer('add_to_cart', {items: [item]});
                      })
                    } else {
                      self.ecommerceDataLayer('add_to_cart', {items: [data]});
                    }
                    self.updateCart();
                  });
                }else if(typeof requestURL === 'string' && requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
                  
                   cloneResponse.text().then((text) => {
                     
                    let newCart = JSON.parse(text);
                    let newCartItems = newCart.items;
                    let oldCartItems = self.cart.items;

                    for(let i = 0; i < oldCartItems.length; i++) {
                      let item = oldCartItems[i];
                      let newItem = newCartItems.find(newItems => newItems.id === item.id);


                      if(newItem) {

                        if(newItem.quantity > item.quantity) {
                          // cart item increment
                          let quantity = (newItem.quantity - item.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                          self.updateCart(); 

                        }else if(newItem.quantity < item.quantity) {
                          // cart item decrement
                          let quantity = (item.quantity - newItem.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                          self.updateCart(); 
                        }
                        

                      }else {
                        self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                        self.updateCart(); 
                      }
                    }
                     
                  });
                }
              }
              return response;
            });
          }
          // end fetch 


          //xhr
          var origXMLHttpRequest = XMLHttpRequest;
          XMLHttpRequest = function() {
            var requestURL;
    
            var xhr = new origXMLHttpRequest();
            var origOpen = xhr.open;
            var origSend = xhr.send;
            
            // Override the `open` function.
            xhr.open = function(method, url) {
                requestURL = url;
                return origOpen.apply(this, arguments);
            };
    
    
            xhr.send = function() {
    
                // Only proceed if the request URL matches what we're looking for.
                if (typeof requestURL === 'string' && (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL))) {
        
                    xhr.addEventListener('load', function() {
                        if (xhr.readyState === 4) {
                            if (xhr.status >= 200 && xhr.status < 400) { 

                              if(typeof requestURL === 'string' && /.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
                                const queryString = requestURL.split('?')[1];
                                const urlParams = new URLSearchParams(queryString);
                                const search_term = urlParams.get("q");

                                debounce(function() {
                                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                                      .then(res => res.json())
                                      .then(function(data) {
                                            const products = data.resources.results.products;
                                            if(products.length) {
                                              const fetchRequests = products.map(product =>
                                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                                  .then(response => response.json())
                                                  .catch(error => console.error('Error fetching:', error))
                                              );
                
                                              Promise.all(fetchRequests)
                                                .then(products => {
                                                    const items = products.map((product) => {
                                                      return {
                                                        product_id: product.id,
                                                        product_title: product.title,
                                                        variant_id: product.variants[0].id,
                                                        variant_title: product.variants[0].title,
                                                        vendor: product.vendor,
                                                        total_discount: 0,
                                                        final_price: product.price_min,
                                                        product_type: product.type, 
                                                        quantity: 1
                                                      }
                                                    });
                
                                                    self.ecommerceDataLayer('search', {search_term, items});
                                                })
                                            }else {
                                              self.ecommerceDataLayer('search', {search_term, items: []});
                                            }
                                      });
                                  });

                              }

                              else if(typeof requestURL === 'string' && requestURL.includes("/cart/add")) {
                                  const data = JSON.parse(xhr.responseText);

                                  if(data.items && Array.isArray(data.items)) {
                                    data.items.forEach(function(item) {
                                        self.ecommerceDataLayer('add_to_cart', {items: [item]});
                                      })
                                  } else {
                                    self.ecommerceDataLayer('add_to_cart', {items: [data]});
                                  }
                                  self.updateCart();
                                 
                               }else if(typeof requestURL === 'string' && requestURL.includes("/cart/change")) {
                                 
                                  const newCart = JSON.parse(xhr.responseText);
                                  const newCartItems = newCart.items;
                                  let oldCartItems = self.cart.items;
              
                                  for(let i = 0; i < oldCartItems.length; i++) {
                                    let item = oldCartItems[i];
                                    let newItem = newCartItems.find(newItems => newItems.id === item.id);
              
              
                                    if(newItem) {
                                      if(newItem.quantity > item.quantity) {
                                        // cart item increment
                                        let quantity = (newItem.quantity - item.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                                        self.updateCart(); 
              
                                      }else if(newItem.quantity < item.quantity) {
                                        // cart item decrement
                                        let quantity = (item.quantity - newItem.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                                        self.updateCart(); 
                                      }
                                      
              
                                    }else {
                                      self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                                      self.updateCart(); 
                                    }
                                  }
                               }          
                            }
                        }
                    });
                }
    
                return origSend.apply(this, arguments);
            };
    
            return xhr;
          }; 
          //end xhr
        }

        // search event from search page
        searchPageData() {
          const self = this;
          let pageUrl = window.location.href;
          
          if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {   
            const queryString = pageUrl.split('?')[1];
            const urlParams = new URLSearchParams(queryString);
            const search_term = urlParams.get("q");
                
            fetch(`https://myvillagegreen.com/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
            .then(res => res.json())
            .then(function(data) {
                  const products = data.resources.results.products;
                  if(products.length) {
                    const fetchRequests = products.map(product =>
                      fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                        .then(response => response.json())
                        .catch(error => console.error('Error fetching:', error))
                    );
                    Promise.all(fetchRequests)
                    .then(products => {
                        const items = products.map((product) => {
                            return {
                            product_id: product.id,
                            product_title: product.title,
                            variant_id: product.variants[0].id,
                            variant_title: product.variants[0].title,
                            vendor: product.vendor,
                            total_discount: 0,
                            final_price: product.price_min,
                            product_type: product.type, 
                            quantity: 1
                            }
                        });

                        self.ecommerceDataLayer('search', {search_term, items});
                    });
                  }else {
                    self.ecommerceDataLayer('search', {search_term, items: []});
                  }
            });
          }
        }

        // view_cart
        miniCartData() {
          if(this.miniCartButton.length) {
            let self = this;
            if(this.miniCartAppersOn === 'hover') {
              this.miniCartAppersOn = 'mouseenter';
            }
            this.miniCartButton.forEach((selector) => {
              let miniCartButtons = document.querySelectorAll(selector);
              miniCartButtons.forEach((miniCartButton) => {
                  miniCartButton.addEventListener(self.miniCartAppersOn, () => {
                    self.ecommerceDataLayer('view_cart', self.cart);
                  });
              })
            });
          }
        }

        // begin_checkout
        beginCheckoutData() {
          let self = this;
          document.addEventListener('pointerdown', (event) => {
            let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
            if(targetElement) {
              self.ecommerceDataLayer('begin_checkout', self.cart);
            }
          });
        }

        // view_cart, add_to_cart, remove_from_cart
        viewCartPageData() {
          
          this.ecommerceDataLayer('view_cart', this.cart);

          //if cart quantity chagne reload page 
          if(!this.isAjaxCartIncrementDecrement) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              const target = event.target.closest('a[href*="/cart/change?"]');
              if(target) {
                const linkUrl = target.getAttribute('href');
                const queryString = linkUrl.split("?")[1];
                const urlParams = new URLSearchParams(queryString);
                const newQuantity = urlParams.get("quantity");
                const line = urlParams.get("line");
                const cart_id = urlParams.get("id");
        
                
                if(newQuantity && (line || cart_id)) {
                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
        
                  let event = 'add_to_cart';
                  if(newQuantity < item.quantity) {
                    event = 'remove_from_cart';
                  }
        
                  let quantity = Math.abs(newQuantity - item.quantity);
                  item['quantity'] = quantity;
        
                  self.ecommerceDataLayer(event, {items: [item]});
                }
              }
            });
          }
        }

        productSinglePage() {
        
        }

        collectionsPageData() {
          var ecommerce = {
            'items': [
              
              ]
          };

          this.itemsList = ecommerce.items;
          ecommerce['item_list_id'] = null
          ecommerce['item_list_name'] = null

          this.ecommerceDataLayer('view_item_list', ecommerce);
        }
        
        
        // add to wishlist
        addToWishListData() {
          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              
              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
                let pageULR = window.location.href.replace(/\?.+/, '');
                let requestURL = undefined;
          
                if(/\/products\/[^/]+$/.test(pageULR)) {
                  requestURL = pageULR;
                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
                  if(itemElement) {
                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector); 
                    if(linkElement) {
                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                      if(link && /\/products\/[^/]+$/.test(link)) {
                        requestURL = link;
                      }
                    }
                  }
                }

                if(requestURL) {
                  fetch(requestURL + '.json')
                    .then(res => res.json())
                    .then(result => {
                      let data = result.product;                    
                      if(data) {
                        let dataLayerData = {
                          product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                          quantity: 1,
                          final_price: parseFloat(data.variants[0].price) * 100,
                          total_discount: 0,
                          product_type: data.product_type,
                          vendor: data.vendor,
                          variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                          sku: data.variants[0].sku,
                        }

                        self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
                      }
                    });
                }
              }
            });
          }
        }

        quickViewData() {
          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              if(target.closest(self.quickViewSelector.quickViewElement)) {
                let requestURL = undefined;
                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
                
                if(itemElement) {
                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector); 
                  if(linkElement) {
                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                    if(link && /\/products\/[^/]+$/.test(link)) {
                      requestURL = link;
                    }
                  }
                }   
                
                if(requestURL) {
                    fetch(requestURL + '.json')
                      .then(res => res.json())
                      .then(result => {
                        let data = result.product;                    
                        if(data) {
                          let dataLayerData = {
                            product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                            quantity: 1,
                            final_price: parseFloat(data.variants[0].price) * 100,
                            total_discount: 0,
                            product_type: data.product_type,
                            vendor: data.vendor,
                            variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                            sku: data.variants[0].sku,
                          }
  
                          self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
                          self.quickViewVariants = data.variants;
                          self.quickViewedItem = dataLayerData;
                        }
                      });
                  }
              }
            });

            
              if(this.shopifyDirectCheckoutButton.length) {
                let self = this;
                document.addEventListener('pointerdown', (event) => {
                  let target = event.target;
                  let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
                  
                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {

                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
                    if(checkoutForm) {
                        let quantity = 1;
                        let varientInput = checkoutForm.querySelector('input[name="id"]');
                        let quantitySelector = checkoutForm.getAttribute('id');

                        if(quantitySelector) {
                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
                          if(quentityInput) {
                              quantity = +quentityInput.value;
                          }
                        }

                        if(varientInput) {
                            let variant_id = parseInt(varientInput.value);

                            if(variant_id) {
                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
                                if(variant && self.quickViewedItem) {
                                    self.quickViewedItem['variant_id'] = variant_id;
                                    self.quickViewedItem['variant_title'] = variant.title;
                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
                                    self.quickViewedItem['quantity'] = quantity; 
    
                                    self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
                                    self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
                                }
                            }
                        }
                    }

                  }
                }); 
            }
            
          }
        }

        // select_item events
        selectItemData() {
          
          const self = this;
          const items = this.itemsList;

          

          // select item on varient change
          document.addEventListener('variant:change', function(event) {            
            const product_id = event.detail.product.id;
            const variant_id = event.detail.variant.id;
            const vendor = event.detail.product.vendor; 
            const variant_title = event.detail.variant.public_title;
            const product_title = event.detail.product.title;
            const final_price = event.detail.variant.price;
            const product_type = event.detail.product.type;

             const item = {
                product_id: product_id,
                product_title: product_title,
                variant_id: variant_id,
                variant_title: variant_title,
                vendor: vendor,
                final_price: final_price,
                product_type: product_type, 
                quantity: 1
             }
            
             self.ecommerceDataLayer('select_item', {items: [item]});
          });
        }

        // all ecommerce events
        ecommerceDataLayer(event, data) {
          const self = this;
          dataLayer.push({ 'ecommerce': null });
          const dataLayerData = {
            "event": this.eventPrefix + event,
            'ecommerce': {
               'currency': this.cart.currency,
               'items': data.items.map((item, index) => {
                 const dataLayerItem = {
                    'index': index,
                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
                    'product_id': item.product_id.toString(),
                    'variant_id': item.variant_id.toString(),
                    'item_name': item.product_title,
                    'quantity': item.quantity,
                    'price': +((item.final_price / 100).toFixed(2)),
                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0 
                }

                if(item.product_type) {
                  dataLayerItem['item_category'] = item.product_type;
                }
                
                if(item.vendor) {
                  dataLayerItem['item_brand'] = item.vendor;
                }
               
                if(item.variant_title && item.variant_title !== 'Default Title') {
                  dataLayerItem['item_variant'] = item.variant_title;
                }
              
                if(item.sku) {
                  dataLayerItem['sku'] = item.sku;
                }

                if(item.item_list_name) {
                  dataLayerItem['item_list_name'] = item.item_list_name;
                }

                if(item.item_list_id) {
                  dataLayerItem['item_list_id'] = item.item_list_id.toString()
                }

                return dataLayerItem;
              })
            }
          }

          if(data.total_price !== undefined) {
            dataLayerData['ecommerce']['value'] =  +((data.total_price / 100).toFixed(2));
          } else {
            dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + (item.price * item.quantity), 0)).toFixed(2);
          }
          
          if(data.item_list_id) {
            dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
          }
          
          if(data.item_list_name) {
            dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
          }

          if(data.search_term) {
            dataLayerData['search_term'] = data.search_term;
          }

          if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
            dataLayer.push({ 'dynamicRemarketing': null });
            dataLayerData['dynamicRemarketing'] = {
                value: dataLayerData.ecommerce.value,
                items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
            }
          }

          if(!self.dataSchema.ecommerce ||  !self.dataSchema.ecommerce.show) {
            delete dataLayerData['ecommerce'];
          }

          dataLayer.push(dataLayerData);
          self.eventConsole(self.eventPrefix + event, dataLayerData);
        }

        
        // contact form submit & newsletters signup
        formData() {
          const self = this;
          document.addEventListener('submit', function(event) {

            let targetForm = event.target.closest('form[action^="/contact"]');


            if(targetForm) {
              const formData = {
                form_location: window.location.href,
                form_id: targetForm.getAttribute('id'),
                form_classes: targetForm.getAttribute('class')
              };
                            
              let formType = targetForm.querySelector('input[name="form_type"]');
              let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
              
              inputs.forEach(function(input) {
                var inputName = input.name;
                var inputValue = input.value;
                
                if (inputName && inputValue) {
                  var matches = inputName.match(/\[(.*?)\]/);
                  if (matches && matches.length > 1) {
                     var fieldName = matches[1];
                     formData[fieldName] = input.value;
                  }
                }
              });
              
              if(formType && formType.value === 'customer') {
                dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
                self.eventConsole(self.eventPrefix + 'newsletter_signup', { event: self.eventPrefix + 'newsletter_signup', ...formData});

              } else if(formType && formType.value === 'contact') {
                dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
                self.eventConsole(self.eventPrefix + 'contact_form_submit', { event: self.eventPrefix + 'contact_form_submit', ...formData});
              }
            }
          });

        }

        // phone_number_click event
        phoneClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="tel:"]');
            if(target) {
              let phone_number = target.getAttribute('href').replace('tel:', '');
              let eventData = {
                event: self.eventPrefix + 'phone_number_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                phone_number
              }

              dataLayer.push(eventData);
              this.eventConsole(self.eventPrefix + 'phone_number_click', eventData);
            }
          });
        }
  
        // email_click event
        emailClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="mailto:"]');
            if(target) {
              let email_address = target.getAttribute('href').replace('mailto:', '');
              let eventData = {
                event: self.eventPrefix + 'email_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                email_address
              }

              dataLayer.push(eventData);
              this.eventConsole(self.eventPrefix + 'email_click', eventData);
            }
          });
        }

        //login register 
        loginRegisterData() {
          
          const self = this; 
          let isTrackedLogin = false;
          let isTrackedRegister = false;
          
          if(window.location.href.includes('/account/login')) {
            document.addEventListener('submit', function(e) {
              const loginForm = e.target.closest('[action="/account/login"]');
              if(loginForm && !isTrackedLogin) {
                  const eventData = {
                    event: self.eventPrefix + 'login'
                  }
                  isTrackedLogin = true;
                  dataLayer.push(eventData);
                  self.eventConsole(self.eventPrefix + 'login', eventData);
              }
            });
          }

          if(window.location.href.includes('/account/register')) {
            document.addEventListener('submit', function(e) {
              const registerForm = e.target.closest('[action="/account"]');
              if(registerForm && !isTrackedRegister) {
                  const eventData = {
                    event: self.eventPrefix + 'sign_up'
                  }
                
                  isTrackedRegister = true;
                  dataLayer.push(eventData);
                  self.eventConsole(self.eventPrefix + 'sign_up', eventData);
              }
            });
          }
        }
      } 
      // end ga4DataLayer

      document.addEventListener('DOMContentLoaded', function() {
        try{
          new ga4DataLayer();
        }catch(error) {
          console.log(error);
        }
      });
    
  })();
</script>
<script nowprocket nitro-exclude type="text/javascript" id="sa-dynamic-optimization" data-uuid="31ef9f3a-255d-4b45-9d41-573f17b2f556" src="data:text/javascript;base64,dmFyIHNjcmlwdCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoInNjcmlwdCIpO3NjcmlwdC5zZXRBdHRyaWJ1dGUoIm5vd3Byb2NrZXQiLCAiIik7c2NyaXB0LnNldEF0dHJpYnV0ZSgibml0cm8tZXhjbHVkZSIsICIiKTtzY3JpcHQuc3JjID0gImh0dHBzOi8vZGFzaGJvYXJkLnNlYXJjaGF0bGFzLmNvbS9zY3JpcHRzL2R5bmFtaWNfb3B0aW1pemF0aW9uLmpzIjtzY3JpcHQuZGF0YXNldC51dWlkID0gIjMxZWY5ZjNhLTI1NWQtNGI0NS05ZDQxLTU3M2YxN2IyZjU1NiI7c2NyaXB0LmlkID0gInNhLWR5bmFtaWMtb3B0aW1pemF0aW9uLWxvYWRlciI7ZG9jdW1lbnQuaGVhZC5hcHBlbmRDaGlsZChzY3JpcHQpOw=="></script>


   



    

    <!--
      888888b.                              888                88888888888 888
      888  "88b                             888                    888     888
      888  .88P                             888                    888     888
      8888888K.   .d88b.   .d88b.  .d8888b  888888 .d88b.  888d888 888     88888b.   .d88b.  88888b.d88b.   .d88b.
      888  "Y88b d88""88b d88""88b 88K      888   d8P  Y8b 888P"   888     888 "88b d8P  Y8b 888 "888 "88b d8P  Y8b
      888    888 888  888 888  888 "Y8888b. 888   88888888 888     888     888  888 88888888 888  888  888 88888888
      888   d88P Y88..88P Y88..88P      X88 Y88b. Y8b.     888     888     888  888 Y8b.     888  888  888 Y8b.
      8888888P"   "Y88P"   "Y88P"   88888P'  "Y888 "Y8888  888     888     888  888  "Y8888  888  888  888  "Y8888
    -->
    <title>
      Blog
      
      
      
        &ndash; Village Green Apothecary
    </title>
    
      <meta name="description" content="Village Green Apothecary Blog posts">
    
    <link rel="canonical" href="https://myvillagegreen.com/blogs/post">
   
<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> 
<link data-href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
 <link rel="preload" href="//myvillagegreen.com/cdn/shop/t/45/assets/booster.min.js?v=149779228786439235671750406552" as="script">
    <link rel="preload" href="//myvillagegreen.com/cdn/shop/t/45/assets/swiper-bundle.min.js?v=105657941509464647301750406552" as="script">

    <script>
      {
          const load = () => {
              document.querySelectorAll("script[data-type='lazy']").forEach(el => el.setAttribute("src", el.getAttribute("data-src")));
              document.querySelectorAll("iframe[data-type='lazy']").forEach(el => el.setAttribute("src", el.getAttribute("data-src")));

          }
          const timer = setTimeout(load, 8000);
          const trigger = () => {
              load();
              clearTimeout(timer);
            console.log('triggered');

          }
          const events = ["mouseover","keydown","touchmove","touchstart"];
          events.forEach(e => window.addEventListener(e, trigger, {passive: true, once: true}));
      }
    </script>
    
    


    <link rel="apple-touch-icon" sizes="180x180" href="//myvillagegreen.com/cdn/shop/files/village-fav_180x180_crop_center.png?v=1679569156">
    <link rel="icon" type="image/png" sizes="32x32" href="//myvillagegreen.com/cdn/shop/files/village-fav_32x32_crop_center.png?v=1679569156">
    <link rel="icon" type="image/png" sizes="16x16" href="//myvillagegreen.com/cdn/shop/files/village-fav_16x16_crop_center.png?v=1679569156">   <link rel="manifest" href="//myvillagegreen.com/cdn/shop/t/45/assets/site.webmanifest?v=161960337178164151401750406552">    <meta name="msapplication-TileColor" content="">    <meta name="theme-color" content=""><script type="text/javascript"> const observers=new MutationObserver((e=>{e.forEach((({addedNodes:e})=>{e.forEach((e=>{1===e.nodeType&&"SCRIPT"===e.tagName&&(e.classList.contains("analytics")||e.classList.contains("boomerang")?e.type="text/javascripts":e.src.includes("codeblackbelt.com")||e.src.includes("klaviyo.com/onsite")||e.src.includes("shopify-perf-kit-unstable.min.js")?(e.setAttribute("data-src",e.src),e.removeAttribute("src")):(e.textContent.includes("loader.js")||e.textContent.includes("web_pixels_manager_load"))&&(e.type="text/javascripts"))}))}))}));observers.observe(document.documentElement,{childList:!0,subtree:!0});</script>

     
                                                                                                                                                                                      
  
   <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/31909609603/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="95911c9e2dffbd9736527e04e4118f3b">
<meta id="in-context-paypal-metadata" data-shop-id="31909609603" data-venmo-supported="true" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="USD">
<link rel="alternate" type="application/atom+xml" title="Feed" href="/blogs/post.atom" />
<link rel="next" href="/blogs/post?page=2">
<link rel="alternate" hreflang="x-default" href="https://myvillagegreen.com/blogs/post">
<link rel="alternate" hreflang="en" href="https://myvillagegreen.com/blogs/post">
<link rel="alternate" hreflang="es" href="https://myvillagegreen.com/es/blogs/post">
<script async="async" data-src="/checkouts/internal/preloads.js?locale=en-US"></script>
<script id="shopify-features" type="application/json">{"accessToken":"95911c9e2dffbd9736527e04e4118f3b","betas":["rich-media-storefront-analytics"],"domain":"myvillagegreen.com","predictiveSearch":true,"shopId":31909609603,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "myvillagegreen.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"USD","rate":"1.0"};
Shopify.country = "US";
Shopify.theme = {"name":"SB VillageGreen\/main","id":151474241774,"schema_name":"Booster-6.1.1","schema_version":"6.1.1","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "myvillagegreen.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";
Shopify.SignInWithShop = Shopify.SignInWithShop || {};
Shopify.SignInWithShop.User = Shopify.SignInWithShop.User || {};
Shopify.SignInWithShop.User.recognized = false;</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script>
  window.Shopify = window.Shopify || {};
  window.Shopify.SignInWithShop = window.Shopify.SignInWithShop || {};
  window.Shopify.SignInWithShop.assetMetrics = { sampleRate: 0.01 };
  window.Shopify.SignInWithShop.eligible = true;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"blog"}</script>
<script defer="defer" async type="module" data-src="//myvillagegreen.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
<script type="module">
  await import("//myvillagegreen.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js");

  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});

</script>
<script>
  window.Shopify = window.Shopify || {};
  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  window.Shopify.featureAssets['shop-js'] = {"shop-toast-manager":["modules/v2/loader.shop-toast-manager.en.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.en.esm.js"],"listener":["modules/v2/loader.listener.en.esm.js"],"shop-button":["modules/v2/loader.shop-button.en.esm.js"],"init-shop-user-recognition":["modules/v2/loader.init-shop-user-recognition.en.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.en.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.en.esm.js"],"avatar":["modules/v2/loader.avatar.en.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.en.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.en.esm.js"],"shop-user-recognition":["modules/v2/loader.shop-user-recognition.en.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.en.esm.js"],"pay-button":["modules/v2/loader.pay-button.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.en.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.en.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.en.esm.js"],"shop-login":["modules/v2/loader.shop-login.en.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.en.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.en.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.en.esm.js"]};
</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/d23dclunsivw3h.cloudfront.net\/redirect-app.js?shop=myvillagegreen.myshopify.com","\/\/secure.apps.shappify.com\/apps\/csp\/customer_pricing.php?shop=myvillagegreen.myshopify.com","https:\/\/cp.boldapps.net\/csp_install_check.js?shop=myvillagegreen.myshopify.com","https:\/\/cp.boldapps.net\/js\/cspqb.js?shop=myvillagegreen.myshopify.com","\/\/cdn.shopify.com\/proxy\/54064001b94c4eb37abf3cc0c66f021393ee7c094a6eeb251d7a4d6c6fed1fc5\/myvillagegreen.bookthatapp.com\/javascripts\/bta-installed.js?shop=myvillagegreen.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA","https:\/\/cdn.ordersify.com\/sdk\/v2\/ordersify-shopify.min.js?shop=myvillagegreen.myshopify.com","https:\/\/www.pxucdn.com\/apps\/uso.js?shop=myvillagegreen.myshopify.com","https:\/\/cdn.grw.reputon.com\/assets\/widget.js?shop=myvillagegreen.myshopify.com","https:\/\/quizify.arhamcommerce.com\/js\/shortcode.js?shop=myvillagegreen.myshopify.com","\/\/cdn.shopify.com\/proxy\/13cc2eac2abb0df5d20504cccbee10d96f458060076c6210a7a4d97981c00c72\/myvillagegreen.bookthatapp.com\/sdk\/v1\/js\/bta-order-status-bootstrap.min.js?shop=myvillagegreen.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA","https:\/\/searchanise-ef84.kxcdn.com\/widgets\/shopify\/init.js?a=7x5E5S3S2t\u0026shop=myvillagegreen.myshopify.com"];
    for (var i = 0; i < urls.length; i++) {
      var s = document.createElement('script');
      s.type = 'text/javascript';
      s.async = true;
      s.src = urls[i];
      var x = document.getElementsByTagName('script')[0];
      x.parentNode.insertBefore(s, x);
    }
  };
  document.addEventListener('StartAsyncLoading',function(event){asyncLoad();});if(window.attachEvent) {
    window.attachEvent('onload', function(){});
  } else {
    window.addEventListener('load', function(){}, false);
  }
})();</script>
<script id="__st">var __st={"a":31909609603,"offset":-14400,"reqid":"81597b69-d0f8-40e5-a75a-fc7e43260472-1781014965","pageurl":"myvillagegreen.com\/blogs\/post?feed=rss2","s":"blogs-74931208341","u":"166839525a5b","p":"blog","rtyp":"blog","rid":74931208341};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" data-src="//myvillagegreen.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.data-src="https://myvillagegreen.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>
<script async="async" integrity="sha256-hlq21VGceRKy8z+Fjhropk1BwDPACP0RdQ5rBrATyUo=" data-src="//cdn.shopify.com/shopifycloud/storefront/assets/storefront/origin_trials-67b41cb9.js" crossorigin="anonymous"></script>
<link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://myvillagegreen.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
        #shopify-buyer-consent {
  margin-top: 1em;
  display: inline-block;
  width: 100%;
}

#shopify-buyer-consent.hidden {
  display: none;
}

#shopify-subscription-policy-button {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-size: inherit;
  cursor: pointer;
}

#shopify-subscription-policy-button::before {
  box-shadow: none;
}

      </style>

<script id="shopify-cfh-end">window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>

    <link href="//myvillagegreen.com/cdn/shop/t/45/assets/bold-csp-custom.css?v=57192837131517800851750406552" rel="stylesheet" type="text/css" media="all" />
    <link
      rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css"
    >
    <style type="text/css">
      @import url("https://mem.boldapps.net/front_end/purchase/load_css?domain=myvillagegreen.com");
    </style>
    <style>
          #smile-ui-container {
          visibility: hidden;
          opacity: 0;
      }
        label.mobile-submenu-label {
          display: none;
      }
        .bottom-amunt .money-details{
          display:none!important;
        }
          .freeshipping strong, .freeshipping strong span{
            color:#fff!important;
          }
        .bought-slider .card--default {
          display: grid;
          grid-template-columns: 1fr 3fr;
          align-items: center;
          padding: 10px;
          border-radius: unset;
          border: none;
          grid-gap: 12px;
      }

      .bought-slider .card__img {
          border: 1px solid #d4d4d4;
          border-radius: 10px;
      }

      .bought-slider .card__info {
          display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .bought-slider .card__info .button {
          font-size: 15px;
          color: #006690;
          background: #fff;
          border: 2px solid #006690;
          padding: 6px 12px;
          font-weight: 800;
          text-transform: uppercase !important;
      }

      .bought-slider .card__info .button--addToCart svg {
          display: none;
      }
      .bought-slider .card__info a.card__brand {
          display: none;
      }

      .bought-slider .card__info a.card__title {
          min-height: auto;
      }
        .bought-slider .card__info .second-col {
          justify-self: flex-end;
          text-align: right;
      }

      .bought-slider .card__info .first-col {
          text-align: left;
      }

      .bought-slider .card__info a.card__title {
          font-weight: 700;
          font-size: 18px;
      }
        .bought-title {
          display: grid;
          grid-template-columns: 2fr 1fr;
          align-items: center;
        padding: 15px 20px;
          background: #fff;
      }

      .bought-title .bought-cart-slider {
          display: flex;
          justify-content: flex-end;
      }

      .bought-title .bought-cart-slider .swiper-button-prev-custom {
          margin-right: 10px;
      }

      .bought-title .bought-cart-slider .swiper-button-next-custom {
          margin-right: 10px;
      }
        .minicart .quantity--input__button {
          background: #EFFAFF;
      }

      button.quantity--input__button.quantity--input__decr {
          border-top-right-radius: 50px;
          border-bottom-right-radius: 50px;
      }

      button.quantity--input__button.quantity--input__incr {
          border-top-left-radius: 50px;
          border-bottom-left-radius: 50px;
      }

      input.quantity--input__input {
          background: #fff;
      }
        .minicart__info {
          display: grid;
          grid-template-columns: 1fr 1fr;
      }

      .minicart__info .second-col {
          justify-self: flex-end;
      }

      .bought-slider {
          margin-top: 40px;
      }
      a.product-min-cart-title {
          font-size: 16px;
          font-weight: 700;
      }

      .bought-slider span.jsPrice.money.pre-money {
          color: #3B392E;
        font-weight:700;
      }
          @media(max-width:767px){
            label.mobile-submenu-label {
          display: block;
      }
          }
 
    </style>

    <style>
          .swiper {
            width: 100%;
            height: 100%;
          }

          .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
          }

          .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
            .popover-body{
              font-size:18px;
              font-weight:600;
              text-align:center;
            }
            .custom-bootstrap-body.pop-over-active:after {
          content: '';
          width: 100%;
          height: 100%;
          background: rgba(59, 57, 46, 0.75);
          backdrop-filter: blur(4px);
          position: fixed;
          top: 0;
          left: 0;
          z-index: 99;
      }
      .pagination-nav-holder {

          width: 100%;
          justify-content: center;
      }
      button:disabled {
  color: #fff !important;

}
    </style>

    <style>
      #__next p, #__next span {
        color: inherit;
      }
    </style>
    
   
    
    
     <style>
      


:root{--baseFont: Montserrat, sans-serif;--titleFont:
Montserrat, sans-serif;--smallFontSize:
14px;--baseFontSize: 16px;--mediumFontSize:
30px;--mediumSubtitleFontSize: 24.0px;--bigFontSize:
48px;--headingFontSize:
70px;--subHeadingFontSize:
30px;--bodyBackgroundColor: #FFFFFF;--textColor: #3b392e;--titleColor:
#3b392e;--secondaryBodyBackgroundColor: #dedede;--secondaryTextColor:
#637605;--linkColor: #006990;--gLinkColor:
#006990;--accentColor: #637605;--accentColor005:
rgba(99, 118, 5, 0.05);--accentColor01:
rgba(99, 118, 5, 0.1);--accentColor025:
rgba(99, 118, 5, 0.25);--accentColor05:
rgba(99, 118, 5, 0.5);--accentColor075:
rgba(99, 118, 5, 0.75);--accentTextColor:
#FFFFFF;--secondaryAccentColor:
#637605;--secondaryAccentTextColor:
#FFFFFF;--disabledBackgroundColor: ;--disabledTextColor:
;--alertColor: #e95144;--alertColor005:
rgba(233, 81, 68, 0.05);--borderRadius:
0px;--borderRadiusSmall: 5px;--cardPadding:
10px;--maxwidth:1200px;;--inputFill: #EFEFEF;--inputContent:
#000000}*{box-sizing:border-box;}html{-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,
monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline
dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,
monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none;max-width:100%;height:auto}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;background:var(--inputFill);color:var(--inputContent);border:1px solid
#e2e2e2;border-radius:var(--borderRadiusSmall)}button:hover,select:hover{cursor:pointer}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px
dotted ButtonText}fieldset{padding:0.35em 0.75em
0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:focus{outline:0}select:focus,input:focus{border:1px solid darken(#e2e2e2, 20%)}[class^="col"]
p{width:100%}.container-fluid,.container{margin-right:auto;margin-left:auto}.row-container{margin:auto
auto}.row{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 1
auto;flex:0 1
auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}.row.reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.col.reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.hide{display:none
!important}.col-min,.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-offset-0,.col-offset-1,.col-offset-2,.col-offset-3,.col-offset-4,.col-offset-5,.col-offset-6,.col-offset-7,.col-offset-8,.col-offset-9,.col-offset-10,.col-offset-11,.col-offset-12{display:flex;-webkit-box-flex:0;-ms-flex:0
0 auto;flex:0 0
auto;padding-right:12px;padding-left:12px}.col-min{max-width:100%}.col{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-1{-ms-flex-preferred-size:8.33333333%;flex-basis:8.33333333%;max-width:8.33333333%}.col-2{-ms-flex-preferred-size:16.66666667%;flex-basis:16.66666667%;max-width:16.66666667%}.col-3{-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-4{-ms-flex-preferred-size:33.33333333%;flex-basis:33.33333333%;max-width:33.33333333%}.col-5{-ms-flex-preferred-size:41.66666667%;flex-basis:41.66666667%;max-width:41.66666667%}.col-6{-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-7{-ms-flex-preferred-size:58.33333333%;flex-basis:58.33333333%;max-width:58.33333333%}.col-8{-ms-flex-preferred-size:66.66666667%;flex-basis:66.66666667%;max-width:66.66666667%}.col-9{-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-10{-ms-flex-preferred-size:83.33333333%;flex-basis:83.33333333%;max-width:83.33333333%}.col-11{-ms-flex-preferred-size:91.66666667%;flex-basis:91.66666667%;max-width:91.66666667%}.col-12{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-offset-0{margin-left:0}.col-offset-1{margin-left:8.33333333%}.col-offset-2{margin-left:16.66666667%}.col-offset-3{margin-left:25%}.col-offset-4{margin-left:33.33333333%}.col-offset-5{margin-left:41.66666667%}.col-offset-6{margin-left:50%}.col-offset-7{margin-left:58.33333333%}.col-offset-8{margin-left:66.66666667%}.col-offset-9{margin-left:75%}.col-offset-10{margin-left:83.33333333%}.col-offset-11{margin-left:91.66666667%}.start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;justify-items:flex-start;text-align:left;text-align:start}.center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;justify-items:center;text-align:center}.end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;justify-items:flex-end;text-align:right;text-align:end}.top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;align-content:flex-start}.middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center;align-content:center}.bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;align-content:flex-end}.around{-ms-flex-pack:distribute;justify-content:space-around}.between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}@media
only screen and (min-width:
600px){.col-sm-min,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-offset-0,.col-sm-offset-1,.col-sm-offset-2,.col-sm-offset-3,.col-sm-offset-4,.col-sm-offset-5,.col-sm-offset-6,.col-sm-offset-7,.col-sm-offset-8,.col-sm-offset-9,.col-sm-offset-10,.col-sm-offset-11,.col-sm-offset-12{display:flex;-webkit-box-flex:0;-ms-flex:0
0 auto;flex:0 0
auto;padding-right:12px;padding-left:12px}.col-sm{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-sm-1{-ms-flex-preferred-size:8.33333333%;flex-basis:8.33333333%;max-width:8.33333333%}.col-sm-2{-ms-flex-preferred-size:16.66666667%;flex-basis:16.66666667%;max-width:16.66666667%}.col-sm-3{-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-sm-4{-ms-flex-preferred-size:33.33333333%;flex-basis:33.33333333%;max-width:33.33333333%}.col-sm-5{-ms-flex-preferred-size:41.66666667%;flex-basis:41.66666667%;max-width:41.66666667%}.col-sm-6{-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-sm-7{-ms-flex-preferred-size:58.33333333%;flex-basis:58.33333333%;max-width:58.33333333%}.col-sm-8{-ms-flex-preferred-size:66.66666667%;flex-basis:66.66666667%;max-width:66.66666667%}.col-sm-9{-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-sm-10{-ms-flex-preferred-size:83.33333333%;flex-basis:83.33333333%;max-width:83.33333333%}.col-sm-11{-ms-flex-preferred-size:91.66666667%;flex-basis:91.66666667%;max-width:91.66666667%}.col-sm-12{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-11{margin-left:91.66666667%}.start-sm{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left;text-align:start}.center-sm{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.end-sm{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right;text-align:end}.top-sm{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.middle-sm{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bottom-sm{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.around-sm{-ms-flex-pack:distribute;justify-content:space-around}.between-sm{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media
only screen and (min-width:
768px){.col-md-min,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-1-5,.col-md-offset-0,.col-md-offset-1,.col-md-offset-2,.col-md-offset-3,.col-md-offset-4,.col-md-offset-5,.col-md-offset-6,.col-md-offset-7,.col-md-offset-8,.col-md-offset-9,.col-md-offset-10,.col-md-offset-11,.col-md-offset-12{display:flex;-webkit-box-flex:0;-ms-flex:0
0 auto;flex:0 0
auto;padding-right:12px;padding-left:12px}.col-md{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-md-1-5{-ms-flex-preferred-size:20%;flex-basis:20%;max-width:20%}.col-md-1{-ms-flex-preferred-size:8.33333333%;flex-basis:8.33333333%;max-width:8.33333333%}.col-md-2{-ms-flex-preferred-size:16.66666667%;flex-basis:16.66666667%;max-width:16.66666667%}.col-md-3{-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-md-4{-ms-flex-preferred-size:33.33333333%;flex-basis:33.33333333%;max-width:33.33333333%}.col-md-5{-ms-flex-preferred-size:41.66666667%;flex-basis:41.66666667%;max-width:41.66666667%}.col-md-6{-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-md-7{-ms-flex-preferred-size:58.33333333%;flex-basis:58.33333333%;max-width:58.33333333%}.col-md-8{-ms-flex-preferred-size:66.66666667%;flex-basis:66.66666667%;max-width:66.66666667%}.col-md-9{-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-md-10{-ms-flex-preferred-size:83.33333333%;flex-basis:83.33333333%;max-width:83.33333333%}.col-md-11{-ms-flex-preferred-size:91.66666667%;flex-basis:91.66666667%;max-width:91.66666667%}.col-md-12{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-11{margin-left:91.66666667%}.start-md{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left;text-align:start}.center-md{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.end-md{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right;text-align:end}.top-md{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.middle-md{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bottom-md{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.around-md{-ms-flex-pack:distribute;justify-content:space-around}.between-md{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media
only screen and (min-width:
1024px){.col-lg-min,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-1-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-offset-0,.col-lg-offset-1,.col-lg-offset-2,.col-lg-offset-3,.col-lg-offset-4,.col-lg-offset-5,.col-lg-offset-6,.col-lg-offset-7,.col-lg-offset-8,.col-lg-offset-9,.col-lg-offset-10,.col-lg-offset-11,.col-lg-offset-12{display:flex;-webkit-box-flex:0;-ms-flex:0
0 auto;flex:0 0
auto;padding-right:12px;padding-left:12px}.col-lg{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-lg-1{-ms-flex-preferred-size:8.33333333%;flex-basis:8.33333333%;max-width:8.33333333%}.col-lg-2{-ms-flex-preferred-size:16.66666667%;flex-basis:16.66666667%;max-width:16.66666667%}.col-lg-1-5{-ms-flex-preferred-size:20%;flex-basis:20%;max-width:20%}.col-lg-3{-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-lg-4{-ms-flex-preferred-size:33.33333333%;flex-basis:33.33333333%;max-width:33.33333333%}.col-lg-5{-ms-flex-preferred-size:41.66666667%;flex-basis:41.66666667%;max-width:41.66666667%}.col-lg-6{-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-lg-7{-ms-flex-preferred-size:58.33333333%;flex-basis:58.33333333%;max-width:58.33333333%}.col-lg-8{-ms-flex-preferred-size:66.66666667%;flex-basis:66.66666667%;max-width:66.66666667%}.col-lg-9{-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-lg-10{-ms-flex-preferred-size:83.33333333%;flex-basis:83.33333333%;max-width:83.33333333%}.col-lg-11{-ms-flex-preferred-size:91.66666667%;flex-basis:91.66666667%;max-width:91.66666667%}.col-lg-12{-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-11{margin-left:91.66666667%}.start-lg{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left;text-align:start}.center-lg{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.end-lg{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right;text-align:end}.top-lg{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.middle-lg{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bottom-lg{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.around-lg{-ms-flex-pack:distribute;justify-content:space-around}.between-lg{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}.primaryCombo{background-color:var(--accentColor);color:var(--accentTextColor)}.primaryCombo--reversed{background-color:var(--accentTextColor);color:var(--accentColor)}.secondaryCombo{background-color:var(--secondaryAccentColor);color:var(--secondaryAccentTextColor)}.secondaryCombo--reversed{background-color:var(--secondaryAccentTextColor);color:var(--secondaryAccentColor)}.unflex{display:block}.flex{display:flex}::-moz-selection{color:var(--accentTextColor);background:var(--accentColor)}::selection{color:var(--accentTextColor);background:var(--accentColor)}table{border:1px
inset transparent;border-collapse:collapse}td,th{padding:16px}tr{transition:background-color
0.15s}tr:nth-child(even){background-color:rgba(222, 222, 222, 0.85);color:var(--secondaryTextColor)}tr:hover{background-color:var(--secondaryBodyBackgroundColor)}.h-reset,.h-reset--all
h1,.h-reset--all h2,.h-reset--all h3,.h-reset--all h4,.h-reset--all h5,.h-reset--all
h6{margin:0;line-height:1em;font-weight:700}.urgency__text span
p{margin:0}h1,h2,h3{font-family:var(--titleFont)}h1,h2{font-weight:700;color:var(--titleColor)}p,span{color:var(--textColor)}.p-reset,.p-reset--all
p{line-height:1.35em;margin:0}a{color:var(--linkColor)}a:not(.button):hover{color:var(--accentColor)}.max-width,.layout__boxed,.layout__stretchBg>.layout__content{max-width:var(--maxwidth);margin-right:auto;margin-left:auto;width:100%;position:relative}.raw__content{padding-left:0.75rem;padding-right:0.75rem}.layout__boxed>.layout__content,.layout__stretchContent>.layout__content{margin-right:auto;margin-left:auto;width:100%;position:relative}html,body{height:100%}main{display:flex;flex-direction:column;flex:1
1 auto}.wrapper--bottom{margin-top:auto;padding-top:48px}body{font-family:var(--baseFont);font-weight:400;font-size:var(--baseFontSize);background:var(--bodyBackgroundColor);color:var(--textColor)}input{border-radius:var(--borderRadiusSmall)}.svg-icon{height:20px;width:20px;max-height:100%;fill:currentColor}.icon-link{height:100%;line-height:0;max-height:20px;margin:0px
4px !important}.icon-link .uil{font-size:25px;color:currentColor}.icon-link
.uil.uil-facebook-f{font-size:22px}.icon-link .uil.uil-whatsapp{font-size:23px;line-height:20px}.icon-link
.uil::before{line-height:20px;margin:0px
!important;padding:0px}.overlay{position:absolute;width:100%;height:100%;top:0;left:0}.self__align--center{align-self:center}.self__align--top{align-self:flex-start}.self__align--bottom{align-self:flex-end}.self__justify--start{justify-self:flex-start}.self__justify--center{justify-self:center}.self__justify--end{justify-self:flex-end}.border-radius{border-radius:var(--borderRadius)}.border-radius--small{border-radius:var(--borderRadiusSmall)}.margin__vertical{margin-top:12px;margin-bottom:12px}.margin__horizontal{margin-left:12px;margin-right:12px}.margin--4{margin:4px}.margin__bottom--12{margin-bottom:12px}.margin__horizontal--4{margin-left:4px;margin-right:4px}.margin--8{margin:8px}.margin--16{margin:16px}.padding__horizontal{padding-left:12px;padding-right:12px}.padding__vertical{padding-top:12px;padding-bottom:12px}.bg__top{background-position:top}.bg__bottom{background-position:bottom}.bg__middle{background-position:center}.disable-select{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancy-scroll::-webkit-scrollbar{width:3px}.fancy-scroll::-webkit-scrollbar-track{background:#f1f1f1}.fancy-scroll::-webkit-scrollbar-thumb{background:#888}.fancy-scroll::-webkit-scrollbar-thumb:hover{background:#555}.hidden-scroll::-webkit-scrollbar{width:0px}.hidden-scroll::-webkit-scrollbar-track{background:transparent}.hidden-scroll::-webkit-scrollbar-thumb{background:transparent}.hidden-scroll::-webkit-scrollbar-thumb:hover{background:transparent}select{padding:0.5rem;border-radius:var(--borderRadiusSmall);font-size:var(--smallFontSize)}.booster__popup--holder{position:fixed;right:10px;top:10px;z-index:99;max-width:calc(100%
- 20px)}.booster__popup{opacity:0;padding:10px;margin-top:10px;max-width:100%;display:block;text-decoration:none
!important}.booster__popup--error{background:var(--alertColor);color:var(--accentTextColor)
!important}.booster__popup--info,.booster__popup--success{background:var(--accentColor);color:var(--accentTextColor)
!important}.booster__popup--warning{background:#ffe58e;color:black
!important}.banner{margin-bottom:24px;padding:24px}.description--collapse{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;-webkit-line-clamp:1;text-overflow:ellipsis}.description--collapse>*:not(style):not(script){display:inline-block;min-width:100%}.readMore__toggle{margin-top:12px;display:inline-block}.readMore__toggle:hover{cursor:pointer}.readMore__toggle::after{content:'
more'}.pagination{margin:24px 0px}.pagination__page{margin:0px 4px !important;padding:6px
12px;text-decoration:none;transition:all 0.15s;border-radius:var(--borderRadiusSmall)}.pagination__page
.uil::before{margin:0px !important}.pagination__page:hover{color:var(--accentColor);background:rgba(99, 118, 5, 0.1)}.pagination__page--current,.pagination__page--current:hover{color:var(--accentTextColor);background:var(--accentColor)}@media
screen and (max-width:
767px){.pagination__page{padding:6px}}[data-bstr-slide-holder]{overflow:hidden;overflow-x:scroll;-ms-overflow-style:none;scrollbar-width:none;scroll-behavior:smooth;scroll-snap-type:x
mandatory;display:flex;flex-wrap:nowrap}[data-bstr-slide-holder]::-webkit-scrollbar{display:none}[data-bstr-slider-orientation="vertical"]{overflow:hidden;overflow-y:scroll;scroll-snap-type:y
mandatory;padding-left:0;scroll-padding-left:0;flex-direction:column}[data-bstr-slide]{scroll-snap-align:start}.nav__utils{justify-content:flex-end}.page__header
.logo--transparent{display:none}.header__plist--item{display:flex;margin-bottom:0.5rem}.header__plist--item>a{flex-shrink:0}.header__plist--image{height:80px;width:80px;object-fit:cover;flex-shrink:0;margin-right:0.5rem}.header__plist--name{display:block;margin-bottom:0.35rem;white-space:normal}.header__utility>*:hover,.header__utility
.uil:hover{cursor:pointer;color:var(--accent)}.header__utility>*:not(:first-child){margin-left:.15rem}.search__icon{color:inherit}#user__button:checked+.user__holder,#i18n__button:checked+.i18n__holder{height:auto;padding:24px;opacity:1}#user__button:checked+.user__holder{padding-bottom:16px}#user__button:checked
~ .overlay,#i18n__button:checked ~ .overlay{display:block;background:black;opacity:.2}.user__button label,.i18n__button
label{position:relative;z-index:1}.user__holder,.i18n__holder{position:absolute;margin-top:12px;background:var(--bodyBackgroundColor);min-width:200px;right:0px;box-shadow:0px
0px 10px rgba(0,0,0,0.08);text-align:left;display:block;height:0;overflow:hidden;opacity:0;transition:opacity
0.25s;padding:0px;z-index:999;color:var(--textColor);font-size:initial}.user__button .overlay,.i18n__button
.overlay{position:fixed;z-index:0;display:none}.user__link{display:block;text-decoration:none;margin-bottom:12px
!important}.user__link .uil{font-size:1.1em;margin-right:6px}.i18n__title{display:block;margin-bottom:8px
!important;text-transform:uppercase;font-size:13px;font-weight:600}.i18n__title:last-of-type{margin-top:16px
!important}.i18n__title:first-of-type{margin-top:0px
!important}.search__container{position:relative;display:inline-block;flex:1;text-align:right}.search__container--inline{height:auto}.search__container--abs{position:fixed;left:0;top:0;box-shadow:0px
0px 10px rgba(0,0,0,0.08);z-index:999;width:100%;opacity:0;transform:translateY(-100%);transition:all
0.25s}.search__container--abs .search__container--wrapper{padding:24px
32px;background:var(--bodyBackgroundColor)}.search__container--abs.focused{opacity:1;transform:translateY(0%)}.search__container--abs
form input{font-size:25px;width:calc(100% - 35px);max-width:780px;padding:8px
16px;margin-top:8px;padding-left:0px;background:transparent;border:none}.search__container--abs
.search__icon--submit{font-size:20px;padding:0px;margin:0px
!important;background:transparent;border:none}.search__container--abs
.search__overlay{background:black;position:fixed;z-index:-1;height:100vh;width:100vw;left:0;top:0;opacity:0.15}.search__container--abs.focused
.search__overlay{display:block}.search__title{display:flex;width:100%}.search__title span{margin-left:auto
!important}.search__container--abs.focused .search__results{display:flex;left:35px;transform:none}.search__results
a{text-decoration:none}.search__icon:hover{cursor:pointer}.search__results{position:absolute;width:100%;left:50%;transform:translateX(-50%);padding:0px
8px;background:var(--bodyBackgroundColor);z-index:14;max-width:600px;display:none}.search__container--inline
.search__results{padding:8px}.search__container--inline .search__results
.card--default{display:flex;max-width:100%;width:100%;padding:8px;border-radius:var(--borderRadiusSmall);margin-bottom:8px}.search__container--inline
.search__results .card--default:hover{color:var(--accentColor);background:rgba(99, 118, 5, 0.1)}.search__container--inline .search__results .card__img--container{max-width:80px;margin:0px
!important;margin-right:12px !important}.search__container--inline .search__results .card--default
.card__info{text-align:left;margin:0px
!important}.search__result{display:flex;align-content:center;align-items:center;justify-content:left;min-height:50px;padding:8px
0px;margin:8px 0px;color:inherit;transition:background-color 0.15s}.search__result:hover{background-color:rgba(99, 118, 5, 0.1)}.search__result--details span{transition:color 0.15s}.search__result:hover .search__result--details
span{color:var(--accentColor)}.search__result--details{margin-left:8px;text-align:left}.search__result--details
.name{display:block;margin-bottom:8px !important}.search__container span:hover{cursor:pointer}.header
form{height:100%}.search__result--image{height:80px;width:80px;background-position:center;background-size:cover;margin-left:8px
!important}.search__overlay{z-index:13;position:fixed;height:100%;width:100%;background:#000;opacity:0;top:0px;left:0px;transition:opacity
0.15s;display:none}.search__container.focused .search__overlay{display:block;opacity:.1}.search__container.focused
.search__results{display:block}.search__page--result{margin-bottom:12px
!important}.searchpage__title{padding-top:76px;padding-bottom:76px;text-align:center}.searchpage__input{padding:4px
12px;margin-right:8px}.searchpage__input--title{margin-bottom:24px
!important}.search__term{color:var(--accentColor)}.searchpage__subtitle{margin-bottom:16px
!important;font-size:var(--mediumSubtitleFontSize)}@media only screen and (min-width:
768px){.search__container--sub{position:relative}.search__container--inline
input{width:100%;padding-left:35px;height:35px;z-index:14;max-width:750px;display:block;position:relative}.search__container--inline
.search__icon,.search__container--inline.focused
.search__icon--submit{position:absolute;left:5px;height:20px;top:50%;margin-top:-10px
!important;z-index:15}.search__container--inline .search__icon--submit{display:none}.search__container--inline.focused
.search__icon{display:none}.search__container--inline.focused
.search__icon--submit{display:block}.search__container--inline .search__icon--submit
.svg-icon{height:20px;width:20px}}@media only screen and (max-width: 767px){.search__container--abs.focused
.search__results{position:absolute;width:100vw;left:0px;display:block}.search__results--abs{padding:8px}.search__results--abs
.card--default{display:flex;max-width:100%;width:100%;padding:8px;border-radius:var(--borderRadiusSmall);margin-bottom:8px}.search__results--abs
.card--default:hover{color:var(--accentColor);background:rgba(99, 118, 5, 0.1)}.search__results--abs .card__img--container{max-width:80px;margin:0px !important;margin-right:12px
!important}.search__results--abs .card--default .card__info{text-align:left;margin:0px}}@media only screen and
(min-width: 768px){.search__container--abs.focused
.search__results--abs{left:0px;width:100%;max-height:85vh;max-width:none;padding-bottom:24px}}.linklist__link{margin:0px
4px !important}.marquee-container{transition:transform
0.3s;height:100%;justify-content:inherit;backface-visibility:hidden;transform:translateZ(0);-webkit-font-smoothing:subpixel-antialiased}.marquee-container
p{overflow:hidden;margin:0
!important;height:100%;width:100%;display:flex;align-items:center;justify-content:inherit}.info-bar>div>div:not(.block--minicart)
a{text-decoration:none;transition:all 0.15s}.info-bar>div>div:not(.block--minicart)
a:hover{color:currentColor;opacity:0.8}.breadcrumbs--default{padding:0.5rem;color:var(--secondaryTextColor);background:var(--secondaryBodyBackgroundColor)}.breadcrumbs__wrapper
.breadcrumb{width:100%}.breadcrumbs__wrapper{background:var(--secondaryBodyBackgroundColor)}.breadcrumb{font-size:12px}.breadcrumb
a{text-decoration:none}.breadcrumb span{margin-left:4px !important}.tag{padding:4px
6px;background:#000;font-size:12px;font-weight:bold;color:#ffffff;text-transform:uppercase;border-radius:var(--borderRadiusSmall);margin-bottom:0px !important;text-align:center}.tag *{color:#ffffff}.tag--sale{background:#94b102}.tag--soldout{background:#c8000c}.tag--custom{background:var(--accentColor)}
 .card__tags{position:absolute;top:0px;left:0px;max-width:50%;z-index:1}.card--holder{padding:0px
var(--cardPadding)}.card--default{position:relative;display:inline-block;width:100%;margin-bottom:20px}.card__slider__parent{height:100%;width:100%}.card__slider{height:100%;width:100%;flex-wrap:nowrap;display:flex;font-size:0px}.card--default
.slider__button{opacity:0}.card--default:hover .slider__button{opacity:0.4}.card--default
a{text-decoration:none}.card--default .card__info{text-align:center;margin:8px 0px}.card--default
.card__price,.card--default .card__price *{font-weight:700;
color:#94b102; }.card--default .card__price--sale,.card--default .card__price--sale span{font-weight:700;
color:#94b102; }.card--default .card__price--sale .card__price--old{font-weight:400;
color:#c0c0c0;
text-decoration:line-through}.card--default .card__brand{font-size:0.8em;font-weight:400;
color:var(--secondaryTextColor);
margin-bottom:4px
!important;display:inline-block}.spr-starrating.spr-badge-starrating{color:var(--accentColor)}.card--default
.spr-badge{margin-bottom:4px !important}.card--default .spr-badge .spr-badge-caption{display:none
!important}.card--default .card__img
.card__img--secondary{opacity:0;position:absolute;left:0px;top:0px}.card--default:hover .card__img
.card__img--secondary{opacity:1}.card__img--container{overflow:hidden;position:relative;display:block;margin-left:auto
!important;margin-right:auto !important;width:100%}.card--expanded
.card__img--container{width:35%;max-width:400px;min-width:80px}.card__img--ratio{
padding-top:100%;
width:100%;position:relative;border-radius:var(--borderRadius);overflow:hidden}.card__img{position:absolute;width:100%;height:100%;top:0;left:0}.card__img
img{height:100%;width:100%;transition:all .4s ease;object-fit:contain}.card--soldout .card__img
img{filter:grayscale(1)}.card__tags span{display:block;word-break:break-word}.card--expanded
.card--holder{max-width:100%;flex-basis:100%}.card__buttons{margin-top:8px}
 .card--expanded
.card--default{max-width:100%;display:flex;margin-bottom:36px;padding:0px}.card--expanded .card__brand{margin-bottom:8px
!important}.card--expanded .card__title{font-size:1.3em}.card--expanded .card--default{flex-wrap:nowrap}.card--expanded
.card__img{max-width:400px;margin-right:16px !important}.card--expanded
.card__info{justify-content:center;text-align:left;flex:1;display:flex;flex-direction:column;margin:0px
16px}.card--default .card__description{display:none;margin-top:8px !important}.card--expanded
.card__info>*{display:block}.card--hover::before{position:absolute;height:calc(100% + 16px);width:calc(100% +
16px);top:-8px;left:-8px;content:'';background:var(--bodyBackgroundColor);box-shadow:0px 0px 10px
rgba(0,0,0,0.08);z-index:-1;display:none;border-top-left-radius:var(--borderRadius);border-top-right-radius:var(--borderRadius)}.card--expanded
.card__buttons{position:relative !important;box-shadow:none !important;margin-top:12px !important;padding:0px
!important;margin-bottom:0 !important;text-align:left !important;display:block !important;left:0px
!important;background:transparent !important;border-radius:0px !important;width:100% !important;margin-top:16px
!important}.card--hover:hover .card__buttons{display:block}.card--default:hover{z-index:9}.card--default:hover
.card__img img{}.card--default:hover .card__img .card__img--gallery
img{transform:scale(1)}.card__img--gallery{width:100%;flex-shrink:0}.card--default:hover::before{display:block}.card__price{display:block}.card__title{display:block;margin-bottom:8px
!important;white-space:normal;font-weight:600;
color:#3b392e; }.card__reviews{display:block;margin-bottom:4px !important}.card__reviews .uil::before{margin:0px
!important}.card__reviews--empty{color:var(--secondaryTextColor)}.card__reviews--positive{color:var(--accentColor)}.card__reviews
svg{height:15px;width:15px}@media only screen and (min-width: 768px){.card--hover
.card__buttons{position:absolute;width:calc(100% +
16px);left:-8px;text-align:center;display:block;background:var(--bodyBackgroundColor);padding-top:8px;padding-left:var(--cardPadding);padding-right:var(--cardPadding);padding-bottom:12px;box-shadow:0px
10px 10px
rgba(0,0,0,0.08);border-bottom-left-radius:var(--borderRadius);border-bottom-right-radius:var(--borderRadius)}.card--slide{overflow:hidden}.card--expanded
.card--slide:hover .card__img--container{transform:translateY(0%)}.card--expanded .card--slide
.card__buttons{width:auto;opacity:1;height:auto;position:relative;padding-bottom:0px}.card--expanded .card--slide
.card__info{padding-top:0px}.card--expanded .card--slide:hover .card__info{transform:translateY(0%)}.card--slide
.card__buttons{position:absolute;width:100%;opacity:0;height:0;overflow:hidden;transition:opacity
0.15s;padding-bottom:8px}.card--slide .card__info{padding-top:8px;transition:transform 0.15s}.card--slide:hover
.card__info{transform:translateY(-46px)}.card--slide .card__img--container{transition:transform 0.15s;transform:translateY(0%)}.card--slide:hover
.card__img--container{transform:translateY(-36px)}.card--slide:hover .card__buttons{opacity:1;height:auto}}@media only screen and (max-width: 767px){.card--default
.button{}}.collection__card--title{text-align:left;width:100%;margin-top:8px !important;display:inline-block;
}.collection__card--title-inside{position:absolute;display:block;width:calc(100% - 24px);left:12px;color:#000000;text-align:left;
bottom:12px;
  
border-radius:var(--borderRadiusSmall);
}.collection__card .overlay{background:rgba(0,0,0,0);opacity:0.0}.collection__card:hover .card__img
img{transform:scale(1.1)}.collection__card{width:100%;margin-bottom:var(--cardPadding)}.bcard--default{width:100%;position:relative;transition:all
0.15s;display:block;text-decoration:none;overflow:hidden;margin-bottom:24px}.bcard__img--container{position:relative}.bcard__img--ratio{padding-top:50%;position:relative}.bcard__img{overflow:hidden;position:absolute;top:0px;height:100%;width:100%}.bcard__img
img{height:100%;width:100%;object-fit:cover}.bcard__title{display:block;margin-bottom:4px
!important;font-weight:600}.bcard__excerpt{font-size:0.85em}.bcard__author{margin-top:8px
!important;display:inline-block}.bcard__info{margin-top:6px !important;transition:all 0.15s}.bcard--inside
.bcard__info{margin:0px 24px !important;background:var(--bodyBackgroundColor);margin-top:-24px !important;padding:12px
16px;position:relative;z-index:1;border-radius:var(--borderRadiusSmall)}.bcard--inside:hover
.bcard__info{margin-left:12px;margin-right:12px;padding:24px
28px;margin-top:-36px;background:var(--accentColor);color:var(--accentTextColor) !important}.bcard--blur
.bcard__img--ratio{padding-top:66.6%}.bcard--blur .bcard__info{position:absolute;width:100%;padding:12px
16px;bottom:0px;background-color:rgba(0,0,0,0.3);backdrop-filter:blur(5px);border-bottom-left-radius:var(--borderRadius);border-bottom-right-radius:var(--borderRadius)}.bcard--blur:hover
.bcard__info{padding-bottom:32px}.bcard--blur .bcard__info{color:#FFF}.bcard--bottom .bcard__info{padding:12px
16px;margin-top:0px;background:var(--bodyBackgroundColor);border-bottom-left-radius:var(--borderRadius);border-bottom-right-radius:var(--borderRadius)}.bcard--bottom
.bcard__img{border-bottom-left-radius:0px;border-bottom-right-radius:0px}.bcard--bottom:hover
.bcard__info{background:var(--accentColor);color:var(--accentTextColor)
!important}.bcard--wrapped{padding:12px;background:var(--bodyBackgroundColor)}.bcard--wrapped
.bcard__info{margin-top:8px;padding:0px}.bcard--wrapped:hover{background:var(--accentColor)}.bcard--wrapped:hover
.bcard__info{color:var(--accentTextColor)
!important}.blog__listing--horizontal{display:flex;margin-bottom:48px}.blog__listing--image{width:100%;height:100%;object-fit:cover;position:absolute;bottom:0;left:0;transition:transform
2s}.blog__listing--ratio{width:55%;position:relative;padding-bottom:40%;display:block;border-radius:var(--borderRadius);overflow:hidden}.blog__listing--info{margin-left:24px;flex:1}.blog__listing--title{font-size:1.4em;text-decoration:none}.blog__listing--tag{color:var(--accentColor);margin-bottom:8px
!important;margin-right:4px
!important;font-size:var(--smallFontSize);display:inline-block}.blog__listing--excerpt{padding:16px
0px}.blog__listing--horizontal:hover .blog__listing--image{transform:scale(1.15)}.row__blog{padding-bottom:24px}@media
screen and (max-width:
767px){.blog__listing--ratio{width:100%;padding-bottom:65%}.blog__listing--horizontal{flex-wrap:wrap}.blog__listing--info{margin:12px
0px 0px 0px}}.article__featured{border-radius:var(--borderRadius);width:100%;max-width:100%;margin:48px
0px;box-shadow:0px 0px 25px
rgba(99, 118, 5, 0.1);position:relative}.article__featured--shadow{position:absolute;bottom:45px;left:5%;width:90%;opacity:0.55;filter:blur(15px)
!important}.article__title{padding:25px 0px}.article__meta{color:var(--accentColor)}.article__excerpt{margin-top:24px
!important;font-size:1.5em}.article__max-width{max-width:840px;margin-left:auto;margin-right:auto}.article__max-width--image{max-width:1024px;margin-left:auto;margin-right:auto;position:relative}.article__content{padding-bottom:32px}.article__tags{padding-bottom:56px;display:flex;flex-wrap:wrap;align-items:center}.article__tags--tag{margin-left:12px
!important;color:var(--secondaryTextColor);padding:6px
12px;background:var(--secondaryBodyBackgroundColor);border-radius:var(--borderRadiusSmall);text-decoration:none;transition:all
0.5s}.article__tags--tag:hover{color:var(--accentTextColor);background:var(--accentColor)}.article__content:nth-child(2){padding-top:48px}blockquote{margin:24px
0px;padding:36px;position:relative;background:var(--secondaryBodyBackgroundColor);border-left:2px solid
var(--accentColor);font-size:1.2em}.article__content
*{line-height:1.4em}.minicart__image{width:80px;flex-shrink:0}.minicart__timer{color:var(--alertColor);background:var(--alertColor005);padding:0.25rem
0.5rem;border-radius:var(--borderRadiusSmall);margin-bottom:16px;text-align:center}.minicart__timer
span{font-size:0.95em;color:var(--alertColor)}.minicart__image
.card__img--ratio{border-radius:var(--borderRadiusSmall)}.minicart__holder{display:none;position:absolute;right:0;text-align:left;z-index:20}.minicart{min-width:350px;overflow:hidden;position:relative;background:var(--bodyBackgroundColor);color:var(--textColor);margin-top:4px;box-shadow:0px
5px 10px rgba(0,0,0,0.08);border-radius:var(--borderRadius)}.minicart__title{margin-bottom:16px
!important}.minicart__trash .uil{font-size:1em}.minicart__title span{font-size:0.8em}.minicart__title
.minicart__close{float:right;font-size:0.7em;text-transform:uppercase;color:var(--textColor);opacity:0.8;cursor:pointer}.minicart__title
.minicart__close:hover{color:var(--accentColor);opacity:1}.minicart__entries{overflow-y:auto;max-height:400px;padding:20px}.minicart__entries
.svg-icon{height:18px;width:18px}.empty__cart--icon
.uil{font-size:130px;color:var(--secondaryTextColor)}.empty__cart--title{margin-top:12px !important;margin-bottom:24px
!important}.minicart__bottom{position:relative;width:100%;bottom:0;left:0;box-shadow:0px -5px 30px -10px
rgba(0,0,0,0.15);padding:20px}.minicart__bottom .minicart__total{display:block;margin-bottom:16px
!important;font-weight:600}.minicart__entry{display:flex;flex-wrap:nowrap;align-items:flex-start;transition:opacity
0.25s;opacity:1;margin-bottom:20px}.minicart__entry .minicart__info{flex:auto;margin-left:12px
!important}.minicart__info>a{display:block;max-width:24ch}.minicart__entry a{text-decoration:none}.minicart__entry
.minicart__variation{font-size:var(--smallFontSize);color:var(--secondaryTextColor);display:block;margin-top:4px
!important}.minicart__entry .minicart__price{display:block;font-weight:600;margin-top:4px
!important}.minicart__icon--text-only{text-transform:uppercase;font-size:0.9em}.minicart__icon--text-only
span{margin-left:1ch}[data-minicart-input]{display:none}.block--minicart .minicart__label{font-size:max(1.5rem,
1em)}.minicart__button{display:inline-block;line-height:initial}.minicart__button
.minicart__holder{font-size:initial}[data-minicart-input]:checked ~
.minicart__holder{display:block;z-index:999}.minicart__label{display:flex;position:relative}.minicart__label:hover{cursor:pointer}.minicart__label
.item__count{padding:2px;min-height:10px;min-width:15px;font-size:10px;display:block;position:absolute;text-align:center;font-weight:bold;right:-3px;user-select:none;background:var(--accentColor);color:var(--accentTextColor);border-radius:10px}.minicart__button
.overlay{opacity:0.2;z-index:-1;display:none}[data-minicart-input]:checked ~
.overlay{display:block;position:fixed;z-index:99;background:black}.minicart .quantity--input__button{padding:8px
20px}.minicart .quantity--input__input{width:40px;padding:6px 4px}@media only screen and (min-width:
768px){[data-minicart-input]:checked ~
.minicart__holder{transform:translateX(0%)}.minicart__holder.minicart--sidebar{position:fixed;right:0;top:0;margin:0;height:100vh;z-index:9999;display:block;transform:translateX(100%);transition:transform
0.25s;max-width:550px}.minicart--sidebar
.minicart{margin:0;height:100vh;display:flex;flex-direction:column;border-radius:0px}.minicart--sidebar
.minicart__entries{max-height:none}.minicart--sidebar .minicart__bottom{margin-top:auto}.minicart__button
.overlay{z-index:1}}@media only screen and (max-width:
767px){.minicart__entries{max-height:100%;height:100%}[data-minicart-input]:checked ~
.minicart__holder{transform:translateX(0%)}.minicart__holder{position:fixed;right:0;top:0;margin:0;height:100vh;z-index:9999;display:block;transform:translateX(100%);transition:transform
0.25s;max-width:95vw}.minicart{margin:0;height:100vh;display:flex;flex-direction:column;border-radius:0px}.minicart__entries{max-height:none}.minicart__bottom{margin-top:auto}.minicart__button
.overlay{z-index:1}}.button,.shopify-payment-button__button.shopify-payment-button__button--unbranded,.shopify-challenge__button{text-align:center;text-decoration:none;font-size:16px;border-width:2px;border-style:solid;border-color:transparent;border-radius:var(--borderRadiusSmall);display:inline-block;padding:10px 25px;max-width:100%;background-color:transparent;transition:all
0.15s;animation-duration:1s}.button--addToCart{text-transform:initial;

}.shopify-payment-button__button.shopify-payment-button__button--unbranded{text-transform:initial; 



border:0px;
    background-color:#637605;color:#FFFFFF;
    
  }.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover{


border:0px;
    
      background-color:#FFFFFF;color:#637605;
      
    
  }.button
span{line-height:1em}.button--icon{display:inline-flex;align-items:center;justify-content:center}.button--icon.icon--right{flex-direction:row-reverse}.button--icon
.uil{font-size:1.1em;margin:0px !important;margin-right:4px !important}.button *{color:inherit}@media (hover:
hover){.button:hover{cursor:pointer;animation-name:none
!important}}.button:disabled{opacity:.6;cursor:not-allowed}.button--filled{border:0px}.button--underlined{border-top:0px;border-left:0px;border-right:0px;border-radius:0px
!important}.button--text{border:0px}.button--primary{
border-width:px;border-radius:px;
}.shopify-payment-button__button.shopify-payment-button__button--unbranded{width:100%}.button--primary__filled,.shopify-challenge__button{
background-color:#006990;color:#FFF;
}@media (hover: hover){.button--primary__filled:hover{

  background-color:#008ec3;color:#FFF;
  
}}.button--primary__ghost,.button--primary__underlined,.button--primary__text{
border-color:#006990;color:#FFF;
}@media (hover: hover){.button--primary__ghost:hover,.button--primary__underlined:hover,.button--primary__text:hover{

  background-color:#008ec3;color:#FFF;
  
}}.button--secondary{
}.button--secondary__filled{
background-color:#637605;color:#FFFFFF;
}@media (hover: hover){.button--secondary__filled:hover{

  background-color:#FFFFFF;color:#637605;
  
}}.button--secondary__ghost,.button--secondary__underlined,.button--secondary__text{
border-color:#637605;color:#637605;
}@media (hover:
hover){.button--secondary__ghost:hover,.button--secondary__underlined:hover,.button--secondary__text:hover{

  background-color:#FFFFFF;color:#637605;
  
}}.button--full-width{width:100%;max-width:100%}.quantity--input{margin-top:8px;border-radius:var(--borderRadiusSmall);overflow:hidden;display:inline-flex;color:var(--inputContent);border:1px solid #e2e2e2}.quantity--input__button{display:inline-block;padding:10px
20px;font-size:var(--baseFontSize);line-height:var(--baseFontSize);border:none;border-radius:0px}.quantity--input__input{padding:8px
8px;width:80px;text-align:center;-moz-appearance:textfield;border:0;border-radius:0;font-size:var(--baseFontSize);line-height:var(--baseFontSize);-webkit-appearance:none;border:none
!important}.quantity--input__input::-webkit-outer-spin-button,.quantity--input__input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}@media
(hover: hover){.quantity--input__button:hover{cursor:pointer}}@keyframes
bounce{from,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355,
1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);-webkit-transform:translate3d(0, 0,
0);transform:translate3d(0, 0, 0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855,
0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);-webkit-transform:translate3d(0, -30px,
0);transform:translate3d(0, -30px, 0)}70%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855,
0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);-webkit-transform:translate3d(0, -15px,
0);transform:translate3d(0, -15px, 0)}90%{-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px,
0)}}.button__animation--bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center
bottom;transform-origin:center bottom}@keyframes
flash{from,50%,to{opacity:1}25%,75%{opacity:0}}.button__animation--flash{-webkit-animation-name:flash;animation-name:flash}@keyframes
pulse{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}50%{-webkit-transform:scale3d(1.05, 1.05,
1.05);transform:scale3d(1.05, 1.05, 1.05)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1,
1)}}.button__animation--pulse{-webkit-animation-name:pulse;animation-name:pulse}@keyframes
rubberBand{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}30%{-webkit-transform:scale3d(1.25, 0.75,
1);transform:scale3d(1.25, 0.75, 1)}40%{-webkit-transform:scale3d(0.75, 1.25, 1);transform:scale3d(0.75, 1.25,
1)}50%{-webkit-transform:scale3d(1.15, 0.85, 1);transform:scale3d(1.15, 0.85, 1)}65%{-webkit-transform:scale3d(0.95,
1.05, 1);transform:scale3d(0.95, 1.05, 1)}75%{-webkit-transform:scale3d(1.05, 0.95, 1);transform:scale3d(1.05, 0.95,
1)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1,
1)}}.button__animation--rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@keyframes
shake{from,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0,
0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px, 0, 0);transform:translate3d(-10px, 0,
0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px, 0, 0);transform:translate3d(10px, 0,
0)}}.button__animation--shake{-webkit-animation-name:shake;animation-name:shake}@keyframes
swing{20%{-webkit-transform:rotate3d(0, 0, 1, 15deg);transform:rotate3d(0, 0, 1,
15deg)}40%{-webkit-transform:rotate3d(0, 0, 1, -10deg);transform:rotate3d(0, 0, 1,
-10deg)}60%{-webkit-transform:rotate3d(0, 0, 1, 5deg);transform:rotate3d(0, 0, 1,
5deg)}80%{-webkit-transform:rotate3d(0, 0, 1, -5deg);transform:rotate3d(0, 0, 1, -5deg)}to{-webkit-transform:rotate3d(0,
0, 1, 0deg);transform:rotate3d(0, 0, 1, 0deg)}}.button__animation--swing{-webkit-transform-origin:top
center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@keyframes
tada{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}10%,20%{-webkit-transform:scale3d(0.9, 0.9, 0.9)
rotate3d(0, 0, 1, -3deg);transform:scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1,
-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);transform:scale3d(1.1, 1.1, 1.1)
rotate3d(0, 0, 1, 3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1,
-3deg);transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)}to{-webkit-transform:scale3d(1, 1,
1);transform:scale3d(1, 1, 1)}}.button__animation--tada{-webkit-animation-name:tada;animation-name:tada}@keyframes
wobble{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0,
0)}15%{-webkit-transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);transform:translate3d(-25%, 0, 0) rotate3d(0,
0, 1, -5deg)}30%{-webkit-transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);transform:translate3d(20%, 0, 0)
rotate3d(0, 0, 1, 3deg)}45%{-webkit-transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1,
-3deg);transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)}60%{-webkit-transform:translate3d(10%, 0, 0)
rotate3d(0, 0, 1, 2deg);transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)}75%{-webkit-transform:translate3d(-5%,
0, 0) rotate3d(0, 0, 1, -1deg);transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1,
-1deg)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0,
0)}}.button__animation--wobble{-webkit-animation-name:wobble;animation-name:wobble}@keyframes
jello{from,11.1%,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0,
0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg)
skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg)
skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg)
skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg)
skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg)
skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.39063deg) skewY(0.39063deg);transform:skewX(0.39063deg)
skewY(0.39063deg)}88.8%{-webkit-transform:skewX(-0.19531deg) skewY(-0.19531deg);transform:skewX(-0.19531deg)
skewY(-0.19531deg)}}.button__animation--jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@keyframes
heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.button__animation--heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.row--product-list{justify-content:center}.product__list{max-width:var(--maxwidth);align-self:flex-start}.product__list--filters{max-width:var(--maxwidth)}.filter__vendor,.filter__collection{text-decoration:none}.filter__vendor--current,.filter__collection--current{color:var(--accentColor)}.filter__bar{margin-bottom:24px;display:flex;align-items:center;justify-items:flex-end;justify-content:flex-end;color:var(--secondaryTextColor);margin-left:auto}.filter__dropdown{position:relative}.filter__bar
select{background:transparent;-webkit-appearance:none;-moz-appearance:none;padding:4px
8px;color:var(--textColor);font-size:var(--baseFontSize);appearance:none;padding-right:35px;border:none}.filter__bar
select::-ms-expand{display:none}.filter__bar .filter__icon{position:absolute;margin:0px
!important;padding:0px;width:25px;font-size:18px;display:flex;align-items:center;right:4px;z-index:-1;height:100%}.filter__views{margin-right:12px
!important}.filter__view{border:none;background:none;padding:0;margin-right:8px
!important;width:20px;height:20px;color:var(--secondaryTextColor);transition:color
0.15s}.filter__view:hover{color:var(--textColor)}.filter__view.view--active{color:var(--accentColor)}.filter__view:hover{opacity:1}.filter__current-filters>span{display:inline-block;padding:4px
6px;padding-right:18px;margin-left:4px
!important;position:relative;background:var(--accentColor);color:var(--accentTextColor);border-radius:var(--borderRadiusSmall)}.filter__current-filters>span::after{content:'x';font-size:12px;font-weight:600;right:6px;position:absolute;top:50%;transform:translateY(-50%);opacity:0;transition:opacity
0.1s}.filter__current-filters>span:hover::after{opacity:1}.filter__current-filters{margin-bottom:12px
!important;margin-left:-4px !important;margin-right:-4px !important}.filter__current-filters
span:hover,.filter__tag:hover{cursor:pointer}.filter__current-filters
.filter__current-color{display:inline-block;height:8px;width:8px;margin-right:4px !important;margin-bottom:2px
!important}.filter__group-title{display:block;margin-bottom:12px
!important;position:relative;padding-right:14px;font-size:1.3em}.filter__group{margin-bottom:36px}.filter__group-title:hover{cursor:pointer}.filter__group-title::after{position:absolute;right:0px;height:100%;content:'\eb3a';font-family:unicons-line;speak:none;transition:transform
0.1s}.filter__checkbox{display:flex;align-items:center;margin-bottom:0.1em;padding:0.25em
0.4em;cursor:pointer;transition:background-color 0.3s;border-radius:0.25em}.filter__checkbox
*{cursor:pointer}.filter__checkbox.filter--disabled
*{cursor:not-allowed}.filter__checkbox:hover{background-color:var(--accentColor01)}.filter__checkbox.filter--disabled{opacity:0.8;background:transparent
!important}.filter__checkbox>input{margin-right:0.5em}.filter__checkbox>label{display:flex;flex:1;align-items:center}.filter__checkbox>label>span[data-filter-count]{font-size:0.75em;padding:0.15em
0.2em;background:var(--accentColor);color:var(--accentTextColor);margin-left:auto;text-align:center;min-width:2em;border-radius:0.25em}.filter__checkbox.filter--disabled>label>span[data-filter-count]{color:var(--secondaryBodyBackgroundColor);background-color:var(--secondaryTextColor)}.filter__checkbox--swatch{display:none}.filter__tag--swatch{margin:2px
0px;margin-left:0;display:inline-flex;align-items:center;padding:0.25rem
0.5rem;border-radius:var(--borderRadiusSmall);position:relative;text-align:center;cursor:pointer;border:2px solid
transparent}.filter__tag--swatch
span[data-filter-count]{margin-left:0.25rem}.filter__color--swatch{height:15px;width:15px;border-radius:50%;border:2px
solid white;background:var(--scolor);display:inline-block;margin-right:0.4rem}.filter__checkbox--swatch
input:checked+.filter__tag--swatch{background:var(--accentColor);color:var(--accentTextColor)}.filter__checkbox--swatch
input:checked+.filter__tag--swatch *{color:var(--accentTextColor)}.filter__tag--swatch
span{font-size:0.85em}.filter__tag--tag{margin-right:4px
!important;opacity:0.8}.filter__tag--tag:hover,.filter__tag--text:hover{opacity:1}.filter__tag--text:hover
span{color:var(--accentColor)}.filter__tag--swatch:hover
span{color:var(--accentColor)}.filter__tag--text{margin-bottom:8px !important}.filter__tag--text span{transition:color
0.1s}.filter__image,.filter__text{display:none}.filter__tag{display:none;overflow:hidden}.filter__toggle:checked+div>.filter__tag,.filter__toggle:checked+div>.filter__checkbox--swatch{display:inline-block;overflow:visible}.filter__toggle:checked+div>.filter__tag--text,.filter__toggle:checked+div>.filter__image,.filter__toggle:checked+div>a
.filter__image,.filter__toggle:checked+div>.filter__text{display:block}.filter__toggle:checked+div>.filter__checkbox{display:flex}.filter__toggle:checked+div>.filter__tag--swatch{padding:4px
6px}.filter__toggle:checked+div>.filter__group-title::after{transform:rotate(180deg)}@media only screen and (max-width:
767px){#filterSidebar{display:none;position:fixed;bottom:40px;z-index:99;left:20px;width:calc(100% -
40px);height:calc(100% -
80px);background:var(--bodyBackgroundColor);padding:20px;border-radius:var(--borderRadius);overflow:auto}.filter__overlay{display:none}#filterToggle:checked
~ #filterSidebar{display:block !important}#filterToggle:checked ~
.filter__mobile--button{background:var(--accentColor);color:var(--accentTextColor)}#filterToggle:checked+.filter__overlay{display:block;position:fixed;left:0px;top:0px;width:100%;height:100%;background:black;opacity:0.8;z-index:98}.filter__mobile--current{color:inherit;position:absolute;top:0;right:-4px;background:var(--accentColor);color:var(--accentTextColor);font-size:var(--smallFontSize);padding:0px
4px;border-radius:var(--borderRadiusSmall)}.filter__mobile--button{display:block;position:fixed;bottom:8px;padding:8px;border-radius:50%;box-shadow:0px
0px 10px
rgba(0,0,0,0.08);left:50%;margin-left:-25px;z-index:99;background:var(--bodyBackgroundColor);font-size:25px;text-align:center;width:50px;height:50px}.filter__mobile--button
.uil::before{margin:0px
!important;width:auto;line-height:40px}.filter__current-filters>span::after{opacity:1}}.cart__header{margin-top:24px;margin-bottom:48px;flex-wrap:wrap}.cart__header>div{margin-top:12px}.cart__form{flex-wrap:wrap;padding-bottom:24px}.cart__suggestion{margin-top:12px
!important;margin-bottom:24px !important}.cart__suggestion--button{margin:36px
0px}.cart__item>div{align-content:center;align-items:center;padding:12px
0px;justify-content:center}.cart__item{flex-wrap:wrap;position:relative;padding-top:24px;padding-bottom:24px}.cart__item::before{content:'';position:absolute;left:50%;top:0px;height:1px;background:currentColor;opacity:0.1;width:75%;transform:translateX(-50%)}.cart__item:first-child::before{display:none}.cart__item:hover{background:rgba(99, 118, 5, 0.03)}.cart__form--header{text-align:center;justify-content:center;padding-top:8px;padding-bottom:8px}.cart__item
.cart__info{justify-content:flex-start;justify-items:flex-start}.cart__info .card__img--container{margin:0
!important;margin-right:20px !important}.cart__info--variant{margin-top:4px
!important;font-size:0.9em;opacity:0.8}.cart__info--text{display:block}.cart__info--text
a{display:block;margin-bottom:4px;text-decoration:none}.cart__qtyTotal--holder{flex-wrap:wrap}.cart__ptotal,.cart__form--header-total{justify-content:flex-end;text-align:right}.cart__trash
.uil{font-size:18px;opacity:0.7}.cart__trash
.uil:hover{opacity:1;cursor:pointer}.cart__continue{text-decoration:none;display:flex;align-items:center;align-content:center;font-size:0.9em;align-self:flex-start;color:var(--accentColor)}.cart__continue>span{color:var(--accentColor)}.cart__continue
.uil{font-size:20px}.cart__additional{padding-top:48px;padding-bottom:24px}.cart__grandtotal,.cart__total,.cart__discount{display:block;margin-bottom:16px
!important}.cart__discount--amount{color:var(--alertColor);padding:4px;border-radius:var(--borderRadiusSmall);background:rgba(233, 81, 68, 0.1);font-weight:bold}.cart__notes{text-align:left;flex-direction:column;}.cart__notes--note{margin-top:12px
!important;margin-bottom:16px
!important;resize:vertical;padding:12px;display:block;min-height:4em}.cart__compare-price{display:block;font-size:0.9em;text-decoration:line-through}.cart__punit{flex-wrap:wrap}.cart__compare-price--punit{flex-basis:100%;text-align:center}.cart__currency{text-align:center;padding:12px;background:rgba(99, 118, 5, 0.05);margin-top:48px;line-height:1.5em}.button--cart__update{margin-right:16px}@media only screen and (max-width:
767px){.cart__page--suggestions>div:first-child{margin-left:-24px}.button--cart__update{margin-bottom:8px;margin-right:0px;margin-top:16px}.checkout__button
.button{width:100%;flex:1;max-width:100%}.cart__additional--right{flex-direction:column;justify-content:center;justify-items:center;text-align:center}.cart__additional--left{justify-content:center;justify-items:center;padding-top:24px;padding-bottom:24px}.cart__grandtotal{margin-bottom:36px
!important}.cart__notes{margin:24px auto
!important;width:100%;display:block;max-width:none}.cart__notes--note{width:100%}.cart__ptotal{text-align:left;margin-top:12px
!important}}.orders__table{border-collapse:collapse;padding:0;width:100%;table-layout:fixed;margin-bottom:24px}.orders__table
caption{font-size:1.5em;margin:.5em 0 .75em}.orders__table tr{padding:.35em}.orders__table th,.orders__table
td{text-align:center}.orders__table th{font-size:.85em;letter-spacing:.1em;text-transform:uppercase}@media screen and
(max-width: 600px){.orders__table{border:0}.orders__table caption{font-size:1.3em}.orders__table
thead{border:none;clip:rect(0 0 0
0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.orders__table
tr{display:block;margin-bottom:.625em}.orders__table td{display:block;font-size:.8em;text-align:right}.orders__table
td::before{content:attr(data-label);float:left;font-weight:bold;text-transform:uppercase}.orders__table
td:last-child{border-bottom:0}}.account__page{max-width:1280px;margin:0 auto}.d_addy p{margin-top:12px
!important}.order__page{max-width:1280px;margin:auto auto}.order__items{width:100%;margin-bottom:0px}.order__items
th{text-align:left}.order__items td{text-align:left}.order__items
td:first-child{min-width:225px;text-align:left}.order__items th:last-child,.order__items
td:last-child{text-align:right}@media screen and (max-width: 767px){.order__billing{margin-bottom:36px
!important}.order__items td{text-align:right !important}.order__total td:first-child{text-align:left
!important}}.account__page{max-width:1280px;margin:0 auto}.account__page
.customer__form{margin:0;margin-left:auto;display:none}.account__page .customer__form
form{text-align:left}.form__toggle{display:none}.form__toggle__label{margin-left:auto !important;margin-bottom:24px
!important}.form__toggle__label::before{content:'Add a new address';color:currentColor}.form__toggle:checked ~ .col-12
.form__toggle__label::before{content:'Cancel'}.form__toggle:checked ~ .customer__form{display:block}.account__addresses
input:not(.button--primary){display:block;margin-bottom:4px;background:transparent;border:none;padding:4px}.account__addresses
input:not(:disabled):not(.button){background:var(--inputFill);color:var(--inputContent);padding:8px;margin-bottom:4px}.account__addresses
input:focus{outline:2px solid var(--accentColor)}.account__addresses
input[type="submit"].button:disabled{display:none}.account__addresses
input[type="submit"].button{margin-top:8px}.address__form[data-state="disabled"]
label{display:none}.address__form[data-state="disabled"] label{display:none}.address__form
label{margin-top:6px;margin-bottom:4px;display:block}.address__edit__toggle{font-weight:normal;font-size:1rem;margin-left:12px;cursor:pointer}.product__list{flex-wrap:wrap;margin-bottom:24px}.product__row--marketplace
.product__page--info:last-child{box-shadow:0px 0px 10px
rgba(0,0,0,0.08);padding-top:12px;max-width:320px}.product__row--marketplace .product__atc
.quantity--input{margin-right:0px !important;margin-bottom:8px !important;width:100%}.product__row--marketplace
.product__atc
.quantity--input__input{width:100%}.product__page--info{flex-direction:column;align-content:flex-start}.modal
.product__page--info{top:auto}.zoom.active:hover{cursor:grab}.zoom-btn{position:absolute;right:8px;top:8px;opacity:0;transition:all
0.15s;padding:4px
6px;font-weight:bold;background:var(--bodyBackgroundColor);color:var(--accentColor);border:none;font-size:var(--smallFontSize)}.zoom-btn:hover{background:var(--accentColor);color:var(--accentTextColor)}.slider--product__holder{padding:0
0.5rem}.model__holder{width:100%;height:100%}.model__holder>*:first-child{height:100%;width:100%}@media screen and
(max-width: 768px){.gallery__default{flex-direction:column-reverse}.slider--product{max-height:none
!important}}.slider--product{height:100%}.slider--product__holder{transition:max-height
0.2s}.slide--product{width:100%;align-self:flex-start;flex-shrink:0}.slide--product
img{width:100%;height:100%;object-fit:contain}.gallery__image--zoom{width:100%}.gallery:hover
.zoom-btn{opacity:1}.gallery{max-width:100%;display:flex;width:100%;position:relative;max-height:680px}.gallery__image{max-height:100%;overflow:hidden;padding:0px;margin-left:12px;position:relative}.image__outlined{outline:2px
solid var(--accentColor)}.gallery__image:hover{cursor:zoom-in}.gallery__video{width:100%}.gallery__image
img,.gallery__fake{height:100%;width:100%;object-fit:contain;object-position:top}.external__holder{width:100%;position:relative;height:0px}.external__holder
iframe{height:100%;width:100%;position:absolute;left:0;top:0}.gallery__thumbnails--holder{max-height:100%;position:relative;overflow:hidden;padding:0px}.gallery__button--holder{height:20px;width:calc(100%
-
24px);position:absolute;left:12px;top:0px}.gallery__button{background:var(--bodyBackgroundColor);color:var(--accentColor);height:100%;text-align:center;width:100%;border-radius:0px;border-top-left-radius:var(--borderRadiusSmall);border-top-right-radius:var(--borderRadiusSmall);border:0px;line-height:1em}.gallery__button--up{transform:rotate(180deg)}.gallery__button:disabled{display:none}.gallery__button--holder-down{top:auto;bottom:0px}.gallery__button
svg{fill:currentColor}.gallery__button:hover{background-color:var(--accentColor);color:var(--bodyBackgroundColor)}.gallery__thumbnails{justify-items:flex-start;flex-direction:column;padding:0px;transition:transform
0.15s;transform:translateY(0px);display:flex;max-height:calc((80px + 0.25rem) *
5);flex-shrink:0;overflow:auto}.gallery__thumbnail{height:80px;width:80px;display:block;margin-bottom:0.25rem;border:2px
solid transparent;transition:opacity 0.25s;cursor:pointer;flex-shrink:0}.gallery__thumbnails
span:hover,.gallery__thumbnail.bstrSlider__thumb--active{opacity:0.6}.gallery__thumbnails span
img{object-fit:cover;height:100%;width:100%;border-radius:var(--borderRadiusSmall)}.modal
.gallery__vertical,.featured-product .gallery__vertical{display:none !important}.modal
.gallery__default,.featured-product .gallery__default{display:flex !important}.gallery__vertical
div:first-child{margin-top:0px}.gallery__buttons{display:none}.product__title,.product__price--holder,.product__atc,.product__countdown--holder,.product__description,.product__stock,.product__accordion,.product__tags,.product__review-stars,.product__urgency,.product__swatches,.product__share{margin-bottom:32px}.product__title{font-weight:400;margin-top:-0.1em
!important;font-size:var(--mediumFontSize)}.product__price{line-height:1.1em;font-weight:600;font-size:1em}.product__price--sale{color:var(--alertColor)}.product__price--holder
.tag{align-self:center;margin-left:8px
!important}.product__price--old{color:var(--secondaryTextColor);text-decoration:line-through;font-size:0.6em;margin-left:8px
!important}.product__price--holder{font-size:var(--mediumFontSize);display:flex;align-items:flex-end}.product__atc{display:flex;flex-wrap:wrap}.product__countdown{margin-bottom:8px}.product__description--title{font-weight:600;margin-bottom:4px
!important;display:block}.product__stock{align-items:center;padding:0px}.product__accordion{padding:0px}.product__accordion
.accordion__item{margin-bottom:0px}.product__stock .amount,.sh__percentage
.amount{flex:1;background:#f7f7f7;height:0.8em;display:inline-block;margin-left:8px !important}.product__stock .amount
.amount--left,.sh__percentage .amount
.amount--left{display:block;width:20%;background:var(--alertColor);height:100%;border-radius:var(--borderRadiusSmall)}.product__stock
.amount--text span{font-weight:700;color:var(--alertColor);animation:blink 2s infinite}.product__urgency
.urgency__text{display:flex;align-items:center}.product__urgency .urgency__text .uil,.product__urgency .urgency__text
span{margin-right:4px !important}.product__urgency .urgency__text p span{margin-right:0 !important}.product__urgency
.urgency__text .uil{font-size:1.25em}.product__tags--title{text-transform:uppercase;font-weight:600;margin-bottom:4px
!important;font-size:var(--smallFontSize)}.product__tags--tag-text a{margin-right:4px;opacity:0.8;transition:opacity
0.1s;text-decoration:none}.product__tags--tag-text:hover a{opacity:1}.product__tags--tag-swatch
a{display:inline-block;padding:4px
6px;margin-left:2px;position:relative;background:#EFEFEF;color:#45444a;text-decoration:none;margin-bottom:4px}.shopify-payment-button{flex-basis:100%;margin-top:8px}.product__tags--tag-swatch:hover
a{background:#e2e2e2}.margin__bottom--reduced{margin-bottom:8px !important}.share__button{padding:0.35rem
1rem;padding-top:0.45rem;margin-right:0.25rem;text-decoration:none;color:white;background:var(--bg);transition:all
0.2s;border-radius:var(--borderRadiusSmall)}.share__button:hover{color:var(--bg)
!important;background:white}.share__button--pint{--bg: #e60023}.share__button--facebook{--bg:
#4267B2}.share__button--mess{--bg: #0083ff}.share__button--gmail{--bg: #dd5044}.share__button--twitter{--bg:
#1da1f2}.share__button svg{height:1.15em;width:1.15em;fill:currentColor}.share__button
.uil{font-size:1.5em}.sticky--mobile{position:fixed;bottom:0;background:rgba(255, 255, 255, 0.95);padding:1rem;padding-bottom:calc(1em + env(safe-area-inset-bottom,
0));backdrop-filter:blur(12px);z-index:11;width:100vw;max-height:75vh;overflow:auto;box-shadow:0px 0px 30px
rgba(0,0,0,0.1)}.sticky--atc__button,.sticky--open__button{width:100%}.sticky--closed .sticky--container,.sticky--closed
.sticky--atc__button{display:none}.sticky--closed .sticky--open__button{display:block !important}.sticky--mobile
.product__price--holder{justify-content:center}.sticky__close{font-size:1.75rem}

.swatch--color{height:55px;width:55px;position:relative;background-size:cover;background-position:center}.swatch--color::after{position:absolute;top:-75%;left:50%;transform:translateX(-50%);padding:4px
0.75em;border-radius:var(--borderRadiusSmall);content:attr(data-swatch-option);max-width:24ch;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;background:var(--accentColor);color:var(--accentTextColor);visibility:hidden;opacity:0;transition:all
0.25s}@media (hover:
hover){.swatch--color:hover::after{visibility:visible;opacity:1;z-index:1}}span.swatch--disabled{opacity:0.4;background-color:var(--disabledBackgroundColor);color:var(--disabledTextColor);
}span[data-swatch-option]{display:inline-flex;cursor:pointer;margin:0.25rem;min-height:45px;min-width:45px;align-items:center;text-align:center;justify-content:center;line-height:1.25em;padding:0.25rem
0.5rem;border:2px solid transparent;background-color:var(--inputFill);color:var(--inputContent);transition:all
0.25s;border-radius:var(--borderRadiusSmall);font-size:0.95em}span[data-swatch-selected-name]{font-weight:600}.swatches__holder{margin-left:-0.25rem;margin-bottom:1.25rem}.swatches__holder
.swatches__title{margin-left:0.25rem;margin-bottom:0.4rem}@media (hover:
hover){span[data-swatch-option]:hover{border-color:var(--accentColor)}}

  span[data-swatch-option].swatch--disabled{cursor:not-allowed;border-color:transparent !important}

span[data-swatch-option].swatch--active{background-color:var(--accentColor);color:var(--accentTextColor);border-color:var(--accentColor)}#s--product-page__recommended{margin-top:56px}@media
only screen and (max-width:
767px){.slider--product__holder{padding:0}.product__page--nav{display:inline-flex;width:calc(50% -
24px);flex-direction:column;align-content:center;align-items:center;padding:12px;background:var(--bodyBackgroundColor);font-size:14px;box-shadow:0px
0px 10px rgba(0,0,0,0.08);text-decoration:none;color:var(--textColor);margin:12px;margin-top:32px}.product__page--nav
img{display:none}.product__page--next{margin-left:0px}.product__atc--sticky{position:fixed;bottom:0px;left:0px;width:100%;z-index:20;display:none;padding:16px}.product__atc--sticky__info{display:none}.product__selector--sticky{display:flex;flex-wrap:wrap}.product__selector--sticky
select{width:calc(50% - 6px)}.product__selector--sticky .quantity--input{margin-top:0px;margin-left:12px;width:calc(50%
- 6px)}.product__selector--sticky
input[type="hidden"]:first-child+.quantity--input{margin-left:0px;width:100%}.quantity--input__input{width:calc(100% -
66px)}.product__selector--sticky .button{margin-top:12px;width:100%}.product__atc--sticky
img{display:none}.product__row--marketplace
.product__page--info:last-child{box-shadow:none;max-width:100%;width:100%}.product__page--info{max-height:none
!important}#shopify-section-product-page__product
.shopify-product-form.atc__fixed{position:fixed;bottom:0px;left:0px;width:100%;z-index:98}#shopify-section-product-page__product{z-index:2;position:relative}#shopify-section-product-page__product
.shopify-product-form.atc__fixed
.product__atc{margin:0px;padding:12px;background:var(--bodyBackgroundColor);box-shadow:0px 0px 10px
rgba(0,0,0,0.08)}.gallery{margin-bottom:24px;flex-direction:column-reverse;max-height:none;max-width:100%}.gallery__image{max-height:none;max-width:100%;margin:0px;flex-basis:auto}.gallery__image
img{width:100%}.product__row{margin-top:0px}.breadcrumbs--default{margin-bottom:0px}#s--product-page__recommended{margin-top:12px}.gallery__default{padding:0px}.gallery__thumbnails{flex-direction:row;flex-wrap:nowrap;margin-top:8px
!important;transform:translateY(0) !important}.gallery__thumbnails
a{display:inline-block}.gallery__button--holder{display:none
!important}.gallery__thumbnails--holder{overflow:auto}.product__atc
.button,.shopify-payment-button{flex-basis:100%;margin-top:16px}.product__atc
.button{padding-left:4px;padding-right:4px}.product__atc .quantity--input{width:100%;margin-right:0px}.product__atc
.quantity--input__input{width:100%}}@media only screen and (min-width:
768px){.product__page--nav{position:fixed;top:50%;right:0;transform:translateY(calc(-50% -
0.5px));display:flex;flex-direction:column;align-content:center;align-items:center;padding:8px;background:var(--bodyBackgroundColor);font-size:14px;box-shadow:0px
0px 10px
rgba(0,0,0,0.08);padding-top:4px;text-decoration:none;color:var(--textColor)}.product__page--prev{left:0;right:auto}.product__page--nav:hover{padding-top:8px}.product__page--nav
img{max-height:0;transition:all 0.15s;margin-bottom:4px;width:auto}.product__page--nav:hover
img{max-height:150px}.product__page--info{position:sticky;align-self:flex-start}.product__atc
.quantity--input{margin-top:0px;margin-right:8px}.product__atc
.button{flex-grow:1;max-width:100%;flex-basis:0;-webkit-box-flex:1}}.anim__fade-in{animation-name:fadein;animation-duration:0.5s;animation-delay:.5s;animation-timing-function:ease-in;animation-fill-mode:both}.anim__fade-out{animation-name:fadeout;animation-duration:0.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}@keyframes
fadeout{from{opacity:1}to{opacity:0;height:0px}}@keyframes
fadein{from{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0%)}}@keyframes
blink{0%{opacity:1}50%{opacity:0}100%{opacity:1}}@keyframes animation-fade{from{opacity:0}to{opacity:1}}@keyframes
animation-slide-fade{from{transform:translateY(-100%);opacity:0}to{transform:translateY(0%);opacity:1}}@keyframes
animation-scale{from{transform:scale(0)}to{transform:scale(1)}}@keyframes animation-scale-rotate{from{transform:scale(0)
rotate(720deg)}to{transform:scale(1) rotate(0deg)}}@keyframes
animation-slide-top{from{transform:translateY(-100vh)}to{transform:translateY(0)}}@keyframes
animation-slide-bottom{from{transform:translateY(100vh)}to{transform:translateY(0)}}@keyframes
animation-slide-left{from{transform:translateX(-100vw)}to{transform:translateX(0)}}@keyframes
animation-slide-right{from{transform:translateX(100vw)}to{transform:translateX(0)}}@keyframes
animation-shake{10%,90%{transform:translateX(-4px)}20%,80%{transform:translateX(6px)}30%,50%,70%{transform:translateX(-4px)}40%,60%{transform:translateX(6px)}100%{transform:translateX(0)}}.newsletter__input{padding:12px;flex-shrink:0;width:100%;max-width:540px}.s__block--blockNewsletter{max-width:100%}.newsletter__form{max-width:100%}.newsletter__form
.button{border-top-left-radius:0px;border-bottom-left-radius:0px}.newsletter__email{border-top-right-radius:0px;border-bottom-right-radius:0px}.newsletter__inputs{display:flex;align-items:stretch}.lookbook--3d{width:100%;position:relative;display:flex;align-items:center;justify-content:center;flex-direction:row;overflow:hidden}.lookbook--3d__products__holder{height:100%;position:relative}.lookbook--3d__products{min-width:400px;width:33%;height:100%;display:flex;flex-direction:column;transition:all
0.25s}.lookbook--3d__product{height:50%;width:100%;flex-shrink:0;display:flex;padding:20px;position:relative;overflow:hidden;transition:all
0.15s;opacity:0.5;text-decoration:none}.lookbook--3d__product.product--active{opacity:1}.lookbook--3d__product__title{margin-top:auto
!important;font-size:1.5em}.lookbook--3d__product__background{height:100%;width:100%;z-index:-1;position:absolute;left:0;top:0;object-fit:cover;transition:all
0.15s}.lookbook--3d__product:hover{opacity:1}.lookbook--3d__product:hover
.lookbook--3d__product__background{transform:scale(1.5)}.lookbook--3d__slides{position:relative;height:100%;overflow:hidden;flex:1
1 auto}.lookbook--3d__slide{position:absolute;transform:translateX(-50%) translateY(-50%)
scale(1);left:50%;top:50%;transition:all
0.25s;width:250px}.lookbook--3d__slide[data-position="0"]{z-index:8;opacity:1}.lookbook--3d__slide
img{width:100%}.lookbook--3d__slide[data-position="-5"]{transform:translateX(-325%) translateY(-50%)
scale(0.5);z-index:3;filter:blur(20px);opacity:0.5}.lookbook--3d__slide[data-position="-4"]{transform:translateX(-275%)
translateY(-50%)
scale(0.6);z-index:4;filter:blur(15px);opacity:0.6}.lookbook--3d__slide[data-position="-3"]{transform:translateX(-225%)
translateY(-50%)
scale(0.7);z-index:5;filter:blur(10px);opacity:0.7}.lookbook--3d__slide[data-position="-2"]{transform:translateX(-175%)
translateY(-50%)
scale(0.8);z-index:6;filter:blur(5px);opacity:0.8}.lookbook--3d__slide[data-position="-1"]{transform:translateX(-125%)
translateY(-50%)
scale(0.9);z-index:7;filter:blur(5px);opacity:0.9}.lookbook--3d__slide[data-position="1"]{transform:translateX(50%)
translateY(-50%)
scale(1.1);z-index:7;filter:blur(5px);opacity:0.8}.lookbook--3d__slide[data-position="2"]{transform:translateX(125%)
translateY(-50%)
scale(1.2);z-index:7;filter:blur(10px);opacity:0.4}.lookbook--3d__slide[data-position="3"]{transform:translateX(200%)
translateY(-50%)
scale(1.3);z-index:7;filter:blur(15px);opacity:0.1}.lookbook--3d__slide[data-position="4"]{transform:translateX(275%)
translateY(-50%)
scale(1.4);z-index:7;filter:blur(20px);opacity:0}.lookbook--3d__slide[data-position="5"]{transform:translateX(300%)
translateY(-50%)
scale(1.5);z-index:7;filter:blur(25px);opacity:0}.lookbook--3d__button{position:absolute;background:black;opacity:0.7;border-radius:3px;height:40px;width:40px;bottom:15px;right:15px;backdrop-filter:blur(15px);z-index:8;display:flex;align-items:center;justify-content:center}.lookbook--3d__button--back{transform:rotate(180deg);right:65px}.lookbook--3d__button
i{color:white}@media screen and (max-width: 767px){.lookbook--3d{flex-direction:column;height:auto
!important}.lookbook--3d__products{min-width:auto;width:100%;max-width:none;height:100%}.lookbook--3d__product{height:200px}.lookbook--3d__products__holder{overflow:hidden;width:100%;height:400px;flex-shrink:0}.lookbook--3d__slides{width:100%;height:400px}.lookbook--3d__slide{height:100%}.lookbook--3d__slide
img{width:100%;height:100%;object-fit:contain}}.error404__page{height:100%;padding:48px 0px}#shopify-section-404{flex:1
1 auto;height:100%;align-items:center;display:flex}.svg__fake{width:100%}.image--fullWidth{width:100%}.contact__form
.contact__block label{display:block}.contact__form{margin:auto auto;max-width:680px;width:100%;padding:0
0.75rem}.contact__textarea,.contact__text,.contact__dropdown{margin-bottom:8px !important}.contact__checkbox
input{margin-right:4px}.contact__text+input,.contact__form
textarea{width:100%;padding:12px}.contact__radio--options{margin-top:8px}.contact__radio--options
label{margin-top:8px}.contact__form .contact__block{margin-top:16px;display:block}.contact__back{margin:auto
!important;margin-bottom:72px !important}.customer__form{margin:auto
auto;max-width:680px;width:95%;display:block}.customer__form label{display:block;margin-bottom:8px}.customer__form
input{margin-bottom:16px;display:block;padding:12px;width:100%}.customer__form
.button--submit{width:auto;padding-left:24px;padding-right:24px;margin-right:24px}.customer__form
.button--notice{text-decoration:none;font-size:14px}.recover__password{display:none}#recover:checked ~
.recover__password{display:block}#recover{display:none}.button--notice{cursor:pointer}.s__holder{
overflow:hidden; position:relative}.shopify-section{width:100%}.fplist__list{margin-bottom:12px
!important}.fplist--title{margin-bottom:12px
!important;display:flex;align-items:center}.fplist--showmore{margin-left:auto;color:#637605;text-transform:uppercase;font-size:14px;text-decoration:none}.fplist--item{display:flex;margin-bottom:8px
!important;text-align:left}.fplist--image,.fplist__list
svg{height:80px;width:80px;object-fit:cover;margin-right:8px}.fplist--name{display:block;margin-bottom:4px
!important;text-decoration:none}.featured-product .product__title{margin-bottom:8px !important}.featured-product
.section__heading{margin-bottom:48px
!important}.lookbook{position:relative;max-width:100%}.lookbook__pins{position:absolute;top:0;left:0;width:100%;height:100%}.lookbook__pin{height:15px;width:15px;position:absolute;border-radius:50%;background:white;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lookbook__pin::before{content:'';border-radius:50%;height:30px;width:30px;position:absolute;top:-7.5px;left:-7.5px;background:white;opacity:0;animation:pulse;animation-duration:0.8s;animation-fill-mode:both;animation-iteration-count:infinite;animation-direction:alternate}.lookbook__product--holder{position:absolute;max-height:0px;transition:all
0.25s;opacity:0;overflow:hidden}.lookbook__product{display:block;width:215px;padding:16px;background:#FFFFFF;font-size:16px;border-radius:0px}.lookbook__product--title{text-decoration:none;display:block;margin-bottom:4px !important;color:#3b392e}.lookbook__product .button{margin-bottom:0px;margin-top:8px}.lookbook__product
img{width:180px;margin-bottom:8px;max-width:none;border-radius:5px}.lookbook__pin:hover .lookbook__product--holder{padding:30px
0px;opacity:1;max-height:none;z-index:1}.lookbook__image{width:100%;display:block}@keyframes
pulse{from{opacity:0;transform:scale(0.75)}to{opacity:0.65;transform:scale(1)}}.location__embed
iframe{height:100%;width:100%}.location__content{position:relative;margin-left:0px;flex-wrap:wrap;padding:24px}.location__content--content{z-index:1;position:relative}.tximage__image{padding:0px;position:relative;align-items:flex-start}.tximage__image
img,.tximage__image .lookbook,.tximage__image svg{width:100%}.tximage__image
.overlay{z-index:1}.tximage__txt{flex-wrap:wrap;padding:8px
16px}.tximage__video{padding:0px;position:relative;align-items:flex-start}.collection__description:first-child{margin-top:0px}.collection__description{margin-top:16px}.collection-title__card{display:flex;padding:16px}.collection-title__card--content{position:relative;z-index:2}.column__media{margin-bottom:12px;display:block}.column__text
p{margin-top:8px
!important}.column__button{margin-top:12px}.columns__column{flex-wrap:wrap}.section__cta{overflow:hidden}.logolist__holder{font-size:0;position:relative;display:flex;flex-wrap:wrap;align-items:center}.logolist__logo{display:inline-block;text-align:center;padding:4px}.logolist__logo
img{max-height:none;margin:auto
auto}.section__heading--heading{position:relative}.section__heading--heading::before{background:currentColor;width:100%;top:50%;height:2px;margin-top:-1px
!important;left:0px;position:absolute;opacity:0.1}.section__heading--heading
h2{position:relative;}.showMore{margin-top:16px}.testimonials{display:flex;flex-wrap:wrap;justify-items:center;align-items:flex-start}.testimonial{margin-bottom:24px}.testimonial__author--name{font-size:14px;font-weight:600;text-transform:uppercase}.testimonial--author-inside
.testimonial__author--image{text-align:center;margin:auto;margin-bottom:8px;display:block;height:110px;width:110px;object-fit:cover}.testimonial--author-inside
.testimonial__author{margin:24px 0px
!important;text-align:center}.testimonial__content>p{display:inline;line-height:1.45em}.testimonial__content{border-radius:0px}.testimonial--author-below .testimonial__author{display:flex;align-items:flex-start}.testimonial--author-below
.testimonial__author--image{margin-right:8px;height:70px;width:70px;object-fit:cover}.testimonial--author-below--image-overlap
.testimonial__content--has-image{padding-bottom:48px !important}.testimonial--author-below--image-overlap
.testimonial__author{position:relative}.testimonial--author-below--image-overlap
.testimonial__author--name{padding-left:94px !important;border-radius:5px}.testimonial--author-below--image-overlap
.testimonial__author--image{margin:0px;position:absolute;bottom:12px;left:12px}[data-bstr-section-slider]
.slider__holder{height:100%}.slide__animation
.animate{animation-duration:1s;animation-fill-mode:both}.slide__fakeImage{z-index:-1;position:absolute;left:0;top:50%;transform:translateY(-50%);width:100%}.slider{position:relative}.slide{align-self:flex-start;flex-shrink:0;width:100%;height:100%;display:flex;position:relative;background-size:cover}a.slide__content--holder,a.slide__content--holder:hover,a.slide__content,a.slide__content:hover{text-decoration:none;color:initial}.slider__image--adaptive{width:100%;height:auto}.slide.adaptive{height:auto}.slider__image--responsive{position:absolute;left:0;top:0;height:100%;width:100%;object-fit:cover}.slide
.slide__content{z-index:1;flex:1}.slide.adaptive
.slide__content--holder{position:absolute;left:0;top:0;width:100%;height:100%;display:flex}.slide.adaptive{display:block}.slide__button{margin-top:12px}.slider__button{position:absolute;left:16px;top:50%;margin-top:-25px;height:40px;width:40px;background:rgba(0,0,0,0.2);backdrop-filter:blur(15px);z-index:2;color:white
!important;transition:all 0.15s;border:0px}.slide
video{position:absolute;z-index:0;width:100%;height:100%;left:0;top:0;object-fit:cover}.slider__button:hover{background:rgba(0,0,0,0.6)}.slider__button--next{left:auto;right:16px}.tab--product,.featured-tabs__tab{margin-right:8px
!important;padding:8px 12px;transition:all 0.1s;margin-bottom:12px
!important;display:inline-block}.product--tab__content{padding:12px}.tab--product:hover,.featured-tabs__tab:hover{color:#637605;cursor:pointer}.tab__container--product{margin-top:48px}.tab--product.tab--active,.featured-tabs__tab.tab--active{background:#637605;color:#FFFFFF;border-radius:5px}.product--tab__content{display:none}.product--tab__content.tab--show{display:block}.featured-tabs__content{display:none}.featured-tabs__content.tab--show{display:flex}.accordion{flex-direction:column}.accordion
input{display:none}.accordion__item{display:block;position:relative;border-top:2px solid
#dedede;border-bottom:2px solid
#dedede;margin-bottom:4px}.accordion__item--title{position:relative;display:block;padding:24px
16px}.accordion__item--title:hover{cursor:pointer}.accordion__item--title:hover::after{color:#637605}.accordion__item--title::after{content:'\e98c';font-family:unicons-line;font-size:24px;position:absolute;right:16px;transition:all
0.1s;height:100%;top:0;display:flex;align-items:center;z-index:-1}.accordion__item
.accordion__item--content{max-height:0px;transition:all 0.25s;overflow:hidden;opacity:0;background:#dedede;color:#637605;padding:0px 16px}.accordion__item input:checked ~
.accordion__item--content{padding:24px
16px;opacity:1;max-height:420px;overflow:auto}.collapse{display:none;position:absolute;top:0;left:0;height:100%;width:100%}.collapse:hover{cursor:pointer}.accordion__item
input:checked ~ .accordion__item--title .collapse{display:block}.accordion__item input:checked ~
.accordion__item--title::after{content:'\e983';color:#637605}.video--responsive
iframe{max-width:100%;width:100%;min-height:390px}.grid{display:grid;grid-template:repeat(12, 1fr)/repeat(12,
1fr);width:100%}.grid__flex{display:flex;width:100%}.grid__item{overflow:hidden}.grid__block{display:flex;position:relative;height:100%;width:100%}.grid__block--image{height:100%;width:100%;background-repeat:no-repeat;background-position:center
center}.grid__block--image .text__overlay{position:absolute;height:100%;width:100%;display:flex}.grid__block--image
.text__content{padding:6px 8px}.grid__block--image
img{z-index:-1}.grid__block--cta-content{position:relative;width:100%}.grid__block--cta-content>*{margin-bottom:8px
!important}.grid__block--cta-content>*:last-child{margin-bottom:0px !important}@media only screen and (max-width:
767px){.grid__flex{position:relative !important}.slide__button:last-child{margin-left:0px !important}.lookbook__product
img{display:none}.lookbook__product{width:50vw}.columns__column{margin-bottom:32px !important}.tximage__txt{padding:32px
8px;padding-bottom:20px}.grid{display:flex;flex-direction:column;position:relative !important}.grid__holder{padding:0px
!important}.grid__item--gridColor{min-height:100px;height:1px}.logolist__logo{width:50% !important;margin-right:auto
!important;margin-bottom:16px
!important}}#looxReviews,#shopify-product-reviews,#shopify-ali-review{width:100%}.fsbar__text{flex-shrink:0;line-height:1em;padding:0.35rem}.fsbar__bar{flex-shrink:0;border-radius:var(--borderRadiusSmall);margin:0.5rem
0;width:280px;max-width:100%;border:2px solid
currentColor}.fsbar__bar>div{height:100%;background:currentColor;transition:width
0.7s}.fsbar{height:100%;display:flex;flex-wrap:wrap;justify-content:center;align-items:center}.gdpr__holder{position:fixed;bottom:0;left:0;z-index:9999;padding:12px;width:100%}.gdpr__notice{height:100%;width:100%;background:#FFFFFF;display:flex;align-items:center;padding:16px;box-shadow:0px 0px 24px
rgba(0,0,0,0.16)}.gdpr__buttons{margin-left:auto}.gdpr__text{padding-right:8px}#bstr--notice{display:none}.inline-upsell{margin-top:4rem;margin-bottom:3rem}.inline-upsell__products{margin-top:12px}.inline-upsell__product{position:relative;max-width:300px;margin-top:12px
!important;padding:12px;border:2px solid transparent;border-radius:0px;flex-wrap:wrap;transition:all 0.1s}.inline-upsell__product:hover{cursor:pointer;background:rgba(99, 118, 5, 0.1)}.inline-upsell__toggle:checked+.inline-upsell__product{background:rgba(99, 118, 5, 0.1);border-color:#637605}.inline-upsell__toggle:checked+.inline-upsell__product::after{content:'\e9c3';font-family:unicons-line;font-size:24px;padding:2px
4px;color:#FFFFFF;background:#637605;position:absolute;top:-10px;right:-10px;border-radius:5px;z-index:9}.inline-upsell__product
.card--default{margin-bottom:8px}.inline-upsell__plus{font-size:40px;align-items:center;padding:0px
8px}.inline-upsell__plus:first-child{display:none}.inline-upsell__atc{padding-top:24px;max-width:25%;min-width:25%}.inline-upsell__product
select{padding:4px;width:100%}.inline-upsell__variant{margin-bottom:12px !important}.inline-upsell__price{margin:12px
0px
!important;font-size:1.2em}#inline-upsell__total{font-weight:bold}#inline-upsell__discount{text-decoration:line-through;opacity:0.8;margin-left:4px
!important;font-size:0.8em}.recently-bought--holder.anim__fade-in{visibility:visible}.recently-bought--holder{overflow:hidden;opacity:0;display:flex;visibility:hidden;background:white;
background:#FFFFFF;
position:fixed;bottom:8px;left:8px;z-index:99
!important;min-height:100px;width:100%;max-width:350px;transition:margin 0.1s;box-shadow:3px 3px 10px
rgba(0,0,0,0.08);border-radius:0px}.recently-bought--holder{text-decoration:none}.recently-bought--holder:hover{margin-bottom:10px}.recently-bought--info{display:flex;flex-direction:column;padding:8px
0px;
margin-left:12px; padding-right:24px}.recently-bought--img-ratio{position:relative;flex-shrink:0;overflow:hidden;
border-radius:0px}.recently-bought--img{padding-top:100%;width:100%}.recently-bought--img
img{position:absolute;height:100%;width:100%;top:0;left:0;object-fit:cover}.recently-bought--who,.recently-bought--when{font-size:12px;color:grey}.recently-bought--who{margin-bottom:8px
!important}.recently-bought--what{margin-bottom:4px
!important}.recently-bought--price{font-weight:700;margin-bottom:24px !important}.recently-bought--price
.old-price{margin-left:4px !important;font-size:14px;text-decoration:line-through;font-weight:normal}.recently-bought--when{margin-top:auto !important}

  .recently-bought--holder *{color:#000 !important}

.messenger--simple{height:60px;width:60px;position:fixed;bottom:18pt;right:18pt;display:flex;border-radius:50%;z-index:9999}.messenger--simple
.uil{font-size:35px;margin:auto auto !important}.fcontact__button{height:50px;width:50px;position:fixed;
bottom:18pt;
right:18pt;border-radius:50%;box-shadow:0px 0px 25px rgba(0,0,0,0.15);background:#000;display:flex;z-index:999;transition:transform 0.1s}.fcontact__button--left
.fcontact__popup{right:auto;left:0px}.fcontact__button:hover{cursor:pointer;transform:translateY(-5px)}.fcontact__button
.svg-icon{height:50%;width:50%;margin:auto auto !important;color:#FFF
!important}.fcontact__button .uil{line-height:1em;font-size:25px;margin:auto auto !important;color:#FFF
!important}.fcontact__popup{position:absolute;bottom:100%;right:0px;width:300px;max-width:calc(100vw -
32px);max-height:calc(100vh - 50px - 32px);overflow:auto;background:#FFFFFF;margin-bottom:16px;padding:16px;padding-top:0px;box-shadow:0px 0px 25px
rgba(0,0,0,0.15);cursor:default}.product__countdown--holder.product__countdown--doublecolumn{display:flex}.product__countdown--holder.product__countdown--compact,.product__row--marketplace
.product__countdown--holder.product__countdown--doublecolumn,.featured-product
.product__countdown--holder.product__countdown--doublecolumn,.modal
.product__countdown--doublecolumn{display:block}.product__countdown--doublecolumn .countdown{padding:16px
8px;box-shadow:none;background:rgba(99, 118, 5, 0.05)}.product__countdown--doublecolumn .countdown__title{position:relative;background:transparent;font-size:16px;width:auto;text-align:left}.countdown,.featured-product .countdown,.product__row--marketplace .countdown,.modal
.countdown{padding:16px 8px;padding-top:32px;display:inline-flex;background:#FFFFFF;color:#637605;box-shadow:0px 0px 16px rgba(0,0,0,0.08);flex-wrap:wrap;overflow:hidden;border-radius:0px;position:relative;justify-content:space-around;width:100%;max-width:350px}.countdown__title,.featured-product
.countdown__title,.product__row--marketplace .countdown__title,.modal .countdown__title{width:100%;background:rgba(99, 118, 5, 0.1);text-align:center;padding:4px 0px;position:absolute;top:0px;left:0px;font-size:14px;font-weight:600;color:#637605}.countdown__holder{font-size:12px;text-align:center;font-weight:700;color:inherit}.countdown__warning{font-size:14px;color:#637605}.countdown__warning
.countdown__original-price{font-weight:600;color:#EF0000}.days,.hours,.minutes,.seconds{color:#637605;font-size:24px;font-variant-numeric:tabular-nums;margin-bottom:8px !important;font-weight:600}.card--default
.countdown{position:absolute;width:calc(100% - 8px);left:4px;padding:4px
0px;display:flex;bottom:4px;justify-content:space-around;max-width:100%;background:rgba(255, 255, 255, 0.85)}.card--default .days,.card--default .hours,.card--default .seconds,.card--default
.minutes{font-size:16px}.card--default
.countdown__holder{font-size:12px;padding:0px}#quickbuy__modal{position:fixed;display:none;left:0;top:0;z-index:9999;width:100%;height:100%;justify-content:center;align-items:center}#quickbuy__modal
.overlay{z-index:999;background:rgba(0,0,0,0.35);backdrop-filter:blur(15px)}#quickbuy__modal
.checkout--dynamic{display:none}#quickbuy__modal .close{position:absolute;z-index:9999;border-radius:5px;border:0px;transition:all 0.15s;left:15px;top:15px;background:none;color:#3b392e}#quickbuy__modal
.close:hover{background-color:#637605;color:#FFFFFF}#quickbuy__modal .content{z-index:9999;position:relative;width:calc(100% -
80px);background:#FFF;padding:35px;max-width:1280px;overflow:auto;max-height:calc(100% -
80px)}.add-to-cart__success{position:absolute;max-width:1180px;max-height:calc(100% -
60px);left:50%;top:40px;transform:translateX(-50%);display:flex;flex-direction:column;text-align:center;z-index:100;width:100%}.add-to-cart__success--overlay{background:rgba(0,0,0,0.35);backdrop-filter:blur(15px);z-index:99}.add-to-cart__success
.add-to-cart__success--message{margin:auto auto;margin-bottom:24px;background:white;padding:8px
16px}.add-to-cart__success
.add-to-cart__success--modals{max-height:100%;overflow:auto;max-width:100%;flex:1;align-items:flex-start;justify-content:center}.add-to-cart__success
.add-to-cart__success--single{padding:24px;text-align:center;max-width:300px;display:block;background:white;position:sticky;top:0px}.add-to-cart__success--single
.add-to-cart__success--single-img{max-width:100%;display:block;margin-bottom:16px}.add-to-cart__success--single-info{margin-bottom:16px
!important}.add-to-cart__success--single-variation{margin-top:4px !important;color:#637605;display:block}.add-to-cart__success--single-current{margin-bottom:20px !important}.add-to-cart__success--single-current
span{color:#637605;font-weight:600}.add-to-cart__success--button-margin{margin-bottom:8px
!important}.add-to-cart__success--continue{display:block}.add-to-cart__success--holder.modal{position:fixed;height:100%;width:100%;overflow:hidden;display:none;top:0px;left:0px;z-index:9999}.add-to-cart__success--upsell{align-items:flex-start;justify-items:flex-start;background:#FFFFFF;text-align:left;margin-left:24px;flex-direction:column;padding:1.25rem
1.5rem}.add-to-cart__success--title{margin-bottom:4px !important}.add-to-cart__success--price{margin-bottom:12px
!important}.add-to-cart__success--sale{font-size:0.8em;margin-left:8px !important;text-decoration:line-through;color:#637605}.add-to-cart__success--product-holder{width:100%}.add-to-cart__success--product--single{margin:1.5rem
0px}.add-to-cart__success--product-swatch
span.swatch--color{height:30px;width:55px}.add-to-cart__success--product-swatch .swatches__holder
.swatches__title{margin-bottom:0.2rem}.add-to-cart__success--product-swatch
span[data-swatch-option]{min-width:0;min-height:0}.add-to-cart__success--product-swatch
.swatches__holder{margin:0;margin-top:0.75rem}@media screen and (min-width:
768px){.add-to-cart__success--product--single{display:flex;width:100%}.add-to-cart__success--product--single
.add-to-cart__success--product-img{width:30%;max-width:300px}.add-to-cart__success--product--single>.col{text-align:left;padding-left:24px;align-items:flex-start;justify-content:flex-start}.add-to-cart__success--product--single
.add-to-cart__success--product-buttons{justify-content:flex-start;align-items:flex-start}}.add-to-cart__success--product{margin:2rem
0px}.add-to-cart__success--product:first-child{margin-top:1rem}.add-to-cart__success--product-buttons{justify-content:flex-end}.add-to-cart__success--product-buttons
.product__atc{flex-direction:column;margin-bottom:0px}.add-to-cart__success--product-buttons .product__atc
.quantity--input{margin-right:0px}.add-to-cart__success--product-buttons .product__atc
.quantity--input__incr{margin-left:auto}.add-to-cart__success--product-buttons .product__atc
.quantity--input__decr{margin-right:auto}.add-to-cart__success--product-buttons .product__atc
.button{margin-top:8px}.add-to-cart__success--product
.add-to-cart__success--product-img{max-width:180px;padding:0px}.tab-label{opacity:0.5;display:inline;margin-right:8px
!important;transition:opacity
0.1s}.tab-label:hover{cursor:pointer;opacity:0.9}.tab-label.tab--active{opacity:1}.swatch--compact
.tab__holder{margin-bottom:4px}.swatch--compact{align-self:flex-end;margin-top:8px}.swatch--compact
.swatch__option.color{height:45px;width:45px}.swatch--compact .swatch-container{margin-bottom:0px}.swatch--compact
.swatch__option{margin-right:4px !important;margin-bottom:4px !important}@media screen and (max-width:
980px){.add-to-cart__success{max-height:none;height:100%}.add-to-cart__success--holder.modal{overflow:auto}.add-to-cart__success--overlay{position:fixed}.add-to-cart__success
.add-to-cart__success--modals{padding:0px
20px;display:block;max-height:none;overflow:visible}.add-to-cart__success--heading{margin:8px 0px
!important}.add-to-cart__success
.add-to-cart__success--single{position:relative;max-width:500px;width:100%;top:0px}.add-to-cart__success--single
.add-to-cart__success--single-img{display:none}.add-to-cart__success--product
.add-to-cart__success--product-img{max-width:100%}.add-to-cart__success--upsell{margin-top:16px;margin-left:auto;margin-right:auto;width:100%;max-width:500px;margin-bottom:40px}.add-to-cart__success--single{margin-left:auto;margin-right:auto}.add-to-cart__success--product-holder{width:100%;overflow-x:auto;display:flex;flex-wrap:nowrap;margin-top:16px;height:100%;overflow-y:visible}.add-to-cart__success--product{flex-shrink:0;padding:0px;margin:0px;margin-right:24px;display:block;max-width:85%}.add-to-cart__success--product
.add-to-cart__success--product-img{margin-bottom:8px}.add-to-cart__success--product-buttons{padding:0px;width:100%;justify-content:stretch;align-items:center}.add-to-cart__success--product-buttons
form{width:100%}}.instagram__container{font-size:0;display:flex;flex-wrap:wrap;align-items:flex-start}.instagram__thumb{position:relative;padding:0px}.instagram__fake{position:absolute;left:0;top:0;height:100%;width:100%}.instagram__thumb::after{padding-bottom:100%;width:100%;content:'';display:block;opacity:0;background-color:#000;transition:opacity
0.1s}.instagram__thumb:hover::after{opacity:0.75}.instagram__thumb:hover .instagram__info{opacity:1}.instagram__thumb
img{height:100%;width:100%;object-fit:cover;position:absolute;top:0;left:0}.instagram__info{transform:translateY(-50%);font-size:16px;text-align:center;position:absolute;left:0;top:50%;opacity:0;text-align:center;z-index:9;color:white;width:100%;transition:opacity
0.1s}@media screen and (max-width: 767px){.add-to-cart__success--product-buttons .product__atc
.quantity--input__input{width:100%}.add-to-cart__success--product-buttons .product__atc
.quantity--input__incr{margin-left:0}.add-to-cart__success--product-buttons .product__atc
.quantity--input__decr{margin-right:0}.inline-upsell__products{justify-content:center;justify-items:center;text-align:center;flex-wrap:wrap}.inline-upsell__atc{text-align:center;max-width:100%;padding-bottom:32px}.inline-upsell__plus{justify-content:center}}#shopify-section-info-badges{margin-bottom:0px}.info-badge{display:flex
!important;padding:36px
24px}.info-badge.icon--right{flex-direction:row-reverse;justify-content:flex-end}.info-badge__icon{font-size:40px;margin-right:8px;color:var(--accentColor)}.info-badge.icon--right
.info-badge__icon{margin-right:0px;margin-left:8px}.info-badge__subheading{margin-top:4px
!important;color:var(--secondaryTextColor);font-size:var(--smallFontSize);display:block}.footer .col-md,.subfooter
.col-md{min-width:20%}.footer__links,.footer__contact{display:flex;flex-direction:column}.footer__contact
a{text-decoration:none;margin-top:12px}.footer__links
a{text-decoration:none;margin-top:12px;opacity:0.7;font-size:0.9em}.footer__links a:first-of-type,.footer__contact
a:first-of-type{margin-top:0px}.footer__links a:hover{opacity:1}.footer__title{margin-bottom:16px
!important;font-size:1em;letter-spacing:0.1px;font-weight:600;margin-top:0px
!important;display:block}.footer__image--link{line-height:1em}.footer__text
p{line-height:1.5em;font-size:0.9em}#shopify-section-api__upsell{margin-bottom:0px}@media only screen and (max-width:
599px){.hide-xs{display:none}}@media only screen and (min-width: 600px) and (max-width: 767px){.hide-sm{display:none
!important}}@media only screen and (min-width: 768px) and (max-width: 1023px){.hide-md{display:none}}@media only screen
and (max-width: 768px){input{font-size:max(16px, 16px)}}@media only screen and (min-width:
600px) and (max-width: 767px){.hide-sm{display:none}}@media only screen and (min-width: 768px) and (max-width:
1023px){.hide-md{display:none}}@media only screen and (min-width: 1024px){.hide-lg{display:none
!important}}.s__block--customRichText,.s__block--richText,.s__block--blockImage{display:flex
!important}.no-gap{padding:0px}.no-overflow{overflow:hidden}.no-margin{margin:0px
!important}.wrap{flex-wrap:wrap}.column{flex-direction:column}.svg__thumb{background:#f1f1f1;height:100%;width:100%}.font__family--title{font-family:var(--titleFont);font-weight:700}.font__family--base{font-family:var(--baseFont);font-weight:400}.font__size--small{font-size:var(--smallFontSize)}.font__size--base{font-size:var(--baseFontSize)}.font__size--medium{font-size:var(--mediumFontSize)}.font__size--big{font-size:var(--bigFontSize)}.overflow--visible{overflow:visible}@supports
(-webkit-touch-callout: none){*{background-attachment:initial !important}}
.article_form--group{display:flex;flex-direction:column;gap:0.5rem;} .article_form--group input,.article_form--group
textarea{padding:0.5rem 1rem;} form#comment_form {display: flex;flex-direction: column;gap: 1rem;margin-top: 3rem;}
.article_form--submit {width: fit-content;padding: 0.5rem 2rem;}

@media
only screen and (min-width: 768px){
  .hide-desktop{display:none !important}
}
                       
@media only screen and (max-width:
767px){.hide-mobile{display:none !important}}
    </style>
    

    <link href="//myvillagegreen.com/cdn/shop/t/45/assets/header-custom-styles.css?v=60865142817552118061750406552" rel="stylesheet" type="text/css" media="all" />

    <!-- Scripts -->
 
    <meta name="p:domain_verify" content="a694c29af1f552ae31816149b78a4930">
    <meta name="facebook-domain-verification" content="405lnt6xbxbxks96d1l83ffp5ri4uu">
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/themes/base/jquery-ui.min.css"
      integrity="sha512-ELV+xyi8IhEApPS/pSj66+Jiw+sOT1Mqkzlh8ExXihe4zfqbWkxPRi8wptXIO9g73FSlhmquFlUOuMSoXz5IRw=="
      crossorigin="anonymous"
      referrerpolicy="no-referrer"
    >

    <link href="//myvillagegreen.com/cdn/shop/t/45/assets/bootstrapcustom.min.css?v=147271912064825217591750406552" rel="stylesheet" type="text/css" media="all" />
    <link href="//myvillagegreen.com/cdn/shop/t/45/assets/custom-styles.css?v=168071154985419609911769557511" rel="stylesheet" type="text/css" media="all" />
    <link href="//myvillagegreen.com/cdn/shop/t/45/assets/custom-api-style.css?v=43542270934530116491750406552" rel="stylesheet" type="text/css" media="all" />
   
 <style>
  #__next a[href="https://skio.com"] {
    display: none !important;
  }
</style> 




<!-- BEGIN app block: shopify://apps/avada-aeo-optimizer/blocks/md-alternate-link/019db9d8-6747-7ecb-89bd-f82d7bdbb0e7 -->
<!-- END app block --><!-- BEGIN app block: shopify://apps/hulk-form-builder/blocks/app-embed/b6b8dd14-356b-4725-a4ed-77232212b3c3 --><!-- BEGIN app snippet: hulkapps-formbuilder-theme-ext --><script type="text/javascript">
  
  if (typeof window.formbuilder_customer != "object") {
        window.formbuilder_customer = {}
  }

  window.hulkFormBuilder = {
    form_data: {},
    shop_data: {"shop_rWJGhDoyMuBNAGTpDgf80Q":{"shop_uuid":"rWJGhDoyMuBNAGTpDgf80Q","shop_timezone":"America\/New_York","shop_id":30315,"shop_is_after_submit_enabled":true,"shop_shopify_plan":"Plus","shop_shopify_domain":"myvillagegreen.myshopify.com","shop_created_at":"2020-03-03T04:44:50.890-06:00","is_skip_metafield":false,"shop_deleted":false,"shop_disabled":false}},
    settings_data: {"shop_settings":{"shop_customise_msgs":[],"default_customise_msgs":{"is_required":"is required","thank_you":"Thank you! The form was submitted successfully.","processing":"Processing...","valid_data":"Please provide valid data","valid_email":"Provide valid email format","valid_tags":"HTML Tags are not allowed","valid_phone":"Provide valid phone number","valid_captcha":"Please provide a valid CAPTCHA response.","valid_url":"Provide valid URL","only_number_alloud":"Provide valid number in","number_less":"must be less than","number_more":"must be more than","image_must_less":"Image must be less than 20MB","image_number":"Images allowed","image_extension":"Invalid extension! Please provide image file","error_image_upload":"Error in image upload. Please try again.","error_file_upload":"Error in file upload. Please try again.","your_response":"Your response","error_form_submit":"Error occur.Please try again after sometime.","email_submitted":"Form with this email is already submitted","invalid_email_by_zerobounce":"The email address you entered appears to be invalid. Please check it and try again.","download_file":"Download file","card_details_invalid":"Your card details are invalid","card_details":"Card details","please_enter_card_details":"Please enter card details","card_number":"Card number","exp_mm":"Exp MM","exp_yy":"Exp YY","crd_cvc":"CVV","payment_value":"Payment amount","please_enter_payment_amount":"Please enter a payment amount.","address1":"Address line 1","address2":"Address line 2","city":"City","province":"Province","zipcode":"Zip code","country":"Country","blocked_domain":"This form does not accept addresses from","file_must_less":"File must be less than 20MB","file_extension":"Invalid extension! Please provide file","only_file_number_alloud":"files allowed","previous":"Previous","next":"Next","must_have_a_input":"Please enter at least one field.","please_enter_required_data":"Please enter required data","atleast_one_special_char":"Include at least one special character","atleast_one_lowercase_char":"Include at least one lowercase character","atleast_one_uppercase_char":"Include at least one uppercase character","atleast_one_number":"Include at least one number","must_have_8_chars":"Must have 8 characters long","be_between_8_and_12_chars":"Be between 8 and 12 characters long","please_select":"Please Select","phone_submitted":"Form with this phone number is already submitted","user_res_parse_error":"Error while submitting the form","valid_same_values":"values must be the same","product_choice_clear_selection":"Clear Selection","picture_choice_clear_selection":"Clear Selection","remove_all_for_file_image_upload":"Remove All","invalid_file_type_for_image_upload":"You can't upload files of this type.","invalid_file_type_for_signature_upload":"You can't upload files of this type.","max_files_exceeded_for_file_upload":"You can not upload any more files.","max_files_exceeded_for_image_upload":"You can not upload any more files.","file_already_exist":"File already uploaded","max_limit_exceed":"You have added the maximum number of text fields.","cancel_upload_for_file_upload":"Cancel upload","cancel_upload_for_image_upload":"Cancel upload","cancel_upload_for_signature_upload":"Cancel upload"},"shop_blocked_domains":[]}},
    features_data: {"shop_plan_features":{"shop_plan_features":["unlimited-forms","full-design-customization","export-form-submissions","multiple-recipients-for-form-submissions","multiple-admin-notifications","enable-captcha","unlimited-file-uploads","save-submitted-form-data","set-auto-response-message","conditional-logic","form-banner","save-as-draft-facility","include-user-response-in-admin-email","disable-form-submission","forms-limit","submissions-visibility-limit","file-upload"]}},
    shop: null,
    shop_id: null,
    plan_features: null,
    validateDoubleQuotes: false,
    assets: {
      searchableDropdown: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/searchable-dropdown.js",
      extraFunctions: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/extra-functions.js",
      extraStyles: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/extra-styles.css",
      bootstrapStyles: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/theme-app-extension-bootstrap.css",
    },
    translations: {
      htmlTagNotAllowed: "HTML Tags are not allowed",
      sqlQueryNotAllowed: "SQL Queries are not allowed",
      doubleQuoteNotAllowed: "Double quotes are not allowed",
      vorwerkHttpWwwNotAllowed: "The words \u0026#39;http\u0026#39; and \u0026#39;www\u0026#39; are not allowed. Please remove them and try again.",
      maxTextFieldsReached: "You have added the maximum number of text fields.",
      avoidNegativeWords: "Avoid negative words: Don\u0026#39;t use negative words in your contact message.",
      customDesignOnly: "This form is for custom designs requests. For general inquiries please contact our team at info@stagheaddesigns.com",
      zerobounceApiErrorMsg: "We couldn\u0026#39;t verify your email due to a technical issue. Please try again later.",
    }

  }

  

  window.FbThemeAppExtSettingsHash = {}
  
</script><!-- END app snippet --><!-- END app block --><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 -->












  <script async src="https://static.klaviyo.com/onsite/js/TMUrUa/klaviyo.js?company_id=TMUrUa"></script>
  <script>!function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();</script>

  




  <script>
    window.klaviyoReviewsProductDesignMode = false
  </script>



  <!-- BEGIN app snippet: customer-hub-data --><script>
  if (!window.customerHub) {
    window.customerHub = {};
  }
  window.customerHub.storefrontRoutes = {
    login: "/account/login?return_url=%2F%23k-hub",
    register: "/account/register?return_url=%2F%23k-hub",
    logout: "/account/logout",
    profile: "/account",
    addresses: "/account/addresses",
  };
  
  window.customerHub.userId = null;
  
  window.customerHub.storeDomain = "myvillagegreen.myshopify.com";

  

  
    window.customerHub.storeLocale = {
        currentLanguage: 'en',
        currentCountry: 'US',
        availableLanguages: [
          
            {
              iso_code: 'en',
              endonym_name: 'English'
            },
          
            {
              iso_code: 'es',
              endonym_name: 'Español'
            }
          
        ],
        availableCountries: [
          
            {
              iso_code: 'AF',
              name: 'Afghanistan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AX',
              name: 'Åland Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AL',
              name: 'Albania',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'DZ',
              name: 'Algeria',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AD',
              name: 'Andorra',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AO',
              name: 'Angola',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AI',
              name: 'Anguilla',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AG',
              name: 'Antigua &amp; Barbuda',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AR',
              name: 'Argentina',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AM',
              name: 'Armenia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AW',
              name: 'Aruba',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AC',
              name: 'Ascension Island',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AU',
              name: 'Australia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AT',
              name: 'Austria',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AZ',
              name: 'Azerbaijan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BS',
              name: 'Bahamas',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BH',
              name: 'Bahrain',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BD',
              name: 'Bangladesh',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BB',
              name: 'Barbados',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BY',
              name: 'Belarus',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BE',
              name: 'Belgium',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BZ',
              name: 'Belize',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BJ',
              name: 'Benin',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BM',
              name: 'Bermuda',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BT',
              name: 'Bhutan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BO',
              name: 'Bolivia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BA',
              name: 'Bosnia &amp; Herzegovina',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BW',
              name: 'Botswana',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BR',
              name: 'Brazil',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IO',
              name: 'British Indian Ocean Territory',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'VG',
              name: 'British Virgin Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BN',
              name: 'Brunei',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BG',
              name: 'Bulgaria',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BF',
              name: 'Burkina Faso',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BI',
              name: 'Burundi',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KH',
              name: 'Cambodia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CM',
              name: 'Cameroon',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CA',
              name: 'Canada',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CV',
              name: 'Cape Verde',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BQ',
              name: 'Caribbean Netherlands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KY',
              name: 'Cayman Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CF',
              name: 'Central African Republic',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TD',
              name: 'Chad',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CL',
              name: 'Chile',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CN',
              name: 'China',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CX',
              name: 'Christmas Island',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CC',
              name: 'Cocos (Keeling) Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CO',
              name: 'Colombia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KM',
              name: 'Comoros',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CG',
              name: 'Congo - Brazzaville',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CD',
              name: 'Congo - Kinshasa',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CK',
              name: 'Cook Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CR',
              name: 'Costa Rica',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CI',
              name: 'Côte d’Ivoire',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'HR',
              name: 'Croatia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CW',
              name: 'Curaçao',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CY',
              name: 'Cyprus',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CZ',
              name: 'Czechia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'DK',
              name: 'Denmark',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'DJ',
              name: 'Djibouti',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'DM',
              name: 'Dominica',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'DO',
              name: 'Dominican Republic',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'EC',
              name: 'Ecuador',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'EG',
              name: 'Egypt',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SV',
              name: 'El Salvador',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GQ',
              name: 'Equatorial Guinea',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ER',
              name: 'Eritrea',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'EE',
              name: 'Estonia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SZ',
              name: 'Eswatini',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ET',
              name: 'Ethiopia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'FK',
              name: 'Falkland Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'FO',
              name: 'Faroe Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'FJ',
              name: 'Fiji',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'FI',
              name: 'Finland',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'FR',
              name: 'France',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GF',
              name: 'French Guiana',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PF',
              name: 'French Polynesia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TF',
              name: 'French Southern Territories',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GA',
              name: 'Gabon',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GM',
              name: 'Gambia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GE',
              name: 'Georgia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'DE',
              name: 'Germany',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GH',
              name: 'Ghana',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GI',
              name: 'Gibraltar',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GR',
              name: 'Greece',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GL',
              name: 'Greenland',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GD',
              name: 'Grenada',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GP',
              name: 'Guadeloupe',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GT',
              name: 'Guatemala',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GG',
              name: 'Guernsey',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GN',
              name: 'Guinea',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GW',
              name: 'Guinea-Bissau',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GY',
              name: 'Guyana',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'HT',
              name: 'Haiti',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'HN',
              name: 'Honduras',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'HK',
              name: 'Hong Kong SAR',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'HU',
              name: 'Hungary',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IS',
              name: 'Iceland',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IN',
              name: 'India',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ID',
              name: 'Indonesia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IQ',
              name: 'Iraq',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IE',
              name: 'Ireland',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IM',
              name: 'Isle of Man',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IL',
              name: 'Israel',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'IT',
              name: 'Italy',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'JM',
              name: 'Jamaica',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'JP',
              name: 'Japan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'JE',
              name: 'Jersey',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'JO',
              name: 'Jordan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KZ',
              name: 'Kazakhstan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KE',
              name: 'Kenya',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KI',
              name: 'Kiribati',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'XK',
              name: 'Kosovo',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KW',
              name: 'Kuwait',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KG',
              name: 'Kyrgyzstan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LA',
              name: 'Laos',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LV',
              name: 'Latvia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LB',
              name: 'Lebanon',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LS',
              name: 'Lesotho',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LR',
              name: 'Liberia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LY',
              name: 'Libya',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LI',
              name: 'Liechtenstein',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LT',
              name: 'Lithuania',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LU',
              name: 'Luxembourg',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MO',
              name: 'Macao SAR',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MG',
              name: 'Madagascar',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MW',
              name: 'Malawi',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MY',
              name: 'Malaysia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MV',
              name: 'Maldives',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ML',
              name: 'Mali',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MT',
              name: 'Malta',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MQ',
              name: 'Martinique',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MR',
              name: 'Mauritania',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MU',
              name: 'Mauritius',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'YT',
              name: 'Mayotte',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MX',
              name: 'Mexico',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MD',
              name: 'Moldova',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MC',
              name: 'Monaco',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MN',
              name: 'Mongolia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ME',
              name: 'Montenegro',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MS',
              name: 'Montserrat',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MA',
              name: 'Morocco',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MZ',
              name: 'Mozambique',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MM',
              name: 'Myanmar (Burma)',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NA',
              name: 'Namibia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NR',
              name: 'Nauru',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NP',
              name: 'Nepal',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NL',
              name: 'Netherlands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NC',
              name: 'New Caledonia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NZ',
              name: 'New Zealand',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NI',
              name: 'Nicaragua',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NE',
              name: 'Niger',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NG',
              name: 'Nigeria',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NU',
              name: 'Niue',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NF',
              name: 'Norfolk Island',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MK',
              name: 'North Macedonia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'NO',
              name: 'Norway',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'OM',
              name: 'Oman',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PK',
              name: 'Pakistan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PS',
              name: 'Palestinian Territories',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PA',
              name: 'Panama',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PG',
              name: 'Papua New Guinea',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PY',
              name: 'Paraguay',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PE',
              name: 'Peru',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PH',
              name: 'Philippines',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PN',
              name: 'Pitcairn Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PL',
              name: 'Poland',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PT',
              name: 'Portugal',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'QA',
              name: 'Qatar',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'RE',
              name: 'Réunion',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'RO',
              name: 'Romania',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'RU',
              name: 'Russia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'RW',
              name: 'Rwanda',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'WS',
              name: 'Samoa',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SM',
              name: 'San Marino',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ST',
              name: 'São Tomé &amp; Príncipe',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SA',
              name: 'Saudi Arabia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SN',
              name: 'Senegal',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'RS',
              name: 'Serbia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SC',
              name: 'Seychelles',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SL',
              name: 'Sierra Leone',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SG',
              name: 'Singapore',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SX',
              name: 'Sint Maarten',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SK',
              name: 'Slovakia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SI',
              name: 'Slovenia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SB',
              name: 'Solomon Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SO',
              name: 'Somalia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ZA',
              name: 'South Africa',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GS',
              name: 'South Georgia &amp; South Sandwich Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KR',
              name: 'South Korea',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SS',
              name: 'South Sudan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ES',
              name: 'Spain',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LK',
              name: 'Sri Lanka',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'BL',
              name: 'St. Barthélemy',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SH',
              name: 'St. Helena',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'KN',
              name: 'St. Kitts &amp; Nevis',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'LC',
              name: 'St. Lucia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'MF',
              name: 'St. Martin',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'PM',
              name: 'St. Pierre &amp; Miquelon',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'VC',
              name: 'St. Vincent &amp; Grenadines',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SD',
              name: 'Sudan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SR',
              name: 'Suriname',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SJ',
              name: 'Svalbard &amp; Jan Mayen',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'SE',
              name: 'Sweden',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'CH',
              name: 'Switzerland',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TW',
              name: 'Taiwan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TJ',
              name: 'Tajikistan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TZ',
              name: 'Tanzania',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TH',
              name: 'Thailand',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TL',
              name: 'Timor-Leste',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TG',
              name: 'Togo',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TK',
              name: 'Tokelau',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TO',
              name: 'Tonga',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TT',
              name: 'Trinidad &amp; Tobago',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TA',
              name: 'Tristan da Cunha',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TN',
              name: 'Tunisia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TR',
              name: 'Türkiye',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TM',
              name: 'Turkmenistan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TC',
              name: 'Turks &amp; Caicos Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'TV',
              name: 'Tuvalu',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'UM',
              name: 'U.S. Outlying Islands',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'UG',
              name: 'Uganda',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'UA',
              name: 'Ukraine',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'AE',
              name: 'United Arab Emirates',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'GB',
              name: 'United Kingdom',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'US',
              name: 'United States',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'UY',
              name: 'Uruguay',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'UZ',
              name: 'Uzbekistan',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'VU',
              name: 'Vanuatu',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'VA',
              name: 'Vatican City',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'VE',
              name: 'Venezuela',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'VN',
              name: 'Vietnam',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'WF',
              name: 'Wallis &amp; Futuna',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'EH',
              name: 'Western Sahara',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'YE',
              name: 'Yemen',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ZM',
              name: 'Zambia',
              currency_code: 'USD'
            },
          
            {
              iso_code: 'ZW',
              name: 'Zimbabwe',
              currency_code: 'USD'
            }
          
        ]
    };
  
</script>
<!-- END app snippet -->







<!-- END app block --><!-- BEGIN app block: shopify://apps/judge-me-reviews/blocks/judgeme_core/61ccd3b1-a9f2-4160-9fe9-4fec8413e5d8 --><!-- Start of Judge.me Core -->







<link rel="dns-prefetch" href="https://cdn.judge.me">
<link rel="dns-prefetch" href="https://cdn1.judge.me">
<link rel="dns-prefetch" href="https://api.judge.me">

<script data-cfasync='false' class='jdgm-settings-script'>window.jdgmSettings={"pagination":5,"disable_web_reviews":false,"badge_no_review_text":"No reviews","badge_n_reviews_text":"review/reviews","badge_star_color":"#006690","hide_badge_preview_if_no_reviews":true,"badge_hide_text":false,"enforce_center_preview_badge":false,"widget_title":"Customer Reviews","widget_open_form_text":"Write a review","widget_close_form_text":"Cancel review","widget_refresh_page_text":"Refresh page","widget_summary_text":"Based on {{ number_of_reviews }} review/reviews","widget_no_review_text":"Be the first to write a review","widget_name_field_text":"Display name","widget_verified_name_field_text":"Verified Name (public)","widget_name_placeholder_text":"Display name","widget_required_field_error_text":"This field is required.","widget_email_field_text":"Email address","widget_verified_email_field_text":"Verified Email (private, can not be edited)","widget_email_placeholder_text":"Your email address","widget_email_field_error_text":"Please enter a valid email address.","widget_rating_field_text":"Rating","widget_review_title_field_text":"Review Title","widget_review_title_placeholder_text":"Give your review a title","widget_review_body_field_text":"Review content","widget_review_body_placeholder_text":"Start writing here...","widget_pictures_field_text":"Picture/Video (optional)","widget_submit_review_text":"Submit Review","widget_submit_verified_review_text":"Submit Verified Review","widget_submit_success_msg_with_auto_publish":"Thank you! Please refresh the page in a few moments to see your review. You can remove or edit your review by logging into \u003ca href='https://judge.me/login' target='_blank' rel='nofollow noopener'\u003eJudge.me\u003c/a\u003e","widget_submit_success_msg_no_auto_publish":"Thank you! Your review will be published as soon as it is approved by the shop admin. You can remove or edit your review by logging into \u003ca href='https://judge.me/login' target='_blank' rel='nofollow noopener'\u003eJudge.me\u003c/a\u003e","widget_show_default_reviews_out_of_total_text":"Showing {{ n_reviews_shown }} out of {{ n_reviews }} reviews.","widget_show_all_link_text":"Show all","widget_show_less_link_text":"Show less","widget_author_said_text":"{{ reviewer_name }} said:","widget_days_text":"{{ n }} days ago","widget_weeks_text":"{{ n }} week/weeks ago","widget_months_text":"{{ n }} month/months ago","widget_years_text":"{{ n }} year/years ago","widget_yesterday_text":"Yesterday","widget_today_text":"Today","widget_replied_text":"\u003e\u003e {{ shop_name }} replied:","widget_read_more_text":"Read more","widget_reviewer_name_as_initial":"last_initial","widget_rating_filter_color":"","widget_rating_filter_see_all_text":"See all reviews","widget_sorting_most_recent_text":"Most Recent","widget_sorting_highest_rating_text":"Highest Rating","widget_sorting_lowest_rating_text":"Lowest Rating","widget_sorting_with_pictures_text":"Only Pictures","widget_sorting_most_helpful_text":"Most Helpful","widget_open_question_form_text":"Ask a question","widget_reviews_subtab_text":"Reviews","widget_questions_subtab_text":"Questions","widget_question_label_text":"Question","widget_answer_label_text":"Answer","widget_question_placeholder_text":"Write your question here","widget_submit_question_text":"Submit Question","widget_question_submit_success_text":"Thank you for your question! We will notify you once it gets answered.","widget_star_color":"#006690","verified_badge_text":"Verified","verified_badge_bg_color":"","verified_badge_text_color":"","verified_badge_placement":"left-of-reviewer-name","widget_review_max_height":"","widget_hide_border":false,"widget_social_share":false,"widget_thumb":false,"widget_review_location_show":false,"widget_location_format":"country_iso_code","all_reviews_include_out_of_store_products":true,"all_reviews_out_of_store_text":"(out of store)","all_reviews_pagination":100,"all_reviews_product_name_prefix_text":"about","enable_review_pictures":true,"enable_question_anwser":false,"widget_theme":"","review_date_format":"mm/dd/yyyy","default_sort_method":"most-recent","widget_product_reviews_subtab_text":"Product Reviews","widget_shop_reviews_subtab_text":"Shop Reviews","widget_other_products_reviews_text":"Reviews for other products","widget_store_reviews_subtab_text":"Store reviews","widget_no_store_reviews_text":"This store hasn't received any reviews yet","widget_web_restriction_product_reviews_text":"This product hasn't received any reviews yet","widget_no_items_text":"No items found","widget_show_more_text":"Show more","widget_write_a_store_review_text":"Write a Store Review","widget_other_languages_heading":"Reviews in Other Languages","widget_translate_review_text":"Translate review to {{ language }}","widget_translating_review_text":"Translating...","widget_show_original_translation_text":"Show original ({{ language }})","widget_translate_review_failed_text":"Review couldn't be translated.","widget_translate_review_retry_text":"Retry","widget_translate_review_try_again_later_text":"Try again later","show_product_url_for_grouped_product":false,"widget_sorting_pictures_first_text":"Pictures First","show_pictures_on_all_rev_page_mobile":false,"show_pictures_on_all_rev_page_desktop":true,"floating_tab_hide_mobile_install_preference":false,"floating_tab_button_name":"★ Reviews","floating_tab_title":"Let customers speak for us","floating_tab_button_color":"","floating_tab_button_background_color":"","floating_tab_url":"","floating_tab_url_enabled":true,"floating_tab_tab_style":"text","all_reviews_text_badge_text":"{{ shop.metafields.judgeme.all_reviews_rating|round:1 }}/5 based on {{ shop.metafields.judgeme.all_reviews_count }}+ Happy Customer Reviews.","all_reviews_text_badge_text_branded_style":"{{ shop.metafields.judgeme.all_reviews_rating | round: 1 }} out of 5 stars based on {{ shop.metafields.judgeme.all_reviews_count }} reviews","is_all_reviews_text_badge_a_link":false,"show_stars_for_all_reviews_text_badge":true,"all_reviews_text_badge_url":"","all_reviews_text_style":"text","all_reviews_text_color_style":"judgeme_brand_color","all_reviews_text_color":"#108474","all_reviews_text_show_jm_brand":true,"featured_carousel_show_header":true,"featured_carousel_title":"DON’T JUST TAKE OUR WORD FOR IT! ","testimonials_carousel_title":"Customers are saying","videos_carousel_title":"Real customer stories","cards_carousel_title":"Customers are saying","featured_carousel_count_text":"From {{ n }} reviews - See more product and store reviews here ►","featured_carousel_add_link_to_all_reviews_page":true,"featured_carousel_url":"https://myvillagegreen.com/pages/reviews","featured_carousel_show_images":true,"featured_carousel_autoslide_interval":5,"featured_carousel_arrows_on_the_sides":true,"featured_carousel_height":250,"featured_carousel_width":90,"featured_carousel_image_size":0,"featured_carousel_image_height":300,"featured_carousel_arrow_color":"#94b102","verified_count_badge_style":"vintage","verified_count_badge_orientation":"horizontal","verified_count_badge_color_style":"judgeme_brand_color","verified_count_badge_color":"#108474","is_verified_count_badge_a_link":false,"verified_count_badge_url":"","verified_count_badge_show_jm_brand":true,"widget_rating_preset_default":0,"widget_first_sub_tab":"product-reviews","widget_show_histogram":true,"widget_histogram_use_custom_color":false,"widget_pagination_use_custom_color":false,"widget_star_use_custom_color":true,"widget_verified_badge_use_custom_color":false,"widget_write_review_use_custom_color":false,"picture_reminder_submit_button":"Upload Pictures","enable_review_videos":true,"mute_video_by_default":true,"widget_sorting_videos_first_text":"Videos First","widget_review_pending_text":"Pending","featured_carousel_items_for_large_screen":4,"social_share_options_order":"Facebook","remove_microdata_snippet":false,"disable_json_ld":false,"enable_json_ld_products":false,"preview_badge_show_question_text":false,"preview_badge_no_question_text":"No questions","preview_badge_n_question_text":"{{ number_of_questions }} question/questions","qa_badge_show_icon":false,"qa_badge_position":"same-row","remove_judgeme_branding":true,"widget_add_search_bar":false,"widget_search_bar_placeholder":"Search","widget_sorting_verified_only_text":"Verified only","featured_carousel_theme":"aligned","featured_carousel_show_rating":true,"featured_carousel_show_title":true,"featured_carousel_show_body":true,"featured_carousel_show_date":false,"featured_carousel_show_reviewer":false,"featured_carousel_show_product":false,"featured_carousel_header_background_color":"#108474","featured_carousel_header_text_color":"#ffffff","featured_carousel_name_product_separator":"reviewed","featured_carousel_full_star_background":"#108474","featured_carousel_empty_star_background":"#dadada","featured_carousel_vertical_theme_background":"#f9fafb","featured_carousel_verified_badge_enable":false,"featured_carousel_verified_badge_color":"#108474","featured_carousel_border_style":"round","featured_carousel_review_line_length_limit":3,"featured_carousel_more_reviews_button_text":"Read more reviews","featured_carousel_view_product_button_text":"View product","all_reviews_page_load_reviews_on":"button_click","all_reviews_page_load_more_text":"Load More Reviews","disable_fb_tab_reviews":false,"enable_ajax_cdn_cache":false,"widget_advanced_speed_features":5,"widget_public_name_text":"displayed publicly like","default_reviewer_name":"John Smith","default_reviewer_name_has_non_latin":true,"widget_reviewer_anonymous":"Anonymous","medals_widget_title":"Judge.me Review Medals","medals_widget_background_color":"#f9fafb","medals_widget_position":"footer_all_pages","medals_widget_border_color":"#f9fafb","medals_widget_verified_text_position":"left","medals_widget_use_monochromatic_version":false,"medals_widget_elements_color":"#108474","show_reviewer_avatar":true,"widget_invalid_yt_video_url_error_text":"Not a YouTube video URL","widget_max_length_field_error_text":"Please enter no more than {0} characters.","widget_show_country_flag":false,"widget_show_collected_via_shop_app":true,"widget_verified_by_shop_badge_style":"light","widget_verified_by_shop_text":"Verified by Shop","widget_show_photo_gallery":true,"widget_load_with_code_splitting":true,"widget_ugc_install_preference":false,"widget_ugc_title":"Made by us, Shared by you","widget_ugc_subtitle":"Tag us to see your picture featured in our page","widget_ugc_arrows_color":"#ffffff","widget_ugc_primary_button_text":"Buy Now","widget_ugc_primary_button_background_color":"#108474","widget_ugc_primary_button_text_color":"#ffffff","widget_ugc_primary_button_border_width":"0","widget_ugc_primary_button_border_style":"none","widget_ugc_primary_button_border_color":"#108474","widget_ugc_primary_button_border_radius":"25","widget_ugc_secondary_button_text":"Load More","widget_ugc_secondary_button_background_color":"#ffffff","widget_ugc_secondary_button_text_color":"#108474","widget_ugc_secondary_button_border_width":"2","widget_ugc_secondary_button_border_style":"solid","widget_ugc_secondary_button_border_color":"#108474","widget_ugc_secondary_button_border_radius":"25","widget_ugc_reviews_button_text":"View Reviews","widget_ugc_reviews_button_background_color":"#ffffff","widget_ugc_reviews_button_text_color":"#108474","widget_ugc_reviews_button_border_width":"2","widget_ugc_reviews_button_border_style":"solid","widget_ugc_reviews_button_border_color":"#108474","widget_ugc_reviews_button_border_radius":"25","widget_ugc_reviews_button_link_to":"judgeme-reviews-page","widget_ugc_show_post_date":true,"widget_ugc_max_width":"800","widget_rating_metafield_value_type":true,"widget_primary_color":"#006690","widget_enable_secondary_color":false,"widget_secondary_color":"#edf5f5","widget_summary_average_rating_text":"{{ average_rating }} out of 5","widget_media_grid_title":"Customer photos \u0026 videos","widget_media_grid_see_more_text":"See more","widget_round_style":true,"widget_show_product_medals":false,"widget_verified_by_judgeme_text":"Verified by Judge.me","widget_show_store_medals":false,"widget_verified_by_judgeme_text_in_store_medals":"Verified by Judge.me","widget_media_field_exceed_quantity_message":"Sorry, we can only accept {{ max_media }} for one review.","widget_media_field_exceed_limit_message":"{{ file_name }} is too large, please select a {{ media_type }} less than {{ size_limit }}MB.","widget_review_submitted_text":"Review Submitted!","widget_question_submitted_text":"Question Submitted!","widget_close_form_text_question":"Cancel","widget_write_your_answer_here_text":"Write your answer here","widget_enabled_branded_link":true,"widget_show_collected_by_judgeme":false,"widget_reviewer_name_color":"","widget_write_review_text_color":"","widget_write_review_bg_color":"","widget_collected_by_judgeme_text":"collected by Judge.me","widget_pagination_type":"load_more","widget_load_more_text":"Load More","widget_load_more_color":"#108474","widget_full_review_text":"Full Review","widget_read_more_reviews_text":"Read More Reviews","widget_read_questions_text":"Read Questions","widget_questions_and_answers_text":"Questions \u0026 Answers","widget_verified_by_text":"Verified by","widget_verified_text":"Verified","widget_number_of_reviews_text":"{{ number_of_reviews }} reviews","widget_back_button_text":"Back","widget_next_button_text":"Next","widget_custom_forms_filter_button":"Filters","custom_forms_style":"vertical","widget_show_review_information":false,"how_reviews_are_collected":"How reviews are collected?","widget_show_review_keywords":false,"widget_gdpr_statement":"How we use your data: We'll only contact you about the review you left, and only if necessary. By submitting your review, you agree to Judge.me's \u003ca href='https://judge.me/terms' target='_blank' rel='nofollow noopener'\u003eterms\u003c/a\u003e, \u003ca href='https://judge.me/privacy' target='_blank' rel='nofollow noopener'\u003eprivacy\u003c/a\u003e and \u003ca href='https://judge.me/content-policy' target='_blank' rel='nofollow noopener'\u003econtent\u003c/a\u003e policies.","widget_multilingual_sorting_enabled":false,"widget_translate_review_content_enabled":false,"widget_translate_review_content_method":"manual","popup_widget_review_selection":"automatically_with_pictures","popup_widget_round_border_style":true,"popup_widget_show_title":true,"popup_widget_show_body":true,"popup_widget_show_reviewer":false,"popup_widget_show_product":true,"popup_widget_show_pictures":true,"popup_widget_use_review_picture":true,"popup_widget_show_on_home_page":true,"popup_widget_show_on_product_page":true,"popup_widget_show_on_collection_page":true,"popup_widget_show_on_cart_page":true,"popup_widget_position":"bottom_left","popup_widget_first_review_delay":5,"popup_widget_duration":5,"popup_widget_interval":5,"popup_widget_review_count":5,"popup_widget_hide_on_mobile":true,"review_snippet_widget_round_border_style":true,"review_snippet_widget_card_color":"#FFFFFF","review_snippet_widget_slider_arrows_background_color":"#FFFFFF","review_snippet_widget_slider_arrows_color":"#000000","review_snippet_widget_star_color":"#108474","show_product_variant":false,"all_reviews_product_variant_label_text":"Variant: ","widget_show_verified_branding":false,"widget_ai_summary_title":"Customers say","widget_ai_summary_disclaimer":"AI-powered review summary based on recent customer reviews","widget_show_ai_summary":false,"widget_show_ai_summary_bg":false,"widget_show_review_title_input":true,"redirect_reviewers_invited_via_email":"review_widget","request_store_review_after_product_review":false,"request_review_other_products_in_order":false,"review_form_color_scheme":"default","review_form_corner_style":"square","review_form_star_color":{},"review_form_text_color":"#333333","review_form_background_color":"#ffffff","review_form_field_background_color":"#fafafa","review_form_button_color":{},"review_form_button_text_color":"#ffffff","review_form_modal_overlay_color":"#000000","review_content_screen_title_text":"How would you rate this product?","review_content_introduction_text":"We would love it if you would share a bit about your experience.","store_review_form_title_text":"How would you rate this store?","store_review_form_introduction_text":"We would love it if you would share a bit about your experience.","show_review_guidance_text":true,"one_star_review_guidance_text":"Poor","five_star_review_guidance_text":"Great","customer_information_screen_title_text":"About you","customer_information_introduction_text":"Please tell us more about you.","custom_questions_screen_title_text":"Your experience in more detail","custom_questions_introduction_text":"Here are a few questions to help us understand more about your experience.","review_submitted_screen_title_text":"Thanks for your review!","review_submitted_screen_thank_you_text":"We are processing it and it will appear on the store soon.","review_submitted_screen_email_verification_text":"Please confirm your email by clicking the link we just sent you. This helps us keep reviews authentic.","review_submitted_request_store_review_text":"Would you like to share your experience of shopping with us?","review_submitted_review_other_products_text":"Would you like to review these products?","store_review_screen_title_text":"Would you like to share your experience of shopping with us?","store_review_introduction_text":"We value your feedback and use it to improve. Please share any thoughts or suggestions you have.","reviewer_media_screen_title_picture_text":"Share a picture","reviewer_media_introduction_picture_text":"Upload a photo to support your review.","reviewer_media_screen_title_video_text":"Share a video","reviewer_media_introduction_video_text":"Upload a video to support your review.","reviewer_media_screen_title_picture_or_video_text":"Share a picture or video","reviewer_media_introduction_picture_or_video_text":"Upload a photo or video to support your review.","reviewer_media_youtube_url_text":"Paste your Youtube URL here","advanced_settings_next_step_button_text":"Next","advanced_settings_close_review_button_text":"Close","modal_write_review_flow":false,"write_review_flow_required_text":"Required","write_review_flow_privacy_message_text":"We respect your privacy.","write_review_flow_anonymous_text":"Post review as anonymous","write_review_flow_visibility_text":"This won't be visible to other customers.","write_review_flow_multiple_selection_help_text":"Select as many as you like","write_review_flow_single_selection_help_text":"Select one option","write_review_flow_required_field_error_text":"This field is required","write_review_flow_invalid_email_error_text":"Please enter a valid email address","write_review_flow_max_length_error_text":"Max. {{ max_length }} characters.","write_review_flow_media_upload_text":"\u003cb\u003eClick to upload\u003c/b\u003e or drag and drop","write_review_flow_gdpr_statement":"We'll only contact you about your review if necessary. By submitting your review, you agree to our \u003ca href='https://judge.me/terms' target='_blank' rel='nofollow noopener'\u003eterms and conditions\u003c/a\u003e and \u003ca href='https://judge.me/privacy' target='_blank' rel='nofollow noopener'\u003eprivacy policy\u003c/a\u003e.","rating_only_reviews_enabled":false,"show_negative_reviews_help_screen":false,"new_review_flow_help_screen_rating_threshold":3,"negative_review_resolution_screen_title_text":"Tell us more","negative_review_resolution_text":"Your experience matters to us. If there were issues with your purchase, we're here to help. Feel free to reach out to us, we'd love the opportunity to make things right.","negative_review_resolution_button_text":"Contact us","negative_review_resolution_proceed_with_review_text":"Leave a review","negative_review_resolution_subject":"Issue with purchase from {{ shop_name }}.{{ order_name }}","preview_badge_collection_page_install_status":false,"widget_review_custom_css":"","preview_badge_custom_css":"","preview_badge_stars_count":"5-stars","featured_carousel_custom_css":"","floating_tab_custom_css":"","all_reviews_widget_custom_css":"","medals_widget_custom_css":"","verified_badge_custom_css":"","all_reviews_text_custom_css":"","transparency_badges_collected_via_store_invite":false,"transparency_badges_from_another_provider":false,"transparency_badges_collected_from_store_visitor":false,"transparency_badges_collected_by_verified_review_provider":false,"transparency_badges_earned_reward":false,"transparency_badges_collected_via_store_invite_text":"Review collected via store invitation","transparency_badges_from_another_provider_text":"Review collected from another provider","transparency_badges_collected_from_store_visitor_text":"Review collected from a store visitor","transparency_badges_written_in_google_text":"Review written in Google","transparency_badges_written_in_etsy_text":"Review written in Etsy","transparency_badges_written_in_shop_app_text":"Review written in Shop App","transparency_badges_earned_reward_text":"Review earned a reward for future purchase","product_review_widget_per_page":10,"widget_store_review_label_text":"Review about the store","checkout_comment_extension_title_on_product_page":"Customer Comments","checkout_comment_extension_num_latest_comment_show":5,"checkout_comment_extension_format":"name_and_timestamp","checkout_comment_customer_name":"last_initial","checkout_comment_comment_notification":true,"preview_badge_collection_page_install_preference":true,"preview_badge_home_page_install_preference":false,"preview_badge_product_page_install_preference":true,"review_widget_install_preference":"","review_carousel_install_preference":true,"floating_reviews_tab_install_preference":"none","verified_reviews_count_badge_install_preference":false,"all_reviews_text_install_preference":false,"review_widget_best_location":true,"judgeme_medals_install_preference":false,"review_widget_revamp_enabled":false,"review_widget_qna_enabled":false,"review_widget_header_theme":"minimal","review_widget_widget_title_enabled":true,"review_widget_header_text_size":"medium","review_widget_header_text_weight":"regular","review_widget_average_rating_style":"compact","review_widget_bar_chart_enabled":true,"review_widget_bar_chart_type":"numbers","review_widget_bar_chart_style":"standard","review_widget_expanded_media_gallery_enabled":false,"review_widget_reviews_section_theme":"standard","review_widget_image_style":"thumbnails","review_widget_review_image_ratio":"square","review_widget_stars_size":"medium","review_widget_verified_badge":"standard_text","review_widget_review_title_text_size":"medium","review_widget_review_text_size":"medium","review_widget_review_text_length":"medium","review_widget_number_of_columns_desktop":3,"review_widget_carousel_transition_speed":5,"review_widget_custom_questions_answers_display":"always","review_widget_button_text_color":"#FFFFFF","review_widget_text_color":"#000000","review_widget_lighter_text_color":"#7B7B7B","review_widget_corner_styling":"soft","review_widget_review_word_singular":"review","review_widget_review_word_plural":"reviews","review_widget_voting_label":"Helpful?","review_widget_shop_reply_label":"Reply from {{ shop_name }}:","review_widget_filters_title":"Filters","qna_widget_question_word_singular":"Question","qna_widget_question_word_plural":"Questions","qna_widget_answer_reply_label":"Answer from {{ answerer_name }}:","qna_content_screen_title_text":"Ask a question about this product","qna_widget_question_required_field_error_text":"Please enter your question.","qna_widget_flow_gdpr_statement":"We'll only contact you about your question if necessary. By submitting your question, you agree to our \u003ca href='https://judge.me/terms' target='_blank' rel='nofollow noopener'\u003eterms and conditions\u003c/a\u003e and \u003ca href='https://judge.me/privacy' target='_blank' rel='nofollow noopener'\u003eprivacy policy\u003c/a\u003e.","qna_widget_question_submitted_text":"Thanks for your question!","qna_widget_close_form_text_question":"Close","qna_widget_question_submit_success_text":"We’ll notify you by email when your question is answered.","all_reviews_widget_v2025_enabled":false,"all_reviews_widget_v2025_header_theme":"default","all_reviews_widget_v2025_widget_title_enabled":true,"all_reviews_widget_v2025_header_text_size":"medium","all_reviews_widget_v2025_header_text_weight":"regular","all_reviews_widget_v2025_average_rating_style":"compact","all_reviews_widget_v2025_bar_chart_enabled":true,"all_reviews_widget_v2025_bar_chart_type":"numbers","all_reviews_widget_v2025_bar_chart_style":"standard","all_reviews_widget_v2025_expanded_media_gallery_enabled":false,"all_reviews_widget_v2025_show_store_medals":true,"all_reviews_widget_v2025_show_photo_gallery":true,"all_reviews_widget_v2025_show_review_keywords":false,"all_reviews_widget_v2025_show_ai_summary":false,"all_reviews_widget_v2025_show_ai_summary_bg":false,"all_reviews_widget_v2025_add_search_bar":false,"all_reviews_widget_v2025_default_sort_method":"most-recent","all_reviews_widget_v2025_reviews_per_page":10,"all_reviews_widget_v2025_reviews_section_theme":"default","all_reviews_widget_v2025_image_style":"thumbnails","all_reviews_widget_v2025_review_image_ratio":"square","all_reviews_widget_v2025_stars_size":"medium","all_reviews_widget_v2025_verified_badge":"bold_badge","all_reviews_widget_v2025_review_title_text_size":"medium","all_reviews_widget_v2025_review_text_size":"medium","all_reviews_widget_v2025_review_text_length":"medium","all_reviews_widget_v2025_number_of_columns_desktop":3,"all_reviews_widget_v2025_carousel_transition_speed":5,"all_reviews_widget_v2025_custom_questions_answers_display":"always","all_reviews_widget_v2025_show_product_variant":false,"all_reviews_widget_v2025_show_reviewer_avatar":true,"all_reviews_widget_v2025_reviewer_name_as_initial":"","all_reviews_widget_v2025_review_location_show":false,"all_reviews_widget_v2025_location_format":"","all_reviews_widget_v2025_show_country_flag":false,"all_reviews_widget_v2025_verified_by_shop_badge_style":"light","all_reviews_widget_v2025_social_share":false,"all_reviews_widget_v2025_social_share_options_order":"Facebook,Twitter,LinkedIn,Pinterest","all_reviews_widget_v2025_pagination_type":"standard","all_reviews_widget_v2025_button_text_color":"#FFFFFF","all_reviews_widget_v2025_text_color":"#000000","all_reviews_widget_v2025_lighter_text_color":"#7B7B7B","all_reviews_widget_v2025_corner_styling":"soft","all_reviews_widget_v2025_title":"Customer reviews","all_reviews_widget_v2025_ai_summary_title":"Customers say about this store","all_reviews_widget_v2025_no_review_text":"Be the first to write a review","platform":"shopify","branding_url":"https://app.judge.me/reviews/stores/myvillagegreen.com","branding_text":"Powered by Judge.me","locale":"en","reply_name":"Village Green Apothecary","widget_version":"3.0","footer":true,"autopublish":true,"review_dates":true,"enable_custom_form":false,"shop_use_review_site":true,"shop_locale":"en","enable_multi_locales_translations":true,"show_review_title_input":true,"review_verification_email_status":"never","can_be_branded":true,"reply_name_text":"Village Green Apothecary"};</script> <style class='jdgm-settings-style'>.jdgm-xx{left:0}:root{--jdgm-primary-color: #006690;--jdgm-secondary-color: rgba(0,102,144,0.1);--jdgm-star-color: #006690;--jdgm-write-review-text-color: white;--jdgm-write-review-bg-color: #006690;--jdgm-paginate-color: #006690;--jdgm-border-radius: 10;--jdgm-reviewer-name-color: #006690}.jdgm-histogram__bar-content{background-color:#006690}.jdgm-rev[data-verified-buyer=true] .jdgm-rev__icon.jdgm-rev__icon:after,.jdgm-rev__buyer-badge.jdgm-rev__buyer-badge{color:white;background-color:#006690}.jdgm-review-widget--small .jdgm-gallery.jdgm-gallery .jdgm-gallery__thumbnail-link:nth-child(8) .jdgm-gallery__thumbnail-wrapper.jdgm-gallery__thumbnail-wrapper:before{content:"See more"}@media only screen and (min-width: 768px){.jdgm-gallery.jdgm-gallery .jdgm-gallery__thumbnail-link:nth-child(8) .jdgm-gallery__thumbnail-wrapper.jdgm-gallery__thumbnail-wrapper:before{content:"See more"}}.jdgm-preview-badge .jdgm-star.jdgm-star{color:#006690}.jdgm-prev-badge[data-average-rating='0.00']{display:none !important}.jdgm-author-fullname{display:none !important}.jdgm-author-all-initials{display:none !important}.jdgm-rev-widg__title{visibility:hidden}.jdgm-rev-widg__summary-text{visibility:hidden}.jdgm-prev-badge__text{visibility:hidden}.jdgm-rev__prod-link-prefix:before{content:'about'}.jdgm-rev__variant-label:before{content:'Variant: '}.jdgm-rev__out-of-store-text:before{content:'(out of store)'}@media only screen and (max-width: 768px){.jdgm-rev__pics .jdgm-rev_all-rev-page-picture-separator,.jdgm-rev__pics .jdgm-rev__product-picture{display:none}}.jdgm-preview-badge[data-template="index"]{display:none !important}.jdgm-verified-count-badget[data-from-snippet="true"]{display:none !important}.jdgm-all-reviews-text[data-from-snippet="true"]{display:none !important}.jdgm-medals-section[data-from-snippet="true"]{display:none !important}.jdgm-ugc-media-wrapper[data-from-snippet="true"]{display:none !important}.jdgm-rev__transparency-badge[data-badge-type="review_collected_via_store_invitation"]{display:none !important}.jdgm-rev__transparency-badge[data-badge-type="review_collected_from_another_provider"]{display:none !important}.jdgm-rev__transparency-badge[data-badge-type="review_collected_from_store_visitor"]{display:none !important}.jdgm-rev__transparency-badge[data-badge-type="review_written_in_etsy"]{display:none !important}.jdgm-rev__transparency-badge[data-badge-type="review_written_in_google_business"]{display:none !important}.jdgm-rev__transparency-badge[data-badge-type="review_written_in_shop_app"]{display:none !important}.jdgm-rev__transparency-badge[data-badge-type="review_earned_for_future_purchase"]{display:none !important}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__cards-container .jdgm-rev-snippet-card{border-radius:8px;background:#fff}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__cards-container .jdgm-rev-snippet-card__rev-rating .jdgm-star{color:#108474}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__prev-btn,.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__next-btn{border-radius:50%;background:#fff}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__prev-btn>svg,.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__next-btn>svg{fill:#000}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jm-mfp-content,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__icon,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__pic-img,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__reply{border-radius:8px}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev[data-verified-buyer="true"] .jdgm-full-rev__icon::after{border-radius:8px}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-rev__buyer-badge{border-radius:calc( 8px / 2 )}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-full-rev__replier::before{content:'Village Green Apothecary'}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-full-rev__product-button{border-radius:calc( 8px * 6 )}
</style> <style class='jdgm-settings-style'></style>

  
  
  
  <style class='jdgm-miracle-styles'>
  @-webkit-keyframes jdgm-spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes jdgm-spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@font-face{font-family:'JudgemeStar';src:url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAScAA0AAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEgAAAABoAAAAcbyQ+3kdERUYAAARgAAAAHgAAACAAMwAGT1MvMgAAAZgAAABGAAAAVi+vS9xjbWFwAAAB8AAAAEAAAAFKwBMjvmdhc3AAAARYAAAACAAAAAj//wADZ2x5ZgAAAkAAAAEJAAABdH33LXtoZWFkAAABMAAAAC0AAAA2BroQKWhoZWEAAAFgAAAAHAAAACQD5QHQaG10eAAAAeAAAAAPAAAAFAYAAABsb2NhAAACMAAAAA4AAAAOAO4AeG1heHAAAAF8AAAAHAAAACAASgAvbmFtZQAAA0wAAADeAAABkorWfVZwb3N0AAAELAAAACkAAABEp3ubLXgBY2BkYADhPPP4OfH8Nl8ZuJkYQODS2fRrCPr/aSYGxq1ALgcDWBoAO60LkwAAAHgBY2BkYGDc+v80gx4TAwgASaAICmABAFB+Arl4AWNgZGBgYGPQYWBiAAIwyQgWc2AAAwAHVQB6eAFjYGRiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbByMsCBAAMCBKS5pjA4PGB4wMR44P8BBj3GrQymQGFGkBwAjtgK/gAAeAFjYoAAEA1jAwAAZAAHAHgB3crBCcAwDEPRZydkih567CDdf4ZskmLwFBV8xBfCaC4BXkOUmx4sU0h2ngNb9V0vQCxaRKIAevT7fGWuBrEAAAAAAAAAAAA0AHgAugAAeAF9z79Kw1AUx/FzTm7un6QmJtwmQ5Bg1abgEGr/BAqlU6Gju+Cgg1MkQ/sA7Vj7BOnmO/gUvo2Lo14NqIO6/IazfD8HEODtmQCfoANwNsyp2/GJt3WKQrd1NLiYYWx2PBqOsmJMEOznPOTzfSCrhAtbbLdmeFLJV9eKd63WLrZcIcuaEVdssWCKM6pLCfTVOYbz/0pNSMSZKLIZpvh78sAUH6PlMrreTCabP9r+Z/puPZ2ur/RqpQHgh+MIegCnXeM4MRAPjYN//5tj4ZtTjkFqEdmeMShlEJ7tVAly2TAkx6R68Fl4E/aVvn8JqHFQ4JS1434gXKcuL31dDhzs3YbsEOAd/IU88gAAAHgBfY4xTgMxEEVfkk0AgRCioKFxQYd2ZRtpixxgRU2RfhU5q5VWseQ4JdfgAJyBlmNwAM7ABRhZQ0ORwp7nr+eZAa54YwYg9zm3ynPOeFRe8MCrciXOh/KSS76UV5L/iDmrLiS5AeU519wrL3jmSbkS5115yR2fyivJv9kx0ZMZ2RLZw27q87iNQi8EBo5FSPIMw3HqBboi5lKTGAGDp8FKXWP+t9TU01Lj5His1Ba6uM9dTEMwvrFmbf5GC/q2drW3ruXUhhsCiQOjznFlCzYhHUZp4xp76vsvQh89CQAAeAFjYGJABowM6IANLMrEyMTIzMjCXpyRWJBqZshWXJJYBKOMAFHFBucAAAAAAAAB//8AAngBY2BkYGDgA2IJBhBgAvKZGViBJAuYxwAABJsAOgAAeAFjYGBgZACCk535hiD60tn0azAaAEqpB6wAAA==") format("woff");font-weight:normal;font-style:normal}.jdgm-star{font-family:'JudgemeStar';display:inline !important;text-decoration:none !important;padding:0 4px 0 0 !important;margin:0 !important;font-weight:bold;opacity:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.jdgm-star:hover{opacity:1}.jdgm-star:last-of-type{padding:0 !important}.jdgm-star.jdgm--on:before{content:"\e000"}.jdgm-star.jdgm--off:before{content:"\e001"}.jdgm-star.jdgm--half:before{content:"\e002"}.jdgm-widget *{margin:0;line-height:1.4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-overflow-scrolling:touch}.jdgm-hidden{display:none !important;visibility:hidden !important}.jdgm-temp-hidden{display:none}.jdgm-spinner{width:40px;height:40px;margin:auto;border-radius:50%;border-top:2px solid #eee;border-right:2px solid #eee;border-bottom:2px solid #eee;border-left:2px solid #ccc;-webkit-animation:jdgm-spin 0.8s infinite linear;animation:jdgm-spin 0.8s infinite linear}.jdgm-prev-badge{display:block !important}

</style>


  
  
   




<script data-cfasync='false' class='jdgm-script'>
!function(e){window.jdgm=window.jdgm||{},jdgm.CDN_HOST="https://cdnwidget.judge.me/",jdgm.CDN_HOST_ALT="https://cdn2.judge.me/cdn/widget_frontend/",jdgm.API_HOST="https://api.judge.me/",jdgm.CDN_BASE_URL="https://cdn.shopify.com/extensions/019ea81e-eadf-7199-a3d8-70ded874a005/judgeme-563/assets/",jdgm.CDN_API_HOST="https://cdn.judge.me/",
jdgm.docReady=function(d){(e.attachEvent?"complete"===e.readyState:"loading"!==e.readyState)?
setTimeout(d,0):e.addEventListener("DOMContentLoaded",d)},jdgm.loadCSS=function(d,t,o,a){
!o&&jdgm.loadCSS.requestedUrls.indexOf(d)>=0||(jdgm.loadCSS.requestedUrls.push(d),
(a=e.createElement("link")).rel="stylesheet",a.class="jdgm-stylesheet",a.media="nope!",
a.href=d,a.onload=function(){this.media="all",t&&setTimeout(t)},e.body.appendChild(a))},
jdgm.loadCSS.requestedUrls=[],jdgm.loadJS=function(e,d){var t=new XMLHttpRequest;
t.onreadystatechange=function(){4===t.readyState&&(Function(t.response)(),d&&d(t.response))},
t.open("GET",e),t.onerror=function(){if(e.indexOf(jdgm.CDN_HOST)===0&&jdgm.CDN_HOST_ALT!==jdgm.CDN_HOST){var f=e.replace(jdgm.CDN_HOST,jdgm.CDN_HOST_ALT);jdgm.loadJS(f,d)}},t.send()},jdgm.docReady((function(){(window.jdgmLoadCSS||e.querySelectorAll(
".jdgm-widget, .jdgm-all-reviews-page").length>0)&&(jdgmSettings.widget_load_with_code_splitting?
parseFloat(jdgmSettings.widget_version)>=3?jdgm.loadCSS(jdgm.CDN_BASE_URL+"widget_v3_base.css"):
jdgm.loadCSS(jdgm.CDN_BASE_URL+"widget_base.css"):jdgm.loadCSS(jdgm.CDN_BASE_URL+"shopify_v2.css")
)}))}(document);
</script>
<noscript><link rel="stylesheet" type="text/css" media="all" href="https://cdn.shopify.com/extensions/019ea81e-eadf-7199-a3d8-70ded874a005/judgeme-563/assets/shopify_v2.css"></noscript>

<!-- BEGIN app snippet: theme_fix_tags --><script>
  (function() {
    var jdgmThemeFixes = {"143893594350":{"html":"","css":"@media(max-width: 700px) {\n  .shopify-block:has(.jdgm-carousel-wrapper) {\n  max-width: 100vw !important\n  }\n}","js":""},"151474241774":{"html":"","css":"@media (min-width: 768px) {\n#judgeme_all_reviews_page {\n    padding-left: 15%;\n    padding-right: 15%;\n}\n}\n@media (max-width: 768px) {\n    #judgeme_all_reviews_pages {\n        padding-left: 3%;\n        padding-right: 3%;\n    }\n}","js":""}};
    if (!jdgmThemeFixes) return;
    var thisThemeFix = jdgmThemeFixes[Shopify.theme.id];
    if (!thisThemeFix) return;

    if (thisThemeFix.html) {
      document.addEventListener("DOMContentLoaded", function() {
        var htmlDiv = document.createElement('div');
        htmlDiv.classList.add('jdgm-theme-fix-html');
        htmlDiv.innerHTML = thisThemeFix.html;
        document.body.append(htmlDiv);
      });
    };

    if (thisThemeFix.css) {
      var styleTag = document.createElement('style');
      styleTag.classList.add('jdgm-theme-fix-style');
      styleTag.innerHTML = thisThemeFix.css;
      document.head.append(styleTag);
    };

    if (thisThemeFix.js) {
      var scriptTag = document.createElement('script');
      scriptTag.classList.add('jdgm-theme-fix-script');
      scriptTag.innerHTML = thisThemeFix.js;
      document.head.append(scriptTag);
    };
  })();
</script>
<!-- END app snippet -->
<!-- End of Judge.me Core -->



<!-- END app block --><!-- BEGIN app block: shopify://apps/pagefly-page-builder/blocks/app-embed/83e179f7-59a0-4589-8c66-c0dddf959200 -->

<!-- BEGIN app snippet: pagefly-cro-ab-testing-main -->







<script>
  ;(function () {
    const url = new URL(window.location)
    const viewParam = url.searchParams.get('view')
    if (viewParam && viewParam.includes('variant-pf-')) {
      url.searchParams.set('pf_v', viewParam)
      url.searchParams.delete('view')
      window.history.replaceState({}, '', url)
    }
  })()
</script>



<script type='module'>
  
  window.PAGEFLY_CRO = window.PAGEFLY_CRO || {}

  window.PAGEFLY_CRO['data_debug'] = {
    original_template_suffix: "",
    allow_ab_test: false,
    ab_test_start_time: 0,
    ab_test_end_time: 0,
    today_date_time: 1781014966000,
  }
  window.PAGEFLY_CRO['GA4'] = { enabled: true}
</script>

<!-- END app snippet -->










  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-helper.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-general-helper.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-snap-slider.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-slideshow-v3.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-slideshow-v4.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-glider.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-slideshow-v1-v2.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-product-media.js' defer='defer'></script>

  <script src='https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-product.js' defer='defer'></script>


<script id='pagefly-helper-data' type='application/json'>
  {
    "page_optimization": {
      "assets_prefetching": false
    },
    "elements_asset_mapper": {
      "Accordion": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-accordion.js",
      "Accordion3": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-accordion3.js",
      "CountDown": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-countdown.js",
      "GMap1": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-gmap.js",
      "GMap2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-gmap.js",
      "GMapBasicV2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-gmap.js",
      "GMapAdvancedV2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-gmap.js",
      "HTML.Video": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-htmlvideo.js",
      "HTML.Video2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-htmlvideo2.js",
      "HTML.Video3": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-htmlvideo2.js",
      "BackgroundVideo": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-htmlvideo2.js",
      "Instagram": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-instagram.js",
      "Instagram2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-instagram.js",
      "Insta3": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-instagram3.js",
      "Tabs": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-tab.js",
      "Tabs3": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-tab3.js",
      "ProductBox": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-cart.js",
      "FBPageBox2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-facebook.js",
      "FBLikeButton2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-facebook.js",
      "TwitterFeed2": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-twitter.js",
      "Paragraph4": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-paragraph4.js",

      "AliReviews": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "BackInStock": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "GloboBackInStock": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "GrowaveWishlist": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "InfiniteOptionsShopPad": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "InkybayProductPersonalizer": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "LimeSpot": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "Loox": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "Opinew": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "Powr": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "ProductReviews": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "PushOwl": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "ReCharge": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "Rivyo": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "TrackingMore": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "Vitals": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js",
      "Wiser": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-3rd-elements.js"
    },
    "custom_elements_mapper": {
      "pf-click-action-element": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-click-action-element.js",
      "pf-dialog-element": "https://cdn.shopify.com/extensions/019e6d6b-87ea-756b-a21c-3bbb5e2e9f43/pagefly-page-builder-288/assets/pagefly-dialog-element.js"
    }
  }
</script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/frequently-bought/blocks/app-embed-block/b1a8cbea-c844-4842-9529-7c62dbab1b1f --><script>
    window.codeblackbelt = window.codeblackbelt || {};
    window.codeblackbelt.shop = window.codeblackbelt.shop || 'myvillagegreen.myshopify.com';
    </script><script src="//cdn.codeblackbelt.com/widgets/frequently-bought-together/bootstrap.min.js?version=2026060910-0400" async></script>
 <!-- END app block --><script src="https://cdn.shopify.com/extensions/019d46c8-361b-7c07-80e6-902780930673/ordersify-bis-1775009007/assets/ordersify.min.js" type="text/javascript" defer="defer"></script>
<link href="https://cdn.shopify.com/extensions/019d46c8-361b-7c07-80e6-902780930673/ordersify-bis-1775009007/assets/ordersify.min.css" rel="stylesheet" type="text/css" media="all">
<script src="https://cdn.shopify.com/extensions/019ea92c-e791-7860-800b-5b10b5cdd21e/aftersell-813/assets/aftersell-utm-triggers.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/form-builder-script.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/019ea81e-eadf-7199-a3d8-70ded874a005/judgeme-563/assets/loader.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/019ea8c7-accc-705e-aeec-5661a3d8b719/2026-06-08-19-46-57-UTC--a3fb95d/assets/smile-loader.js" type="text/javascript" defer="defer"></script>
<meta property="og:image" content="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/banner_ce8570ce-e851-49e6-8164-0708cc93d9d1.png?v=1595363454" />
<meta property="og:image:secure_url" content="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/banner_ce8570ce-e851-49e6-8164-0708cc93d9d1.png?v=1595363454" />
<meta property="og:image:width" content="2000" />
<meta property="og:image:height" content="785" />
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 31909609603,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "blog"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script>
  window.__TREKKIE_SHIM_QUEUE = window.__TREKKIE_SHIM_QUEUE || [];
</script>
<script id="web-pixels-manager-setup">(function(){var wpmLoader=function(){"use strict";return function(e,d,r,n){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};if(!Boolean(null==(i=null==(a=window.Shopify)?void 0:a.analytics)?void 0:i.replayQueue)){var a,i;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l,u,c,m,p,f,h,g,y,w,v,b,S,P=(u=(l={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/}).modern,c=l.legacy,(m=navigator.userAgent).match(u)?"modern":m.match(c)?"legacy":"unknown"),C="modern"===P?"modern":"legacy",_=(null!=n?n:{modern:"",legacy:""})[C],O=[(p={baseUrl:d,hashVersion:r,buildTarget:C}).baseUrl,"/wpm","/b",p.hashVersion,"modern"===p.buildTarget?"m":"l",".js"].join(""),U=(f={version:r,bundleTarget:P,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint},h=f.version,g=f.bundleTarget,y=f.surface,w=f.pageUrl,v=f.monorailEndpoint,{emit:function(e){var d=e.status,r=e.errorMsg,n=(new Date).getTime(),o=JSON.stringify({metadata:{event_sent_at_ms:n},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:h,bundle_target:g,page_url:w,status:d,surface:y,error_msg:r},metadata:{event_created_at_ms:n}}]});if(!v)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(v,o)}catch(e){}var a=new XMLHttpRequest;try{return a.open("POST",v,!0),a.setRequestHeader("Content-Type","text/plain"),a.send(o),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}});try{o.browserTarget=P,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,a=e.onerror,i=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,i&&(l.integrity=i,l.crossOrigin="anonymous"),s)for(var m in s)if(Object.prototype.hasOwnProperty.call(s,m))try{l.dataset[m]=s[m]}catch(e){}if(o&&l.addEventListener("load",o),a&&l.addEventListener("error",a),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:O,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null==(d=null==(e=window.Shopify)?void 0:e.analytics)?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach(function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)}),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return U.emit({status:"failed",errorMsg:"".concat(O," has failed to load")})},sri:(b=_,S=/^sha384-[A-Za-z0-9+/=]+$/,"string"==typeof b&&S.test(b)?_:""),scriptDataAttributes:o}),U.emit({status:"loading"})}catch(e){U.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}}}();wpmLoader({shopId: 31909609603,storefrontBaseUrl: "https://myvillagegreen.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86","d5bdd5d0","3209b71c","5acaffe6","86d76263","3b3c7daf","6faea013"],webPixelsConfigList: [{"id":"1565622510","configuration":"{\"appProxyPath\":\"\/apps\/pagefly\",\"analyticsEndpoint\":\"undefined\/analytics-v2\/events\",\"focusDuration\":\"3\",\"enableAdvancedTracking\":\"false\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"adaf13cc27e1db1a685106a61ec8ed55","type":"APP","apiClientId":1743893,"privacyPurposes":["ANALYTICS","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"1369178350","configuration":"{\"accountID\":\"TMUrUa\",\"webPixelConfig\":\"eyJlbmFibGVBZGRlZFRvQ2FydEV2ZW50cyI6IHRydWV9\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"524f6c1ee37bacdca7657a665bdca589","type":"APP","apiClientId":123074,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"977371374","configuration":"{\"webPixelName\":\"Judge.me\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"34ad157958823915625854214640f0bf","type":"APP","apiClientId":683015,"privacyPurposes":["ANALYTICS"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"935067886","configuration":"{\"accountID\":\"ea280073-c4c3-4ac1-8c83-a2b0991776d4\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"d41e37e77590ee36b18b40373be76805","type":"APP","apiClientId":256105349121,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_phone","read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"680132846","configuration":"{\"shopId\":\"26183\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"e46595b10fdc5e1674d5c89a8c843bb3","type":"APP","apiClientId":5443297,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"37716206","configuration":"{\"apiKey\":\"7x5E5S3S2t\",\"host\":\"searchserverapi1.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"5559ea45e47b67d15b30b79e7c6719da","type":"APP","apiClientId":578825,"privacyPurposes":["ANALYTICS"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"21627118","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"13","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Google Tag Manager - GA4"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"Village Green Apothecary","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"myvillagegreen.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/myvillagegreen.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"products":null,"purchasingCompany":null,"page":null},},"https://myvillagegreen.com/cdn","a9664f44w6a62cec8p04af10e4mb91e3447",{"modern":"","legacy":""},{"trekkieShim":true,"apiClientId":"580111","pageType":"blog","resourceId":"74931208341","shopId":"31909609603","storefrontBaseUrl":"https:\/\/myvillagegreen.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\", \"d5bdd5d0\", \"3209b71c\", \"5acaffe6\", \"86d76263\", \"3b3c7daf\", \"6faea013\"]","isMerchantRequest":"false","hashVersion":"a9664f44w6a62cec8p04af10e4mb91e3447","publish":"custom","events":"[[\"page_viewed\",{}]]"});})();</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'USD';
  var meta = {"page":{"pageType":"blog","resourceType":"blog","resourceId":74931208341,"requestId":"81597b69-d0f8-40e5-a75a-fc7e43260472-1781014965"}};
  for (var attr in meta) {
    window.ShopifyAnalytics.meta[attr] = meta[attr];
  }
</script>
<script class="analytics">
  (function () {
    var customDocumentWrite = function(content) {
      var jquery = null;

      if (window.jQuery) {
        jquery = window.jQuery;
      } else if (window.Checkout && window.Checkout.$) {
        jquery = window.Checkout.$;
      }

      if (jquery) {
        jquery('body').append(content);
      }
    };

    var hasLoggedConversion = function(token) {
      if (token) {
        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
      }
      return false;
    }

    var setCookieIfConversion = function(token) {
      if (token) {
        var twoMonthsFromNow = new Date(Date.now());
        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);

        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
      }
    }

    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
    window.ShopifyAnalytics.lib.trekkie = window.trekkie;
    if (trekkie.integrations) {
      return;
    }
    trekkie.methods = [
      'identify',
      'page',
      'ready',
      'track',
      'trackForm',
      'trackLink'
    ];
    trekkie.factory = function(method) {
      return function() {
        var args = Array.prototype.slice.call(arguments);
        args.unshift(method);
        trekkie.push(args);
        if (window.__TREKKIE_SHIM_QUEUE && (method == 'track' || method == 'page')) {
          try {
            window.__TREKKIE_SHIM_QUEUE.push({
              from: 'trekkie-stub',
              method: method,
              args: args.slice(1)
            });
          } catch (e) {
            // no-op
          }
        }
        return trekkie;
      };
    };
    for (var i = 0; i < trekkie.methods.length; i++) {
      var key = trekkie.methods[i];
      trekkie[key] = trekkie.factory(key);
    }
    trekkie.load = function(config) {
      trekkie.config = config || {};
      trekkie.config.initialDocumentCookie = document.cookie;
      var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
  var scriptFallback = document.createElement('script');
  scriptFallback.type = 'text/javascript';
  scriptFallback.onerror = function(error) {
          var Monorail = {
      produce: function produce(monorailDomain, schemaId, payload) {
        var currentMs = new Date().getTime();
        var event = {
          schema_id: schemaId,
          payload: payload,
          metadata: {
            event_created_at_ms: currentMs,
            event_sent_at_ms: currentMs
          }
        };
        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
      },
      sendRequest: function sendRequest(endpointUrl, payload) {
        // Try the sendBeacon API
        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
          var blobData = new window.Blob([payload], {
            type: 'text/plain'
          });

          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
            return true;
          } // sendBeacon was not successful

        } // XHR beacon

        var xhr = new XMLHttpRequest();

        try {
          xhr.open('POST', endpointUrl);
          xhr.setRequestHeader('Content-Type', 'text/plain');
          xhr.send(payload);
        } catch (e) {
          console.log(e);
        }

        return false;
      },
      isIos12: function isIos12() {
        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
      }
    };
    Monorail.produce('monorail-edge.shopifysvc.com',
      'trekkie_storefront_load_errors/1.1',
      {shop_id: 31909609603,
      theme_id: 151474241774,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//myvillagegreen.com/cdn/s/trekkie.storefront.f7140b8b25ae1195cf346a36a85e3e4bcf46adb3.min.js"});

  };
  scriptFallback.async = true;
  scriptFallback.src = '//myvillagegreen.com/cdn/s/trekkie.storefront.f7140b8b25ae1195cf346a36a85e3e4bcf46adb3.min.js';
  first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//myvillagegreen.com/cdn/s/trekkie.storefront.f7140b8b25ae1195cf346a36a85e3e4bcf46adb3.min.js';
first.parentNode.insertBefore(script, first);

    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":31909609603,"isMerchantRequest":null,"themeId":151474241774,"themeCityHash":"11425955134282230256","contentLanguage":"en","currency":"USD","eventMetadataId":"5efe3e50-7983-4c67-8cb0-b1274d626a1a"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
    );

    var loaded = false;
    trekkie.ready(function() {
      if (loaded) return;
      loaded = true;

      window.ShopifyAnalytics.lib = window.trekkie;

      var originalDocumentWrite = document.write;
      document.write = customDocumentWrite;
      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
      document.write = originalDocumentWrite;

      window.ShopifyAnalytics.lib.page(null,{"pageType":"blog","resourceType":"blog","resourceId":74931208341,"requestId":"81597b69-d0f8-40e5-a75a-fc7e43260472-1781014965","shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        
      }
    });

    var eventsListenerScript = document.createElement('script');
    eventsListenerScript.async = true;
    eventsListenerScript.src = "//myvillagegreen.com/cdn/shopifycloud/storefront/assets/shop_events_listener-4e26a9ce.js";
    document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
  defer
  src="https://myvillagegreen.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.5.0.min.js"
  data-application="storefront-renderer"
  data-shop-id="31909609603"
  data-render-region="gcp-europe-west1"
  data-page-type="blog"
  data-theme-instance-id="151474241774"
  data-theme-name="Booster-6.1.1"
  data-theme-version="6.1.1"
  data-monorail-region="shop_domain"
  data-resource-timing-sampling-rate="10"
  data-shs="true"
  data-shs-beacon="true"
  data-shs-export-with-fetch="true"
  data-shs-logs-sample-rate="1"
  data-shs-beacon-endpoint="https://myvillagegreen.com/api/collect"
></script>
</head>
  
  
  
  <!-- Stock Alerts is generated by Ordersify -->
  <style type="text/css">
  .osf_inline_button { width: auto !important; }
</style><script type="text/javascript">
  window.ORDERSIFY_BIS = window.ORDERSIFY_BIS || {};
  window.ORDERSIFY_BIS.template = "blog";
  window.ORDERSIFY_BIS.language = "en";
  window.ORDERSIFY_BIS.primary_language = "en";
  
  
  window.ORDERSIFY_BIS.product_collections = [];
  window.ORDERSIFY_BIS.variant_inventory = [];
  window.ORDERSIFY_BIS.collection_product_inventories = [];
  window.ORDERSIFY_BIS.collection_product_collections = [];
  
  window.ORDERSIFY_BIS.collection_products = null;
  
  
  window.ORDERSIFY_BIS.shop = "myvillagegreen.myshopify.com";
  window.ORDERSIFY_BIS.variant_inventory = [];
  
  
  window.ORDERSIFY_BIS.popupSetting = {"is_optin_enable":false,"is_preorder":false,"is_brand_mark":false,"font_family":"Montserrat","is_multiple_language":false,"font_size":14,"popup_border_radius":4,"popup_heading_color":"#006690","popup_text_color":"#212b36","is_message_enable":false,"is_sms_enable":false,"is_accepts_marketing_enable":false,"field_border_radius":4,"popup_button_color":"#ffffff","popup_button_bg_color":"#006690","is_float_button":false,"is_inline_form":false,"inline_form_selector":"#ods-bis","inline_form_position":null,"float_button_position":"right","float_button_top":15,"float_button_color":"#ffffff","float_button_bg_color":"#006690","is_inline_button":true,"inline_button_color":"#ffffff","inline_button_bg_color":"#006690","is_push_notification_enable":false,"is_overlay_close":false,"ignore_collection_ids":"","ignore_product_tags":"","ignore_product_ids":"","is_auto_translation":false,"selector":"#ods-bis","selector_position":"right","is_ga":false,"is_fp":false,"is_fb_checkbox":false,"fb_page_id":null,"is_pushowl":false};
  window.ORDERSIFY_BIS.product = null;
  window.ORDERSIFY_BIS.currentVariant = null;
  window.ORDERSIFY_BIS.stockRemainingSetting = {"status":false,"selector":"#osf_stock_remaining","selector_position":"inside","font_family":"Lato","font_size":13,"content":"Low stock! Only {{ quantity }} {{ plural: item | items }} left!","display_quantity":100};
  
    window.ORDERSIFY_BIS.translations = {"en":{"inline_button_text":"Notify when available","float_button_text":"Notify when available","popup_heading":"Notify me when available","popup_description":"Call (301) 530-0800 ext 0 and we will place a special order for you. Or leave your email below and we will send you a notification as soon as this product is available again.","popup_button_text":"Notify me","popup_note":"We respect your privacy and don't share your email with anybody.","field_email_placeholder":"eg. username@example.com","field_phone_placeholder":"eg. (201) 555-5555","field_message_placeholder":"Tell something about your requirements to shop","success_text":"You subscribed for notification successfully","required_email":"Your email is required","invalid_email":"Your email is invalid","invalid_message":"Your message must be less then 255 characters","push_notification_message":"Receive via web notification","low_stock_content":"Low stock! Only {{ quantity }} {{ plural: item | items }} left!","optin_message":"I agree with Terms of Service and Privacy Policy","please_agree":"Please confirm your agreement","pre_order_button_content":"Pre-Order","pre_order_preparation_banner":"We need {{ preparation_days }} {{ day\/days | plural: preparation_days }} to prepare the product","coming_soon_button_content":"Coming Soon","pre_order_delivery_banner":"We will ship it on {{ delivery_datetime | date }}","coming_soon_message":"We will release this product soon","pre_order_limit_purchases":"You can purchase only {{ limit_purchases }} items","mixed_cart_content":"Your cart contains both pre-order products and normal products","badge_low_stock_content":"Low Stock","badge_out_of_stock_content":"Out of Stock","badge_pre_order_content":"Pre-Order","badge_coming_soon_content":"Coming Soon"}};
  
  window.ORDERSIFY_BIS.poSettings = {"status":false,"is_multiple_language":false,"product_add_to_cart_selector":"[action^=\"\/cart\/add\"] [type=\"submit\"]","product_add_to_cart_text_selector":"[action^=\"\/cart\/add\"] [type=\"submit\"]","product_quantity_selector":"[name=\"quantity\"]","product_form_selector":"[action^=\"\/cart\/add\"]","product_variant_selector":"[name=\"id\"]","po_button_color":"#ffffff","po_button_bg_color":"#000000","is_hide_bin":false,"mx_color":"#000000","mx_bg_color":"transparent","is_mixed_cart":true,"cs_button_color":"#000000","cs_button_bg_color":"transparent","banner_radius":4,"banner_color":"#000000","banner_bg_color":"transparent"};
  window.ORDERSIFY_BIS.badgeSettings = {"status":false,"is_low_stock":true,"is_out_of_stock":true,"is_pre_order":true,"is_coming_soon":true,"low_stock_threshold":10,"is_multiple_language":0,"low_stock_type":"one","out_of_stock_type":"one","pre_order_type":"one","coming_soon_type":"one"};
  window.ORDERSIFY_BIS.poCampaigns = [];
</script>

  <!-- End of Stock Alerts is generated by Ordersify -->
  
  
  <body
    id="blog"
    class=" product_empty  template--blog  customing-blog template-blog template-blog"
  > 
  <!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TKXVFDF"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
    <script src="//myvillagegreen.com/cdn/shop/t/45/assets/searchanise-input-suggestions.js?v=47875073505433930491758558906" type="text/javascript"></script>
    <!--
      888888b.                              888                88888888888 888
      888  "88b                             888                    888     888
      888  .88P                             888                    888     888
      8888888K.   .d88b.   .d88b.  .d8888b  888888 .d88b.  888d888 888     88888b.   .d88b.  88888b.d88b.   .d88b.
      888  "Y88b d88""88b d88""88b 88K      888   d8P  Y8b 888P"   888     888 "88b d8P  Y8b 888 "888 "88b d8P  Y8b
      888    888 888  888 888  888 "Y8888b. 888   88888888 888     888     888  888 88888888 888  888  888 88888888
      888   d88P Y88..88P Y88..88P      X88 Y88b. Y8b.     888     888     888  888 Y8b.     888  888  888 Y8b.
      8888888P"   "Y88P"   "Y88P"   88888P'  "Y888 "Y8888  888     888     888  888  "Y8888  888  888  888  "Y8888
    -->

    <!-- Bold: Memberships -->
    
    <!-- end Bold code -->
    <div class="container-fluid px-0">
      <div class="container__top-part">
        <div id="shopify-section-top-info-bar" class="shopify-section">



<div class="layout__stretchContent
hide-mobile 

colorCombo
font__size--small info-bar" 
style="background-color: #ffffff; color: #6951a1; padding-top: 2px; padding-bottom: 2px;"
>
  <div class="inherit middle row layout__content">

    

                  
<style>
  .tooltip > .arrow {
  left: 50% !important;
  transform: translateX(-50%);
}
  </style>
<div class="header-search">
<div></div>
<div class="bootstrapiso">
    
                     <div class="freeship-title text-center"><img class="lazyload mr-2" loading="lazy" width="22" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/truck-tick.png?v=1695817923"><strong>FREE SHIPPING!</strong> Automatically Applied on Orders Over  <strong>$74!</strong> <img
			data-container="body"
			data-toggle="popover"
			data-placement="bottom"
            tabindex="0"
			data-content="This offer is for standard shipping available in the continental U.S. Cannot be combined with any other offers."
            data-trigger="focus"
            loading="lazy"
			class="lazyload free-pop"
			src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/information.png?v=1695369714"
			width="auto"
			height="auto"
			></div>
    



	

</div>
<ul class="right-most">
   
                <!-- 
                <li>
                <a class="blog_btn" href="https://myvillagegreen-dev.myshopify.com/blogs/post">Blog</a>
                </li>
                -->
              </ul>
</div>

<style>

  .header-search ul li { list-style: none; display: inline-block; margin: 0; position: relative;}
.header-search ul {margin-bottom: 0;margin-top: 0;}
 
.header-search ul li a {font-size: 13px;line-height: 23px;font-family: Montserrat;font-weight: 400;color: #000;padding: 5px 20px;height: inherit;padding-left: 40px;letter-spacing: 0;}
.header-search ul li a.phone-number { background: url(https://cdn.shopify.com/s/files/1/0317/4635/9433/files/phone.png?v=15803796990) no-repeat 10px 5px; }
.header-search ul li a.care_btn { background: url(https://cdn.shopify.com/s/files/1/0317/4635/9433/files/care.png?v=1580379699) no-repeat 11px 5px; }
.header-search ul li a.acct_btn { background: url(https://cdn.shopify.com/s/files/1/0317/4635/9433/files/acct.png?v=1580379699) no-repeat 10px 0px; }
.header-search ul li a.wish_btn { background: url(https://cdn.shopify.com/s/files/1/0317/4635/9433/files/whislist.png?v=1580379699) no-repeat 18px 0px; }
.header-search ul li a.blog_btn { background: url(https://cdn.shopify.com/s/files/1/0317/4635/9433/files/blog.png?v=1580380798) no-repeat 10px 0px; padding-right: 0;}

.header-search ul ul { display: none;}
.header-search ul li:hover > ul { padding-top: 14px; position: absolute; top: 16px; left: 0px; display: block; list-style: none; margin: 0px; z-index: 9999; text-decoration: none; padding-left: 40px;}
.header-search ul ul li { float: none; margin: 0px; border: none; display: block;}
.header-search ul ul li a { font-size: 13px; display: block; white-space: nowrap; height: 33px; line-height: 33px; text-decoration: none; background: #73adc2; border-bottom: 1px solid #fff; padding: 0 14px; color: #fff; }

.header-search ul li a.mem_dashbtn {height: 50px;font-size:12px; line-height: 40px;display: inline-block;color: #fff;font-weight: 700;background: url(https://cdn.shopify.com/s/files/1/0317/4635/9433/files/icon_mem.png?v=1618640378) no-repeat 15px 15px;background-color: #006690;}
.header-search ul li a.mem_dashbtn:hover { text-decoration: none; color: #fff;  background-color: #a4b841;}

.info-bar {
    padding-top: 0 !important;
}
  .header-search {
    display: grid;
    grid-template-columns:1fr 1.5fr 1fr;
    width: 100%;
    align-items:center;
    background:#D9DCD1;
    justify-items: center;
    height: 50px;
}
  .freeship-title{
    color:#3B392E;
    font-size:14px;
  }
  .freeship-title img{
    vertical-align:bottom;
    cursor:pointer;
  }
  .right-most{
    justify-self:flex-end;
  }
  @media(max-width:1090px){
    .header-search{
      grid-template-columns:0fr 4fr 2fr;
    }
  }
  
</style>
    
  </div>
</div>



</div>

        <div id="booster__popup--holder" class="booster__popup--holder"></div>

        
          
              <div id="shopify-section-header--inline-search" class="shopify-section">
          




<style>
        
    
    .page__header {
        width: 100%;
        
        background: var(--bodyBackgroundColor);
        --height: 0px;
        --logoWidth: 300px;
        --logoHeight: 0px;
        --accent: #000000;
        --linkColor: #000000;
        --tagColor: #000000;
        --tagText: #ffffff;
        display: flex;
        margin: 0 auto;
        box-shadow: 0px 0px 20px rgba(0,0,0,.06);
    }

    .page__header.page__header--transparent {
        --accent: #efefef;
        --linkColor: #ffffff;
        background: transparent;
        box-shadow: none;
    }

    .page__header.page__header--sticky {
        position: fixed;
        top: 0; 
        width: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(0);
        z-index: 10;
        animation: slide-down 0.4s ease-out;
    }

    @keyframes slide-down {
        0% {
            opacity: 0;
            transform: translateY(-100px) translateX(-50%);
        } 
        100% {
            opacity: 0.9;
            transform: translateY(-0) translateX(-50%);
        } 
    }

    .page__header--transparent .logo--transparent-available .logo--default, .page__header--transparent .logo--transparent-available .logo--mobile {
        display: none;
    }

    .page__header--transparent .logo--transparent-available .logo--transparent {
        display: block;
    }

    

    

    
        
            #shopify-section-header--inline-search{
                top: 0px;
                position: sticky;
                z-index: 10;
            }
        
    

    .page__header--width {
        width: 100%;
        
        margin: 0 auto;
        display: flex;
        padding: 0 1rem;
        align-items: center;
        position: relative;
    }

    

    .main__navigation *, .mobile__navigation * {
        text-decoration: none;
    }

    .header__element--width {
        width: 100%;
    }

    .logo-img img {
        max-width: min(var(--logoWidth), 100%);
        
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .nav__link__tag {
        text-transform: uppercase;
        font-size: max(0.6em, 11px);
        padding: 0.4em;
        background: var(--tagColor);
        color: var(--tagText);
        margin-left: 0.5em;
        border-radius: 0.25em;
        position: relative;
        z-index: 1;
    }

    .page__header .header__utility {
        color: var(--linkColor);
    }

    .page__header .header__utility .minicart__holder, 
    .page__header .header__utility .i18n__holder, 
    .page__header .header__utility .user__holder,
    .page__header .search__container--inline {
        --linkColor: var(--gLinkColor);
    }


@media screen and (min-width: 768px){
    .page__header .nav__submenu--mega a:not(.button):hover, .header__logo:hover a {
        color: var(--accent);
    }

    .main__navigation {
        width: 100%;
    }

    .main__navigation--center {
        text-align: center;
    }

    .main__navigation--end {
        text-align: right;
    }

    .nav__link {
        display: flex;
    }

    .nav__link__holder {
        text-align: left;
    }

    .main__navigation > .nav__link__holder > .nav__link {
        align-items: center;
    }

    .main__navigation > .nav__link__holder {
        height: 100%;
        display: inline-block;
    }

    .main__navigation > .nav__link__holder > .nav__link {
        text-align: center;
        display: inline-flex;
        padding: 0.1rem 1.25rem;
        margin: 0rem 0.15rem;
        width: calc(100% - 0.3rem);
        height: 100%;
        align-items: center;
        white-space: nowrap;
    }

    .nav__link__holder:hover > .nav__link, .nav__link__holder.nav__link--active > .nav__link {
        color: var(--accent);
    }

    .nav__link--fill::before {
        content: '';
        position: absolute;
        left: 0.5em; 
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        height: 2.25em;
        background: var(--accent); 
        width: calc(100% - 1em);
        transition: opacity 0.25s;
        border-radius: var(--borderRadiusSmall);
    }

    .nav__link__holder:hover .nav__link--fill::before, .nav__link__holder.nav__link--active .nav__link--fill::before {
        opacity: 0.1;
    }

    .main__navigation.main__navigation--opacity:hover > .nav__link__holder > .nav__link {
        opacity: 0.6;
        transition: opacity 0.25s;
    }

    .main__navigation.main__navigation--opacity > .nav__link__holder:hover > .nav__link {
        opacity: 1;
    }

    .nav__link--underline::after {
        content: '';
        position: absolute;
        left: 0; 
        bottom: 0;
        height: 3px;
        background: var(--accent); 
        width: 0%;
        transition: width 0.25s;
    }

    .nav__link__holder:hover .nav__link--underline::after, .nav__link__holder.nav__link--active .nav__link--underline::after {
        width: 100%;
    }

    .nav__link--strikethrough::after {
        content: '';
        position: absolute;
        left: 0; 
        top: 50%;
        transform: translateY(-50%);
        height: 3px;
        background: var(--accent); 
        width: 0%;
        transition: width 0.25s;
    }

    .nav__link__holder:hover .nav__link--strikethrough::after, .nav__link__holder.nav__link--active .nav__link--strikethrough::after {
        width: 100%;
    }

    .nav__link--dotBelow::after {
        content: '';
        position: absolute;
        left: 50%; 
        top: calc(50% + 1em);
        margin-left: -3px;
        height: 6px;
        width: 6px;
        border-radius: 50%;
        background: var(--accent); 
        opacity: 0;
        transition: opacity 0.25s;
    }

    .nav__link--dotAbove::after {
        content: '';
        position: absolute;
        left: 50%; 
        bottom: calc(50% + 1em);
        margin-left: -3px;
        margin-top: -3px;
        height: 6px;
        width: 6px;
        border-radius: 50%;
        background: var(--accent); 
        opacity: 0;
        transition: opacity 0.25s;
    }

    .nav__link__holder:hover .nav__link--dotBelow::after, .nav__link__holder:hover .nav__link--dotAbove::after, .nav__link__holder.nav__link--active .nav__link--dotBelow::after, .nav__link__holder.nav__link--active .nav__link--dotAbove::after {
        opacity: 1;
    }

    .nav__link__holder.nav__link__holder--regular, .nav__link {
        position: relative;
    }

    .nav__submenu {
        visibility: hidden;
        position: absolute;
        opacity: 0;
        background: var(--bodyBackgroundColor);
        min-width: 200px;
        padding: .75rem;
        z-index: -1;
        transform: translateX(-50%) translateY(10%);
        left: 50%;
        border-bottom-left-radius: var(--borderRadiusSmall);
        border-bottom-right-radius: var(--borderRadiusSmall);
        box-shadow: 0px 0px 30px rgba(0,0,0,0.06);
        --linkColor: var(--gLinkColor);
    }

    .nav__submenu--regular .nav__link__holder {
        position: relative;
    }

    .nav__submenu--regular .nav__submenu--regular {
        top: 0;
        left: 80%;
        transform: translateX(0%) translateY(10%);
    }

    .nav__link__holder:hover > .nav__submenu, .nav__submenu--regular > .nav__link__holder:hover > .nav__submenu--regular {
        opacity: 1;
        transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
        visibility: visible;
        z-index: 10;
        transform: translate(0%);
    }

    .nav__link__holder:hover > .nav__submenu--regular {
        transform: translateX(-50%) translateY(0%);
    }

    .nav__submenu > .nav__link__holder {
        padding: 0.5rem;
        display: block;
        transition: background-color 0.25s, color 0.25s;
        margin-bottom: 0.5rem;
        background-color: transparent;
        border-radius: var(--borderRadiusSmall);
    }

    .nav__submenu > .nav__link__holder:hover, .nav__submenu > .nav__link__holder.nav__link--active {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .nav__submenu > .nav__link__holder:hover .nav__link__description, .nav__submenu > .nav__link__holder.nav__link--active .nav__link__description {
        color: var(--linkColor);
    }

    .nav__submenu > .nav__link__holder:hover > a .nav__link__title, .nav__submenu > .nav__link__holder:hover > a .nav__link__icon,
    .nav__submenu > .nav__link__holder.nav__link--active > a .nav__link__title, .nav__submenu > .nav__link__holder.nav__link--active > a .nav__link__icon {
        color: var(--accent);
    }

    .nav__submenu > .nav__link__holder:last-child {
        margin-bottom: 0;
    }

    .nav__submenu--mega {
        width: 100%;
        left: 0;
        transform: translateX(0%) translateY(10%);
        max-height: 70vh;
        overflow: auto;
        padding: 1.5rem 1rem;
    }

    .nav__submenu--mega .nav__link__holder--mega {
        display: none;
    }

    .nav__link__holder:hover .nav__submenu--mega .nav__link__holder--mega {
        display: flex;
    }

    .nav__megamenu__link, .nav__megamenu__title {
        display: block;
        transition: all 0.25s;
    }

    .nav__megamenu__title {
        font-size: 1.15em;
        font-weight: 500;
        margin-bottom: 1em;
    }

    .nav__megamenu__link {
        font-size: 0.97em;
        margin-bottom: 0.85em;
        opacity: 0.8;
    }

    .nav__megamenu__link:hover {
        opacity: 1;
    }

    .nav__link__title {
        font-size: 0.95em;
        color: var(--linkColor);
        margin-right: 0.25em;
    }

    .nav__link__icon {
        font-size: 1.35em;
        margin-right: 0.25em;
    }

    .nav__link__description {
        margin-top: 0.1em;
        font-size: 0.9em;
        line-height: 1.35em;
        min-width: 250px;
        opacity: 0.8;
    }
}

@media screen and (max-width: 767px){
    .logo--mobile-available .logo--default {
        display: none;
    }

    .page__header--desktop {
        display: none;
    }

    .overlay--nav {
        position: fixed;
        background: black;
        opacity: 0.2;
        display: none;
        z-index: 9;
        height: 100vh;
    }

    .mobile__navigation {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        overflow: auto;
        width: calc(100vw - 5rem);
        transition: transform 0.2s;
        height: 100vh;
        --accent: #000000;
        --linkColor: #000000;
        background: var(--bodyBackgroundColor);
        padding: 1rem;
        z-index: 10;
    }

    input[id="open-mobile-nav"]:checked + .overlay {
        display: block;
    }

    input[id="open-mobile-nav"]:checked ~ .mobile__navigation {
        transform: translateX(0%);
    }

    .nav__link {
        padding: 1rem 0.5rem;
        display: inline-block;
        width: calc(100% - 40px);
        min-height: 40px;
    }

    .nav__link.nav__link--active, .nav__link.nav__link--active .nav__link__title {
        color: var(--accent);
    }

    .mobile__submenu__toggle {
        width: 40px;
        line-height: 40px;
        text-align: center;
        display: inline-block;
        color: var(--linkColor);
    }

    .nav__submenu--mobile {
        visibility: hidden;
        position: relative;
        overflow: hidden;
        max-height: 0;
        transition: all 0.2s;
        padding-left: 1rem;
    }

    .nav__submenu--mobile * {
        color: var(--linkColor);
    }

    .mobile__submenu__toggle .uil-minus {
        display: none;
    }

    input:checked ~ .mobile__submenu__toggle .uil-plus {
        display: none;
    }

    input:checked ~ .mobile__submenu__toggle .uil-minus {
        display: block;
    }

    input:checked ~ .nav__submenu--mobile {
        visibility: visible;
        max-height: 100vh;
        overflow: auto;
    }

    .header__logo {
        max-width: 100%;
        margin: auto;
        text-align: left;
    }

    .mobile-submenu-label {
        display: block;
    }

 

    .mobile__navigation__footer {
        margin-top: auto;
        padding-top: 2rem;
    }

    .mobile__navigation__footer select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: none;
        border: none;
        margin-bottom: 0.75rem;
        font-size: 0.9em;
        padding: 0.5rem 0;
    }

    .mobile__navigation__footer a {
        padding: 0.5rem 0;
        opacity: 0.8;
        font-size: 0.9em;
        margin-bottom: 0.75rem;
    }

    .mobile-submenu-label {
        font-size: 1.5rem;
    }

    .header__logo {
        padding: 1rem 0;
    }
}

.header__utility {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.5rem;
}
    .notice_hdr { background: #e1e1e1; padding: 15px; width: 819px; margin: 0 auto; text-align: center;  margin-top: 10px;margin-bottom: 30px; }
.notice_hdr p { margin-bottom: 0; color: #637605;margin-top: 0;}
    @media screen and (min-width: 768px){
        .search__container--inline input {
            
            
        }
        
        
        
        .main__navigation > .nav__link__holder > .nav__link {
            min-height: 3.5rem;
        }

        .center .logo-img img {
            object-position: center;
        }

        .header__logo {
            padding: 1rem;
            height: 100%;
        }
    }

    .header__top {
        min-height: max(var(--height), 4em);
    }

    .header__bottom {
        min-height: 3em;
    }
</style>
 
   <div class="site-header" role="banner"> </div>
  
<div data-search-container class="search__container--abs">
    <div class="search__overlay" onclick="BoosterTheme.ELEMENTS.closeSearch(this)"></div>
    <div class="search__container--wrapper">
        <h4 class="h-reset search__title">Find anything you need <span onclick="BoosterTheme.ELEMENTS.closeSearch(this)"><i class="uil uil-multiply"></i></span></h4>
        <form method="get" action="/search">
            <button type="submit" class="search__icon--submit"><i class="uil uil-search"></i></button>
            <input autocomplete="off" placeholder="Search" name="q" onfocus="BoosterTheme.ELEMENTS.openSearch(this)" type="search" data-search>
        </form>
    </div>
    <div class="search__results search__results--abs" data-search-suggest>
    </div>
</div>
 
                  
<header class="page__header page__header--desktop  ">
    <div class=" row col-12 no-gap">
        <div class="header__top col-12 row nogap">
            <div class="header__logo header__element--width no-gap middle col-2">
                







<a href="/" class="logo-img  logo--default-available">
<img fetchpriority="high" height="160" width="595" src="//myvillagegreen.com/cdn/shop/files/logo_new_1_e0f90160-491c-4ab7-81dd-1fc4512dbd7e_256x.jpg?v=1679569098" alt="logo" class="logo--default">


</a>

            </div>
            <div class="col-8 middle center"style="display:block;">

              <div class="page__header--width middle col-12 no-gap header__bottom">
        <nav class="main__navigation main__navigation--center main__navigation--fill font__size--base">
            
                


          


          


          
                <span class="nav__link__holder  ">
                    <a class="kk nav__link nav__link--fill" href="/pages/shop-by-brands">

Brands</a>
                    

          




  








    
      
        
        
        
        
        
        






<div class="nav__submenu nav__submenu--mega row fancy-scroll">

    
        
        
          
          
            <span class="nav__link__holder--mega col-md-4">
                <div class="nav__megamenu__menu">
                    <a href="#" class="nav__megamenu__title">Practitioner Brands</a>
                    
                      





  
    
      <a
        href="https://myvillagegreen.myshopify.com/collections/pathway"
        class="4  nav__megamenu__link " >
        Pathway
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="https://myvillagegreen.myshopify.com/collections/sinus-survival"
        class="4  nav__megamenu__link " >
        Sinus Survival
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/pure-encapsulations"
        class="4  nav__megamenu__link " >
        Pure Encapsulations
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="https://myvillagegreen.myshopify.com/collections/thorne-research"
        class="4  nav__megamenu__link " >
        Thorne Research
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/researched-nutrition"
        class="4  nav__megamenu__link " >
        Researched Nutritionals
      </a>
    
  


                  

                  




                  
                    
                      





  
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/xymogen"
        class="4  nav__megamenu__link " >
        Xymogen
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/klaire-labs"
        class="4  nav__megamenu__link " >
        Klaire Labs
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/quicksilver-pro"
        class="4  nav__megamenu__link " >
        Quicksilver Pro
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/restorative-formulations"
        class="4  nav__megamenu__link " >
        Restorative Formulations
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/microbiome"
        class="4  nav__megamenu__link " >
        Microbiome Labs
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="https://myvillagegreen.myshopify.com/collections/metagenics"
        class="4  nav__megamenu__link " >
        Metagenics
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/quicksilver-scientific"
        class="4  nav__megamenu__link " >
        Quicksilver
      </a>
    
  


                  

                  




                  
                    
                </div>
            </span>
        
        

    
        
        
          
          
            <span class="nav__link__holder--mega col-md-4">
                <div class="nav__megamenu__menu">
                    <a href="#" class="nav__megamenu__title">Top Brands</a>
                    
                      





  
    
      <a
        href="/collections/new-products"
        class="4  nav__megamenu__link " >
        New Products
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/life-extension"
        class="4  nav__megamenu__link " >
        Life Extension
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/pure-solutions"
        class="4  nav__megamenu__link " >
        Pure Solutions
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="https://myvillagegreen.myshopify.com/collections/nordic-naturals"
        class="4  nav__megamenu__link " >
         Nordic Naturals
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/jarrow-formulas"
        class="4  nav__megamenu__link " >
        Jarrow Formulas
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="https://myvillagegreen.myshopify.com/collections/megafood"
        class="4  nav__megamenu__link " >
        Megafood
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/solgar"
        class="4  nav__megamenu__link " >
        Solgar
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/natures-way"
        class="4  nav__megamenu__link " >
        Nature's Way
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/garden-of-life"
        class="4  nav__megamenu__link " >
        Garden of Life
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/tyler-integrative-therapeutics"
        class="4  nav__megamenu__link " >
        Integrative Therapeutics
      </a>
    
  


                  

                  




                  
                    
                </div>
            </span>
        
        

    
        
        
          
          
            <span class="nav__link__holder--mega col-md-4">
                <div class="nav__megamenu__menu">
                    <a href="#" class="nav__megamenu__title">Top Brands</a>
                    
                      





  
    
      <a
        href="/collections/bluebonnet"
        class="4  nav__megamenu__link " >
        Bluebonnet
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/country-life"
        class="4  nav__megamenu__link " >
        Country Life
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/innate-response"
        class="4  nav__megamenu__link " >
        Innate Response
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/boiron"
        class="4  nav__megamenu__link " >
        Boiron
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/gaia-herbs"
        class="4  nav__megamenu__link " >
        Gaia Herbs
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/herb-pharm"
        class="4  nav__megamenu__link " >
        Herb Pharm
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/ollois"
        class="4  nav__megamenu__link " >
        Ollois
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/host-defense"
        class="4  nav__megamenu__link " >
        Host Defense
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/inika-organic"
        class="4  nav__megamenu__link " >
        Inika Organic
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/carlson-labs"
        class="4  nav__megamenu__link " >
        Carlson Labs
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/solaray"
        class="4  nav__megamenu__link " >
        Solaray
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/renew-life"
        class="4  nav__megamenu__link " >
        Renew Life
      </a>
    
  


                  

                  




                  
                    
                </div>
            </span>
        
        

</div>

 
                </span>
            
                


          


          


          
                <span class="nav__link__holder  ">
                    <a class="kk nav__link nav__link--fill" href="/collections/pathway/Pathway">

Pathway</a>
                     
                </span>
            
                


          


          


          
                <span class="nav__link__holder  ">
                    <a class="kk nav__link nav__link--fill" href="/collections/glp-1-support">

GLP-1 Support</a>
                     
                </span>
            
                


          


          


          
                <span class="nav__link__holder  ">
                    <a class="kk nav__link nav__link--fill" href="https://myvillagegreen.myshopify.com/pages/category-landing">

Categories</a>
                    

          




  








    
      
        
        
        
        
        
        






<div class="nav__submenu nav__submenu--mega row fancy-scroll">

    
        
        
          
          
            <span class="nav__link__holder--mega col-md-3">
                <div class="nav__megamenu__menu">
                    <a href="https://myvillagegreen.com/pages/shop-by" class="nav__megamenu__title">Health Concerns</a>
                    
                      





  
    
      <a
        href="/collections/adrenal-health"
        class="4  nav__megamenu__link " >
        Adrenal Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/allergies-sinus"
        class="4  nav__megamenu__link " >
        Allergies & Sinus
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/blood-sugar-1"
        class="4  nav__megamenu__link " >
        Blood Sugar
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/blood-pressure-1"
        class="4  nav__megamenu__link " >
        Blood Pressure
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/bones-1"
        class="4  nav__megamenu__link " >
        Bone Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/brain-health"
        class="4  nav__megamenu__link " >
        Brain Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/candida-yeast"
        class="4  nav__megamenu__link " >
        Candida
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/childrens-health"
        class="4  nav__megamenu__link " >
        Children's Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/cholesterol-1"
        class="4  nav__megamenu__link " >
        Cholesterol
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/detox-elimination-1"
        class="4  nav__megamenu__link " >
        Detox & Elimination
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/digestive-health-1"
        class="4  nav__megamenu__link " >
        Digestive Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/energy-1"
        class="4  nav__megamenu__link " >
        Energy
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/eye-health"
        class="4  nav__megamenu__link " >
        Eye Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/foundational-support"
        class="4  nav__megamenu__link " >
         Foundational Support
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/glp-1-support"
        class="4  nav__megamenu__link " >
        GLP-1 Support
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/hair-skin-nails"
        class="4  nav__megamenu__link " >
         Hair, Skin, & Nails
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/healthy-aging"
        class="4  nav__megamenu__link " >
        Healthy Aging
      </a>
    
  


                  

                  




                  
                    
                </div>
            </span>
        
        

    
        
        
          
          
            <span class="nav__link__holder--mega col-md-3">
                <div class="nav__megamenu__menu">
                    <a href="https://myvillagegreen.com/pages/shop-by" class="nav__megamenu__title">Health Concerns</a>
                    
                      





  
    
      <a
        href="/collections/heart-cardiovascular-health"
        class="4  nav__megamenu__link " >
        Heart Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/immune-health"
        class="4  nav__megamenu__link " >
        Immune Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/joints-muscles"
        class="4  nav__megamenu__link " >
        Joints & Muscles
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/liver-support"
        class="4  nav__megamenu__link " >
        Liver Support
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/mens-health"
        class="4  nav__megamenu__link " >
        Men's Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/mood-anxiety-1"
        class="4  nav__megamenu__link " >
        Mood & Anxiety
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/oral-health"
        class="4  nav__megamenu__link " >
        Oral Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/pain-management"
        class="4  nav__megamenu__link " >
        Pain Management
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/pet-health"
        class="4  nav__megamenu__link " >
        Pet Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/sleep"
        class="4  nav__megamenu__link " >
        Relaxation & Sleep Support
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/respiratory-health"
        class="4  nav__megamenu__link " >
        Respiratory Health
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="https://myvillagegreen.com/pages/sinus-survival"
        class="4  nav__megamenu__link " >
        Sinus Survival
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/stress-1"
        class="4  nav__megamenu__link " >
        Stress Support
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/thyroid-support"
        class="4  nav__megamenu__link " >
        Thyroid Support
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/weight-management-1"
        class="4  nav__megamenu__link " >
        Weight Management
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/womens-health"
        class="4  nav__megamenu__link " >
        Women's Health
      </a>
    
  


                  

                  




                  
                    
                </div>
            </span>
        
        

    
        
        
          
          
            <span class="nav__link__holder--mega col-md-3">
                <div class="nav__megamenu__menu">
                    <a href="https://myvillagegreen.com/pages/shop-by" class="nav__megamenu__title">Product Type</a>
                    
                      





  
    
      <a
        href="/collections/antioxidants"
        class="4  nav__megamenu__link " >
        Antioxidants
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/calcium"
        class="4  nav__megamenu__link " >
        Calcium
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/coq10"
        class="4  nav__megamenu__link " >
        CoQ10
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/enzymes"
        class="4  nav__megamenu__link " >
        Enzymes
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/fiber"
        class="4  nav__megamenu__link " >
        Fiber
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/fish-oil"
        class="4  nav__megamenu__link " >
        Fish Oil
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/greens"
        class="4  nav__megamenu__link " >
        Greens
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/gifts"
        class="4  nav__megamenu__link " >
        Gifts
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/herbs"
        class="4  nav__megamenu__link " >
        Herbs
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/homeopathic"
        class="4  nav__megamenu__link " >
        Homeopathic
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/magnesium"
        class="4  nav__megamenu__link " >
        Magnesium
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/masks-sanitizer"
        class="4  nav__megamenu__link " >
        Masks & Sanitizer
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/multivitamin"
        class="4  nav__megamenu__link " >
        Multivitamin
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/mushrooms"
        class="4  nav__megamenu__link " >
        Mushrooms
      </a>
    
  


                  

                  




                  
                    
                </div>
            </span>
        
        

    
        
        
          
          
            <span class="nav__link__holder--mega col-md-3">
                <div class="nav__megamenu__menu">
                    <a href="https://myvillagegreen.com/pages/shop-by" class="nav__megamenu__title">Product Type</a>
                    
                      





  
    
      <a
        href="/collections/omega-3"
        class="4  nav__megamenu__link " >
        Omega 3
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/personal-care"
        class="4  nav__megamenu__link " >
        Personal Care
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/prenatal"
        class="4  nav__megamenu__link " >
        Prenatal
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/probiotics"
        class="4  nav__megamenu__link " >
        Probiotics
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/protein"
        class="4  nav__megamenu__link " >
        Protein
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/sports-nutrition"
        class="4  nav__megamenu__link " >
        Sports Nutrition
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/sunscreen"
        class="4  nav__megamenu__link " >
        Sunscreen
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/trace-minerals"
        class="4  nav__megamenu__link " >
        Trace Minerals
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/vitamin-a"
        class="4  nav__megamenu__link " >
        Vitamin A
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/vitamin-b"
        class="4  nav__megamenu__link " >
        Vitamin B
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/vitamin-c"
        class="4  nav__megamenu__link " >
        Vitamin C
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/vitamin-d"
        class="4  nav__megamenu__link " >
        Vitamin D
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/vitamin-e"
        class="4  nav__megamenu__link " >
        Vitamin E
      </a>
    
  


                  

                  




                  
                    
                      





  
    
      <a
        href="/collections/zinc"
        class="4  nav__megamenu__link " >
        Zinc
      </a>
    
  


                  

                  




                  
                    
                </div>
            </span>
        
        

</div>

 
                </span>
            
                


          


          


          
                <span class="nav__link__holder  nav__link__holder--regular">
                    <a class="kk nav__link nav__link--fill" href="/pages/services">

Services</a>
                    

          




  








    

    

    

    

    

    

    

    






<div class="nav__submenu nav__submenu--regular fancy-scroll">
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/brand-story" class="nav__link 88">
                


<div><span class="nav__link__title">Why Village Green</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/consultations" class="nav__link 88">
                


<div><span class="nav__link__title">Consultations</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/collections/lab-tests" class="nav__link 88">
                


<div><span class="nav__link__title">Lab Testing</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://myvillagegreen.com/pages/discover-your-personalized-supplement-plan" class="nav__link 88">
                


<div><span class="nav__link__title">Discover Your Personalized Supplement Plan</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/build-your-box" class="nav__link 88">
                


<div><span class="nav__link__title">Build A Health Box</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/pharmacy-and-compounding" class="nav__link 88">
                


<div><span class="nav__link__title">Pharmacy & Compounding</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/humanized-landing-supplements" class="nav__link 88">
                


<div><span class="nav__link__title">Huamnized+ App</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/ask-the-expert" class="nav__link 88">
                


<div><span class="nav__link__title">Ask the Expert</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    
</div>

 
                </span>
            
                


          


          


          
                <span class="nav__link__holder  nav__link__holder--regular">
                    <a class="kk nav__link nav__link--fill" href="/pages/resources">

Resources</a>
                    

          




  








    

    

    

    

    

    

    

    

    






<div class="nav__submenu nav__submenu--regular fancy-scroll">
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/practitioner-brands" class="nav__link 88">
                


<div><span class="nav__link__title">Practitioner Brands</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/help-center" class="nav__link 88">
                


<div><span class="nav__link__title">Help Center</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://myvillagegreen.com/pages/return-policy" class="nav__link 88">
                


<div><span class="nav__link__title">Return Policy</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://myvillagegreen.com/pages/rewards" class="nav__link 88">
                


<div><span class="nav__link__title">Rewards Program</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://myvillagegreen.com/pages/reviews" class="nav__link 88">
                


<div><span class="nav__link__title">Reviews</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/best-price-guarantee" class="nav__link 88">
                


<div><span class="nav__link__title">Best Price Guarantee</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/what-is-prop-65" class="nav__link 88">
                


<div><span class="nav__link__title">What is Prop 65?</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://myvillagegreen.com/account" class="nav__link 88">
                


<div><span class="nav__link__title">My Account</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://myvillagegreen.com/account/register" class="nav__link 88">
                


<div><span class="nav__link__title">Create an Account</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    
</div>

 
                </span>
            
                


          


          


          
                <span class="nav__link__holder nav__link--active nav__link__holder--regular">
                    <a class="kk nav__link nav__link--fill" href="https://myvillagegreen.com/pages/education">

Education</a>
                    

          




  








    

    

    

    

    






<div class="nav__submenu nav__submenu--regular fancy-scroll">
    

       
        


          <span class="nav__link__holder nav__link--active">
            <a href="/blogs/post" class="nav__link 88">
                


<div><span class="nav__link__title">Blog</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://humanizedhealth.com/" class="nav__link 88">
                


<div><span class="nav__link__title">Humanized Podcast - Your Health Personalized</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="/pages/articles-health-info" class="nav__link 88">
                


<div><span class="nav__link__title">Articles & Health Info</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://myvillagegreen.com/pages/healthy-pets" class="nav__link 88">
                


<div><span class="nav__link__title">Healthy Pets</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    

       
        


          <span class="nav__link__holder ">
            <a href="https://www.ehlradio.com/" class="nav__link 88"target="_BLANK">
                


<div><span class="nav__link__title">Radio Show Archive</span></div>
            </a>
                  
        </span>
        
        
        

      

      
        
    
</div>

 
                </span>
            
        </nav>
    </div>

             
                <div data-search-container class="search__container search__container--inline col-min col-md-9 start-md hide-mobile">
                    <div class="search__container--sub">
                    <span onclick="BoosterTheme.ELEMENTS.openSearch(this)" class="search__icon hide-mobile"><i class="uil uil-search"></i></span>
                    <form method="get" action="/search">
                        <span onclick="BoosterTheme.ELEMENTS.submitSearch(this)" class="search__icon--submit"><i class="uil uil-search"></i></span>
                        <input autocomplete="off" name="q" onfocus="BoosterTheme.ELEMENTS.openSearch(this)" type="search" data-search placeholder="What are you looking for today?">
                    </form>
                    </div>
                    <div class="search__overlay" onclick="BoosterTheme.ELEMENTS.closeSearch(this)"></div>
                    <div class="search__results" data-search-suggest>
                    </div>
                </div>

                
            </div>
            <div class="header__element--width header__utility no-gap col-2">
                
<div class="user__button bootstrapiso">
    <label for="user__button" class="mb-0 text-center">
       <img class="" width="25" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/user.png?v=1695819504" fetchpriority="high">
        <div class="user-label">  Sign in </div>
    
    </label>
    <input type="checkbox" class="hide" id="user__button">
    <div class="user__holder">
        
            <a class="user__link" href="/account/login"><i class="uil uil-sign-in-alt"></i>Log in</a>
            <a class="user__link" href="/account/register"><i class="uil uil-user-plus"></i>Register</a>
        
        <a class="user__link" href="/cart"><i class="uil uil-shopping-bag"></i>View cart</a>
    </div>
    <label class="overlay" for="user__button"></label>
</div>






<div class="minicart__button minicart__button--shopping-bag">
    <input type="checkbox" data-minicart-input id="minicart__button--header--inline-search">
    <label class="test overlay" for="minicart__button--header--inline-search"></label>
    <label class="minicart__label bootstrapiso" for="minicart__button--header--inline-search" data-cart-settings="count" data-cart-container>
      
  <div class="cart-name text-center">
   <img fetchpriority="high" class=""  width="25" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/shopping-cart_67e66b22-2d75-47d0-9cd2-481ac3200a85.png?v=1695819012">
    Cart
  </div>
      <span class="item__count" data-count>0</span>
    </label>
    <div class="testy minicart__holder minicart--sidebar" data-cart-settings="product-list" data-cart-container><div data-product-list></div>
    <button class="close_minicart">Close</button> 
</div>
</div>



<label class="mobile-submenu-label bootstrapiso" for="open-mobile-nav">
           
  <img fetchpriority="high" class="ml-2" width="25" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/menu-icon.png?v=1695818636">
        </label>
 
            </div>
        </div>
    </div>
  
<div class="green-bar-shipping">
<img src ="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Frame_85.png?v=1752789039" alt="Shipping" fetchpriority="high">

</div>
  
    
</header>

<header class="page__header page__header--mobile hide-desktop ">
  <style>

    .header-search.header-mobile-butt ul li a.mem_dashbtn {
    display: block;
    width: 100%;
}

.header-search.header-mobile-butt ul li  {
    display: block;
    width: 100%;
}

.header-mobile-butt.header-search {
    display: block;
}
.header-mobile-butt.header-search  ul {
   padding-left:0;
}
    .freeship-title img{
      width:19px;
    }
    @media(max-width:767px){
      .header-search ul li a.mem_dashbtn{
        background-image:none;
      }
      .logo-img img{
        width:200px;
      }
    }
  </style>
  <div class="header-mobile-butt header-search">
    <ul class="bootstrapiso">
          <li>

              
                <div class="freeship-title text-center p-2"><img class="mr-2" width="22" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/truck-tick.png?v=1695817923" fetchpriority="high"><strong>FREE SHIPPING!</strong> Automatically Applied on Orders Over <strong>$74!</strong> <img data-container="body" data-toggle="popover" data-placement="bottom" tabindex="0" data-content="This offer is for standard shipping available in the continental U.S." data-trigger="focus"  class="free-pop" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/information_1d5ec1c2-e57b-4e1b-b47e-c68b218e3aeb.png?v=1713350124" width="auto" height="auto" data-original-title="" title="" fetchpriority="high"></div>
              

            


        
      </li>

              
  
      

      
                </ul>
  </div>
    <div class="page__header--width">
        
        <div class="header__logo header__element--width">
            







<a href="/" class="logo-img  logo--default-available">
<img fetchpriority="high" height="160" width="595" src="//myvillagegreen.com/cdn/shop/files/logo_new_1_e0f90160-491c-4ab7-81dd-1fc4512dbd7e_256x.jpg?v=1679569098" alt="logo" class="logo--default">


</a>

        </div>
        <input id="open-mobile-nav" type="checkbox" style="display: none">
        <label for="open-mobile-nav" class="overlay overlay--nav"></label>
        <nav class="mobile__navigation">
            

              
          
                <span class="nav__link__holder">
                    <a class="nav__link " href="/pages/shop-by-brands">

Brands</a><!--
                    
                        --><input type="checkbox" style="display: none" id="mobile-submenu-1"><!--
                        --><label class="mobile__submenu__toggle" for="mobile-submenu-1"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
                        

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="#" class="nav__link ">
                


<div><span class="nav__link__title">Practitioner Brands</span></div>
            </a><!--
            
            
                --><input type="checkbox" style="display: none" id="mobile-submenu-1-0"><!--
                --><label class="mobile__submenu__toggle" for="mobile-submenu-1-0"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
            

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.myshopify.com/collections/pathway" class="nav__link ">
                


<div><span class="nav__link__title">Pathway</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.myshopify.com/collections/sinus-survival" class="nav__link ">
                


<div><span class="nav__link__title">Sinus Survival</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/pure-encapsulations" class="nav__link ">
                


<div><span class="nav__link__title">Pure Encapsulations</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.myshopify.com/collections/thorne-research" class="nav__link ">
                


<div><span class="nav__link__title">Thorne Research</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/researched-nutrition" class="nav__link ">
                


<div><span class="nav__link__title">Researched Nutritionals</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

      
        
         

      
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/xymogen" class="nav__link ">
                


<div><span class="nav__link__title">Xymogen</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/klaire-labs" class="nav__link ">
                


<div><span class="nav__link__title">Klaire Labs</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/quicksilver-pro" class="nav__link ">
                


<div><span class="nav__link__title">Quicksilver Pro</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/restorative-formulations" class="nav__link ">
                


<div><span class="nav__link__title">Restorative Formulations</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/microbiome" class="nav__link ">
                


<div><span class="nav__link__title">Microbiome Labs</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.myshopify.com/collections/metagenics" class="nav__link ">
                


<div><span class="nav__link__title">Metagenics</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/quicksilver-scientific" class="nav__link ">
                


<div><span class="nav__link__title">Quicksilver</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="#" class="nav__link ">
                


<div><span class="nav__link__title">Top Brands</span></div>
            </a><!--
            
            
                --><input type="checkbox" style="display: none" id="mobile-submenu-1-0-1"><!--
                --><label class="mobile__submenu__toggle" for="mobile-submenu-1-0-1"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
            

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/new-products" class="nav__link ">
                


<div><span class="nav__link__title">New Products</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/life-extension" class="nav__link ">
                


<div><span class="nav__link__title">Life Extension</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/pure-solutions" class="nav__link ">
                


<div><span class="nav__link__title">Pure Solutions</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.myshopify.com/collections/nordic-naturals" class="nav__link ">
                


<div><span class="nav__link__title"> Nordic Naturals</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/jarrow-formulas" class="nav__link ">
                


<div><span class="nav__link__title">Jarrow Formulas</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.myshopify.com/collections/megafood" class="nav__link ">
                


<div><span class="nav__link__title">Megafood</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/solgar" class="nav__link ">
                


<div><span class="nav__link__title">Solgar</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/natures-way" class="nav__link ">
                


<div><span class="nav__link__title">Nature's Way</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/garden-of-life" class="nav__link ">
                


<div><span class="nav__link__title">Garden of Life</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/tyler-integrative-therapeutics" class="nav__link ">
                


<div><span class="nav__link__title">Integrative Therapeutics</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="#" class="nav__link ">
                


<div><span class="nav__link__title">Top Brands</span></div>
            </a><!--
            
            
                --><input type="checkbox" style="display: none" id="mobile-submenu-1-0-1-2"><!--
                --><label class="mobile__submenu__toggle" for="mobile-submenu-1-0-1-2"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
            

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/bluebonnet" class="nav__link ">
                


<div><span class="nav__link__title">Bluebonnet</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/country-life" class="nav__link ">
                


<div><span class="nav__link__title">Country Life</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/innate-response" class="nav__link ">
                


<div><span class="nav__link__title">Innate Response</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/boiron" class="nav__link ">
                


<div><span class="nav__link__title">Boiron</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/gaia-herbs" class="nav__link ">
                


<div><span class="nav__link__title">Gaia Herbs</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/herb-pharm" class="nav__link ">
                


<div><span class="nav__link__title">Herb Pharm</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/ollois" class="nav__link ">
                


<div><span class="nav__link__title">Ollois</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/host-defense" class="nav__link ">
                


<div><span class="nav__link__title">Host Defense</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/inika-organic" class="nav__link ">
                


<div><span class="nav__link__title">Inika Organic</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/carlson-labs" class="nav__link ">
                


<div><span class="nav__link__title">Carlson Labs</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/solaray" class="nav__link ">
                


<div><span class="nav__link__title">Solaray</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/renew-life" class="nav__link ">
                


<div><span class="nav__link__title">Renew Life</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
            
        </span>

    
      
  
</div>
                    
                </span>

          
            

              
          
                <span class="nav__link__holder">
                    <a class="nav__link " href="/collections/pathway/Pathway">

Pathway</a><!--
                    
                    -->
                    
                </span>

          
            

              
          
                <span class="nav__link__holder">
                    <a class="nav__link " href="/collections/glp-1-support">

GLP-1 Support</a><!--
                    
                    -->
                    
                </span>

          
            

              
          
                <span class="nav__link__holder">
                    <a class="nav__link " href="https://myvillagegreen.myshopify.com/pages/category-landing">

Categories</a><!--
                    
                        --><input type="checkbox" style="display: none" id="mobile-submenu-4"><!--
                        --><label class="mobile__submenu__toggle" for="mobile-submenu-4"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
                        

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/shop-by" class="nav__link ">
                


<div><span class="nav__link__title">Health Concerns</span></div>
            </a><!--
            
            
                --><input type="checkbox" style="display: none" id="mobile-submenu-4-0"><!--
                --><label class="mobile__submenu__toggle" for="mobile-submenu-4-0"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
            

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/adrenal-health" class="nav__link ">
                


<div><span class="nav__link__title">Adrenal Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/allergies-sinus" class="nav__link ">
                


<div><span class="nav__link__title">Allergies & Sinus</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/blood-sugar-1" class="nav__link ">
                


<div><span class="nav__link__title">Blood Sugar</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/blood-pressure-1" class="nav__link ">
                


<div><span class="nav__link__title">Blood Pressure</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/bones-1" class="nav__link ">
                


<div><span class="nav__link__title">Bone Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/brain-health" class="nav__link ">
                


<div><span class="nav__link__title">Brain Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/candida-yeast" class="nav__link ">
                


<div><span class="nav__link__title">Candida</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/childrens-health" class="nav__link ">
                


<div><span class="nav__link__title">Children's Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/cholesterol-1" class="nav__link ">
                


<div><span class="nav__link__title">Cholesterol</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/detox-elimination-1" class="nav__link ">
                


<div><span class="nav__link__title">Detox & Elimination</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/digestive-health-1" class="nav__link ">
                


<div><span class="nav__link__title">Digestive Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/energy-1" class="nav__link ">
                


<div><span class="nav__link__title">Energy</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/eye-health" class="nav__link ">
                


<div><span class="nav__link__title">Eye Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/foundational-support" class="nav__link ">
                


<div><span class="nav__link__title"> Foundational Support</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/glp-1-support" class="nav__link ">
                


<div><span class="nav__link__title">GLP-1 Support</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/hair-skin-nails" class="nav__link ">
                


<div><span class="nav__link__title"> Hair, Skin, & Nails</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/healthy-aging" class="nav__link ">
                


<div><span class="nav__link__title">Healthy Aging</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/shop-by" class="nav__link ">
                


<div><span class="nav__link__title">Health Concerns</span></div>
            </a><!--
            
            
                --><input type="checkbox" style="display: none" id="mobile-submenu-4-0-1"><!--
                --><label class="mobile__submenu__toggle" for="mobile-submenu-4-0-1"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
            

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/heart-cardiovascular-health" class="nav__link ">
                


<div><span class="nav__link__title">Heart Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/immune-health" class="nav__link ">
                


<div><span class="nav__link__title">Immune Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/joints-muscles" class="nav__link ">
                


<div><span class="nav__link__title">Joints & Muscles</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/liver-support" class="nav__link ">
                


<div><span class="nav__link__title">Liver Support</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/mens-health" class="nav__link ">
                


<div><span class="nav__link__title">Men's Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/mood-anxiety-1" class="nav__link ">
                


<div><span class="nav__link__title">Mood & Anxiety</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/oral-health" class="nav__link ">
                


<div><span class="nav__link__title">Oral Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/pain-management" class="nav__link ">
                


<div><span class="nav__link__title">Pain Management</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/pet-health" class="nav__link ">
                


<div><span class="nav__link__title">Pet Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/sleep" class="nav__link ">
                


<div><span class="nav__link__title">Relaxation & Sleep Support</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/respiratory-health" class="nav__link ">
                


<div><span class="nav__link__title">Respiratory Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/sinus-survival" class="nav__link ">
                


<div><span class="nav__link__title">Sinus Survival</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/stress-1" class="nav__link ">
                


<div><span class="nav__link__title">Stress Support</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/thyroid-support" class="nav__link ">
                


<div><span class="nav__link__title">Thyroid Support</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/weight-management-1" class="nav__link ">
                


<div><span class="nav__link__title">Weight Management</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/womens-health" class="nav__link ">
                


<div><span class="nav__link__title">Women's Health</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/shop-by" class="nav__link ">
                


<div><span class="nav__link__title">Product Type</span></div>
            </a><!--
            
            
                --><input type="checkbox" style="display: none" id="mobile-submenu-4-0-1-2"><!--
                --><label class="mobile__submenu__toggle" for="mobile-submenu-4-0-1-2"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
            

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/antioxidants" class="nav__link ">
                


<div><span class="nav__link__title">Antioxidants</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/calcium" class="nav__link ">
                


<div><span class="nav__link__title">Calcium</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/coq10" class="nav__link ">
                


<div><span class="nav__link__title">CoQ10</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/enzymes" class="nav__link ">
                


<div><span class="nav__link__title">Enzymes</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/fiber" class="nav__link ">
                


<div><span class="nav__link__title">Fiber</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/fish-oil" class="nav__link ">
                


<div><span class="nav__link__title">Fish Oil</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/greens" class="nav__link ">
                


<div><span class="nav__link__title">Greens</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/gifts" class="nav__link ">
                


<div><span class="nav__link__title">Gifts</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/herbs" class="nav__link ">
                


<div><span class="nav__link__title">Herbs</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/homeopathic" class="nav__link ">
                


<div><span class="nav__link__title">Homeopathic</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/magnesium" class="nav__link ">
                


<div><span class="nav__link__title">Magnesium</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/masks-sanitizer" class="nav__link ">
                


<div><span class="nav__link__title">Masks & Sanitizer</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/multivitamin" class="nav__link ">
                


<div><span class="nav__link__title">Multivitamin</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/mushrooms" class="nav__link ">
                


<div><span class="nav__link__title">Mushrooms</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/shop-by" class="nav__link ">
                


<div><span class="nav__link__title">Product Type</span></div>
            </a><!--
            
            
                --><input type="checkbox" style="display: none" id="mobile-submenu-4-0-1-2-3"><!--
                --><label class="mobile__submenu__toggle" for="mobile-submenu-4-0-1-2-3"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
            

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/omega-3" class="nav__link ">
                


<div><span class="nav__link__title">Omega 3</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/personal-care" class="nav__link ">
                


<div><span class="nav__link__title">Personal Care</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/prenatal" class="nav__link ">
                


<div><span class="nav__link__title">Prenatal</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/probiotics" class="nav__link ">
                


<div><span class="nav__link__title">Probiotics</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/protein" class="nav__link ">
                


<div><span class="nav__link__title">Protein</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/sports-nutrition" class="nav__link ">
                


<div><span class="nav__link__title">Sports Nutrition</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/sunscreen" class="nav__link ">
                


<div><span class="nav__link__title">Sunscreen</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/trace-minerals" class="nav__link ">
                


<div><span class="nav__link__title">Trace Minerals</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/vitamin-a" class="nav__link ">
                


<div><span class="nav__link__title">Vitamin A</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/vitamin-b" class="nav__link ">
                


<div><span class="nav__link__title">Vitamin B</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/vitamin-c" class="nav__link ">
                


<div><span class="nav__link__title">Vitamin C</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/vitamin-d" class="nav__link ">
                


<div><span class="nav__link__title">Vitamin D</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/vitamin-e" class="nav__link ">
                


<div><span class="nav__link__title">Vitamin E</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/zinc" class="nav__link ">
                


<div><span class="nav__link__title">Zinc</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
            
        </span>

    
      
  
</div>
                    
                </span>

          
            

              
          
                <span class="nav__link__holder">
                    <a class="nav__link " href="/pages/services">

Services</a><!--
                    
                        --><input type="checkbox" style="display: none" id="mobile-submenu-5"><!--
                        --><label class="mobile__submenu__toggle" for="mobile-submenu-5"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
                        

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/brand-story" class="nav__link ">
                


<div><span class="nav__link__title">Why Village Green</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/consultations" class="nav__link ">
                


<div><span class="nav__link__title">Consultations</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/collections/lab-tests" class="nav__link ">
                


<div><span class="nav__link__title">Lab Testing</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/discover-your-personalized-supplement-plan" class="nav__link ">
                


<div><span class="nav__link__title">Discover Your Personalized Supplement Plan</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/build-your-box" class="nav__link ">
                


<div><span class="nav__link__title">Build A Health Box</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/pharmacy-and-compounding" class="nav__link ">
                


<div><span class="nav__link__title">Pharmacy & Compounding</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/humanized-landing-supplements" class="nav__link ">
                


<div><span class="nav__link__title">Huamnized+ App</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/ask-the-expert" class="nav__link ">
                


<div><span class="nav__link__title">Ask the Expert</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
                    
                </span>

          
            

              
          
                <span class="nav__link__holder">
                    <a class="nav__link " href="/pages/resources">

Resources</a><!--
                    
                        --><input type="checkbox" style="display: none" id="mobile-submenu-6"><!--
                        --><label class="mobile__submenu__toggle" for="mobile-submenu-6"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
                        

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/practitioner-brands" class="nav__link ">
                


<div><span class="nav__link__title">Practitioner Brands</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/help-center" class="nav__link ">
                


<div><span class="nav__link__title">Help Center</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/return-policy" class="nav__link ">
                


<div><span class="nav__link__title">Return Policy</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/rewards" class="nav__link ">
                


<div><span class="nav__link__title">Rewards Program</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/reviews" class="nav__link ">
                


<div><span class="nav__link__title">Reviews</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/best-price-guarantee" class="nav__link ">
                


<div><span class="nav__link__title">Best Price Guarantee</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/what-is-prop-65" class="nav__link ">
                


<div><span class="nav__link__title">What is Prop 65?</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/account" class="nav__link ">
                


<div><span class="nav__link__title">My Account</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/account/register" class="nav__link ">
                


<div><span class="nav__link__title">Create an Account</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
                    
                </span>

          
            

              
          
                <span class="nav__link__holder">
                    <a class="nav__link nav__link--active" href="https://myvillagegreen.com/pages/education">

Education</a><!--
                    
                        --><input type="checkbox" style="display: none" id="mobile-submenu-7"><!--
                        --><label class="mobile__submenu__toggle" for="mobile-submenu-7"><i class="uil uil-plus"></i><i class="uil uil-minus"></i></label>
                        

          
<div class="nav__submenu--mobile">
  
    

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/blogs/post" class="nav__link nav__link--active">
                


<div><span class="nav__link__title">Blog</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://humanizedhealth.com/" class="nav__link ">
                


<div><span class="nav__link__title">Humanized Podcast - Your Health Personalized</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="/pages/articles-health-info" class="nav__link ">
                


<div><span class="nav__link__title">Articles & Health Info</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://myvillagegreen.com/pages/healthy-pets" class="nav__link ">
                


<div><span class="nav__link__title">Healthy Pets</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  

      

           
      
       <span class="last_else ff nav__link__holder">
            <a href="https://www.ehlradio.com/" class="nav__link ">
                


<div><span class="nav__link__title">Radio Show Archive</span></div>
            </a><!--
            
            -->
            
        </span>

    
      
  
</div>
                    
                </span>

          
            
            <div class="mobile__navigation__foote">
                


    <a class="nav__link" href="/account/login">Log in</a>
    <a class="nav__link" href="/account/register">Register</a>


            </div>
        </nav>
        <div class="header__utility">
        




<div class="minicart__button minicart__button--shopping-bag">
    <input type="checkbox" data-mobile-minicart-input id="minicart__button--mobile" class="minicart-input-mobile">
    <label class="test overlay" for="minicart__button--mobile"></label>
    <label class="minicart__label bootstrapiso" for="minicart__button--mobile" data-cart-settings="count" data-cart-container>
        <div class="cart-name">
            <img fetchpriority="high" class="ml-2" width="25" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/shopping-cart_67e66b22-2d75-47d0-9cd2-481ac3200a85.png?v=1695819012">
            Cart
        </div>
        <span class="item__count" data-count>0</span>
    </label>
    <div class="testy minicart__holder minicart--sidebar" data-cart-settings="product-list" data-cart-container>
        <div data-product-list></div>
        <button class="close_mobile_minicart">Close</button>
      <a href="#" class="close_mobile_minicart close_mobile" style="position: absolute; top: 5px; right: 5px;">
    <img class="lazyload" loading="lazy" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/close.png?v=1695634680" width="18" height="18"/>
  </a>
    </div>
</div> 



<style type="text/css">

[data-mobile-minicart-input] {
    display: none;
}

@media (max-width: 767px) {

.minicart__holder { max-width: 100%; }
.minicart__holder .close_mobile_minicart { top: 10px !important; right: 20px  !important; }
.close_mobile { display:inline-block; }
.close_desktop { display:none; }

}

</style>
<script>
  document.addEventListener("DOMContentLoaded", function () {
    // Select elements
    const mobileMinicartInput = document.querySelector('[data-mobile-minicart-input]');
    const closeButtons = document.querySelectorAll(".close_mobile_minicart");

    if (!mobileMinicartInput) {
      console.error("Checkbox [data-mobile-minicart-input] not found. Check your HTML.");
      return;
    }

    // Function to close the minicart
    function closeMinicart() {
      mobileMinicartInput.checked = false; // Uncheck the checkbox
      console.log("Minicart closed."); // Debugging
    }

    // Add event listener to close buttons
    closeButtons.forEach(function (button) {
      button.addEventListener("click", function (event) {
        event.preventDefault(); // Prevent default behavior
        closeMinicart();
      });
    });
  });
</script>


        
        </div>
    </div>
  <div class="bottom-header-mobile">
<style>
  .bottom-header-mobile {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-right: 20px;
}
  .search__container.mobile{
    width:100%;
    text-align: left;
    padding-left: 20px;
    
  }
  .search__container.mobile.search__container--inline input {
    width: 90%;
    background-color: #ffffff;
    border: 1px solid #006690;
 }
    .search__container.mobile.search__container--inline input::placeholder {
    color: #94B112;

}

</style>

   <div data-search-container class="search__container mobile search__container--inline ">
                    <div class="search__container--sub">
                    
                    <form method="get" action="">
                        <span onclick="BoosterTheme.ELEMENTS.submitSearch(this)" class="search__icon--submit"><i class="uil uil-search"></i></span>
                        <input autocomplete="off" name="q"  type="search" data-search placeholder="&#128269 What are you looking for?">
                    </form>
                    </div>
                    <div class="search__overlay" onclick="BoosterTheme.ELEMENTS.closeSearch(this)"></div>
                    <div class="search__results" data-search-suggest>
                    </div>
                </div>


<label class="mobile-submenu-label bootstrapiso" for="open-mobile-nav">
           
  <img fetchpriority="high" class="ml-2" width="25" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/menu-icon.png?v=1695818636">
        </label>
  </div>
  
  <div class="green-banner-mobile bootstrapiso">
<!-- Swiper -->
  <div class="swiper swiper-green-slider">
    <div class="swiper-wrapper">
        <div class="swiper-slide green--holder py-2">
          <div class="bottom-banner">
          <div class="image-icon mr-2">
             <img src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/truck-tick-white.png?v=1695897389" alt="Same day ship" width="35" height="auto" fetchpriority="high">
          </div>
          <div class="text-hold text-white text-12">SAME-DAY SHIPPING FOR ORDERS BY 3PM ON WEEKDAYS (EXCLUDES SALES)</div>
          </div>
        </div>
       <div class="swiper-slide green--holder py-2">
         <div class="bottom-banner">
          <div class="image-icon mr-2">
             <img src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/cashback_1.png?v=1695896825" alt="100-DAY RETURN" width="35" height="auto" fetchpriority="low">
          </div>
          <div class="text-hold text-white text-12">100-DAY STORE CREDIT ON UNOPENED SUPPLEMENTS</div>
         </div>
        </div>
       <div class="swiper-slide green--holder py-2">
         <div class="bottom-banner">
          <div class="image-icon mr-2">
             <img src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/card-pos.png?v=1695896825" alt="100% SECURE CHECKOUT" width="35" height="auto" fetchpriority="low">
          </div>
          <div class="text-hold text-white text-12">100% SECURE CHECKOUT</div>
         </div>
        </div>
    </div>
  </div>
    <style>
      .swiper-green-slider .image-icon img{
        width:35px;
      }

      .swiper-slide.green--holder {
    background: #94B102;
}
          .text-12{
  font-size:12px;
}
  .text-white{
    color:#fff!important;
  }
    </style>
  </div>
</header>

<script>

(()=>{
function debounce(func, timeout = 300){
  let timer;
  return (...args) => {
    clearTimeout(timer);
    timer = setTimeout(() => { func.apply(this, args); }, timeout);
  };
}
const headers = document.querySelectorAll('.page__header')
const checkHs = ()=>{
    headers.forEach(h=>{
        if(window.scrollY > 120){
            
            if(h.clientHeight) h.parentElement.style.height = h.clientHeight + 'px'
            return h.classList.add('page__header--sticky')
        }
        h.parentElement.style.height = null
        h.classList.remove('page__header--sticky')
        
    })
}
window.addEventListener('scroll', debounce(checkHs, 75))
window.addEventListener('resize', debounce(checkHs, 150))
})()

</script>

</div>
            
        

        <div id="shopify-section-bottom-info-bar" class="shopify-section">


</div>
      </div>

      <div id="quickbuy__modal" class="modal">
        <div onclick="closeModal(event)" class="overlay"></div>
        <div class="content"></div>
      </div>

      

      <div class="add-to-cart__success--holder modal">
        
          <div onclick="closeModal(event)" class="overlay add-to-cart__success--overlay"></div>
        
        <div class="add-to-cart__success" id="checkout--success">
          <div class="add-to-cart__success--message">Item added to cart!</div>

<div class="row add-to-cart__success--modals fancy-scroll">
<div class="col add-to-cart__success--single">
<img class="add-to-cart__success--single-img lazyload" loading="lazy">
<div class="add-to-cart__success--single-info">
<span class="add-to-cart__success--single-title">%title%</span>
<span class="add-to-cart__success--single-variation">%variant%</span>
</div>
<p class="p-reset add-to-cart__success--single-current">
You have %itemCount% in your cart.<br>
Total being %total%
</p>
<button onclick="closeModal(event)" class="button button--full-width add-to-cart__success--button-margin add-to-cart__success--continue"><svg xmlns="http://www.w3.org/2000/svg" width="12.07" height="9.454" viewBox="0 0 12.07 9.454"><path d="M.936-23.509H-9.116l3.574-3.471-.721-.741-4.871,4.727,4.871,4.727.721-.741-3.574-3.471H.936Z" transform="translate(11.134 27.721)" fill="currentColor"/></svg> Continue shopping</button>




    <a
    
    class="button button--secondary button--filled  button--secondary__filled button--full-width add-to-cart__success--button-margin"
    
    
    href="/cart">
    <span>View cart
 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 18" fill="none">
<path d="M14.998 2L21.9963 9.00001L14.998 16" stroke="#006690" stroke-width="2.33147" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.93359 9H19.9097" stroke="#006690" stroke-width="2.33147" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
  

  </span>
    </a>



    <a
    
    class="button button--primary button--filled  button--primary__filled button--full-width"
    
    
    href="/checkout">
    <span>Proceed to checkout 
      
      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 18" fill="none">
<path d="M14.998 2L21.9963 9.00001L14.998 16" stroke="white" stroke-width="2.33147" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.93359 9H19.9097" stroke="white" stroke-width="2.33147" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
  
  </span>
    </a>

</div>

</div>

        </div>
      </div>

      

      <main role="main">
        

<div class="easylockdown-loop-notice" style="display:none;text-align:center;padding:50px;"><div class="easylockdown-loop-page-logo" style="margin:0 0 20px;"><svg width="154" height="139" viewBox="0 0 154 139" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path d="M131.529 138.974H22.4706C5.78803 138.974 -5.06235 123.127 2.39823 109.66L56.9272 11.2234C65.1974 -3.70606 88.8016 -3.70606 97.0718 11.2234L151.601 109.659C159.062 123.127 148.212 138.974 131.529 138.974Z" fill="url(#paint0_linear)"></path><path d="M146.199 112.097L91.6706 13.6611C88.8318 8.53659 83.3473 5.47723 76.9999 5.47723C70.6526 5.47723 65.1681 8.53659 62.3293 13.6611L7.80011 112.097C5.23926 116.72 5.50755 122.105 8.51807 126.501C11.5286 130.898 16.7447 133.523 22.4707 133.523H131.529C137.255 133.523 142.471 130.898 145.482 126.501C148.492 122.105 148.761 116.72 146.199 112.097ZM140.345 123.635C138.443 126.413 135.147 128.072 131.529 128.072H22.4707C18.8529 128.072 15.5573 126.413 13.6554 123.635C11.7533 120.858 11.5836 117.456 13.2018 114.535L67.7308 16.0991C69.5511 12.813 72.9292 10.9284 76.9996 10.9284C81.0701 10.9284 84.4485 12.813 86.2685 16.0991L140.797 114.535C142.416 117.456 142.247 120.858 140.345 123.635Z" fill="white"></path><path d="M71 111.15C71 109.246 71.6644 107.629 72.9929 106.298C74.3216 104.966 75.9365 104.299 77.8346 104.299C79.5063 104.299 80.9513 104.966 82.1698 106.298C83.3886 107.629 84 109.246 84 111.15C84 112.977 83.3891 114.575 82.1698 115.945C80.9513 117.315 79.5061 118 77.8346 118C75.9363 118 74.3216 117.315 72.9929 115.945C71.6644 114.575 71 112.977 71 111.15ZM71.6394 44.0741C71.6394 42.1354 72.2036 40.6378 73.3328 39.5829C74.4614 38.528 75.9232 38 77.7182 38C79.5131 38 80.8318 38.5493 81.6726 39.6468C82.5132 40.7443 82.9346 42.2197 82.9346 44.0741C82.9346 50.1507 82.8445 52.9732 82.6682 66.7246C82.4901 80.4764 82.4021 84.8096 82.4021 90.8837C82.4021 92.1512 81.8944 93.1434 80.8803 93.8594C79.8646 94.5757 78.8106 94.9342 77.7184 94.9342C74.5186 94.9342 72.9184 93.5852 72.9184 90.8837C72.9184 84.8096 72.705 80.4764 72.279 66.7246C71.8523 52.973 71.6394 50.1504 71.6394 44.0741Z" fill="white"></path></g><defs><linearGradient id="paint0_linear" x1="61.944" y1="80.5026" x2="109.49" y2="133.177" gradientUnits="userSpaceOnUse"><stop stop-color="#DDE5ED"></stop><stop offset="1" stop-color="#B8C9D9"></stop></linearGradient><clipPath id="clip0"><rect width="154" height="139" fill="white"></rect></clipPath></defs></svg></div><div class="easylockdown-loop-page-header" style="font-size: 24px;margin: 0 0 20px;font-weight: bold;line-height: 28px;">Access Denied</div><div class="easylockdown-loop-page-content" style="font-size: 16px;max-width: 500px;margin: 0 auto;line-height: 24px;color: #5A5B5B;"><b>IMPORTANT!</b> If you’re a store owner, please make sure you have <a href="https://admin.shopify.com/store//settings/checkout">Customer accounts enabled in your Store Admin</a>, as you have customer based locks set up with EasyLockdown app. <a href="https://admin.shopify.com/store//settings/checkout" class="easylockdown-loop-page-button" style="display:inline-block;clear:both;padding:12px 30px;margin-top:24px;background:#007bed;border:none;border-radius:100px;color:white;line-height:18px;text-transform:none;text-decoration:none;">Enable Customer Accounts</a></div></div>


  <div class='easylockdown-content' style='display:none;'><div id="shopify-section-template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9" class="shopify-section"><style>
#s--template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9 {
  min-height: 0px; 
  background-color: rgba(0,0,0,0); 
  
  background-size: cover; 
  
  ;
}



#s--template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9 .s__content {
  padding: 30px;
  
  padding-bottom: 30px;
  
}

#s--template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9 .s__block {
  margin-bottom: 0px;
  display: block;
}


#shopify-section-template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9{
  margin-bottom: 0px !important;
}






#s--template--18279300235502__43e863d5-0f11-4f02-9800-5f202904d6e9 { padding-top: 30px; }
#shopify-section-template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9{
margin-top:25px;
}





#s--template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9 .s__block {
    display: flex;
}

#colorcode{}
</style>
<div id="s--template--19684769562862__43e863d5-0f11-4f02-9800-5f202904d6e9" class="bootstrapiso" >
<div


class="container-fluid blog_banner_outer inherit middle layout__stretchContent lazyload bg__middle s__holder  ">
  
  <div 
  class="row center">
        
        <style>
        #b--10ca72be-a054-4ae8-801f-dc24efcf7f79 {
            padding: 0px 0px;
        }

        #colorcode {};
        </style>
        <div 
        id="b--10ca72be-a054-4ae8-801f-dc24efcf7f79"
        class="s__block s__block--title 
        middle center
        col-md-12 col-12">
        
<style>
.title--10ca72be-a054-4ae8-801f-dc24efcf7f79{
    color: #006990;
}
</style>


<h2 class="h-reset title--10ca72be-a054-4ae8-801f-dc24efcf7f79
font__size--base font__family--base" 
>Healthy Living Blogs</h2>


        </div>
    
        
        <style>
        #b--5abae8e2-84f0-450d-8443-5ddc45acad55 {
            padding: 0px 0px;
        }

        #colorcode {};
        </style>
        <div 
        id="b--5abae8e2-84f0-450d-8443-5ddc45acad55"
        class="s__block s__block--richText 
        middle center
        col-md-12 col-12">
        <style>
#richtext--5abae8e2-84f0-450d-8443-5ddc45acad55 {
    
    max-width: 75%;
}
</style>

<div id="richtext--5abae8e2-84f0-450d-8443-5ddc45acad55" class="font__size--medium font__family--base" >

    
    
    
        
        
        
            
            <p>From Village Green Apothecary</p>
        
    
    

</div>


        </div>
    
  </div>
</div>
</div>

</div><div id="shopify-section-template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9" class="shopify-section"><style>
#s--template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9 {
  min-height: 0px; 
  background-color: rgba(0,0,0,0); 
  
  background-size: cover; 
  
  ;
}



#s--template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9 .s__content {
  padding: 0px;
  
  padding-bottom: 0px;
  
}

#s--template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9 .s__block {
  margin-bottom: 0px;
  display: block;
}


#shopify-section-template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9{
  margin-bottom: 0px !important;
}






#shopify-section-template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9{
width:100%;
}





#s--template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9 .s__block {
    display: flex;
}

#colorcode{}
</style>
<div id="s--template--19684769562862__fabd8159-a825-49a2-8c66-4c7396b4d5a9" class="bootstrapiso" >
<div


class="container-fluid px-0 inherit middle layout__stretchContent lazyload bg__middle s__holder  ">
  
  <div 
  class="row center">
        
        <style>
        #b--64adc41c-2495-4b80-ac41-9a17b86c3015 {
            padding: 0px 0px;
        }

        #colorcode {};
        </style>
        <div 
        id="b--64adc41c-2495-4b80-ac41-9a17b86c3015"
        class="s__block s__block--image 
        middle center
        col-md-12 col-12">
        
<img id="image--64adc41c-2495-4b80-ac41-9a17b86c3015" height="257"  width="3000" src="//myvillagegreen.com/cdn/shop/files/blog_top_shape2.png?v=1697130757" loading="lazy" class="lazyload"
data-src="//myvillagegreen.com/cdn/shop/files/blog_top_shape2.png?v=1697130757" >


        </div>
    
  </div>
</div>
</div>

</div><div id="shopify-section-template--19684769562862__blog" class="shopify-section">
<div id="shopify-section-blog-template" class="inherit middle layout__stretchBg bg__middle s__holder row" style="padding-top:10px;padding-bottom:10px;padding-left:20px;padding-right:20px;background:#f8f9f3;">
    <div class="row layout__content s__content">
        <div class="blog-wrapping test">
            <form method="get" action="/search" class="search-f blog_search">
                <input class="searchBox field" type="text" placeholder="Search..." name="q" required/> 
                <input type="hidden" name="type" value="article" />
                <button class="searchSubmit" type="submit" class="submit"><i class="fa fa-search" aria-hidden="true"></i></button>
            </form>
            <div class="content-blog">
                <div class="row rounded blog_list_sec">  
                    <div class="blog_list_outer">
                        
                            <div class="blog_cont_sec  first-item">
                            
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">ADHD, Omega-3s, and Brain Health: Understanding the Nutritional Connection</h3> 
                                    <p class="text-left text-md-left text-16"> Attention-deficit/hyperactivity disorder (ADHD) affects millions of children, teens, and adults, influencing attention, focus, impulse control, mood, learning, and workplace performance. While ADHD is often viewed through a neurological and behavioral lens, growing evidence suggests that nutrition may also play an important role in supporting brain health. One area of increasing interest is the relationship between ADHD and omega-3 fatty acid deficiency. At Village Green Apothecary,...</p>  
                                    <p class="blog_meta_cont">Post on Fri, Jun 05, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/adhd-and-fatty-acid-deficiencies-is-there-a-missing-nutritional-link" class="blog_read">READ MORE</a>
                                </div>
                                <div class="blog_cont_img">
                                    

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1.png?v=1780732046" data-srcset="//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_375x.png?v=1780732046 375w,//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_410x.png?v=1780732046 410w,//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_520x.png?v=1780732046 520w,//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_576x.png?v=1780732046 576w,//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_768x.png?v=1780732046 768w,//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_992x.png?v=1780732046 992w,//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_1024x.png?v=1780732046 1024w,//myvillagegreen.com/cdn/shop/articles/ADHD_Omega-3s_and_Brain_Health_Understanding_the_Nutritional_Connection_300x200_1_1280x.png?v=1780732046 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="ADHD, Omega-3s, and Brain Health: Understanding the Nutritional Connection" class="blog__listing--image_rhi">
                                </div>  
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="1696" width="2528" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151.png?v=1780931005" data-srcset="//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_375x.png?v=1780931005 375w,//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_410x.png?v=1780931005 410w,//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_520x.png?v=1780931005 520w,//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_576x.png?v=1780931005 576w,//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_768x.png?v=1780931005 768w,//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_992x.png?v=1780931005 992w,//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_1024x.png?v=1780931005 1024w,//myvillagegreen.com/cdn/shop/articles/hf_20260602_060938_b7ad5b74-fa08-4d44-99ab-7290d2493151_1280x.png?v=1780931005 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="Foods in a High Fiber Diet: Complete Guide & Food List" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">Foods in a High Fiber Diet: Complete Guide & Food List</h3> 
                                    <p class="text-left text-md-left text-16">A high fiber diet is one of the simplest upgrades most people can make, yet the average American is eating less than half of what experts recommend, and that quiet shortfall...</p>  
                                    <p class="blog_meta_cont">Post on Fri, Jun 05, 2026 by Village Green Nutrition Team</p>
                                    <a href="/blogs/post/foods-in-a-high-fiber-diet-complete-guide-food-list" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823.png?v=1780343419" data-srcset="//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_375x.png?v=1780343419 375w,//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_410x.png?v=1780343419 410w,//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_520x.png?v=1780343419 520w,//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_576x.png?v=1780343419 576w,//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_768x.png?v=1780343419 768w,//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_992x.png?v=1780343419 992w,//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_1024x.png?v=1780343419 1024w,//myvillagegreen.com/cdn/shop/articles/Sweet_Simple_Health_Benefits_of_Strawberries_No-Cook_Parfait_Recipe_300x200_ceda496c-78a3-4500-b497-95502b1bf823_1280x.png?v=1780343419 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="Strawberry Chia Yogurt Parfait Recipe for Energy, Gut Health, and Balanced Blood Sugar" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">Strawberry Chia Yogurt Parfait Recipe for Energy, Gut Health, and Balanced Blood Sugar</h3> 
                                    <p class="text-left text-md-left text-16"> As spring and summer arrive, many people begin looking for lighter meals that still provide lasting energy and nutritional support. This Strawberry Chia Yogurt Parfait recipe is a simple, nutrient-dense option that supports gut health, balanced blood sugar, digestion, and daily wellness. Easy to...</p>  
                                    <p class="blog_meta_cont">Post on Mon, Jun 01, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/strawberry-chia-yogurt-parfaits-a-simple-nourishing-recipe-for-energy-balance-and-summer-wellness" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc.png?v=1780097560" data-srcset="//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_375x.png?v=1780097560 375w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_410x.png?v=1780097560 410w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_520x.png?v=1780097560 520w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_576x.png?v=1780097560 576w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_768x.png?v=1780097560 768w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_992x.png?v=1780097560 992w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_1024x.png?v=1780097560 1024w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_12718700-653b-4116-a996-06e844859ebc_1280x.png?v=1780097560 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="SAM-e Explained: How Much Is Enough—and What to Look for on Supplement Labels" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">SAM-e Explained: How Much Is Enough—and What to Look for on Supplement Labels</h3> 
                                    <p class="text-left text-md-left text-16"> At Village Green Apothecary, one of the most common questions we hear about supplements is not simply what to take—but how much to take and whether the form actually matters. This is especially true with SAM-e, a supplement commonly used to support mood, emotional...</p>  
                                    <p class="blog_meta_cont">Post on Fri, May 29, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/sam-e-explained-how-much-is-enough-and-what-to-look-for-on-supplement-labels" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36.png?v=1779871781" data-srcset="//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_375x.png?v=1779871781 375w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_410x.png?v=1779871781 410w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_520x.png?v=1779871781 520w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_576x.png?v=1779871781 576w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_768x.png?v=1779871781 768w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_992x.png?v=1779871781 992w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_1024x.png?v=1779871781 1024w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_Healthy_Appetite_Control_and_GLP-1_Naturally_300x200_f8b217c1-460f-41aa-a8bc-d476306dac36_1280x.png?v=1779871781 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="How to Support Healthy Appetite Control and GLP-1 Naturally" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">How to Support Healthy Appetite Control and GLP-1 Naturally</h3> 
                                    <p class="text-left text-md-left text-16"> Managing appetite is about much more than willpower. Hunger, cravings, and feelings of fullness are regulated by a complex system involving gut hormones, blood sugar balance, digestion, and the gut-brain connection. When these systems work together properly, appetite feels balanced. When they...</p>  
                                    <p class="blog_meta_cont">Post on Wed, May 27, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/what-actually-supports-healthy-appetite-signals" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444.png?v=1779463552" data-srcset="//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_375x.png?v=1779463552 375w,//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_410x.png?v=1779463552 410w,//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_520x.png?v=1779463552 520w,//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_576x.png?v=1779463552 576w,//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_768x.png?v=1779463552 768w,//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_992x.png?v=1779463552 992w,//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_1024x.png?v=1779463552 1024w,//myvillagegreen.com/cdn/shop/articles/How_Fiber_Naturally_Supports_GLP-1_and_Metabolic_Health_300x200_3e4d8833-e637-4f28-b2d9-04b1b2376444_1280x.png?v=1779463552 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="How Fiber Naturally Supports GLP-1 and Metabolic Health" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">How Fiber Naturally Supports GLP-1 and Metabolic Health</h3> 
                                    <p class="text-left text-md-left text-16"> When people think about supporting metabolism, appetite, and blood sugar balance, fiber is often overlooked. However, this simple nutrient may play a major role in naturally supporting GLP-1, a hormone involved in appetite regulation, satiety, insulin response, and metabolic health. <p data-start="2954"...</p>  
                                    <p class="blog_meta_cont">Post on Fri, May 22, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/why-fiber-may-be-the-missing-link-in-glp-1-support" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115.png?v=1779310784" data-srcset="//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_375x.png?v=1779310784 375w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_410x.png?v=1779310784 410w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_520x.png?v=1779310784 520w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_576x.png?v=1779310784 576w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_768x.png?v=1779310784 768w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_992x.png?v=1779310784 992w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_1024x.png?v=1779310784 1024w,//myvillagegreen.com/cdn/shop/articles/SAM-e_Explained_How_Much_Is_Enough_and_What_to_Look_for_on_Supplement_Labels_300x200_1_1ba19e3c-6361-466a-9dfa-18d994789115_1280x.png?v=1779310784 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="Best Sunscreen for Summer: How to Protect Your Skin From UV Damage" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">Best Sunscreen for Summer: How to Protect Your Skin From UV Damage</h3> 
                                    <p class="text-left text-md-left text-16"> As summer approaches and the UV index begins to rise, protecting your skin becomes more important than ever. At Village Green Apothecary, we carry a carefully selected range of clean, skin-friendly sunscreen brands that provide effective broad spectrum sun protection while supporting overall skin...</p>  
                                    <p class="blog_meta_cont">Post on Wed, May 20, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/sunscreen-smarts-understanding-the-best-protection-for-your-skin-this-summer" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1.png?v=1779293254" data-srcset="//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_375x.png?v=1779293254 375w,//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_410x.png?v=1779293254 410w,//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_520x.png?v=1779293254 520w,//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_576x.png?v=1779293254 576w,//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_768x.png?v=1779293254 768w,//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_992x.png?v=1779293254 992w,//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_1024x.png?v=1779293254 1024w,//myvillagegreen.com/cdn/shop/articles/Natural_Cholesterol_Support_with_CholestePure_Plus_300x200_cd2f122b-4661-454e-a353-df37d2c1bbb1_1280x.png?v=1779293254 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="Natural Cholesterol Support with CholestePure Plus" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">Natural Cholesterol Support with CholestePure Plus</h3> 
                                    <p class="text-left text-md-left text-16"> When it comes to supporting cardiovascular health, many people are looking beyond conventional approaches and asking an important question: Are there natural ways to support healthy cholesterol levels? At Village Green Apothecary, we often guide patients toward evidence-based nutritional tools...</p>  
                                    <p class="blog_meta_cont">Post on Fri, May 15, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/a-natural-approach-to-cholesterol-support-spotlight-on-cholestepure-plus" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6.png?v=1778571987" data-srcset="//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_375x.png?v=1778571987 375w,//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_410x.png?v=1778571987 410w,//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_520x.png?v=1778571987 520w,//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_576x.png?v=1778571987 576w,//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_768x.png?v=1778571987 768w,//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_992x.png?v=1778571987 992w,//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_1024x.png?v=1778571987 1024w,//myvillagegreen.com/cdn/shop/articles/Animal_Protein_vs._Plant_Protein_Differences_Benefits_and_Which_Is_Healthier_300x200_1_51a79bfb-27e5-4ad2-9ccd-0f1199e63df6_1280x.png?v=1778571987 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="Animal Protein vs. Plant Protein: Differences, Benefits, and Which Is Healthier" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">Animal Protein vs. Plant Protein: Differences, Benefits, and Which Is Healthier</h3> 
                                    <p class="text-left text-md-left text-16"> Protein is essential for muscle health, metabolism, blood sugar balance, immune function, and overall wellness. When comparing animal protein vs. plant protein, many people wonder which option is healthier, easier to digest, or better for long-term health. At Village Green...</p>  
                                    <p class="blog_meta_cont">Post on Mon, May 11, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/animal-protein-vs-plant-protein-what-s-the-difference-and-is-one-better" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                            <div class="blog_cont_sec ">
                            
                                

<img height="600" width="900" loading="lazy" src="//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b.png?v=1778170253" data-srcset="//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_375x.png?v=1778170253 375w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_410x.png?v=1778170253 410w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_520x.png?v=1778170253 520w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_576x.png?v=1778170253 576w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_768x.png?v=1778170253 768w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_992x.png?v=1778170253 992w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_1024x.png?v=1778170253 1024w,//myvillagegreen.com/cdn/shop/articles/How_to_Support_GLP-1_Naturally_Through_Gut_Health_and_Nutrition_300x200_b47640b7-335f-4081-a06e-5e3c0943745b_1280x.png?v=1778170253 1280w" data-sizes="(max-width: 787px) 100vw, 50vw" alt="How to Support GLP-1 Naturally Through Gut Health and Nutrition" class="blog__listing--image_rhi">
                                <div class="blog_cont_inner">
                                    <h3 class="text-center text-md-left font-weight-bold">How to Support GLP-1 Naturally Through Gut Health and Nutrition</h3> 
                                    <p class="text-left text-md-left text-16"> Interest in GLP-1 has grown significantly in recent years because of its important role in appetite regulation, blood sugar balance, digestion, and metabolic health. While GLP-1 medications have become increasingly popular, emerging research highlights another important factor: the health of your gut...</p>  
                                    <p class="blog_meta_cont">Post on Wed, May 06, 2026 by Paula Gallagher</p>
                                    <a href="/blogs/post/a-simple-evidence-based-approach-to-supporting-glp-1-naturally" class="blog_read">READ MORE</a>
                                </div>
                                  
                            </div>
                        
                    </div>
                </div>
            </div>
            
  <div class="blog_list_pagination">


        





				
				<div class="num current-num">1 </div>
                  
         
                     <a href="/blogs/post?page=2" class="num next-num">     
        				2
        				
        		   </a>
				
                  

                      
        
       


        
         
             <a href="/blogs/post?page=2" class="page_num next">
					<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
					<g clip-path="url(#clip0_1_634)">
					<path d="M15.41 16.59L10.83 12L15.41 7.41L14 6L8 12L14 18L15.41 16.59Z" fill="#94B102"/>
					</g>
					<defs>
					<clipPath id="clip0_1_634">
					<rect width="24" height="24" fill="white"/>
					</clipPath>
					</defs>
					</svg>
                      </a>
				
        


</div>

        </div>
    </div>
</div>


<style type="text/css">
  body.customing-blog-news .search-f {
    position: relative;
    margin-bottom: 30px;
  }
  body.customing-blog-news .search-f input {
    width: 100%;
    min-height: 34px;
    padding: 0 20px;
  }
  body.customing-blog-news .search-f button {
    position: absolute;
    right: 0;
    height: 100%;
    border: none;
    color: #9a9a9add;
    background: transparent;
  }
  body.customing-blog-news .pagination__page--current,
  body.customing-blog-news .pagination__page--current:hover {
    color: #fff;
    background: #006690;
  }
  body.customing-blog-news .pagination .pagination__page {
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #3b392e;
    margin-right: 16px;
  }
  body.customing-blog-news a.pagination__page.next,
  body.customing-blog-news a.pagination__page.prev {
    color: #fff;
    border: 1px solid #94b102;
  } 
  body.customing-blog-news a.pagination__page.next:hover,
  body.customing-blog-news a.pagination__page.prev:hover {
    background: #006990;
    color: #fff;
    border: 1px solid;
  }
  body.customing-blog-news a.pagination__page {
    display: flex;
  }
</style>
</div><div id="shopify-section-template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78" class="shopify-section"><style>
#s--template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78 {
  min-height: 0px; 
  background-color: rgba(0,0,0,0); 
  
  background-size: cover; 
  
  ;
}



#s--template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78 .s__content {
  padding: 0px;
  
  padding-bottom: 0px;
  
}

#s--template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78 .s__block {
  margin-bottom: 0px;
  display: block;
}


#shopify-section-template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78{
  margin-bottom: 0px !important;
}






#shopify-section-template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78{
width:100%;
}





#s--template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78 .s__block {
    display: flex;
}

#colorcode{}
</style>
<div id="s--template--19684769562862__80061958-5f19-4b37-b9f6-b660f55e9e78" class="bootstrapiso" >
<div


class="container-fluid px-0 inherit middle layout__stretchContent lazyload bg__middle s__holder  ">
  
  <div 
  class="row center">
        
        <style>
        #b--00f41e01-620f-4ece-b44b-804016d0df3f {
            padding: 0px 0px;
        }

        #colorcode {};
        </style>
        <div 
        id="b--00f41e01-620f-4ece-b44b-804016d0df3f"
        class="s__block s__block--image 
        middle center
        col-md-12 col-12">
        
<img id="image--00f41e01-620f-4ece-b44b-804016d0df3f" height="537"  width="3000" src="//myvillagegreen.com/cdn/shop/files/not_sure_top.jpg?v=1694613338" loading="lazy" class="lazyload"
data-src="//myvillagegreen.com/cdn/shop/files/not_sure_top.jpg?v=1694613338" >


        </div>
    
  </div>
</div>
</div>

</div><div id="shopify-section-template--19684769562862__16959810977740cf67" class="shopify-section">
  
    <div id="shopify-block-AdG9ra0drYlBOeVZEU__b22ea228-01d2-4fd0-a5b8-21abfdc82cbf" class="shopify-block shopify-app-block"><div style="margin:0 auto;max-width:1200px;">
  <div class='jdgm-carousel-wrapper'>
      <div class="jdgm-carousel-title-and-link">
        <h2 class='jdgm-carousel-title'>Let customers speak for us</h2>
        <span class="jdgm-all-reviews-rating-wrapper" href="javascript:void(0)">
          <span style="display:block" data-score='4.93' class='jdgm-all-reviews-rating' aria-label='4.93 stars' tabindex='0' role='img'></span>
          <span style="display: block" class='jdgm-carousel-number-of-reviews' data-number-of-reviews='1032'>
            from 1032 reviews
          </span>
        </span>
      </div>
    <section class='jdgm-widget jdgm-carousel jdgm-carousel--aligned-theme' data-widget-locale='en'> <style>.jdgm-carousel{display: none}</style> <style> .jdgm-xx{left:0}.jdgm-carousel-wrapper .jdgm-carousel__arrows .jdgm-carousel__right-arrow,.jdgm-carousel-wrapper .jdgm-carousel__arrows .jdgm-carousel__left-arrow{border-color:#94b102}.jdgm-carousel-wrapper{width:90% !important;margin:auto}.jdgm-carousel-title-and-link{width:calc(100% - 81px);margin:0 auto 24px auto}.jdgm-carousel-wrapper .jdgm-widget.jdgm-carousel{width:calc(100% - 81px);margin:0 auto}.jdgm-carousel-wrapper .jdgm-carousel__left-arrow{float:left;margin-left:-25px;margin-top:-150.0px}.jdgm-carousel-wrapper .jdgm-carousel__right-arrow{float:right;margin-right:-25px;margin-top:-150.0px}@media only screen and (min-width: 991px){.jdgm-carousel-wrapper .jdgm-carousel-item{width:25.0%}}.jdgm-carousel-item__timestamp{display:none !important}.jdgm-carousel-item__reviewer-name{display:none !important}.jdgm-carousel-item__product-title{display:none !important}.jdgm-carousel--aligned-theme .jdgm-carousel-item__review{text-align:left;height:calc(100% - 0.0em)}.jdgm-carousel--aligned-theme .jdgm-carousel-item__review-wrapper{display:inline-block;vertical-align:middle;width:70%;padding:0 12px;height:100%}.jdgm-carousel--aligned-theme .jdgm-carousel-item__review-rating{font-size:100%;margin-bottom:8px}.jdgm-carousel--aligned-theme .jdgm-carousel-item__product{text-align:left}.jdgm-carousel--aligned-theme .jdgm-carousel-item__reviewer-name{font-size:100%;opacity:1;line-height:1;padding-bottom:0;font-weight:600}.jdgm-carousel--aligned-theme .jdgm-carousel-item__timestamp{opacity:0.8}.jdgm-carousel--aligned-theme .jdgm-carousel-item__product-image{height:auto;display:inline-block;vertical-align:middle;width:30%}.jdgm-carousel--aligned-theme .jdgm-carousel-item__reviewer-name-wrapper{text-align:left}.jdgm-carousel--aligned-theme .jdgm-carousel-item{padding:0 12px}
 </style> <style>  </style> <div class='jdgm-carousel__item-container'> <div class='jdgm-carousel__item-wrapper'><div class='jdgm-carousel-item' data-review-id='e76031ca-d2a4-408f-a8ff-b724b946818d'>  <img class='jdgm-carousel-item__product-image' alt='Celadrin &amp; MSM 500' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/CELADRIN_MSM500MG-21032_70x70.jpg?v=1614577043' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/CELADRIN_MSM500MG-21032_140x140.jpg?v=1614577043'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Wonderful Product</div> <div class='jdgm-carousel-item__review-body'><p>Love this product. I use it for my German Shepherds arthritis! Apparently the product works too good because it's always close to being sold out. I'm hoping it can stay in stock. Will continue to buy!!</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Angela D. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/celadrin-msm-500mg#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Celadrin &amp; MSM 500 </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='06/09/2026'> 06/09/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='4b98b29e-bb64-4c9b-bce3-59580457f9bb'>  <img class='jdgm-carousel-item__product-image' alt='Fermented Cod Liver Oil – Capsule – MSC certified' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra-Badges_2_c2efa23a-2eab-4eda-8ce1-4a3695c1a0d0_70x70.png?v=1705500238' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra-Badges_2_c2efa23a-2eab-4eda-8ce1-4a3695c1a0d0_140x140.png?v=1705500238'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Fermented Cod Liver Oil – Capsule – MSC certified</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Amy N. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/green-pastures-blue-ice-fermented-cod-liver-oil-120-capsules#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Fermented Cod Liver Oil – Capsule – MSC certified </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='06/08/2026'> 06/08/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='eccb65d2-d0a4-484f-93c0-7f658b13a849'>  <img class='jdgm-carousel-item__product-image' alt='Dr Wilsons Adrenal C Formula' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra_Badges_1_229aa2f6-86e8-48a2-b6d9-6a045b600cf9_70x70.png?v=1740664176' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra_Badges_1_229aa2f6-86e8-48a2-b6d9-6a045b600cf9_140x140.png?v=1740664176'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Dr Wilsons Adrenal C Formula</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Yeon O.C. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/adrenal-c-formula-856538001022#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Dr Wilsons Adrenal C Formula </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='06/05/2026'> 06/05/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='a6c7ce95-b97f-4ce7-adb8-437cdca88c4f'>  <img class='jdgm-carousel-item__product-image' alt='Bone Builder Extra Strength' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra_Badges_3_19026ea2-2d14-40ac-91cf-067e99ef81e0_70x70.png?v=1742569341' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra_Badges_3_19026ea2-2d14-40ac-91cf-067e99ef81e0_140x140.png?v=1742569341'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Great calcium supplement</div> <div class='jdgm-carousel-item__review-body'><p>I have been using metagenics for many years and this is the best calcium supplement. It has helped me maintain bone strength and health.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Sharon W. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/metagenics-bone-builder-extra-strength-90-tablets#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Bone Builder Extra Strength </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='06/03/2026'> 06/03/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='92b7f747-2cd4-42b9-a995-58badc05d5d9'>  <img class='jdgm-carousel-item__product-image' alt='Eye Pressure Support with Mirtogenol' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/EYEPRESSURESUPPORT-29505_70x70.jpg?v=1606722060' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/EYEPRESSURESUPPORT-29505_140x140.jpg?v=1606722060'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>great service</div> <div class='jdgm-carousel-item__review-body'><p>and great product for eye support</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> MaryLee R. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/eye-pressure-support#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Eye Pressure Support with Mirtogenol </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/29/2026'> 05/29/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='a7cca640-dc61-4455-8a78-f663a57bd35b'>  <img class='jdgm-carousel-item__product-image' alt='PRO Eye Floaters' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_35_fcfc1734-a6df-400f-8a17-8330cf6ddf11_70x70.jpg?v=1659430358' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_35_fcfc1734-a6df-400f-8a17-8330cf6ddf11_140x140.jpg?v=1659430358'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>It helps a lot</div> <div class='jdgm-carousel-item__review-body'><p>I love this product,however,I will soon need more and you don't  have any and that does not make me very happy.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Tammera </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/pro-eye-floaters-788199081092#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> PRO Eye Floaters </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/28/2026'> 05/28/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='3eb18961-f098-46cc-9892-4a0ed670710e'>  <img class='jdgm-carousel-item__product-image' alt='Vitamin B1 (Thiamin HCI)' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_7_e594852e-cffb-4049-a9bd-3f09eb4802d9_70x70.jpg?v=1646831337' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_7_e594852e-cffb-4049-a9bd-3f09eb4802d9_140x140.jpg?v=1646831337'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>MIDDLE FINGER</div> <div class='jdgm-carousel-item__review-body'><p>I STARTED USING B1 ABOUT 5 YEARS AGO BECAUSE THE SLEEVES IN MY MIDDLE FINGERS WAS FREEZING UP AND IT WAS HARD TO OPEN AND CLOSE THE FINGER I WAS 2 WEEKS AWAY FROM HAVING A HAND SURG. IN SARASOTA FL CUT THE TENDONS WHEN A FRIEND TOLD ME ABOUT B1 AN HAVE HAD NO TROUBLE SENCE  JIM</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> James H. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/vitamin-b-1-300mg-sustained#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Vitamin B1 (Thiamin HCI) </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/27/2026'> 05/27/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='55af777d-17c9-4df6-8478-4c1b37d18544'>  <img class='jdgm-carousel-item__product-image' alt='Heavy Metal Detox' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_34_34106b8c-a087-4553-b7c8-bce0a52180e3_70x70.jpg?v=1657820749' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_34_34106b8c-a087-4553-b7c8-bce0a52180e3_140x140.jpg?v=1657820749'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Ty I will be ordering again</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Andrea G. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/heavy-metal-detox-50942#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Heavy Metal Detox </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/26/2026'> 05/26/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='9877a188-208d-4d83-9ddf-18a168a10451'>  <img class='jdgm-carousel-item__product-image' alt='GabaMAX' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_b24cbb78-a240-44a1-ac92-27ebcfd6ba22_70x70.png?v=1772719167' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_b24cbb78-a240-44a1-ac92-27ebcfd6ba22_140x140.png?v=1772719167'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>All good</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Marybeth T. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/gaba-max-powder-maximum-stress-relief-44382#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> GabaMAX </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/26/2026'> 05/26/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='b5519946-4e2b-4b0a-b8d7-d64e40a18bf7'>  <img class='jdgm-carousel-item__product-image' alt='GabaMAX' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_b24cbb78-a240-44a1-ac92-27ebcfd6ba22_70x70.png?v=1772719167' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_b24cbb78-a240-44a1-ac92-27ebcfd6ba22_140x140.png?v=1772719167'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Works well too expensive</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Marybeth T. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/gaba-max-powder-maximum-stress-relief-44382#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> GabaMAX </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/25/2026'> 05/25/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='fb6b9aa0-578d-481b-bc26-a8031e82dbd0'>  <img class='jdgm-carousel-item__product-image' alt='Très Beauty 3 With Collagen, Keratin, Elastin &amp; Biotin' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/TRESBEAUTY3-43269_70x70.jpg?v=1625134475' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/TRESBEAUTY3-43269_140x140.jpg?v=1625134475'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>TRES’ BEAUTY THREE</div> <div class='jdgm-carousel-item__review-body'><p>GREAT product!  It really does thicken my hair, adds shine and helps it to grow, but requires taking three pills a day for over a month to see results!</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> AMY M. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/tres-beauty-3#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Très Beauty 3 With Collagen, Keratin, Elastin &amp; Biotin </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/20/2026'> 05/20/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='a15bbeef-3425-40cc-a4a0-fc7eeefee85b'>  <img class='jdgm-carousel-item__product-image' alt='bioAllers Mold, Yeast &amp; Dust' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_724cce1d-1826-4de1-aabd-e13d7a759b77_70x70.png?v=1730899464' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_724cce1d-1826-4de1-aabd-e13d7a759b77_140x140.png?v=1730899464'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>bioAllers Mold, Yeast &amp; Dust</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Bonnie C. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/702-mold-yeast-dust-7075#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> bioAllers Mold, Yeast &amp; Dust </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/19/2026'> 05/19/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='1dd4b29a-a2ee-4342-9807-fedabc9f289a'>  <img class='jdgm-carousel-item__product-image' alt='WellMind Vertigo' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra-Badges-2024-04-03T225630.259_70x70.png?v=1712156240' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Sandra-Badges-2024-04-03T225630.259_140x140.png?v=1712156240'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>I works</div> <div class='jdgm-carousel-item__review-body'><p>I lost some hearing in my right ear which causes vertigo. Well mind vertigo alleviates the dizziness and quiets the upset stomach.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Judy D. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/wellmind-vertigo-787647853120#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> WellMind Vertigo </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/18/2026'> 05/18/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='3e3ab8ea-7003-4756-b30b-81de4a6998ab'>  <img class='jdgm-carousel-item__product-image' alt='ARTHROMAX ADVANCED WITH NT2 COLLAGEN &amp; APRESFLEX' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_1f90d220-8fce-4066-acca-8decc82b5970_70x70.png?v=1750438723' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/files/1_1f90d220-8fce-4066-acca-8decc82b5970_140x140.png?v=1750438723'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>ArthroMax is Very Helpful</div> <div class='jdgm-carousel-item__review-body'><p>I have taken ArthroMax this year for joint comfort and mobility. It has definitely helped with flexibility and ease of motion for my hip joint. I recommend this product for people who need a little extra help for mild osteoarthritis.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Jackie A. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/arthromax-advanced-nt2-collagen-apresflex-737870223863#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> ARTHROMAX ADVANCED WITH NT2 COLLAGEN &amp; APRESFLEX </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/18/2026'> 05/18/2026 </div> </div> </div> </div><div class='jdgm-carousel-item' data-review-id='15e7c2f2-5e17-4185-9937-3469febc38cd'>  <img class='jdgm-carousel-item__product-image' alt='Whole Leaf Aloe Vera Juice Concentrate' data-src='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_11_5baa5250-f35a-41e0-a86f-53156d534023_70x70.jpg?v=1649261538' data-src-retina='https://cdn.shopify.com/s/files/1/0319/0960/9603/products/Untitled_11_5baa5250-f35a-41e0-a86f-53156d534023_140x140.jpg?v=1649261538'/>  <div class='jdgm-carousel-item__review-wrapper'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Best Value</div> <div class='jdgm-carousel-item__review-body'><p>This is a great value.  It is processed well and does not have anything added unnecessarily.  I have been using this for a while now and it has helped with my digestive issues.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Lenora R. </div> <a class='jdgm-carousel-item__product jdgm-ellipsis' href='/products/aloe-life-whole-leaf-aloe-vera-juice-concentrate-32oz#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Whole Leaf Aloe Vera Juice Concentrate </div> </a> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/16/2026'> 05/16/2026 </div> </div> </div> </div></div> </div> <div class='jdgm-carousel__arrows'> <div class='jdgm-carousel__left-arrow' tabindex="0"></div> <div class='jdgm-carousel__right-arrow' tabindex="0"></div> </div> </section> <section>  </section>
  </div>
</div>


</div>
  




</div><div id="shopify-section-template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8" class="shopify-section"><style>
#s--template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8 {
  min-height: 0px; 
  background-color: rgba(0,0,0,0); 
  
  background-size: cover; 
  
  ;
}



#s--template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8 .s__content {
  padding: 0px;
  
  padding-bottom: 0px;
  
}

#s--template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8 .s__block {
  margin-bottom: 12px;
  display: block;
}


#shopify-section-template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8{
  margin-bottom: 12px;
}









#s--template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8 .s__block {
    display: flex;
}

#colorcode{}
</style>
<div id="s--template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8" class="bootstrapiso" >
<div


class="container-fluid  inherit middle layout__stretchContent lazyload bg__middle s__holder  ">
  
  <div 
  class="row center">
        
        <style>
        #b--9c8d0227-2bfd-42e4-87fb-9a6d1ebd90c0 {
            padding: 0px 0px;
        }

        #colorcode {};
        </style>
        <div 
        id="b--9c8d0227-2bfd-42e4-87fb-9a6d1ebd90c0"
        class="s__block s__block--liquidBlock 
        middle center
        col-md-12 col-12">
        

<div id="block__template--19684769562862__b2cf2c62-f51e-46df-9bd7-695bb5aa3ca8-9c8d0227-2bfd-42e4-87fb-9a6d1ebd90c0" class="block__liquid ">

<div class="two-button-container">
  <a

          class="button button--primary button--filled button--primary__filled font__size--base font__family--title button__animation--none button--icon icon--right mb-1"
          href="/pages/shop-by-brands"
        >
        

          <span>Shop now<svg xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 18" fill="none">
<path d="M14.998 2L21.9963 9.00001L14.998 16" stroke="white" stroke-width="2.33147" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.93359 9H19.9097" stroke="white" stroke-width="2.33147" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span>
        </a>
    <a

          class="button button--secondary 
button--ghost button--secondary__ghost
font__size--base font__family--base
button__animation--none

button--icon icon--right mb-1
          "
          href="/pages/consultations"
        >
       

          <span>Book a consultation  <svg
                  xmlns="http://www.w3.org/2000/svg"
                  width="24"
                  height="18"
                  viewBox="0 0 24 18"
                  fill="none"
                >
                  <path
                    d="M14.998 2L21.9963 9.00001L14.998 16"
                    stroke="#006690"
                    stroke-width="2.33147"
                    stroke-miterlimit="10"
                    stroke-linecap="round"
                    stroke-linejoin="round"
                  />
                  <path
                    d="M1.93359 9H19.9097"
                    stroke="#006690"
                    stroke-width="2.33147"
                    stroke-miterlimit="10"
                    stroke-linecap="round"
                    stroke-linejoin="round"
                  /></svg></span>
        </a>
</div>
                    <div class="review-contain">
                       <img
          class=" fit-cover d-none d-md-block mb-30"
          src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Frame_14.svg?v=1713786779"
          width="auto"
          height="auto"
        >
          <img
          class=" fit-cover d-md-none mx-auto d-flex"
          src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/Frame_1000004429_1.png?v=1711032422"
          width="315px"
          height="auto"
        >
                    </div>

</div>


        </div>
    
  </div>
</div>
</div>

</div><div id="shopify-section-template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012" class="shopify-section"><style>
#s--template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012 {
  min-height: 0px; 
  background-color: rgba(0,0,0,0); 
  
  background-size: cover; 
  
  ;
}



#s--template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012 .s__content {
  padding: 0px;
  
  padding-bottom: 0px;
  
}

#s--template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012 .s__block {
  margin-bottom: 0px;
  display: block;
}


#shopify-section-template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012{
  margin-bottom: 0px !important;
}






#shopify-section-template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012{
width:100%;
}





#s--template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012 .s__block {
    display: flex;
}

#colorcode{}
</style>
<div id="s--template--19684769562862__e077f6db-4ef9-4b77-9e0e-75e3b55c3012" class="bootstrapiso" >
<div


class="container-fluid px-0 inherit middle layout__stretchContent lazyload bg__middle s__holder  ">
  
  <div 
  class="row center">
        
        <style>
        #b--956d625d-fb57-4884-8bb1-f45bbbf29519 {
            padding: 0px 0px;
        }

        #colorcode {};
        </style>
        <div 
        id="b--956d625d-fb57-4884-8bb1-f45bbbf29519"
        class="s__block s__block--image 
        middle center
        col-md-12 col-12">
        
<img id="image--956d625d-fb57-4884-8bb1-f45bbbf29519" height="432"  width="3000" src="//myvillagegreen.com/cdn/shop/files/not_sure_btm.jpg?v=1694613378" loading="lazy" class="lazyload"
data-src="//myvillagegreen.com/cdn/shop/files/not_sure_btm.jpg?v=1694613378" >


        </div>
    
  </div>
</div>
</div>

</div></div>
  <div id='easylockdown404' style='display:none;'><div class="easylockdown404-content-container"><div class="easylockdown404-content-wrapper"><div class="easylockdown404-title-holder"><span class="easylockdown-title-404"></span></div><div class="easylockdown404-content-holder rte"><div class="easylockdown-message-404"></div></div></div></div></div>
  <div id="easylockdown-password-form" style="display: none;">
  <div id="easylockdown-wrapper">
    

    <div class="easylockdown-form-holder">
      <div id="easylockdown-password-error">Invalid password</div>
      <input type="password" placeholder="" id="easylockdown-password"
             onkeypress="if( event.keyCode == 13 && typeof easylockdown == 'object' && typeof easylockdown.checkUnlockPassword == 'function' ) { event.preventDefault(); easylockdown.checkUnlockPassword(this); }" />
      <a href="javascript:void(0);" id="easylockdown-password-form-button" onclick="if( typeof easylockdown == 'object' && typeof easylockdown.checkUnlockPassword == 'function' ) easylockdown.checkUnlockPassword(this);">Enter</a>
    </div>
  </div>
</div>

  <script type="text/javascript" id='easylockdown-helper'>
    var easylockdownLoaded = false;
    document.addEventListener('easylockdown_loaded', function() {
      easylockdownLoaded = true;
      easylockdown.clientContentToggle(true);
    }, {once: true});
    document.addEventListener('DOMContentLoaded', function() {
      setTimeout(function() {
        if(!easylockdownLoaded) { for(var blocks=document.querySelectorAll("#easylockdown-password-form, #easylockdown-hpbtn-style, .easylockdown-auto-hl-styles, .easylockdown-custom-hl-styles, #easylockdown404"),_easylockdownElementIndex=0;_easylockdownElementIndex<blocks.length;_easylockdownElementIndex++)blocks[_easylockdownElementIndex].remove();
        var elContent = document.querySelector('.easylockdown-content')
        if(elContent) {
          elContent.removeAttribute('style');
        }
        console.info("EasyLockdown is not loaded");
        }
      }, 150);
    });
  </script>



        

        <div class="wrapper--bottom">
          <div id="shopify-section-info-badges" class="shopify-section">

</div>
          <div id="shopify-section-footer" class="shopify-section">

<style>
.footer {
    background-color: #f8f9f3;
    color: #373737;
    font-size: 15px;
    padding: 32px 0px;
}
#shopify-section-footer{
  display:none;
}
#shopify-section-subfooter{
    display:none;
}
.footer__block {
    padding: 15px 15px;
}
</style>



<div id="shopify-section-footer-newsletter" class="shopify-section">
  <div class="inherit layout__stretchBg">
    <div class="layout__content row">


      <div class="col-12 col-md col-md-12 footer__block left center">
        <div class="klaviyo-form-VK3sTD"></div>

      </div>

    </div>
  </div> 
</div>
<style type="text/css">

.klaviyo-form  .form-row a u { color: #94B102 !important; }
.go3176171171 a { color: #94B102;}
</style>




<div class="bootstrapiso"><div class="footer-top-bg d-flex"><img  class="img-fluid fit-cover" height="auto" src="https://cdn.shopify.com/s/files/1/0319/0960/9603/files/footer-union.png?v=1692004465" width="100%" fetchpriority="high"/></div>
</div>       
<div class="inherit footer layout__stretchBg">
    <div class="layout__content row">
      
    
    <div class="col-12 col-md col-md-12 footer__block center middle">
    

    <img src="//myvillagegreen.com/cdn/shop/files/vill-logo_10x10.png?v=1694178540" loading="lazy" height="156" width="572" class="lazyload" data-src="//myvillagegreen.com/cdn/shop/files/vill-logo_400x.png?v=1694178540" style="width: 20%;">




    </div>
    
    <div class="col-12 col-md col-md-3 footer__block start top">
    <div class="footer__links start"><span class="footer__title">Learning Resources</span>
<a href="/pages/free-consultation-1">Consultations</a>

<a href="/pages/pharmacy-and-compounding">Pharmacy/Compounding</a>

<a href="https://humanizedhealth.com/">Humanized Health</a>

<a href="/blogs/post">Village Green Blog</a>

</div>


    </div>
    
    <div class="col-12 col-md col-md-3 footer__block start top">
    <div class="footer__links start"><span class="footer__title">Customer Care</span>
<a href="https://myvillagegreen.com/pages/what-is-prop-65">What is Prop 65?</a>

<a href="/pages/help-center">Help Center</a>

<a href="/pages/return-policy">Return Policy</a>

<a href="https://myvillagegreen.com/pages/price-guarantee">Best Price Guarantee</a>

<a href="https://review.myvillagegreen.com/">Leave a Review</a>

</div>


    </div>
    
    <div class="col-12 col-md col-md-3 footer__block start top">
    <div class="footer__links start"><span class="footer__title">General Information</span>
<a href="/pages/contact-us">Contact Us</a>

<a href="/pages/about-us">About Us</a>

<a href="/pages/privacy-policy">Privacy Policy</a>

<a href="/pages/jobs">Job Opportunities</a>

<a href="https://affiliate.myvillagegreen.com/">Affiliate Program</a>

</div>


    </div>
    
    <div class="col-12 col-md col-md-3 footer__block start top">
    <div><span class="footer__title">Stay Connected</span><div class="footer__text"><p>Village Green Apothecary<br/>5415 W Cedar Ln<br/>Bethesda, Maryland, 20814<br/><a href="tel:(301) 530-0800" title="tel:(301) 530-0800">(301) 530-0800<br/></a>Toll Free: <a href="tel:(800) 869-9159" title="tel:(800) 869-9159">(800) 869-9159</a></p><p><br/></p></div>
</div>


    </div>
    
    <div class="col-12 col-md col-md-auto footer__block center middle">
    <div><div class="footer__text"><p>The information provided on this site is not intended to be a substitute for advice or treatment from a qualified physician, nor is it intended to diagnose or treat a health problem or disease. Consult your physician prior to starting any new health program or if you any questions regarding a medical condition.</p></div>
</div>


    </div>
    
    <div class="col-12 col-md col-md-12 footer__block center middle">
    <div><a class="icon-link" href="https://www.facebook.com/villagegreenapothecary"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z"/></svg></a><a class="icon-link" href="https://www.instagram.com/village_green_apothecary/"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg></a><a class="icon-link" href="https://www.youtube.com/channel/UCrq-sus9BDWo5dp4l019xmg"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"/></svg></a><a class="icon-link" href="https://www.tiktok.com/@village_green_apothecary"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" height="800" width="1200" viewBox="-4.15362 -7.827075 35.99804 46.96245"><g fill="none"><path fill="currentColor" d="M10.7908 12.33v-1.22a9.003 9.003 0 00-1.28-.11C5.36 10.9912 1.685 13.681.4387 17.6403c-1.2465 3.9592.2248 8.269 3.632 10.6397-2.5522-2.7315-3.2609-6.708-1.8094-10.153 1.4514-3.445 4.792-5.7155 8.5295-5.797z"/><path fill="currentColor" d="M11.0208 26.15c2.3207-.0031 4.2284-1.8315 4.33-4.15V1.31h3.78a7.09 7.09 0 01-.11-1.31h-5.17v20.67c-.086 2.3303-1.9981 4.1762-4.33 4.18a4.3996 4.3996 0 01-2-.5 4.34 4.34 0 003.5 1.8zm15.17-17.82V7.18a7.06 7.06 0 01-3.91-1.18 7.17 7.17 0 003.91 2.33z"/><path fill="currentColor" d="M19.0208 20.51V10a12.27 12.27 0 007.18 2.3v-4a7.17 7.17 0 01-3.92-2.3 7.16 7.16 0 01-3.15-4.7h-3.78V22c-.0756 1.8468-1.3126 3.443-3.082 3.9772-1.7695.5342-3.683-.1108-4.768-1.6072-1.7622-.928-2.6666-2.9362-2.1936-4.8708.473-1.9346 2.202-3.299 4.1936-3.3092a4.451 4.451 0 011.28.2v-4c-3.7585.0637-7.1243 2.342-8.5799 5.8077-1.4555 3.4657-.726 7.464 1.8599 10.1923a9.41 9.41 0 005.45 1.61c5.2444 0 9.499-4.2456 9.51-9.49z"/></g></svg></a><a class="icon-link" href="https://www.pinterest.com/villagegreen1/"><svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 999.9 999.9" width="2500" height="2500"><path d="M0 500c2.6-141.9 52.7-260.4 150.4-355.4S364.6 1.3 500 0c145.8 2.6 265.3 52.4 358.4 149.4 93.1 97 140.3 213.9 141.6 350.6-2.6 140.6-52.7 258.8-150.4 354.5-97.7 95.6-214.2 144.1-349.6 145.4-46.9 0-93.7-7.2-140.6-21.5 9.1-14.3 18.2-30.6 27.3-48.8 10.4-22.1 23.4-63.8 39.1-125 3.9-16.9 9.8-39.7 17.6-68.4 9.1 15.6 24.7 29.9 46.9 43 58.6 27.3 120.4 24.7 185.5-7.8 67.7-39.1 114.6-99.6 140.6-181.6 23.4-85.9 20.5-165.7-8.8-239.2C778.3 277 725.9 224 650.4 191.4c-95-27.3-187.5-24.4-277.3 8.8s-152.3 90.2-187.5 170.9C176.5 401 171 430.7 169 460c-2 29.3-1 57.9 2.9 85.9s13.7 53.1 29.3 75.2 36.5 39.1 62.5 50.8c6.5 2.6 11.7 2.6 15.6 0 5.2-2.6 10.4-13 15.6-31.2 5.2-18.2 7.2-30.6 5.9-37.1-1.3-2.6-3.9-7.2-7.8-13.7-27.3-44.3-36.5-90.8-27.3-139.6 9.1-48.8 29.3-90.2 60.5-124 48.2-43 104.5-66.4 168.9-70.3 64.4-3.9 119.5 13.7 165 52.7 24.7 28.6 40.7 63.1 47.8 103.5s7.2 79.1 0 116.2c-7.2 37.1-19.9 71.9-38.1 104.5-32.6 50.8-71 76.8-115.2 78.1-26-1.3-47.2-11.4-63.5-30.3s-21.2-40.7-14.6-65.4c2.6-14.3 10.4-42.3 23.4-84 13-41.7 20.2-72.9 21.5-93.7-3.9-49.5-26.7-74.9-68.4-76.2-32.6 3.9-56.6 18.6-72.3 43.9s-24.1 54.4-25.4 86.9c3.9 37.8 9.8 63.8 17.6 78.1-14.3 58.6-25.4 105.5-33.2 140.6-2.6 9.1-9.8 37.1-21.5 84s-18.2 82.7-19.5 107.4V957C206.3 914 133.3 851.9 80 770.5 26.7 689.1 0 598.9 0 500z"/></svg></a></div>


    </div>
    
    </div>
</div>

<script>document.addEventListener("startasyncloading",(function(){document.querySelectorAll("iframe[data-src], script[data-src]").forEach((t=>{const c=t.dataset.src;null!=c&&(t.src=c,t.removeAttribute("data-src"))}))}));</script>  <script>document.addEventListener("startasyncloading",(function(){const e=document.querySelectorAll("script[type='text/javascripts']"),t=document.createDocumentFragment();e.forEach((e=>{const n=document.createElement("script");[...e.attributes].forEach((e=>{n.setAttribute(e.name,e.value)})),n.type="text/javascript",n.innerHTML=e.innerHTML,t.appendChild(n),e.parentNode.removeChild(e)})),document.body.appendChild(t)}));</script>
  

</div>
          <div id="shopify-section-subfooter" class="shopify-section">
<style>
.subfooter {
    background-color: #ffffff;
    color: #000000;
    font-size: 15px;
    padding: 16px 0px;
}


.subfooter__block {
    padding: 0px 0px;
}

</style>



<div class="subfooter inherit layout__stretchContent">
<div class="layout__content row p-reset--all">

    <div class="col-12 col-md col-md-auto subfooter__block center middle">
    <div><div class="footer__text"><p>© 2025 Village Green Apothecary - All Rights Reserved.</p></div>
</div>


    </div>
    
    <div class="col-12 col-md col-md-auto subfooter__block center middle">
    <div class="center">

<svg class="icon icon-color" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>


<svg class="icon icon-color" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg>

<svg class="icon icon-color" viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>

<svg class="icon icon-color" xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>


<svg class="icon icon-color" width="38" height="24" role="img" aria-labelledby="pi-jcb" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg"><title id="pi-jcb">JCB</title><g fill="none" fill-rule="evenodd"><g fill-rule="nonzero"><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/></g><path d="M11.5 5H15v11.5a2.5 2.5 0 0 1-2.5 2.5H9V7.5A2.5 2.5 0 0 1 11.5 5z" fill="#006EBC"/><path d="M18.5 5H22v11.5a2.5 2.5 0 0 1-2.5 2.5H16V7.5A2.5 2.5 0 0 1 18.5 5z" fill="#F00036"/><path d="M25.5 5H29v11.5a2.5 2.5 0 0 1-2.5 2.5H23V7.5A2.5 2.5 0 0 1 25.5 5z" fill="#2AB419"/><path d="M10.755 14.5c-1.06 0-2.122-.304-2.656-.987l.78-.676c.068 1.133 3.545 1.24 3.545-.19V9.5h1.802v3.147c0 .728-.574 1.322-1.573 1.632-.466.144-1.365.221-1.898.221zm8.116 0c-.674 0-1.388-.107-1.965-.366-.948-.425-1.312-1.206-1.3-2.199.012-1.014.436-1.782 1.468-2.165 1.319-.49 3.343-.261 3.926.27v.972c-.572-.521-1.958-.898-2.919-.46-.494.226-.737.917-.744 1.448-.006.56.245 1.252.744 1.497.953.467 2.39.04 2.919-.441v1.01c-.358.255-1.253.434-2.129.434zm8.679-2.587c.37-.235.582-.567.582-1.005 0-.438-.116-.687-.348-.939-.206-.207-.58-.469-1.238-.469H23v5h3.546c.696 0 1.097-.23 1.315-.415.283-.25.426-.53.426-.96 0-.431-.155-.908-.737-1.212zm-1.906-.281h-1.428v-1.444h1.495c.956 0 .944 1.444-.067 1.444zm.288 2.157h-1.716v-1.513h1.716c.986 0 1.083 1.513 0 1.513z" fill="#FFF" fill-rule="nonzero"/></g></svg>

<svg class="icon icon-color" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>

<svg class="icon icon-color" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg>

<svg class="icon icon-color" viewBox="0 0 38 24" width="38" height="24" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-venmo"><title id="pi-venmo">Venmo</title><g fill="none" fill-rule="evenodd"><rect fill-opacity=".07" fill="#000" width="38" height="24" rx="3"/><path fill="#3D95CE" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M24.675 8.36c0 3.064-2.557 7.045-4.633 9.84h-4.74L13.4 6.57l4.151-.402 1.005 8.275c.94-1.566 2.099-4.025 2.099-5.702 0-.918-.154-1.543-.394-2.058l3.78-.783c.437.738.634 1.499.634 2.46z" fill="#FFF" fill-rule="nonzero"/></g></svg>


<svg class="icon icon-color" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>

</div>


    </div>
    
</div>
</div>



</div>
        </div>
      </main>
    </div>

    




    <script>
    
    

    const bstri18n = {
    locales: 
    {
    
    }
    ,
    currencies: 
    [
    
    ]
    ,
    currency_mode: "none",
    currency_format: "${{amount}} USD",
    all_products_route: "/collections/all"
    }

    
    const emptySearch = `
    
    `;
    const _shopInfo = {shop: Shopify.shop, contact: 'info@myvillagegreen.com', role: Shopify.theme.role, version: '6.0.5'};
    const _settings = {"demo":false,"bold_gold":"\u003cscript src=\"\/\/checkout.stripe.com\/checkout.js\"\u003e\u003c\/script\u003e\u003cdiv id=\"mvg-membership-gold_membership_container\" class=\"bold-mem-container memberships_widget\" data-plantag=\"mvg-membership-gold\" data-url=\"https:\/\/mem.boldapps.net\" data-hashwidget=\"fdff4184c8eaf4ec9dedcf8426fdf769\" data-token=\"26e7d50b8986567d9cfa3d156143001c\" data-idwidget=\"40252\" data-domain=\"myvillagegreen.myshopify.com\" data-enable-email-verification=\"1\"\u003e\u003c\/div\u003e\u003cscript data-cfasync=\"false\" type=\"text\/javascript\" src=\"https:\/\/mem.boldapps.net\/app_assets\/js\/plan_multiwidget.js\"\u003e\u003c\/script\u003e","bold_platinum":"\u003cscript src=\"\/\/checkout.stripe.com\/checkout.js\"\u003e\u003c\/script\u003e\u003cdiv id=\"mvg-platinum_membership_container\" class=\"bold-mem-container memberships_widget\" data-plantag=\"mvg-platinum\" data-url=\"https:\/\/mem.boldapps.net\" data-hashwidget=\"4874c18117483af55142c1a0611a56d7\" data-token=\"26e7d50b8986567d9cfa3d156143001c\" data-idwidget=\"40253\" data-domain=\"myvillagegreen.myshopify.com\" data-enable-email-verification=\"1\"\u003e\u003c\/div\u003e\u003cscript data-cfasync=\"false\" type=\"text\/javascript\" src=\"https:\/\/mem.boldapps.net\/app_assets\/js\/plan_multiwidget.js\"\u003e\u003c\/script\u003e","bold_privacy":"\u003cp class=\"c5\"\u003e\u003cspan class=\"c10\"\u003ePlease read these terms of use carefully\u003c\/span\u003e\u003cspan class=\"c2\"\u003e, by participating in  Village Green Apothecary (VGA)’s  Humanized+ membership program, you confirm your acceptance of these terms and conditions.  Notwithstanding anything to the contrary herein, VGA (“we” or “us” or “our”) reserves the right to change or modify these Terms and Conditions. You are advised to check these Terms and Conditions periodically for updates. \u003c\/span\u003e\u003c\/p\u003e\u003ch2 class=\"c1\" id=\"h.gjdgxs\"\u003e\u003cspan class=\"c8 c3\"\u003eOverview\u003c\/span\u003e\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eHumanized+ is a membership program that provides tools for you to optimize your wellness with 7 day a week access to nutritionists and nutrition educators with science-driven, personalized recommendations. Humanized+ offers VIP access to nutrition experts, one-on-one nutrition counseling at significant discounts, a wide selection, best prices and free shipping on the highest quality nutritional supplements available, discounted rates on comprehensive functional lab testing and DNA analysis. \u003c\/span\u003e\u003c\/p\u003e\u003cul class=\"c7 lst-kix_list_4-0 start\"\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eHumanized+ membership is available only to U.S. customers, at this time.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c11 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eHumanized+ membership accounts are limited to one per household or organizations\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003ch2 class=\"c1\" id=\"h.30j0zll\"\u003e\n\u003cspan class=\"c3\"\u003eMembership  Benefits\u003c\/span\u003e\u003cspan class=\"c8 c3\"\u003e:\u003c\/span\u003e\n\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eA Humanized+ member is entitled to the following benefits:\u003c\/span\u003e\u003c\/p\u003e\u003cul class=\"c7 lst-kix_list_1-0 start\"\u003e\u003cli class=\"c6 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAn interactive dashboard with access to a science-driven smart tool that provides:\u003c\/span\u003e\u003c\/li\u003e\u003c\/ul\u003e\u003cul class=\"c7 lst-kix_list_1-1 start\"\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAn in-depth analysis of your health through a comprehensive health questionnaire, plus functional lab testing combined with your DNA blueprint.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003e Customized action plans providing detailed diet, lifestyle, and nutrient recommendations based on your unique needs and biochemical individuality. \u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003e3 different health scores (whole-body, metabolic, and toxins), each generated using cutting-edge AI technology.\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003cul class=\"c7 lst-kix_list_1-0\"\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eDiscounted pricing for nutrition consults, currently set at $157 for 75-minute initial consultation (discounted from $225) and $90 for 45 minute follow up consultation (discounted from $165. (These prices are subject to change annually).\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAccess to a tremendous selection of the highest-quality nutritional supplements, including practitioner-brand supplements, homeopathic formulas and natural body care products available at the most affordable prices.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eFree shipping (excludes Canada, Alaska, Hawaii, Puerto Rico, P.O. Boxes, APO\/FPO addresses and any other location outside of the continental United States).\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eSpecial pricing on a wide variety functional lab tests, DNA analysis, as well as on consultation services with licensed nutritionists.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAccess as needed to qualified nutrition experts 6 days a week, with prioritized attention by phone or email to:\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003cul class=\"c7 lst-kix_list_1-1 start\"\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eaddress a question about a supplement or specific ingredient\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c13 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eschedule consultations with VGA nutrition experts for an in-depth consultation\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003ch2 class=\"c1\" id=\"h.1fob9te\"\u003e\u003cspan class=\"c8 c3\"\u003eFees; Credit Card Authorization; Collection Expenses\u003c\/span\u003e\u003c\/h2\u003e\u003cul class=\"c7 lst-kix_list_2-0 start\"\u003e\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eThere are currently two membership fee options for this service:\u003c\/span\u003e\u003c\/li\u003e\u003c\/ul\u003e\u003cul class=\"c7 lst-kix_list_2-1 start\"\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003ePlatinum Plan $37.95\/month (all membership benefits included)\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eGold Plan $17.95\/ month (all membership benefits included, except 1:1 nutrition consultations)\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003cul class=\"c7 lst-kix_list_2-0\"\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAll Humanized+ members will receive one month free\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003ePayment information is due on the first day of registration, and the membership fee will be billed to credit card on file 30 days after registration.  \u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eThe fees for Membership Services are payable either in full, or if the monthly fee option is selected, the monthly payment shall be payable before the first day or each month via credit card.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAdditional Membership Services such as nutrition consultations and lab testing will be billed directly to you using the card on file at the discounted rates, where applicable.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c11 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAny payments, more than five days late will incur customary interest charges. If there is any change in the fees for the Member Services, VGA  will provide you with notice of the new fees at least 60 days before the renewal of this agreement. \u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eVGA  is authorized by this Agreement to charge your credit card for Membership Fees and products and services purchased by Member. If you have chosen the monthly payment plan, VGA is authorized to charge the credit card you provided for each periodic payment without additional authorization. You shall not initiate any dispute or chargeback to VGA account without first stating your dispute in writing to VGA  and allowing fifteen (15) days for dispute resolution to occur. If you cancel the credit card provided to VGA you shall provide VGA authorization to charge a replacement credit card prior to the next billing cycle. You will be responsible for any fees or costs incurred by VGA  in connection with collection, including attorney’s fees and costs and fees associated with recouping payment on fees due or on chargebacks. You will update VGA in advance in the event of a change in your credit card information, including changes to the name on your card, your billing address and phone number.\u003c\/span\u003e\u003c\/p\u003e\u003ch2 class=\"c1\" id=\"h.3znysh7\"\u003e\n\u003cspan class=\"c10 c3\"\u003eLaboratory Testing and Fees\u003c\/span\u003e\u003cspan class=\"c8 c3\"\u003e \u003c\/span\u003e\n\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eLaboratory testing is provided to assist Members assess their functional and nutritional status.\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eIt is not offered for the purpose of determining medical diagnoses or screening for disease. Such services are generally not covered by insurance are and payable by Member at a discounted cash price. Member agrees not to submit a claim for these services. Prior to ordering, Member can discuss these tests with their medical physicians to determine if they might be covered by insurance if ordered through their physician. \u003c\/span\u003e\u003c\/p\u003e\u003ch2 class=\"c1\" id=\"h.2et92p0\"\u003e\u003cspan class=\"c3 c8\"\u003eScope of Services\u003c\/span\u003e\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eNutrition consultations are provided by nutritionists licensed in the State of Maryland. The scope of nutritional and\/or health coaching services depend upon the location\/residence of Member as described in the Nutritionist Consent Form which must be reviewed and signed by Member prior to any nutrition consultation; any questions regarding the nature of the service should be addressed with staff prior to signature. No offer is being made by this agreement to provide services in excess of that allowed by the licensure laws of the state in which Member is located or is present at the time of service. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eSome recommendations may be based upon evolving nutritional and genetic science which are not considered fully established or reflecting scientific consensus. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eServices are not medical in nature, VGA Practitioners do not diagnose or treat disease and consultations are not a substitute for medical care and do not replace professional medical advice, diagnosis, treatment or other professional services. No aspect of a consultation should be understood as a basis to avoid any diagnostic work-up or avoid, alter or discontinue any medical treatment. Membership fees are not reimbursed by insurance and Member agrees not to submit a claim for membership fees or VGA services. \u003c\/span\u003e\u003c\/p\u003e\u003ch2 class=\"c1\" id=\"h.tyjcwt\"\u003e\u003cspan class=\"c8 c3\"\u003eNutrition Services\u003c\/span\u003e\u003c\/h2\u003e\u003col class=\"c7 lst-kix_list_6-0 start\" start=\"1\"\u003e\n\u003cli class=\"c6 li-bullet-0\"\u003e\n\u003cspan class=\"c3\"\u003e10-Minute Consults\u003c\/span\u003e\u003cspan\u003e\u003cbr\u003e\u003cbr\u003eAs a service to its customers, Village Green Apothecary's (VGA) provides brief consultations about its products and their use. Staff may or may not be a licensed nutritionist in Maryland, a graduate of a nutritional program undergoing certification or licensure or may be a product specialist training from VGA and other sources. Such consultations are not offered or intended to be a nutritional consultation but rather to assist customer with information at the point of sale.\u003cbr\u003e\u003cbr\u003eNothing in these consultations are intended to treat or prescribe for any disease or disorder. No aspect of a consultation should be understood as a basis to avoid any diagnostic work-up or discontinue any medical treatment. It is recommended that you discuss any changes in diet or supplementation with your primary care provider. Consultations are not a substitute for medical care and do not replace professional medical advice, diagnosis, treatment or other professional services.\u003cbr\u003e\u003cbr\u003eVGA does make nutritional consultations available with licensed nutritionists either as part of a membership program or as needed.\u003cbr\u003e\u003cbr\u003eSafety Notice\/Disclaimer: Historical records and modern research indicate that herbs and supplements most often used for healthcare have a good safety record. Confirmed cases of herb, nutrient and drug interactions are rare but can occur and research is still emerging. Negative reactions to natural remedies may include rare allergic reactions, including headaches, itching, hives, difficulty breathing, and very rarely, even shock or death. While unlikely, clients choosing to take products could have an adverse reaction or experience a reduction or increase in the effect of medications. VGA is not responsible for product interactions or adverse events and customers should exercise reasonable caution and seek professional guidance with the physician or other healthcare professional including a licensed nutritionist through VGA or elsewhere.\u003cbr\u003e\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c3\"\u003eRed State Consent for Nutritionist\u003cbr\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ol\u003e\u003cul class=\"c7 lst-kix_list_6-1 start\"\u003e\u003cli class=\"c0 li-bullet-0\"\u003e\n\u003cspan class=\"c3\"\u003eMedical Disclaimer\u003cbr\u003e\u003cbr\u003e\u003c\/span\u003e\u003cspan\u003eIf you reside in the following states at the time of your consultation ( Alabama, Georgia, Iowa, Kansas, Kentucky Montana, Mississippi, Missouri, Nebraska, Ohio, North Dakota, South Dakota, Tennessee, Wyoming), the practitioners of Village Green Apothecary are not medical doctors, licensed nutritionists, or other licensed health care professionals in your state.\u003cbr\u003e\u003cbr\u003eConsultations do not include diagnosing or treating disease, are not intended to prescribe any intervention for a particular symptom, illness or disease, and are not a substitute for medical care. Educational consultations about nutrition can serve as an excellent adjunct to a medical doctor's treatment and are intended to expand a client's consideration of available options and assist with compliance with any medical care a client may be receiving, as well as assist in the use of natural means to support health. Consultations based upon your practitioner’s full scope of nutritional practice are available for clients who wish to travel to Maryland for a face-to-face visit.\u003cbr\u003e\u003cbr\u003eCoaching, supplementation, and lifestyle interventions can serve as an excellent adjunct to a medical doctor’s treatment; however, this is not to be construed or treated as a substitute for such medical treatment. Services offered as a part of this consultation may include education about nutrition and herbs, life coaching skills, personalized whole foods and dietary recommendations, meal plans, and lifestyle modifications.\u003cbr\u003e\u003c\/span\u003e\n\u003c\/li\u003e\u003c\/ul\u003e\u003col class=\"c7 lst-kix_list_6-0\" start=\"3\"\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c3\"\u003eGreen State Consent for Nutritionist\u003cbr\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\n\u003cspan class=\"c3\"\u003eNotice of Privacy Practices\u003c\/span\u003e\u003cspan\u003e\u003cbr\u003e\u003cbr\u003eAll client information is protected under the Health Insurance Portability and Accountability Act of 1996 (HIPAA). The privacy of your medical information is important to your VGA Practitioner. As a client of VGA, a record of your care and services will be created through the Practice Better platform. This record is required to provide you with quality care and to comply with certain legal requirements. VGA will not use or disclose your medical information for any purpose, without your specific written authorization. Any specific written authorization you provide may be revoked at any time in writing to your VGA Practitioner.\u003c\/span\u003e\u003cspan class=\"c3\"\u003e\u003cbr\u003e\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"c11 li-bullet-0\"\u003e\n\u003cspan class=\"c3\"\u003eMember Rights \u0026amp; Responsibilities\u003c\/span\u003e\u003cspan\u003e \u003c\/span\u003e\n\u003c\/li\u003e\n\u003c\/ol\u003e\u003cp class=\"c5 c15\"\u003e\u003cspan class=\"c2\"\u003eIt is your responsibility to fully disclose health information to your practitioner.  As service progresses, inform your practitioner of changes that occur to your treatment, including medical and health changes.  You have the right to respectful, courteous care, and can refuse to follow any or all recommendations provided as a result of this consultation.  You have the right to choose another practitioner for any reason and to request health information be disclosed to another practitioner or health care provider. \u003c\/span\u003e\u003c\/p\u003e\u003ch2 class=\"c1\" id=\"h.3dy6vkm\"\u003e\n\u003cspan class=\"c10 c3\"\u003eLimitations on Services\u003c\/span\u003e\u003cspan class=\"c8 c3\"\u003e \u003c\/span\u003e\n\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eVGA reserves the right to impose reasonable limitations on access by phone or email provided for product questions posed outside of paid consultations after notice and consideration with Member of their needs. This reservation is intended to limit the number of follow-up emails and calls if utilization exceeds that which is useful and for which a paid consultation should be scheduled. \u003c\/span\u003e\u003c\/p\u003e\u003ch2 class=\"c1\" id=\"h.1t3h5sf\"\u003e\n\u003cspan\u003eNo Resale of Products\u003c\/span\u003e\u003cspan class=\"c14 c10 c3 c17\"\u003e \u003c\/span\u003e\n\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c14\"\u003eVGA reserves the right to reject any order for any reason. By purchasing products from VGA, you, the customer, agrees that you are purchasing the products and services only for its own use and not for purposes of resale. Products purchased pursuant to these Terms and Conditions may not be sold or transferred to any person or entity for purposes of resale. VGA  reserves the right to take any action it deems necessary to address any violation of these terms, including, but not limited to, the suspension of the customer’s ability to purchase products and\/or suspension of the membership.\u003c\/span\u003e\u003cspan class=\"c2\"\u003e \u003c\/span\u003e\u003c\/p\u003e\u003ch2 class=\"c1\" id=\"h.4d34og8\"\u003e\u003cspan class=\"c8 c3\"\u003eTerm \u0026amp; Termination Policy\u003c\/span\u003e\u003c\/h2\u003e\u003cul class=\"c7 lst-kix_list_3-0 start\"\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eHumanized+ members may cancel their membership any time within their member dashboard by clicking ‘My Account”à “Manage Memberships” then select “Cancel”\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eYour membership fee is non-refundable.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eYou must cancel in advance of your automatic renewal in order to not incur the non-refundable membership fee.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eMonthly member benefits shall terminate at the end of the billing cycle\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eAnnual members shall receive a refund of any prorated time remaining less a $120 administrative fee [DISCUSS] Any refund to Patient shall be less any outstanding charges for additional products or services .\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eUpon termination for any cause, Member releases VGA from any further responsibility or liability with regard to any continuing needs after notice of termination. VGA reserves the right to terminate this Agreement in the even that:\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003cul class=\"c7 lst-kix_list_3-1 start\"\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eyou breach of this Agreement or VGA’ policies or procedures, if such breach is not cured within ten (10) days of written notice; or\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eyour non-payment 30 days after notice of delinquency is provided of any fees when due.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c0 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003eUse of non-paid services continue in excess of reasonable use after consultation with Member.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c13 li-bullet-0\"\u003e\u003cspan class=\"c2\"\u003ethe Membership Program is discontinued for any reason.\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003ch2 class=\"c1\" id=\"h.2s8eyo1\"\u003e\n\u003cspan class=\"c10 c3\"\u003eCommunication and Confidentiality\u003c\/span\u003e\u003cspan class=\"c8 c3\"\u003e \u003c\/span\u003e\n\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eBy signing this agreement, you authorize VGA to communicate with you via secure portal messages regarding your protected personal health information (“PHI”). Portal message are not an appropriate means of communication regarding emergency or other time-sensitive issues. You agree that you will not use regular e-mail for any PHI related communication as well as during medical emergencies or other time-sensitive issues, and that if you communicate sensitive information by regular email you do so at your own risk. VGA does not provide emergency services of any kind; for  emergencies, please contact 911, your physicians or go to the ER as  appropriate. For urgent or time-sensitive issues, please contact the VGA office via phone.\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eAlthough VGA will make reasonable efforts to keep Digital Communication via its Portal with you confidential and secure, VGA cannot assure or guaranty the confidentiality of Digital Communication; Note that:\u003c\/span\u003e\u003c\/p\u003e\u003cul class=\"c7 lst-kix_list_5-0 start\"\u003e\n\u003cli class=\"c6 li-bullet-0\"\u003e\u003cspan\u003eDigital Communication may be made a part of your permanent health record;\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c4 li-bullet-0\"\u003e\u003cspan\u003eYou will not use Digital Communication for communications regarding urgent medical problems, other time-sensitive issues or for communication regarding sensitive personal information; and\u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"c11 li-bullet-0\"\u003e\u003cspan\u003eVGA will not be liable to you for any loss, damage, cost, injury or expense caused by, or resulting from technical failures or any interception of Digital Communication by a third party. \u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\u003ch2 class=\"c1\" id=\"h.17dp8vu\"\u003e\u003cspan class=\"c8 c3\"\u003eAdditional Terms and Notices\u003c\/span\u003e\u003c\/h2\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c10 c3\"\u003eNo Guarantee\u003c\/span\u003e\u003cspan class=\"c10\"\u003e.\u003c\/span\u003e\u003cspan class=\"c2\"\u003e You acknowledge and agree that you are solely responsible for the use of your Membership and the results attained from such use. As with any therapy, no representations or guaranties are or can be made that Member will obtain positive results or not experience adverse reactions. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c10 c3\"\u003eIntellectual Property\u003c\/span\u003e\u003cspan class=\"c10\"\u003e.\u003c\/span\u003e\u003cspan class=\"c2\"\u003e VGA’s copyrighted materials and intellectual property will be provided to you for your personal use only and cannot be used for business purposes. You may maintain this information for your own use but are not authorized to copy, share, or otherwise disseminate any materials received from VGA electronically or otherwise without the prior written consent of the VGA. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c10 c3\"\u003eSeverability\u003c\/span\u003e\u003cspan class=\"c10\"\u003e.\u003c\/span\u003e\u003cspan class=\"c2\"\u003e If any part, term or provision of this Agreement is held by a court of competent jurisdiction to be illegal or unenforceable, the remaining portions or provisions of this Agreement shall not be affected. The governing law for this Agreement shall be the State of Maryland. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c10 c3\"\u003eNot Assignable\u003c\/span\u003e\u003cspan class=\"c10\"\u003e:\u003c\/span\u003e\u003cspan class=\"c2\"\u003e This agreement is for enhanced personal services and may not be assigned to any other person or family member. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c10 c3\"\u003eOther Notices\u003c\/span\u003e\u003cspan class=\"c10\"\u003e:\u003c\/span\u003e\u003cspan class=\"c2\"\u003e Members have access to an online digital platform, but this does not include access to the member’s electronic medical record. Membership does not constitute an insurance plan or a contract for health insurance and is not a substitute for health insurance or other health plan coverage. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c5\"\u003e\u003cspan class=\"c2\"\u003eOn my own behalf, or as the financially responsible party for my family, I have read, understand and agree to the above fee and related policies. \u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"c16\"\u003e\u003cspan class=\"c2\"\u003e\u003c\/span\u003e\u003c\/p\u003e","textLogo":"Village Green","defaultLogo":"\/\/myvillagegreen.com\/cdn\/shop\/files\/logo_new_1_e0f90160-491c-4ab7-81dd-1fc4512dbd7e.jpg?v=1679569098","darkLogo":null,"transparentLogo":null,"favicon":"\/\/myvillagegreen.com\/cdn\/shop\/files\/village-fav.png?v=1679569156","storeLocation":"","storeEmail":"","storePhone":"(800) 869 9159","sFacebook":"https:\/\/www.facebook.com\/villagegreenapothecary","sInstagram":"https:\/\/www.instagram.com\/village_green_apothecary\/","sTwitter":"","sWhatsapp":"","sWe":"","sYoutube":"https:\/\/www.youtube.com\/channel\/UCrq-sus9BDWo5dp4l019xmg","sSnapchat":"","sViber":"","sPinterest":"https:\/\/www.pinterest.com\/villagegreen1\/","sVK":"","sDA":"","sTikTok":"https:\/\/www.tiktok.com\/@village_green_apothecary","sTwitch":"","sLinkedin":"","baseLayout":"stretchContent","baseMaxWidth":"1200","baseBorderRadius":0,"baseBorderRadiusSmall":5,"baseBorderWidth":2,"baseSectionMargin":12,"pagination":"next","breadcrumbs":false,"baseBackground":"#FFFFFF","baseText":"#3b392e","baseTitle":"#3b392e","baseSecondaryBackground":"#dedede","baseSecondaryText":"#637605","baseLink":"#006990","primaryAccentBackground":"#637605","primaryAccentText":"#FFFFFF","secondaryAccentBackground":"#637605","secondaryAccentText":"#FFFFFF","baseAlert":"#e95144","primaryFont":{"error":"json not allowed for this object"},"secondaryFont":{"error":"json not allowed for this object"},"smallFontSize":14,"baseFontSize":16,"mediumFontSize":30,"bigFontSize":48,"headingFontSize":70,"subHeadingFontSize":30,"buttonFontSize":"baseFontSize","buttonPaddingHorizontal":25,"buttonPaddingVertical":10,"primaryButtonStyle":"filled","primaryButtonColorCombo":"customCombo","primaryButtonCustomFill":"#006990","primaryButtonCustomContent":"#FFF","primaryButtonHover":"lighten","primaryButtonCustomHoverFill":"#FFF","primaryButtonCustomHoverContent":"#000","primaryButtonCustomBorder":true,"primaryButtonBorderRadius":50,"primaryButtonBorderWidth":0,"secondaryButtonStyle":"filled","secondaryButtonColorCombo":"secondaryCombo","secondaryButtonCustomFill":"rgba(0,0,0,0)","secondaryButtonCustomContent":"rgb(0,0,0)","secondaryButtonHover":"reverse","secondaryButtonCustomHoverFill":"rgba(0,0,0,0)","secondaryButtonCustomHoverContent":"rgb(0,0,0)","secondaryButtonCustomBorder":false,"secondaryButtonBorderRadius":50,"secondaryButtonBorderWidth":0,"inputFill":"#EFEFEF","inputContent":"#000000","inputBorderColor":"#e2e2e2","inputCustomBorder":false,"inputBorderRadius":0,"inputBorderWidth":1,"freeShipping":false,"freeShippingText":"Free","addToCartColor":"primary","addToCartType":"default","addToCartIcon":"shopping-basket","addToCartFontSize":"default","addToCartTransform":"initial","buyNowColor":"primary","buyNowType":"default","buyNowFontSize":"default","buyNowTransform":"initial","headerType":"inline-search","cardDesktop":"4","cardMobile":"12","baseCardPadding":20,"cardImageFit":"contain","cardImageRatio":"100","cardImageRatioWidth":"16","cardImageRatioHeight":"9","cardStyle":"none","cardFWButton":false,"cardShowGallery":false,"cardShowSecondary":true,"cardTextAlign":"center","cardShowBrand":true,"cardShowRating":true,"cardBrandColor":"#3b392e","cardBrandWeight":"400","cardNameColor":"#3b392e","cardNameWeight":"600","cardNameLimit":"words","cardNameLimitAmount":10,"cardPriceColor":"#94b102","cardPriceWeight":"700","cardOldPriceColor":"#c0c0c0","cardOldPriceWeight":"400","cardNewPriceColor":"#94b102","cardNewPriceWeight":"700","tagEnabled":true,"tagPosition":"top-left","tagOffset":0,"tagSale":true,"tagSaleColor":"#94b102","tagSoldOut":false,"tagSoldOutColor":"#c8000c","collectionCardStyle":"default","collectionCardTextColor":"#000000","collectionCardTextAlign":"left","collectionCardTextAlignVertical":"bottom","collectionCardTextSize":"base","collectionCardCustomSize":24,"collectionCardTextFont":"title","collectionCardTextBackground":"rgba(0,0,0,0)","collectionCardOverlayOpacity":0,"collectionCardOverlayColor":"rgba(0,0,0,0)","blogCardStyle":"bottom","blogCardAuthor":true,"blogCardExcerpt":true,"variantShowImage":false,"defaultSelector":"swatch","altSelectorList":"","swatchLogic":"aliexpress","disableSOSwatch":false,"disabledSwatchStyle":"opacity","preselectSwatch":"variant","colorSwatches":"color,colour","swatchCustomColors":"red: #EF0000, blue: #00e ","imageSwatches":"material","swatchFileExt":"jpg","cartStyle":"sidebar","quickBuy":false,"ajaxType":"form","dynamicCheckout":false,"cartAction":"minicart","mcAction":"","mcU":"","mcID":"","lazyLoadSvg":true,"nativeLazyLoad":false,"geolocation":false,"multilanguage":false,"shopCurrency":"none","enabledCurrencies":"USD, HRK, GBP","currencyFormat":"money_format","copycat":false,"copycatText":false,"OPDynTitle":"","BPDynTitle":"","dynTitleIntr":1,"cartTimer":true,"cartTimerDuration":15,"countdown":false,"countdownCard":false,"countdownTime":"24","countdownTimeFormat":"days","countdownRandom":15,"recentlyBought":false,"recentlyBoughtMobile":false,"recentlyBoughtInterval":5,"recentlyBoughtRemain":10,"recentlyBoughtPosition":"left","recentlyBoughtBackground":"#FFFFFF","recentlyBoughtColor":"#000","recentlyBoughtBorderRadius":0,"recentlyBoughtImage":"full","recentlyBoughtNames":true,"recentlyBoughtNameFormat":"shorten","recentlyBoughtNamesList":"Alissa Ashford, Carroll Calley, Augustina Angulo, Kenna Kuntz, Hailey Hinkle, Breann Beckham, Raquel Roles, Bernetta Beeks, Sol Silverio, Somer Sherrell, Yadira Yann, Belva Bumpus, Arlen Atherton, Huey Hanway, Suzette Stayton, Jeffry Jason, Libby Levasseur, Shaun Sparkman, Alison Almon, Rocco Rexroat","reviewApp":"none","freeShippingAmount":"74.00","messenger":false,"optimizedMessenger":true,"messengerID":"#","messengerLang":"en_US","messengerColor":"#0084ff","messengerGreeting":"What can we help you with?","gdpr":false,"gdprText":"\u003cp\u003eThis site requires cookies in order to provide all of its functionality.\u003c\/p\u003e","gdprAccept":"Accept","floatingContact":false,"floatingContactMobile":false,"floatingContactType":"page","floatingContactPosition":"right","floatingContactSize":50,"floatingContactColor":"#000","floatingContactIconColor":"#FFF","headHTML":"","bodyHTML":"","bodyCSS":"","jQuery":true,"headJS":"","bodyJS":"","checkout_logo_position":"left","checkout_logo_size":"medium","checkout_body_background_color":"#fff","checkout_input_background_color_mode":"white","checkout_sidebar_background_color":"#fafafa","checkout_heading_font":"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'","checkout_body_font":"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'","checkout_accent_color":"#1878b9","checkout_button_color":"#1878b9","checkout_error_color":"#e22120","bold-gold":"\u003cscript src=\"\/\/checkout.stripe.com\/checkout.js\"\u003e\u003c\/script\u003e\u003cdiv id=\"mvg-membership-gold_membership_container\" class=\"bold-mem-container memberships_widget\" data-plantag=\"mvg-membership-gold\" data-url=\"https:\/\/mem.boldapps.net\" data-hashwidget=\"fdff4184c8eaf4ec9dedcf8426fdf769\" data-token=\"3544a42dd3e0798adf5c11690dc002e1\" data-idwidget=\"40252\" data-domain=\"myvillagegreen.myshopify.com\" data-enable-email-verification=\"1\"\u003e\u003c\/div\u003e\u003cscript data-cfasync=\"false\" type=\"text\/javascript\" src=\"https:\/\/mem.boldapps.net\/app_assets\/js\/plan_multiwidget.js\"\u003e\u003c\/script\u003e","bold-platinum":"\u003cscript src=\"\/\/checkout.stripe.com\/checkout.js\"\u003e\u003c\/script\u003e\u003cdiv id=\"mvg-platinum_membership_container\" class=\"bold-mem-container memberships_widget\" data-plantag=\"mvg-platinum\" data-url=\"https:\/\/mem.boldapps.net\" data-hashwidget=\"4874c18117483af55142c1a0611a56d7\" data-token=\"3544a42dd3e0798adf5c11690dc002e1\" data-idwidget=\"40253\" data-domain=\"myvillagegreen.myshopify.com\" data-enable-email-verification=\"1\"\u003e\u003c\/div\u003e\u003cscript data-cfasync=\"false\" type=\"text\/javascript\" src=\"https:\/\/mem.boldapps.net\/app_assets\/js\/plan_multiwidget.js\"\u003e\u003c\/script\u003e","checkoutWindow":true,"checkoutWindowText":"\u003cp\u003e\u003cstrong\u003eLove this theme?\u003c\/strong\u003e\u003cbr\/\u003e\u003cbr\/\u003eGet it forever for a single payment of 399$, all apps, features, support and updates included.\u003c\/p\u003e","windowBgColor":"#000000","windowTextColor":"#ffffff","checkoutWindowButton":"\u003cp\u003e\u003cstrong\u003eGET IT NOW!\u003c\/strong\u003e\u003c\/p\u003e","checkoutWindowUrl":"https:\/\/link.boostertheme.com\/demo-banner-link?utm_campaign=babycare","checkoutButtonRadius":10,"buttonBgColor":"#6ee7b7","buttonBgColor--hover":"#1f2937","buttonTextColor--hover":"#ec4899","customer_layout":"customer_area"};
    const _bstrLocale = {
    buttons: {
        sold_out: `Sold out`,
        select: `Make a selection`,
        adding: `Adding to cart...`,
        back_to_shop: `Back to shop`
    },
    tags: {
        off: `OFF`,
        sale: `sale`
    },
    recentlyBought: {
        purchased: `%name% purchased:`,
        ago: `%time% minutes ago.`,
        someone: `Someone`
    }
    }
</script>

<template id="productCardTemplate">
    <div class="card--default">

<a class="card__img--container" href="">
<div class="card__img--ratio">
  <div class="card__img">
    
    <img data-product-image src>
    <div data-countdown data-ct-key="" class="countdown">
      <span class="countdown__holder"><span class="days">00</span><br>DAYS</span>
      <span class="countdown__holder"><span class="hours">00</span><br>HRS</span>
      <span class="countdown__holder"><span class="minutes">00</span><br>MIN</span>
      <span class="countdown__holder"><span class="seconds">00</span><br>SEC</span>
    </div>
  </div>
</div>
</a>


<div class="card__info">
<a class="card__title" href="">

</a>

<span class="card__price jsPrice">

</span>

</div>

</div>
</template>

<script>


setTimeout(
    ()=>{
        if (!Shopify.designMode) return
        const script = document.createElement("script")
        script.setAttribute("async", "true")
        script.setAttribute("defer", "true")
        script.setAttribute("type", "text/javascript")
        script.src = "//myvillagegreen.com/cdn/shop/t/45/assets/designMode.js?v=33877016466100614431750406552"
        document.body.append(script)
    }, 
    0
)
</script>

<script>


setTimeout(
    () => {
        if('scrollBehavior' in document.documentElement.style) return
        const script = document.createElement("script")
        script.setAttribute("async", "true")
        script.setAttribute("defer", "true")
        script.setAttribute("type", "text/javascript")
        script.src = "//myvillagegreen.com/cdn/shop/t/45/assets/smooth-scroll.poly.js?v=18144251088721767291750406552"
        document.body.append(script)
    }, 
    0
)
</script>

    
    
    

    
     
<script type="text/javaScript">
  (function() {
    window.ORDERSIFY_BIS = window.ORDERSIFY_BIS || {};
    
    function getUrlParameter() {
      var sParam = 'variant';
      var sPageURL = window.location.search.substring(1);
      var sURLVariables = sPageURL.split('&');
      for (var i = 0; i < sURLVariables.length; i++) {
        var sParameterName = sURLVariables[i].split('=');
        if (sParameterName[0] === sParam) {
          return typeof sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
        }
      }
      return false;
    };
    function hItg() {
      setTimeout(function() {
        var variantID = getUrlParameter();
        if (!variantID) {
          variantID = window.ORDERSIFY_BIS?.currentVariant?.id;
        }
        console.log({ variantID });
        var event = new CustomEvent('OrdersifyFormChange', { detail: { variantID } })
        document.body.dispatchEvent(event)
      }, 200);
    }
    function bisCustomApp() {
      hItg();
      setTimeout(hItg, 2000);
      var form = document.querySelector('form[action*="/cart/add"]');
      if (form) form.addEventListener('change', hItg);
      var body = document.body;
      if (body) body.addEventListener('click', hItg);
    }
    function onReady(func) {
      var readyStateCheckInterval = setInterval(function() {
        if (document && document.readyState === 'complete') {
          clearInterval(readyStateCheckInterval);
          func();
          setTimeout(func, 2000);
        }
      }, 10);
    }
    onReady(bisCustomApp);
  })();
</script>


    <!-- spurit_sri-added -->
    <script>
    if(typeof(Spurit) === 'undefined'){
        var Spurit = {};
    }
    if(!Spurit.recurringInvoices){
        Spurit.recurringInvoices = {};
    }
    if(!Spurit.recurringInvoices.snippet){
        Spurit.recurringInvoices.snippet = {};
    }
    Spurit.recurringInvoices.snippet.appId = '46';
    Spurit.recurringInvoices.snippet.shopHash = '5f20d38e04e2d5ed38352ac4855c46a9';
    Spurit.recurringInvoices.snippet.shopDomain = 'https://myvillagegreen.myshopify.com';
    Spurit.recurringInvoices.snippet.folderStore = 'https://cdn-spurit.com/shopify-apps/recurring-invoices/store/';
    Spurit.recurringInvoices.snippet.folderCss = 'https://cdn-spurit.com/shopify-apps/recurring-invoices/';
    Spurit.recurringInvoices.snippet.cdnHostPath = 'https://cdn-spurit.com/';
    Spurit.recurringInvoices.snippet.cdnJsLibsPath = 'https://cdn-spurit.com/all-apps/';
    Spurit.recurringInvoices.snippet.moneyFormat = '${{amount}}';

    if(typeof(Spurit.globalSnippet) === 'undefined'){
        Spurit.globalSnippet = {
            shop_currency: 'USD',
            money_format: '${{amount}}',
            cart: {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
            customer_id: ''
        };
    }

    if(typeof(Spurit.recurringInvoices.translation) === 'undefined'){
        Spurit.recurringInvoices.translation = {
            select_periodicity: 'Select frequency:',
            weeks: 'Weeks',
            months: 'Months',
            weekly: 'Weekly',
            monthly: 'Monthly',
            custom: 'Custom'
        };
    }
</script>
<script data-src="https://cdn-spurit.com/shopify-apps/recurring-invoices/common.js"></script>
    <!-- /spurit_sri-added -->

    <!-- Accessibilities -->

    <script data-src="https://cdn.userway.org/widget.js" data-account="T76UOLihTx"></script>

    
    <script type="application/ld+json">
      {
        "@context": "https://schema.org",
        "@type": "Store",
        "name": "Village Green Apothecary",
        "image": "https://lh4.googleusercontent.com/-rYXENsr44FM/AAAAAAAAAAI/AAAAAAAAAAA/YOZ4iWY8Kak/s44-p-k-no-ns-nd/photo.jpg",
        "@id": "https://myvillagegreen.com/#store",
        "url": "https://myvillagegreen.com/",
        "telephone": "(301) 530-0800",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "5415 W Cedar Ln",
          "addressLocality": "Bethesda",
          "addressRegion": "MD",
          "postalCode": "20814",
          "addressCountry": "US"
        },
        "openingHoursSpecification": [{
          "@type": "OpeningHoursSpecification",
          "dayOfWeek": [
            "Tuesday",
            "Monday",
            "Wednesday",
            "Thursday",
            "Friday"
          ],
          "opens": "08:30",
          "closes": "18:00"
        },{
          "@type": "OpeningHoursSpecification",
          "dayOfWeek": "Saturday",
          "opens": "08:30",
          "closes": "17:00"
        }]
      }
    </script><script src="/services/javascripts/currencies.js" type="text/javascript"></script>


<script
  src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js"
  integrity="sha512-3gJwYpMe3QewGELv8k/BX9vcqhryRdzRMxVfq6ngyWXwo03GFEzjsUm8Q7RZcHPHksttq7/GFoxjCVUjkjvPdw=="
  crossorigin="anonymous"
  referrerpolicy="no-referrer"
></script>

<script
  src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.0/js/bootstrap.bundle.min.js"
  integrity="sha512-wV7Yj1alIZDqZFCUQJy85VN+qvEIly93fIQAN7iqDFCPEucLCeNFz4r35FCo9s6WrpdDQPi80xbljXB8Bjtvcg=="
  crossorigin="anonymous"
  referrerpolicy="no-referrer"
></script>
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/jquery.history.js?v=97881352713305193381750406552" type="text/javascript" defer></script>
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/jquery.repeater.js?v=144768738851682277361750406552" type="text/javascript" defer></script>




<script id="bold-platform-data" type="application/json">
    {
        "shop": {
            "domain": "myvillagegreen.com",
            "permanent_domain": "myvillagegreen.myshopify.com",
            "url": "https://myvillagegreen.com",
            "secure_url": "https://myvillagegreen.com",
            "money_format": "${{amount}}",
            "currency": "USD"
        },
        "customer": {
            "id": null,
            "tags": null
        },
        "cart": {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
        "template": "blog",
        "product": null,
        "collection": null
    }
</script>
<style>
    .money[data-product-id], .money[data-product-handle], .money[data-variant-id], .money[data-line-index], .money[data-cart-total] {
        animation: moneyAnimation 0s 2s forwards;
        visibility: hidden;
    }
    @keyframes moneyAnimation {
        to   { visibility: visible; }
    }
</style>
 <script data-src="https://static.boldcommerce.com/bold-platform/sf/pr.js" ></script>
<!-- Swiper JS -->
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/swiper-bundle.min.js?v=105657941509464647301750406552" type="text/javascript"></script>
<!-- Initialize Swiper -->
<script>
  
      var swiperTeam = new Swiper(".swiper-team-slider", {
         slidesPerView: 1,
        spaceBetween: 20,
         loop: true,
       navigation: {
          nextEl: '.team-slider .swiper-button-next-custom',
          prevEl: '.team-slider .swiper-button-prev-custom',
        },
        pagination: {
          el: ".swiper-team-slider-pagination",
          clickable: true,
        },
         breakpoints: {
          640: {
            slidesPerView: 2,
            spaceBetween: 20,
          },
          768: {
            slidesPerView: 3,
            spaceBetween: 20,
          },
          1024: {
            slidesPerView: 3,
            spaceBetween: 30,
          },
        },
      });


       var swiperFeaturedSlider = new Swiper(".swiper-featured-slider", {
        slidesPerView: 1,
        spaceBetween: 20,
         loop: true,
       navigation: {
          nextEl: '.featured-slider .swiper-button-next-custom',
          prevEl: '.featured-slider .swiper-button-prev-custom',
        },
        pagination: {
          el: ".swiper-featured-slider-pagination",
          clickable: true,
        },
         breakpoints: {
          640: {
            slidesPerView: 2,
            spaceBetween: 20,
          },
          768: {
            slidesPerView: 3,
            spaceBetween: 20,
          },
          1024: {
            slidesPerView: 4,
            spaceBetween: 30,
          },
        },
      });




  var swiperTestimonialSlider = new Swiper(".swiper-testimonial-slider", {
        slidesPerView: 1,
        spaceBetween: 20,
         loop: true,
       navigation: {
          nextEl: '.testimonial-slider .swiper-button-next-custom',
          prevEl: '.testimonial-slider .swiper-button-prev-custom',
        },
        pagination: {
          el: ".swiper-testimonial-slider-pagination",
          clickable: true,
        },
         breakpoints: {
          640: {
            slidesPerView: 2,
            spaceBetween: 20,
          },
          768: {
            slidesPerView: 3,
            spaceBetween: 10,
          },
          1024: {
            slidesPerView: 4,
            spaceBetween: 10,
          },
        },
      });

  var swiperTestimonialSlider = new Swiper(".swiper-brand-restricted-slider", {
        slidesPerView: 1,
        spaceBetween: 20,
        loop: true,
        lazy: true,
      
       navigation: {
          nextEl: '.brand-restricted-slider .swiper-button-next-custom',
          prevEl: '.brand-restricted-slider .swiper-button-prev-custom',
        },
        pagination: {
          el: ".swiper-brand-restricted-slider-pagination",
          clickable: true,
          dynamicBullets: true
        },
         breakpoints: {
          640: {
            slidesPerView: 4,
            spaceBetween: 20,
          },
          768: {
            slidesPerView: 6,
            spaceBetween: 10,
          },
          1024: {
            slidesPerView: 8,
            spaceBetween: 10,
          },
        },
      });

  var swiperhumanizedSlider = new Swiper(".swiper-humanized-review-slider", {
        slidesPerView: 1,
        spaceBetween: 20,
         loop: true,
       navigation: {
          nextEl: '.humanized-review-slider .swiper-button-next-custom',
          prevEl: '.humanized-review-slider .swiper-button-prev-custom',
        },
        pagination: {
          el: ".swiper-humanized-review-slider-pagination",
          clickable: true,
        },
         breakpoints: {
          640: {
            slidesPerView: 1,
            spaceBetween: 20,
          },
          768: {
            slidesPerView: 1,
            spaceBetween: 10,
          },
          1024: {
            slidesPerView: 1,
            spaceBetween: 10,
          },
        },
      });

  var swiperGreenSlider = new Swiper(".swiper-green-slider", {
        slidesPerView: 1,
        spaceBetween: 20,
         loop: true,
   autoplay: {
      delay: 9000,
    },
      });
</script>

<script
  defer
  src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"
  integrity="sha512-VEd+nq25CkR676O+pLBnDW09R7VQX9Mdiij052gVCp5yVH3jGtH70Ho/UUv4mJDsEdTvqRCFZg0NKGiojGnUCw=="
  crossorigin="anonymous"
  referrerpolicy="no-referrer"
></script>
<link
  rel="stylesheet"
  data-href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css"
  integrity="sha512-vKMx8UnXk60zUwyUnUPM3HbQo8QfmNx7+ltw8Pm5zLusl1XIfwcxo8DbWCqMGKaWeNxWA8yrx5v3SaVpMvR3CA=="
  crossorigin="anonymous"
  referrerpolicy="no-referrer"
>
<style>
.toast-top-center {
    top: 50%;
    right: auto;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
  
</style>
<link
  rel="stylesheet"
  data-href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"
  integrity="sha512-+L4yy6FRcDGbXJ9mPG8MT/3UCDzwR9gPeyFNMCtInsol++5m3bk2bXWKdZjvybmohrAsn3Ua5x8gfLnbE1YkOg=="
  crossorigin="anonymous"
  referrerpolicy="no-referrer"
>
<link href="//myvillagegreen.com/cdn/shop/t/45/assets/device-mockups.css?v=125462745662403191841750406552" rel="stylesheet" type="text/css" media="all" />

<link data-href="//myvillagegreen.com/cdn/shop/t/45/assets/unicons.css?v=127018560314050965921750406552" rel="stylesheet" type="text/css" media="all" />
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/jquery-cookie.min.js?v=72365755745404048181750406552" type="text/javascript" defer></script>
<link href="//myvillagegreen.com/cdn/shop/t/45/assets/selectize.bootstrap3.css?v=162096599301222798271750406552" rel="stylesheet" type="text/css" media="all" />
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/selectize.min.js?v=70245539515728390161750406552" type="text/javascript" defer></script>
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/jquery.nicescroll.min.js?v=166122000064107150281750406552" type="text/javascript" defer></script>
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/booster.min.js?v=149779228786439235671750406552" type="text/javascript" defer></script>
<script
  defer
  src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min.js"
  integrity="sha512-57oZ/vW8ANMjR/KQ6Be9v/+/h6bq9/l3f0Oc7vn6qMqyhvPd1cvKBRWWpzu0QoneImqr2SkmO4MSqU+RpHom3Q=="
  crossorigin="anonymous"
  referrerpolicy="no-referrer"
></script>
<script src="//myvillagegreen.com/cdn/shop/t/45/assets/custom-booster.js?v=47046826507869645171750406552" type="text/javascript" defer></script>

<script>
    jQuery.noConflict();
    jQuery(function ($) { 
      
        $("#schedule_popup_now").removeClass('loading');
        $(window).load(function ()  {

          var length_check = $('#create_customer').find('.note.form-error');
          if(typeof length_check  === "undefined"){
            console.log('Mutation if 60284--');
          }
          else
          {
            if($('#create_customer').find('.note.form-error').length){
                console.log("Test Length");
               $('#membership_popup').modal('show');


              }
          }


      });

        $(document).on('keyup keydown paste focusout keypress', '#customFields_mvg-membership input[name=n_60701]', function (e) {
            $(this).attr('maxlength', 10);
            if (/\D/g.test(this.value)) {
                // Filter non-digits from input value.
                this.value = this.value.replace(/\D/g, '');
            }


        });

        $("#popup_sec .buy_btn").on("click", function () {
          console.log("clicked");
           $('#membership_popup').modal('show');


            $("#mvg-membership_membership_container").find("#form_mvg-membership #mvg-membership_register_fields .bold-form-group").addClass("step1");
            $("#mvg-membership_membership_container").find("#form_mvg-membership #customFields_mvg-membership .bold-form-group").slice(0, 2).addClass("step1");
            // $("#mvg-membership_membership_container").find("#form_mvg-membership #customFields_mvg-membership .bold-form-group").slice(2).addClass("step2");
            $("#mvg-membership_membership_container").find("#form_mvg-membership #mvg-membership_membership_button_stripe").hide();
            //       $("#mvg-membership_membership_container").find("#form_mvg-membership #mvg-membership_membership_button_free").remove();

        });




        $(document).on("keyup keydown paste focusout", "input[name='n_66533']", function () {
            $(this).val($(this).val().replace(/[^0-9]/g, ''));
            $(document).find("#n_66533-error,#n_66533-error-1").remove();
            $(this).removeClass('my-error-class');
            $(this).closest('form').find("input[type=button],input[type=submit]").prop("disabled", false);
            if (parseFloat($(this).val()) > 1000) {
                $(this).addClass('my-error-class');
                $(this).closest('.bold-form-group').append('<label id="n_66533-error" class="my-error-class" for="n_66533" style="display: block;">Weight not greater than 1000 lbs.</label>');
                $(this).closest('form').find("input[type=button],input[type=submit]").prop("disabled",true);
                $(this).closest('form').append('<label id="n_66533-error-1" class="my-error-class" style="display:inherit;">Weight not greater than 1000 lbs.</label>');
            }
        });

        $(document).on("keyup keydown paste focusout", "input[name='n_66532']", function () {
            $(this).val($(this).val().replace(/[^0-9]/g, ''));
            $(document).find("#n_66532-error,#n_66532-error-1").remove();
            $(this).removeClass('my-error-class');
            $(this).closest('form').find("input[type=button],input[type=submit]").prop("disabled", false);
            if (parseFloat($(this).val()) > 108) {
                $(this).addClass('my-error-class');
                $(this).closest('.bold-form-group').append('<label id="n_66532-error" class="my-error-class" for="n_66532" style="display: block;">Height not greater than 108 inch.</label>');
                $(this).closest('form').find("input[type=button],input[type=submit]").prop("disabled", true);
                $(this).closest('form').append('<label id="n_66532-error-1" class="my-error-class" style="display:inherit;">Height not greater than 108 inch.</label>')
            }
        });

        $(document).on("keyup keydown paste focusout", "input[name='n_66531']", function () {
            $(this).val($(this).val().replace(/[^0-9]/g, ''));
            $(document).find("#n_66531-error,#n_66531-error-1").remove();
            $(this).removeClass('my-error-class');
            $(this).closest('form').find("input[type=button],input[type=submit]").prop("disabled", false);
            if (parseFloat($(this).val()) > 108) {
                $(this).addClass('my-error-class');
                $(this).closest('.bold-form-group').append('<label id="n_66531-error" class="my-error-class" for="n_66531" style="display: block;">Age not greater than 120.</label>');
                $(this).closest('form').find("input[type=button],input[type=submit]").prop("disabled", true);
                $(this).closest('form').append('<label id="n_66531-error-1" class="my-error-class" style="display:inherit;">Age not greater than 120.</label>');
            }
        });

    });

    // function turnup(r) {
    //     console.log(r);
    //     $('#lap_report .lap_table').find("#more-" + r).hide();
    //     $('#lap_report .lap_table').find("#shortsummary-" + r).show();
    // }

    var loadFile = function (event) {
        var output = document.getElementById('profile_image');
        output.src = URL.createObjectURL(event.target.files[0]);
        output.onload = function () {
            URL.revokeObjectURL(output.src) // free memory
        }
    };

    function login() {
        var data = $("#customer_login").serialize();
        var promise = $.ajax({
            url: '/account/login',
            method: 'post',
            data: data,
            dataType: 'html',
            async: true
        });

        return promise;
    }

    jQuery(document).ready(function($) {
    $('.platinum-popup-link').click(function(e) {
      sessionStorage.setItem('openPlatinum', 'true');
      window.location.href = '/pages/signup-landing';
    });

    $('.openPlatinum').click(function(e) {
      sessionStorage.setItem('openPlatinum', 'true');
    });
    $('.openGold').click(function(e) {
      sessionStorage.setItem('openGold', 'true');
    });
    if (window.location.pathname === '/pages/signup-landing' && sessionStorage.getItem('openPlatinum')) {
      console.log("openPlatinum!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
      $('.openPlatinum').trigger('click');
      sessionStorage.removeItem('openPlatinum');
    }else if (window.location.pathname === '/pages/signup-landing' && sessionStorage.getItem('openGold')) {
      $('.openGold').trigger('click');
      sessionStorage.removeItem('openGold');
    }

      if (window.location.pathname === '/pages/sales-landing-private' && sessionStorage.getItem('openPlatinum')) {
      console.log("openPlatinum!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
      $('.health_plan.health_plan_new.monthly .buy_btn').trigger('click');
      sessionStorage.removeItem('openPlatinum');
    }else if (window.location.pathname === '/pages/sales-landing-private' && sessionStorage.getItem('openGold')) {
      $('.health_plan.health_plan_new.annually .buy_btn').trigger('click');
      sessionStorage.removeItem('openGold');
    }

//       function getCookie(name) {
//   const cookies = document.cookie.split(';');
//   for (const cookie of cookies) {
//     const parts = cookie.split('=');
//     const cookieName = parts[0].trim();
//     if (cookieName === name) {
//       return parts[1];
//     }
//   }
//   return null;
// }

// if (window.location.pathname === '/pages/signup-landing' && getCookie('openPlatinum')) {
//   console.log("openPlatinum!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
//   $('.openPlatinum').trigger('click');
//   document.cookie = 'openPlatinum=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/';
// } else if (window.location.pathname === '/pages/signup-landing' && getCookie('openGold')) {
//   $('.openGold').trigger('click');
//   document.cookie = 'openGold=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/';
// }

// if (window.location.pathname === '/pages/sales-landing-private' && getCookie('openPlatinum')) {
//   console.log("openPlatinum!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
//   $('.openPlatinum').trigger('click');
//   document.cookie = 'openPlatinum=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/';
// } else if (window.location.pathname === '/pages/sales-landing-private' && getCookie('openGold')) {
//   $('.openGold').trigger('click');
//   document.cookie = 'openGold=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/';
// }
// $('.platinum-popup-link').click(function(e) {
//   document.cookie = 'openPlatinum=true; path=/';
//   window.location.href = '/pages/signup-landing';
// });

// $('.openPlatinum').click(function(e) {
//   document.cookie = 'openPlatinum=true; path=/';
// });

// $('.openGold').click(function(e) {
//   document.cookie = 'openGold=true; path=/';
// });

  $('.go-to-membership').click(function() {
    $('#health_box_plan').get(0).scrollIntoView({ behavior: 'smooth' });
  });


  });
</script>





<script>
  jQuery(document).ready(function($) {
    //jQuery('#mvg-membership_membership_container #mvg-membership_membership_button_free').remove();

    $repeater = jQuery('.repeater');
    $repeater.repeater({
      show: function () {

        $(this).slideDown();
        // $('.datepicker').datepicker({
        //   format: 'mm/dd/yy',
        //   autoclose: !0
        // });
      },
      hide: function (remove) {
        if(confirm('Are you sure you want to remove this item?')) {
          jQuery(this).slideUp(remove);
          check_filled();
        }
      },
      isFirstItemUndeletable: true
    });

    




    
  /*
   var body = jQuery('body');
    var doc = jQuery(document);

    var showLeftPush = $('#showLeftPush');
    var nav = jQuery('#cbp-spmenu-s1');

    showLeftPush.on('click', function(e) {
      e.stopPropagation();

      body.toggleClass('cbp-spmenu-push-toright');
      nav.toggleClass('cbp-spmenu-open');
      showLeftPush.toggleClass('active');
    });

    jQuery('.gf-menu-device-wrapper .close-menu').on('click', function() {
        showLeftPush.trigger('click');
    });

    doc.on('click', function(e) {
      if (!jQuery(e.target).closest('#cbp-spmenu-s1').length && showLeftPush.hasClass('active')) {
        showLeftPush.trigger('click');
      }
    });*/
  });
</script>

<script type="text/javascript"> 
    if( jQuery('#redirect_home').length )         // use this if you are using id to check
  {

     /*window.location.href='/pages/signup-landing'*/
  //console.log(window.location);
    //window.location.href='https://myvillagegreen.com';

    if(window.location.pathname=="/pages/thirty-minute-consultation"){
       window.location.href='https://myvillagegreen.com/account/login?redir=pages/thirty-minute-consultation';
    }
    else{
      window.location.href='https://myvillagegreen.com';
    }
  }
 
  var PcheckBox = document.getElementById("platinum_privacy");
  var PcheckBox_label = document.getElementById("platinum_privacy_label");
  var Pbutton = document.getElementById("platinum_btn_send");
  var Pbutton_box = document.getElementById("platinum_submit");

  if (PcheckBox && PcheckBox.checked) {
    jQuery(Pbutton).attr("disabled", false);
    jQuery(Pbutton).attr("style", '');
  } else {
    jQuery(Pbutton).attr("disabled", true);
    jQuery(Pbutton).attr("style", 'pointer-events: none;');
  }

  jQuery(PcheckBox).change(function () {
    if (this.checked) {
      jQuery(Pbutton).attr("disabled", false);
      jQuery(PcheckBox_label).css("color", "inherit");
      jQuery(Pbutton).attr("style", '');
    } else {
      jQuery(Pbutton).attr("disabled", true);
      jQuery(PcheckBox_label).css("color", "red");
      jQuery(Pbutton).attr("style", 'pointer-events: none;');
    }
  }); 

  var GcheckBox = document.getElementById("gold_privacy");
  var GcheckBox_label = document.getElementById("gold_privacy_label");
  var Gbutton = document.getElementById("gold_btn_send");
  var Gbutton_box = document.getElementById("gold_submit");


  if (GcheckBox && GcheckBox.checked) {
    jQuery(Gbutton).attr("disabled", false);
    jQuery(Gbutton).attr("style", '');
  } else {
    jQuery(Gbutton).attr("disabled", true);
    jQuery(Gbutton).attr("style", 'pointer-events: none;');
  }

  jQuery(GcheckBox).change(function () {
    if (this.checked) {
      jQuery(Gbutton).attr("disabled", false);
      jQuery(GcheckBox_label).css("color", "inherit");
      jQuery(Gbutton).attr("style", '');
    } else {
      jQuery(Gbutton).attr("disabled", true);
      jQuery(GcheckBox_label).css("color", "red");
      jQuery(Gbutton).attr("style", 'pointer-events: none;');
    }
  });
   
</script>


    <script>
      (function() {
        var REDIRECT_PATH_SIGNUP = '/pages/signup-landing';
        var REDIRECT_PATH = '/';
        var selector = '#create_customer, form[action$="/account"][method="post"]',
            $form = document.querySelectorAll(selector)[0];

        if ($form) {
          $redirect = document.createElement('input');
          $redirect.setAttribute('name', 'return_to');
          $redirect.setAttribute('type', 'hidden');
          if (window.location.pathname=="/pages/signup-landing"){
             $redirect.value = REDIRECT_PATH_SIGNUP;
          }
          else{
            $redirect.value = REDIRECT_PATH;
          }



          $form.appendChild($redirect);
        }
      })();
    </script>
    <script>
window.mwGroupedProductsObjects = {
    product: null,
    cart: {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
    template_name: "blog",
    shop: {
    domain: "myvillagegreen.myshopify.com",
    money_format : "${{amount}}",
    money_with_currency_format : "${{amount}} USD",
    },
    jqForce: false
};
</script>
    <script type="text/javascript" charset="utf-8">
      var shappify_customer_tags = null
    </script>

    


<div class="smile-shopify-init"
  data-channel-key="channel_aDaZJ38D0bX8UCWJ749lzQHy"

></div>

    
              


<script data-cfasync="false" data-no-instant>window.jQuery ||
  document.write("<script src='https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js'>\x3C/script>")
</script>


<script type="text/javascript">
  
  window.saso = {
    shop_slug: "myvillagegreen",
    money_format: "${{amount}}",
    customer: null,
    cart: null,
    cart_path: "/cart",
  }
  window.saso_extras = {}

  

  
  

  

  

  
  	window.saso.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
    delete window.saso.cart.note
    window.saso.cart_collections = {}
    
	if (typeof window.saso.cart.items == "object") {
    	for (var i=0; i<window.saso.cart.items.length; i++) {
        	["sku", "grams", "vendor", "url", "image", "handle", "requires_shipping", "product_type", "product_description"].map(function(a) {
          		delete window.saso.cart.items[i][a]
        	})
    	}
    }
  

  window.saso.page_type = ""
  if (typeof window.location == "object" && typeof window.location.pathname == "string") {
    if (window.location.pathname.indexOf('/checkouts/') > -1) {
      window.saso.page_type = "checkout"
    }
  }
</script>

<style>
/* Magnific Popup CSS */
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.4;filter:alpha(opacity=40)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}
  .mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}
  .mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}

.mfp-wrap {
  z-index: 2147483645;
}
.mfp-container {
	background-color: rgba(0, 0, 0, 0.1) !important;
}

</style>

<link href="//myvillagegreen.com/cdn/shop/t/45/assets/special-offers.scss.css?v=94307541407438504841750406552" rel="stylesheet" type="text/css" media="all" />



<script id="saso-volume-discount-tiers" type="text/x-handlebars-template" data-no-instant>
<div class="saso-volume-discount-tiers">
    <h4>{{{product_message}}}</h4>

	<table class="saso-table">
    	<thead>
			<tr>
            	<th>Minimum Qty</th>
                <th>{{# if price_type_flat}}Price per item{{/if}}{{# if price_type_percent}}Discount{{/if}}</th>
            	<!--<th>&nbsp;</th>-->
  			</tr>
        </thead>

        <tbody>
        {{#tiers}}
    	<tr>
        	<td>{{{quantity}}}+</td>
        	<td>{{{price.title}}}<!-- {{{price_flat.title}}} --></td>
            <!-- <td><a href="#" class="saso-add-to-cart" data-quantity="{{{quantity}}}">Add to Cart</a></td> -->
  		</tr>
    	{{/tiers}}
        </tbody>
    </table>
</div>
</script>

<script id="saso-cross-sell-popup" type="text/x-handlebars-template" data-no-instant>
<div class="saso-cross-sell-popup {{#if products.length}}{{else}}saso-cross-sell-popup0{{/if}}">
    <span class="saso-message">{{{notifications_message}}}</span>
    <br>

	<div class="saso-products-container">
	<table><tr>
    {{#products}}
    <td class="saso-product-container" data-product-id="{{id}}" data-variant-id="{{variants.0.id}}">
        <div class="saso-image"><a href="/products/{{handle}}" class="saso-crosssell-nav" data-product-id="{{id}}"><img src="{{image.src}}" /></a></div>
        <div class="saso-title">{{{title}}}</div>
        <div class="saso-variants-container" style="{{{variants_style}}}">{{{variants_select}}}</div>
        <span class="saso-price">{{{variants.0.price}}}</span>
        <span class="saso-was-price">{{{variants.0.compare_at_price}}}</span>
        <br>
        <button type="button" class="saso-add-to-cart saso-crosssell-nav" data-product-id="{{{id}}}" data-variant-id="{{{variants.0.id}}}">Add to Cart</button>
    </td>
    {{/products}}
    </tr></table>
    </div>

    {{# if click_here}}<a href="{{{click_here}}}" class="saso-click-here"><button type="button" class="saso-click-here">Click here to browse all choices</button></a>{{/if}}

    <div class="saso-hide-when-embedded">
      <p><a href="#" class="saso-close">No thanks</a></p>
    </div>
  </div>
</script>


<script id="saso-bundle-popup" type="text/x-handlebars-template" data-no-instant>
<div class="saso-cross-sell-popup saso-bundle-popup">
    <span class="saso-message">{{{notifications_message}}}</span>
    <br>

	<div class="saso-products-container">
      {{#products}}

      <div class="saso-product-container" data-product-id="{{id}}" data-variant-id="{{variants.0.id}}" data-quantity="{{quantity}}">
          <div class="saso-image">
          	<a href="/products/{{handle}}" class="saso-crosssell-nav" data-product-id="{{id}}"><img src="{{image.src}}" /></a>
            <div class="saso-quantity-container">
          	{{{quantityx}}}
      		</div>
  		  </div>
          <div class="saso-product-info">
          	<div class="saso-title">{{{title}}}</div>
          	<div class="saso-variants-container" style="{{{variants_style}}}">{{{variants_select}}}</div>
          	<span class="saso-price">{{{variants.0.price}}}</span>
           </div>
      </div>
      <div class="saso-plus-container">
          <div class="saso-plus-container-inner">+</div>
      </div>
      {{/products}}
	</div>

      <table><tr class="saso-bundle-row">
        <td class="saso-equal-container">
            =
        </td>
        <td class="saso-bundle-price-container">
            {{{bundle_price_title}}}
        </td>
      </tr></table>


    <button type="button" class="saso-add-to-cart saso-bundle-add-to-cart">Add entire Bundle to cart</button>
    <div class="saso-bundle-success">{{{message_after}}}</div>

  </div>
</script>




<script id="saso-use-discount-code-cart" type="text/x-handlebars-template" data-no-instant>
<div class="saso-use-discount-code-cart-container">
	<input type="text" class="saso-use-discount-code-cart-code" placeholder="Discount code">
	<button type="button" class="saso-use-discount-code-cart-apply btn btn--secondary button">Apply</button>
</div>
</script>

<script id="saso-use-discount-instead" type="text/x-handlebars-template" data-no-instant>
<div class="saso-use-discount-instead-container">
    <label style="font-weight: normal; cursor: pointer;"><input type="checkbox" id="saso-use-discount-code-instead-check"> I will be using a coupon instead</label>
</div>
</script>








        <script data-cfasync="false">
          jQuery(function(){
            jQuery(document).on('click', "input[name='checkout']:not(.saso-ignore), input[value='Checkout']:not(.saso-ignore), button[name='checkout']:not(.saso-ignore), [href$='checkout']:not(.saso-ignore), button[value='Checkout']:not(.saso-ignore), input[name='goto_pp'], button[name='goto_pp'], input[name='goto_gc'], button[name='goto_gc']", function(e){
              e.preventDefault();

              if (typeof sasoCheckout != "function") {
              	window.location = "/checkout";
              }

              jQuery.ajax({
                          cache: false,
                          contentType: "application/json; charset=utf-8",
                          dataType: "json",
                          type: "GET",
                          url: '/cart.js',
                          success: function(res) {
                            window.saso.cart = res
                            sasoCheckout()
                          }
                        })

            });
          });
        </script>



    <style>
  .product__badges {
    margin-bottom: 20px;
}
.text-20{
  font-size:20px;
}
    .text-12{
  font-size:12px;
}
  .text-white{
    color:#fff!important;
  }
  .text-16{
  font-size:16px;
}

  .text-22{
  font-size:22px;
}
  .minicart__holder.minicart--sidebar .minicart {
    background: #EDF0E4;
}
  .bought-slide{
    
  }
  .freeshipping{
    background:#3B392E;
    text-align:center;
    color:#fff;
  }
  .minicart__trash{
    color:#94B102;
  }
  .minicart__bottom {
    box-shadow: none;
}
 @media (max-width: 767px){
   a.button.button--secondary{
     font-size:15px;
   }
   .product-over p{
    text-align:center;
  }
   .product-over .side-image{
    text-align:center;
  }
h2 {
    font-size: 26px;
}
   .home-featured .section__heading h2{
     width:100%;
   }
   .tab--product, .featured-tabs__tab {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0!important;
    padding: 10px 16px;
}
   .product--tab__content p{
      font-size: 16px;
     line-height:24px;
   }
   .two-button-container {
    flex-direction: column;
    align-items: stretch;
}
 }
   body.template-product #swiperContainer{
      display:none;
    }
   body.template-product #swiperContainer .swiper-button-next,
  body.template-product #swiperContainer  .swiper-button-prev{
    color:#94b102!important;
        bottom: 103px;
    top: unset;
  }
     body.template-product #swiperContainer .swiper-button-next:after,
  body.template-product #swiperContainer  .swiper-button-prev:after{
    font-size:30px
  }
  @media(max-width:767px){
    ul.banner-4 {
    display: flex;
    flex-wrap: wrap;
}

ul.banner-4 li {
    width: 33.33% !important;
}
    body.template-product ul.banner-4{
      display:none;
    }
     body.template-product #swiperContainer{
      display:block;
    }
    
  }



</style>
<script>
     jQuery(document).ready(function($){
        // Duplicate HTML content using jQuery
        var clonedContent = $('body.template-product .banner-4').clone();
        
        // Create swiperContainer div dynamically and append cloned content
        var swiperContainer = $('<div>').attr('id', 'swiperContainer').addClass('swiper-container');
        $('body.template-product .banner-4').after(swiperContainer);
        
        // Modify the cloned content with the specified HTML structure
        var swiperWrapper = $('<div>').addClass('swiper-wrapper');
        clonedContent.find('li').each(function() {
            var slide = $('<div>').addClass('swiper-slide');
            slide.append($(this).html());
            swiperWrapper.append(slide);
        });
        
        // Append swiperWrapper to swiperContainer
        swiperContainer.append(swiperWrapper);
        
        // Add swiper buttons
        swiperContainer.append('<div class="swiper-button-next"></div>');
        swiperContainer.append('<div class="swiper-button-prev"></div>');
        
        // Initialize Swiper
        var swiper = new Swiper('#swiperContainer', {
            // Configure Swiper options here
            slidesPerView: 3 ,
            spaceBetween: 30,
             navigation: {
        nextEl: ".swiper-button-next",
        prevEl: ".swiper-button-prev",
      }
        });
    });

</script>

    <!--
      888888b.                              888                88888888888 888
      888  "88b                             888                    888     888
      888  .88P                             888                    888     888
      8888888K.   .d88b.   .d88b.  .d8888b  888888 .d88b.  888d888 888     88888b.   .d88b.  88888b.d88b.   .d88b.
      888  "Y88b d88""88b d88""88b 88K      888   d8P  Y8b 888P"   888     888 "88b d8P  Y8b 888 "888 "88b d8P  Y8b
      888    888 888  888 888  888 "Y8888b. 888   88888888 888     888     888  888 88888888 888  888  888 88888888
      888   d88P Y88..88P Y88..88P      X88 Y88b. Y8b.     888     888     888  888 Y8b.     888  888  888 Y8b.
      8888888P"   "Y88P"   "Y88P"   88888P'  "Y888 "Y8888  888     888     888  888  "Y8888  888  888  888  "Y8888
    -->

    <div class="custom-bootstrap-body bootstrapiso"></div> <script src="//myvillagegreen.com/cdn/shop/t/45/assets/custom.min.js?v=79945361716616126611750406552" type="text/javascript"></script>
  <style> .minicart__timer {display: none;} </style>
<div id="shopify-block-Aa3V4ZHFydkdGaDNHN__1309651709796516356" class="shopify-block shopify-app-block"><script type="text/javascript">
  window.ORDERSIFY_BIS = window.ORDERSIFY_BIS || {};
  window.ORDERSIFY_BIS.template = window.ORDERSIFY_BIS.template || "blog";
  window.ORDERSIFY_BIS.language = window.ORDERSIFY_BIS.language || "en";
  window.ORDERSIFY_BIS.shop = window.ORDERSIFY_BIS.shop || "myvillagegreen.myshopify.com";window.ORDERSIFY_BIS.primary_language = window.ORDERSIFY_BIS.primary_language || "en";window.ORDERSIFY_BIS.product_collections = window.ORDERSIFY_BIS.product_collections || [];
  window.ORDERSIFY_BIS.variant_inventory = window.ORDERSIFY_BIS.variant_inventory || [];
  window.ORDERSIFY_BIS.collection_product_inventories = window.ORDERSIFY_BIS.collection_product_inventories || [];
  window.ORDERSIFY_BIS.collection_product_collections = window.ORDERSIFY_BIS.collection_product_collections || [];window.ORDERSIFY_BIS.collection_products = window.ORDERSIFY_BIS.collection_products || [];</script></div><div id="shopify-block-ARzdWTngvMFlVWUtIS__8776485610325655785" class="shopify-block shopify-app-block">
  <link href="//cdn.shopify.com/extensions/019e0fb1-90d3-7e42-a546-243a456a4c7e/simple-social-login-168/assets/fonts.css" rel="stylesheet" type="text/css" media="all" />

  
<link href="//cdn.shopify.com/extensions/019e0fb1-90d3-7e42-a546-243a456a4c7e/simple-social-login-168/assets/styles.css" rel="stylesheet" type="text/css" media="all" />
<script src="https://cdn.shopify.com/extensions/019e0fb1-90d3-7e42-a546-243a456a4c7e/simple-social-login-168/assets/app.js?" async defer></script>

</div><div id="shopify-block-AMTdyZWI2L3l1T2VpM__697754177826975642" class="shopify-block shopify-app-block">























































<style>
  :root {
    --bot-background: #f8f9f2;
    --bot-text: #04526f;
    --user-background: #04526f;
    --user-text: #ffffff;
    --header-text: #ffffff;
  }
</style>




<!-- BEGIN app snippet: chat_box --><!-- Chatbot Styles and Scripts -->
<link rel="stylesheet" type="text/css" href="https://cdn.shopify.com/extensions/019ac87c-7cc9-7dae-896c-8ea47216e8fe/opti-aichatbot-30/assets/chat_styles.css">
<script src="https://cdn.shopify.com/extensions/019ac87c-7cc9-7dae-896c-8ea47216e8fe/opti-aichatbot-30/assets/chat-box.js"></script>

<!-- Add these lines before your chat-box.js script -->
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.5.1/dist/confetti.browser.min.js"></script>
<script src="https://cdn.shopify.com/extensions/019ac87c-7cc9-7dae-896c-8ea47216e8fe/opti-aichatbot-30/assets/confetti.js"></script>

<!-- Rest of your existing chat_box.liquid content -->
<div id="voiceflow-chat-container" 
     data-pixel-account-id=""
     data-product-id=""
     data-variant-id=""
     data-product-name="" 
     data-page-slug="blog"
     data-product-url=""
     data-product-description=""
     data-is-product-page="false"
     
     data-user-first-visit="true"
     data-user-logged-in="false"
     data-user-returning="false"
     data-user-email=""
     data-user-name=""
     
     data-page-referrer=""
     data-utm-source=""
     data-utm-medium=""
     data-utm-campaign=""
     data-device-type="desktop"
     
     data-cart-item-count="0"
     data-cart-total="0.00"
     data-cart-has-items="false"
     data-cart-discount="0.00"
     
     data-order-id=""
     data-order-number=""
     data-order-total=""
     data-order-items=''
     
     data-shop-name="Village Green Apothecary"
     data-shop-currency="USD"
     
     data-customer-orders-count="0"
     data-customer-total-spent="0"
     data-days-since-first-order="0"
     style="display: none;">
  <div id="chat-overlay" style="display: none; visibility: hidden;">
    <div id="chat-overlay-content">
      <input type="text" id="chat-name" placeholder="Your Name" aria-label="Your Name">
      <input type="email" id="chat-email" placeholder="Your Email" aria-label="Your Email">
      <div class="subscribe-container">
        <label class="checkbox-label">
          <input type="checkbox" id="chat-mail-signup">
          <span class="checkmark"></span>
          <span class="subscribe-text">Subscribe and receive 10% off - complementary initial offer!</span>
        </label>
      </div>
      <div class="terms-container">
        <label class="checkbox-label required">
          <input type="checkbox" id="chat-terms" required>
          <span class="checkmark"></span>
          <span class="terms-text">I accept the <a href="/pages/terms-and-conditions" target="_blank">Terms and Conditions</a> and <a href="/pages/privacy-policy" target="_blank">Privacy Policy</a></span>
        </label>
      </div>
      <button id="start-chat-button">Start Chatting</button>
    </div>
  </div>
  <div id="voiceflow-chat-header" style="background-color: var(--user-background) !important;">
     <div class="chat-profile-image">
         <img src="https://cdn.shopify.com/extensions/019ac87c-7cc9-7dae-896c-8ea47216e8fe/opti-aichatbot-30/assets/profileimage.png" alt="Chat Assistant" width="40" height="40">
     </div>
     <span>✨Village Green Apothecary Support Assistant ✨</span>
     <button id="voiceflow-chat-close">&times;</button>
   </div>
  <!-- Voice Overlay (Hidden by default) -->
   <div id="voice-overlay" style="display: none;">
     <div id="voice-content">
       <div id="voice-text-preview">Listening...</div>
       <div id="voice-visualizer">
         <div class="bar"></div><div class="bar"></div><div class="bar"></div><div class="bar"></div>
       </div>
       <button id="voice-stop-button">
         <div class="stop-square"></div>
       </button>
       <p class="voice-instruction">Tap to Send</p>
     </div>
   </div>
   <div id="voiceflow-chat-messages">
    <div id="chat-content-wrapper">
      <div id="chat-box"></div>
      <div id="chat-input-area">
        <!-- The Add to Cart button will be inserted here by JavaScript -->
        <div id="chat-text-input-container">
           <input type="text" id="chat-input" placeholder="Type your message here..." aria-label="Type your message here" />

           <!-- NEW MIC BUTTON (Middle Position) -->
           <button id="chat-mic-button" aria-label="Voice Input" style="display: none;">
             <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="vf-mic-icon">
               <path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path>
               <path d="M19 10v2a7 7 0 0 1-14 0v-2"></path>
               <line x1="12" y1="19" x2="12" y2="23"></line>
               <line x1="8" y1="23" x2="16" y2="23"></line>
             </svg>
           </button>

           <button id="chat-send-button" aria-label="Send Message">
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white" class="vf-send-button-icon">
                <path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"/>
            </svg>
          </button>    
        </div>
      </div>
    </div>
  </div>
</div>

<div id="voiceflow-chat-toggle-container">
  <div class="bubble-text" style="display: none;">How can I assist you today?</div>
  <button id="voiceflow-chat-toggle">
    <svg class="chat-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path d="M20 2H4C2.9 2 2 2.9 2 4V22L6 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2Z" fill="white"/>
    </svg>
    <svg class="close-icon" viewBox="0 0 24 24" fill="white" style="display: none;">
      <path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>
    </svg>
  </button>
</div>

<div id="chat-all-button-container">
    <div id="chat-box-typing-indicator-container" class="vf-message-button" style="display: none;">
        <div class="chat-box-typing-indicator">   
            <span></span>
            <span></span>
            <span></span>
        </div>
    </div>
    <div id="chat-button-box"></div>
    <!-- ... rest of the content ... -->
</div>


<!-- END app snippet -->




</div><div id="shopify-block-AMEtBSlJsM1c2azFtW__14894130144892270760" class="shopify-block shopify-app-block"><script>
    window.BOLD = window.BOLD || {};
    window.BOLD.csp = window.BOLD.csp || {};
    window.BOLD.csp.TAE = window.BOLD.csp.TAE || {};
    window.BOLD.csp.TAE.settings = window.BOLD.csp.TAE.settings || {};
    window.BOLD.csp.TAE.settings.cart =  {"cart_item_list_locator":"table.cart-items","cart_total_value_locator":".totals__total-value","cart_item_locator":".cart-item","cart_item_price_locator":".product-option","cart_line_item_price_locator":".price.price--end","cart_checkout_button_id":"checkout","check_cart_change_interval":1000,"enable_product_options_integration":false,"delay_after_cart_change":500};
 document.addEventListener("DOMContentLoaded", () => {
     if (typeof v3CartPrices !== 'undefined') {
        new v3CartPrices();
    }
 });
</script>


</div><div id="shopify-block-ATzdJWHhyNmRuTEpFd__10312807297210203588" class="shopify-block shopify-app-block">


</div><div id="shopify-block-AdXNDRjVnSFdlalpPa__13741738273725063537" class="shopify-block shopify-app-block"><script>
    window.BOLD = window.BOLD || {};
    window.BOLD.csp = window.BOLD.csp || {};
    window.BOLD.csp.TAE = window.BOLD.csp.TAE || {};
    window.BOLD.csp.TAE.settings = window.BOLD.csp.TAE.settings || {};
    window.BOLD.csp.TAE.settings.pricing = window.BOLD.csp.TAE.settings.pricing || {"product-price-locator":"price-item price-item--regular","collection-item-locator":".card-wrapper","collection-item-price-locator":".price-item.price-item--regular","delay-after-page-load":100,"delay-after-content-change":100,"check-variant-change-interval":1000,"delay-in-each-network-call":40,"dump_all_collections":false,"enable-product-drawer":false,"listen-product-fetch":"\/products\/","drawer-locator":".quick-add-modal__content.global-settings-popup"};

    window.BOLD.csp.TAE.settings.pricing.productsWithFirstOrSelectedVariants = {};
    
document.addEventListener("DOMContentLoaded", () => {
    if (typeof v3Price !== 'undefined') {
        new v3Price();
    }
});


</script>



</div><div id="shopify-block-ARHR5STk0bG5ITUFub__10842145328576398252" class="shopify-block shopify-app-block"><script defer src="https://cdn.shopify.com/extensions/019e8eef-482a-7ed6-aec4-cc27ccfcbfc6/customer-pricing-89/assets/v3.js" type="text/javascript"></script>

    <script defer src= "/tools/shappify-csp/v2/api/myvillagegreen.myshopify.com/pr.js?v=20250716" type="text/javascript"></script>

<script id="bold-platform-data" type="application/json">
{
  "shop": {
    "domain": "myvillagegreen.com",
    "permanent_domain": "myvillagegreen.myshopify.com",
    "url": "https://myvillagegreen.com",
    "secure_url": "https://myvillagegreen.com",
    "money_format": "${{amount}}",
    "currency": "USD"
  },
  "customer": {
    "id": null,
    "tags": null
  },
  "cart": {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
  "line_item_products": [],
  "template": "blog",
  "product": null,
  "collection": null
}
</script>

<script>
    window.BOLD_SHOP = { domain: 'myvillagegreen.com', permanent_domain: 'myvillagegreen.myshopify.com', url: 'https://myvillagegreen.com', secure_url: 'https://myvillagegreen.com', money_format: "${{amount}}", currency: "USD" };
    window.BOLD_CUSTOMER = { id: null, tags: null };
    window.BOLD_CART = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0};
    window.BOLD_TEMPLATE = "blog";
    window.BOLD_COLLECTION = null;
    window.BOLD_PRODUCT = null;
    window.BOLD_SELECTED_OR_FIRST_AVAILABLE_VARIANT = "";

    window.BOLD = window.BOLD || {};
    window.BOLD.csp = window.BOLD.csp || {};
    window.BOLD.csp.TAE = window.BOLD.csp.TAE || {};
    window.BOLD.csp.TAE.settings = window.BOLD.csp.TAE.settings || {};
    window.BOLD.csp.TAE.settings.pr = {"enable_compare_at":false,"skip_pr_js_load":false};

</script>

<script defer src="https://cdn.shopify.com/extensions/019e8eef-482a-7ed6-aec4-cc27ccfcbfc6/customer-pricing-89/assets/helpers.js" type="text/javascript"></script>
<script>
 document.addEventListener("DOMContentLoaded", () => {
    if (typeof v3BoldPR !== 'undefined') {
        new v3BoldPR();
    }
 });
</script>

<script defer src="/tools/shappify-csp/v2/api/myvillagegreen.myshopify.com/cspqb.js?v=20251118" type="text/javascript"></script>
<link href="//cdn.shopify.com/extensions/019e8eef-482a-7ed6-aec4-cc27ccfcbfc6/customer-pricing-89/assets/v3.css" rel="stylesheet" type="text/css" media="all" />


</div><div id="shopify-block-AR2FMSW9nNERWcU9kV__6174324309569838175" class="shopify-block shopify-app-block">


<div class="smile-shopify-init"
  data-channel-key="channel_aDaZJ38D0bX8UCWJ749lzQHy"
  
></div>


</div><script src="https://cdn.shopify.com/storefront/standard-actions.js" type="module" data-source-attribution="shopify.standard_actions"></script>
</body>

        <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
        <script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
        
    <!-- PAGEFLY CART HELPER - DO NOT DELETE -->
    <script>
          try {
          setTimeout(function () {
            window.__pagefly_helper_store__ &&
              window.__pagefly_helper_store__.subscribe(function (res) {
            $.getJSON('/cart.json').then(cart => {
              $.get(theme.routes.search_url, function (data) {
                  
                  console.log('end')
                  var selectors = [
                  '.page-header .header-cart',
                  '.docked-navigation-container .header-cart'];

                  var $parsed = $($.parseHTML('<div>' + data + '</div>'));
                  for (var i = 0; i < selectors.length; i++) {
                    var cartSummarySelector = selectors[i];
                    var $newCartObj = $parsed.find(cartSummarySelector).clone();
                    var $currCart = $(cartSummarySelector);
                    $currCart.replaceWith($newCartObj);
                  }
                });
				console.log('check data', cart);
               var $template = $([
                '<div class="added-notice global-border-radius added-notice--pre-reveal">',
                '<div class="added-notice__header">',
                '<span class="added-notice__title">', theme.strings.addedToCartPopupTitle, '</span>',
                '<a class="added-notice__close feather-icon" href="#" aria-label="', theme.strings.close, '">', theme.icons.close, '</a>',
                '</div>',
                '<div class="cart-summary global-border-radius">',
                '<div class="cart-summary__product">',
                '<div class="cart-summary__product-image"><img class="global-border-radius" src="', res.image, '" role="presentation" alt=""></div>',
                '<div class="cart-summary__product__description">',
                '<div class="cart-summary__product-title">', res.product_title, '', '</div>',
                '<div class="cart-summary__product__variants"></div>',
                '',
                 '<div class="cart-summary__price">','<span class="theme-money">£14.99</span>', '</div>',
                '</div>',
                '</div>',
                '</div>',
                '<div class="cart-summary__footer">',
                '<div class="cart-summary__total-quantity-row">',
                '<span>', theme.strings.addedToCartPopupItems, '</span>',
                '<span>', cart.item_count, '</span>',
                '</div>',
                '<div class="cart-summary__total-price-row large-text">',
                '<span>', theme.strings.addedToCartPopupSubtotal, '</span>',
                '<span class="theme-money">', theme.Shopify.formatMoney(cart.total_price, theme.moneyFormatWithCodeForCartPreference), '</span>',
                '</div>',
                '<a href="', theme.routes.cart_url, '" class="btn btn--primary btn--small btn--fullwidth cart-summary__button">', theme.strings.addedToCartPopupGoToCart, '</a>',
                '</div>',
                '</div>'].
                join(''));
                $template.appendTo('body');
              		setTimeout(function () {
            $template.removeClass('added-notice--pre-reveal');
          }, 10);

          // transition out
          theme.addedToCartNoticeHideTimeoutId = setTimeout(function () {
            $template.find('.added-notice__close').trigger('click');
          }, 5000);
              
                $(document).off('.ajaxAddToCart');

    $(document).on('click.ajaxAddToCart', '.added-notice__close', function () {
      var $template = $(this).closest('.added-notice').addClass('added-notice--pre-destroy');
      setTimeout(function () {
        $template.remove();
      }, 500);
      return false;
    });

    $(document).on('mouseenter.ajaxAddToCart', '.header-cart', function () {
      
      clearTimeout(theme.addedToCartNoticeHideTimeoutId);
      $('.added-notice__close').trigger('click');
    });
 
                                    });
		});
          }, 2500);
        } catch (e) {
          console.warn(e);
        }
    </script>
    <script>
      // Add event listeners to all buttons with the attribute data-pf-type="ProductATC2"
document.querySelectorAll('[data-pf-type="ProductATC2"][data-checkout="same"]').forEach(button => {
  button.addEventListener('click', function() {
    setTimeout(function() {
      const cartDrawer = document.querySelector('.minicart__label');
      if (cartDrawer) {
        cartDrawer.click();
      }
    }, 1000); 
  });
});

    </script>


</html>

