














<!doctype html>
<html
  class="no-js"
  lang="en"
  dir="ltr"
>
  <head>
    <!-- begin Convert Experiences code-->
<script type="text/javascript">
  // Function to turn on the conversion integration
  function _conv_integration_on() {
    true;
  }

  // Initialize the _conv_q array if it doesn't exist
  window._conv_q = window._conv_q || [];

  // Function to align segments to the first format
  function alignSegmentsToFirstFormat(segFromSecondFormat) {
    // Initialize the aligned segment with direct mappings
    const alignedSeg = {
      browser: segFromSecondFormat.browser,
      devices: segFromSecondFormat.devices,
      source: segFromSecondFormat.source,
      campaign: segFromSecondFormat.campaign,
      // Directly map 'country' to 'ctry', ensuring a value is always provided
      ctry: segFromSecondFormat.country || "",
      // Handle 'customSegments' with a check to ensure it's treated correctly
      cust:
        segFromSecondFormat.customSegments &&
        Array.isArray(segFromSecondFormat.customSegments)
          ? segFromSecondFormat.customSegments
          : [],
    };

    // Adjust the 'new' flag based on 'visitorType'
    // Since 'visitorType' of "returning" implies the visitor is not new, we map accordingly
    alignedSeg.new =
      segFromSecondFormat.visitorType === "new"
        ? 1
        : segFromSecondFormat.visitorType === "returning"
        ? 0
        : undefined;

    return alignedSeg;
  }

  // Push a new listener to the _conv_q array
  _conv_q.push({
    what: "addListener",
    params: {
      event: "snippet.goals_evaluated",
      handler: function () {
        // Try to get the session cookie
        let session_cookie;
        try {
          session_cookie = convert.getCookie("_conv_s");
        } catch (error) {
          console.error(
            'Convert: Error getting session cookie. Operation: convert.getCookie("_conv_s")',
            error
          );
          return; // Exit the function if there's an error
        }

        const isCurrentData = Boolean(convert.currentData && convert.currentData.experiences);
        const isHistoricalData = Boolean(convert.historicalData && convert.historicalData.experiences);

        // If there are experiments and a session cookie, proceed
        if (
          (isCurrentData || isHistoricalData) &&
          session_cookie
        ) {
          // Define some variables
          let revenue_goal_id = "10047482";
          let visitor_id = session_cookie.split("*")[0].replace("sh:", "");
          let exp_list = [];
          let variation_list = [];
          let varID;

          // If there are current experiments, add them to the lists
          if (isCurrentData) {
            let new_exp = convert.currentData.experiences;
            for (let expID in new_exp) {
              varID = new_exp[expID].variation.id;
              if (!exp_list.includes(expID.toString())) {
                exp_list.push(expID.toString());
                variation_list.push(varID.toString());
              }
            }
          }

          // Adjusting for the new historicalData format
          if (isHistoricalData) {
            let old_exp = convert.historicalData.experiences;
            for (let expID in old_exp) {
              varID = old_exp[expID].variation_id;
              if (!exp_list.includes(expID.toString())) {
                exp_list.push(expID.toString());
                variation_list.push(varID.toString());
              }
            }
          }

          // Define the base convert attributes
          let convert_attributes = {
            cid: convert.data.account_id,
            pid: convert.data.project.id,
            vid: visitor_id,
            goals: revenue_goal_id,
            vars: variation_list,
            exps: exp_list,
          };

          // Try to get visitor segments
          try {
            let segmentsFromConvert = convert.getVisitorSegments();
            convert_attributes.visitorSegments =
              alignSegmentsToFirstFormat(segmentsFromConvert);
          } catch (error) {
            console.error("Convert: Error getting visitor segments:", error);
          }

          // Try to set convert_attributes in localStorage
          try {
            localStorage.setItem("convert_revenue_goal", revenue_goal_id);
            console.log(
              "%cConvert: convert_revenue_goal successfully saved to localStorage",
              "color: lightgreen"
            ); // Debugging line
          } catch (error) {
            console.error(
              "%cConvert: Error saving convert_attributes to localStorage: ",
              "color: deeppink",
              error
            ); // Error handling
          }

          // Prefix the convert attributes
          const prefixed_convert_attributes = {
            __event: btoa(JSON.stringify(convert_attributes)),
            __currency: "",
            __version: "5",
          };

          const shopifyRoot =
            window.Shopify && window.Shopify.routes
              ? window.Shopify.routes.root
              : "/";
          console.log("shopifyRoot:", shopifyRoot);
          fetch(shopifyRoot + "cart/update.js", {
            method: "POST",
            headers: {
              "Content-Type": "application/json",
            },
            body: JSON.stringify({
              attributes: prefixed_convert_attributes,
            }),
          })
            .then(function () {
              console.log(
                "%cConvert: Hidden cart attributes successfully updated",
                "color: lightgreen"
              ); // Debugging line
            })
            .catch(function (errorThrown) {
              console.error(
                "%cConvert: Error updating hidden cart attribute values: ",
                "color: deeppink",
                errorThrown
              ); // Error handling
              console.log(
                "%cValues: ",
                "color: deeppink",
                prefixed_convert_attributes
              ); // Error debugging
            });
        }
      },
    },
  });
</script>
<script
  type="text/javascript"
  src="//cdn-4.convertexperiments.com/v1/js/10041709-10042010.js"
></script>
<!-- end Convert Experiences code -->



    
    
    
    
    
      
      
    
  
    <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">
    <meta name="theme-color" content="#2b554c">
    <meta name="facebook-domain-verification" content="hqv5nbzwmga3amrnh6g59s304oaviv">
    <meta name="google-site-verification" content="QnMwN3N7kra1De4Z2iDAuxGOAJGIIgwAlqtuuNUa93k">
    <!-- 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-WFMN4C3Q');
    </script>
    <!-- End Google Tag Manager -->
    <link rel="canonical" href="https://econugenics.com/blogs/news">
    <link rel="preconnect" href="https://cdn.shopify.com">
    <link rel="preconnect" href="https://fonts.shopifycdn.com">
    <link rel="dns-prefetch" href="https://ajax.googleapis.com">
    <!--
      <link rel="dns-prefetch" href="https://productreviews.shopifycdn.com">
      <link rel="dns-prefetch" href="https://maps.googleapis.com">
      <link rel="dns-prefetch" href="https://maps.gstatic.com">
    --><link
        rel="shortcut icon"
        href="//econugenics.com/cdn/shop/files/new_eco_favicon_32x32.png?v=1615797781"
        type="image/png"
      ><title>Health &amp; Wellness
&ndash; ecoNugenics
</title>
<meta property="og:site_name" content="ecoNugenics">
  <meta property="og:url" content="https://econugenics.com/blogs/news">
  <meta property="og:title" content="Health &amp; Wellness">
  <meta property="og:type" content="website">
  <meta property="og:description" content="ecoNugenics supplements are rooted in a blend of science and real-world results. Our premium, physician-crafted formulas feature ingredients backed by 200+ peer-reviewed studies and 30 years of clinical use."><meta property="og:image" content="http://econugenics.com/cdn/shop/files/ecoNugenics.png?v=1754678770">
    <meta property="og:image:secure_url" content="https://econugenics.com/cdn/shop/files/ecoNugenics.png?v=1754678770">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="600"><meta name="twitter:site" content="@">
  <meta name="twitter:card" content="summary_large_image">
  <meta name="twitter:title" content="Health &amp; Wellness">
  <meta name="twitter:description" content="ecoNugenics supplements are rooted in a blend of science and real-world results. Our premium, physician-crafted formulas feature ingredients backed by 200+ peer-reviewed studies and 30 years of clinical use.">
<link
      rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/@fancyapps/ui@5.0/dist/fancybox/fancybox.css"
    ><style data-shopify>/* Gellix */
  @font-face {
  font-family: 'Gellix';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/Gellix-Regular.woff2') format('woff2'),
  url('../assets/Gellix-Regular.woff') format('woff');
  }

  @font-face {
  font-family: 'Gellix';
  font-style: italic;
  font-weight: 400;
  src: url('../assets/Gellix-RegularItalic.woff2') format('woff2'),
  url('../assets/Gellix-RegularItalic.woff') format('woff');
  }

  @font-face {
  font-family: 'Gellix';
  font-style: normal;
  font-weight: 300;
  src: url('../assets/Gellix-Light.woff2') format('woff2'),
  url('../assets/Gellix-Light.woff') format('woff');
  }

  @font-face {
  font-family: 'Gellix';
  font-style: italic;
  font-weight: 300;
  src: url('../assets/Gellix-LightItalic.woff2') format('woff2'),
  url('../assets/Gellix-LightItalic.woff') format('woff');
  }

   @font-face {
  font-family: 'Gellix';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/Gellix-Medium.woff2') format('woff2'),
  url('../assets/Gellix-Medium.woff') format('woff');
  }

  @font-face {
  font-family: 'Gellix';
  font-style: italic;
  font-weight: 500;
  src: url('../assets/Gellix-MediumItalic.woff2') format('woff2'),
  url('../assets/Gellix-MediumItalic.woff') format('woff');
  }

  @font-face {
  font-family: 'Gellix';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/Gellix-Semibold.woff2') format('woff2'),
  url('../assets/Gellix-Semibold.woff') format('woff');
  }

  @font-face {
  font-family: 'Gellix';
  font-style: italic;
  font-weight: 600;
  src: url('../assets/Gellix-SemiboldItalic.woff2') format('woff2'),
  url('../assets/Gellix-SemiboldItalic.woff') format('woff');
  }

  /* PT Serif */
  @font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/PTSerif-Bold.woff2') format('woff2'),
  url('../assets/PTSerif-Bold.woff') format('woff');
  }

  @font-face {
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 700;
  src: url('../assets/PTSerif-BoldItalic.woff2') format('woff2'),
  url('../assets/PTSerif-BoldItalic.woff') format('woff');
  }

  @font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/PTSerif-Regular.woff2') format('woff2'),
  url('../assets/PTSerif-Regular.woff') format('woff');
  }

  @font-face {
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 400;
  src: url('../assets/PTSerif-Italic.woff2') format('woff2'),
  url('../assets/PTSerif-Italic.woff') format('woff');
  }

  @font-face {
  font-family: "Nunito Sans";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_n2.45902c8620b839cb2ec1db4ab2ec1326bddc1ee8.woff2") format("woff2"),
       url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_n2.4acfc962337c42c1bb3ee113ce70287c1214f9ec.woff") format("woff");
}

  @font-face {
  font-family: "Nunito Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_n4.0276fe080df0ca4e6a22d9cb55aed3ed5ba6b1da.woff2") format("woff2"),
       url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_n4.b4964bee2f5e7fd9c3826447e73afe2baad607b7.woff") format("woff");
}


  @font-face {
  font-family: "Nunito Sans";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_n6.6e9464eba570101a53130c8130a9e17a8eb55c21.woff2") format("woff2"),
       url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_n6.25a0ac0c0a8a26038c7787054dd6058dfbc20fa8.woff") format("woff");
}

  @font-face {
  font-family: "Nunito Sans";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_i4.6e408730afac1484cf297c30b0e67c86d17fc586.woff2") format("woff2"),
       url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_i4.c9b6dcbfa43622b39a5990002775a8381942ae38.woff") format("woff");
}

  @font-face {
  font-family: "Nunito Sans";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_i6.e62a4aa1de9af615155fca680231620b75369d24.woff2") format("woff2"),
       url("//econugenics.com/cdn/fonts/nunito_sans/nunitosans_i6.84ec3dfef4c401afbcd538286a9d65b772072e4b.woff") format("woff");
}

</style><link href="//econugenics.com/cdn/shop/t/81/assets/econugenics.css?v=35317018387928631681758727199" rel="stylesheet" type="text/css" media="all" />



  <link href="//econugenics.com/cdn/shop/t/81/assets/main-BPphN6PN.css" rel="stylesheet" type="text/css" media="all" />




  <script src="//econugenics.com/cdn/shop/t/81/assets/main-BOdG7gsV.js" type="module" crossorigin="anonymous"></script>
  <link rel="modulepreload" href="//econugenics.com/cdn/shop/t/81/assets/modulepreload-polyfill-B5Qt9EMX.js" crossorigin="anonymous">
  <link href="//econugenics.com/cdn/shop/t/81/assets/main-DSVwHv2T.css" rel="stylesheet" type="text/css" media="all" />

<style data-shopify>:root {
      --typeHeaderPrimary: 'Gellix';
      --typeHeaderFallback: 'Nunito Sans';
      --typeHeaderSize: 32px;
      --typeHeaderWeight: 500;
      --typeButtonWeight: 500;
      --typeHeaderLineHeight: 1;
      --typeHeaderSpacing: 0.0em;
      --typeBasePrimary: 'Gellix';
      --typeBaseFallback: 'Nunito Sans';
      --typeBaseSize: 16px;
      --typeBaseWeight: 400;
      --typeBaseLineHeight: 1.6;
      --typeBaseSpacing: 0.025em;
      --iconWeight: 4px ;
      --iconLinecaps: miter;
    }

    


    .skrim__item-content .skrim__overlay:after {
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 30%, rgba(0, 0, 0, 0.62) 100%);
    }

    .placeholder-content {
      background-image: linear-gradient(100deg, #ffffff 40%, #f7f7f7 63%, #ffffff 79%);
    }

    /* Color scheme variables imported from Dawn theme */

    
    :root,
    .color-scheme-1 {
    --color-background: 255,255,255;
    
      --gradient-background: #ffffff;
    

    
    --alpha: 1.0;
    --color-heading: 0,0,0;
    --color-foreground: 0,0,0;
    --color-background-contrast: 191,191,191;
    --color-shadow: 0,0,0;
    --color-button: 43,85,76;
    --color-button-text: 236,242,212;
    --color-secondary-button: 255,255,255;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 0,0,0;
    --color-badge-background: 255,255,255;
    --color-badge-border: 0,0,0;
    --payment-terms-background-color: rgb(255 255 255);
    }

      body, .color-scheme-1 :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  
    
    .color-scheme-2 {
    --color-background: 51,51,51;
    
      --gradient-background: #333333;
    

    
    --alpha: 1.0;
    --color-heading: 255,255,255;
    --color-foreground: 255,255,255;
    --color-background-contrast: 64,64,64;
    --color-shadow: 0,0,0;
    --color-button: 18,18,18;
    --color-button-text: 246,248,250;
    --color-secondary-button: 51,51,51;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 255,255,255;
    --color-badge-background: 51,51,51;
    --color-badge-border: 255,255,255;
    --payment-terms-background-color: rgb(51 51 51);
    }

      body, .color-scheme-1, .color-scheme-2 :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  
    
    .color-scheme-3 {
    --color-background: 249,249,249;
    
      --gradient-background: #f9f9f9;
    

    
    --alpha: 1.0;
    --color-heading: 0,0,0;
    --color-foreground: 0,0,0;
    --color-background-contrast: 185,185,185;
    --color-shadow: 0,0,0;
    --color-button: 0,0,0;
    --color-button-text: 255,255,255;
    --color-secondary-button: 249,249,249;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 0,0,0;
    --color-badge-background: 249,249,249;
    --color-badge-border: 0,0,0;
    --payment-terms-background-color: rgb(249 249 249);
    }

      body, .color-scheme-1, .color-scheme-2, .color-scheme-3 :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  
    
    .color-scheme-c82d4956-6665-4824-9d05-f3b5bb098a22 {
    --color-background: 0,0,0;
    
      --gradient-background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 100%);
    

    
    --alpha: 0.0;
    --color-heading: 255,255,255;
    --color-foreground: 0,0,0;
    --color-background-contrast: 128,128,128;
    --color-shadow: 0,0,0;
    --color-button: 0,0,0;
    --color-button-text: 255,255,255;
    --color-secondary-button: 0,0,0;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 0,0,0;
    --color-badge-background: 0,0,0;
    --color-badge-border: 0,0,0;
    --payment-terms-background-color: rgb(0 0 0);
    }

      body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-c82d4956-6665-4824-9d05-f3b5bb098a22 :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  
    
    .color-scheme-da36eb97-f207-4db6-8f03-ea900a450b3e {
    --color-background: 0,0,0;
    
      --gradient-background: rgba(0,0,0,0);
    

    
    --alpha: 0.0;
    --color-heading: 125,196,135;
    --color-foreground: 255,255,255;
    --color-background-contrast: 128,128,128;
    --color-shadow: 0,0,0;
    --color-button: 0,0,0;
    --color-button-text: 255,255,255;
    --color-secondary-button: 0,0,0;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 255,255,255;
    --color-badge-background: 0,0,0;
    --color-badge-border: 255,255,255;
    --payment-terms-background-color: rgb(0 0 0);
    }

      body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-c82d4956-6665-4824-9d05-f3b5bb098a22, .color-scheme-da36eb97-f207-4db6-8f03-ea900a450b3e :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  
    
    .color-scheme-35f2f808-f831-4ba4-9a4a-b207d7f7b3b3 {
    --color-background: 255,255,255;
    
      --gradient-background: #ffffff;
    

    
    --alpha: 1.0;
    --color-heading: 236,242,212;
    --color-foreground: 236,242,212;
    --color-background-contrast: 191,191,191;
    --color-shadow: 0,0,0;
    --color-button: 236,242,212;
    --color-button-text: 43,85,76;
    --color-secondary-button: 255,255,255;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 236,242,212;
    --color-badge-background: 255,255,255;
    --color-badge-border: 236,242,212;
    --payment-terms-background-color: rgb(255 255 255);
    }

      body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-c82d4956-6665-4824-9d05-f3b5bb098a22, .color-scheme-da36eb97-f207-4db6-8f03-ea900a450b3e, .color-scheme-35f2f808-f831-4ba4-9a4a-b207d7f7b3b3 :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  
    
    .color-scheme-afe46ab5-082c-4c46-baf7-5fa578ab1291 {
    --color-background: 255,255,255;
    
      --gradient-background: #ffffff;
    

    
    --alpha: 1.0;
    --color-heading: 236,242,212;
    --color-foreground: 236,242,212;
    --color-background-contrast: 191,191,191;
    --color-shadow: 0,0,0;
    --color-button: 230,106,0;
    --color-button-text: 236,242,212;
    --color-secondary-button: 255,255,255;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 236,242,212;
    --color-badge-background: 255,255,255;
    --color-badge-border: 236,242,212;
    --payment-terms-background-color: rgb(255 255 255);
    }

      body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-c82d4956-6665-4824-9d05-f3b5bb098a22, .color-scheme-da36eb97-f207-4db6-8f03-ea900a450b3e, .color-scheme-35f2f808-f831-4ba4-9a4a-b207d7f7b3b3, .color-scheme-afe46ab5-082c-4c46-baf7-5fa578ab1291 :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  
    
    .color-scheme-9d496c4f-5cf7-4b54-bad8-84e873ee33a5 {
    --color-background: 43,85,76;
    
      --gradient-background: #2b554c;
    

    
    --alpha: 1.0;
    --color-heading: 236,242,212;
    --color-foreground: 236,242,212;
    --color-background-contrast: 0,0,0;
    --color-shadow: 0,0,0;
    --color-button: 43,85,76;
    --color-button-text: 236,242,212;
    --color-secondary-button: 43,85,76;
    --color-secondary-button-text: 0,0,0;
    --color-link: 0,0,0;
    --color-badge-foreground: 236,242,212;
    --color-badge-background: 43,85,76;
    --color-badge-border: 236,242,212;
    --payment-terms-background-color: rgb(43 85 76);
    }

      body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-c82d4956-6665-4824-9d05-f3b5bb098a22, .color-scheme-da36eb97-f207-4db6-8f03-ea900a450b3e, .color-scheme-35f2f808-f831-4ba4-9a4a-b207d7f7b3b3, .color-scheme-afe46ab5-082c-4c46-baf7-5fa578ab1291, .color-scheme-9d496c4f-5cf7-4b54-bad8-84e873ee33a5 :is(h1, h2, h3, h4, h5, h6) {
  color: rgba(var(--color-heading), 1);
  }
  

  body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-c82d4956-6665-4824-9d05-f3b5bb098a22, .color-scheme-da36eb97-f207-4db6-8f03-ea900a450b3e, .color-scheme-35f2f808-f831-4ba4-9a4a-b207d7f7b3b3, .color-scheme-afe46ab5-082c-4c46-baf7-5fa578ab1291, .color-scheme-9d496c4f-5cf7-4b54-bad8-84e873ee33a5 {
  color: rgba(var(--color-foreground), 1);
  background-color: rgba(var(--color-background), var(--alpha));
  }</style><style>
      [class*="shg"] ul {
  list-style: disc;
        margin: 0 0 20px 40px;
    padding: 0;
}
    </style>
    <script>
      document.documentElement.className = document.documentElement.className.replace('no-js', 'js');

      window.theme = window.theme || {};
      theme.routes = {
        home: "/",
        cart: "/cart.js",
        cartPage: "/cart",
        cartAdd: "/cart/add.js",
        cartChange: "/cart/change.js"
      };
      theme.strings = {
        soldOut: "Sold Out",
        unavailable: "Unavailable",
        inStockLabel: "In stock, ready to ship",
        stockLabel: "Low stock - [count] items left",
        willNotShipUntil: "Ready to ship [date]",
        willBeInStockAfter: "Back in stock [date]",
        waitingForStock: "Inventory on the way",
        cartSavings: "You're saving [savings]",
        cartEmpty: "Your cart is currently empty.",
        cartTermsConfirmation: "You must agree with the terms and conditions of sales to check out",
        searchCollections: "Collections:",
        searchPages: "Pages:",
        searchArticles: "Articles:"
      };
      theme.settings = {
        dynamicVariantsEnable: true,
        cartType: "page",
        isCustomerTemplate:
          false
        ,
        moneyFormat: "${{amount}}",
        predictiveSearch: true,
        predictiveSearchType: "product,article",
        quickView: false,
        themeName: 'ecoNugenics',
        themeVersion: "5.0"
      };
    </script><script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="xwPzJO3VftAkc0zHeiB-K16A9qgtn5WfG2jLGDcFa1U">
<meta name="facebook-domain-verification" content="7jjzkbze576dskpf967clbj407zafj">
<meta name="facebook-domain-verification" content="hqv5nbzwmga3amrnh6g59s304oaviv">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/6218154055/digital_wallets/dialog">
<link rel="alternate" type="application/atom+xml" title="Feed" href="/blogs/news.atom" />
<link rel="next" href="/blogs/news?page=2">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
<script id="shopify-features" type="application/json">{"accessToken":"b67bda129f29413743dbaaa5bceb315d","betas":["rich-media-storefront-analytics"],"domain":"econugenics.com","predictiveSearch":true,"shopId":6218154055,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "econugenics.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"USD","rate":"1.0"};
Shopify.country = "US";
Shopify.theme = {"name":"eco-redesign\/eco-main","id":141036421358,"schema_name":"ecoNugenics by Jan Veroti","schema_version":"5.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "econugenics.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</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 id="shop-js-analytics" type="application/json">{"pageType":"blog"}</script>
<script defer="defer" async type="module" src="//econugenics.com/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_dlpDe4U9.en.esm.js"></script>
<script defer="defer" async type="module" src="//econugenics.com/cdn/shopifycloud/shop-js/modules/v2/chunk.common_FunKbpTJ.esm.js"></script>
<script type="module">
  await import("//econugenics.com/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_dlpDe4U9.en.esm.js");
await import("//econugenics.com/cdn/shopifycloud/shop-js/modules/v2/chunk.common_FunKbpTJ.esm.js");

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

</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/static.klaviyo.com\/onsite\/js\/klaviyo.js?company_id=SY9r5c\u0026shop=econugenics.myshopify.com","https:\/\/static.klaviyo.com\/onsite\/js\/klaviyo.js?company_id=SY9r5c\u0026shop=econugenics.myshopify.com","","https:\/\/services.nofraud.com\/js\/device.js?shop=econugenics.myshopify.com","https:\/\/gdprcdn.b-cdn.net\/js\/gdpr_cookie_consent.min.js?shop=econugenics.myshopify.com","https:\/\/static.rechargecdn.com\/assets\/js\/widget.min.js?shop=econugenics.myshopify.com","https:\/\/loox.io\/widget\/VJ-Neas1k3\/loox.1644608979943.js?shop=econugenics.myshopify.com","https:\/\/econugenics.postaffiliatepro.com\/plugins\/Shopify\/shopify.php?ac=getCode\u0026shop=econugenics.myshopify.com","https:\/\/na.shgcdn3.com\/pixel-collector.js?shop=econugenics.myshopify.com","https:\/\/admin.revenuehunt.com\/embed.js?shop=econugenics.myshopify.com","https:\/\/dr4qe3ddw9y32.cloudfront.net\/awin-shopify-integration-code.js?aid=118927\u0026v=shopifyApp_5.2.3\u0026ts=1755725492876\u0026shop=econugenics.myshopify.com","https:\/\/widget.wickedreports.com\/v2\/3562\/wr-90f6e37cdd5bd647a1bf9b4c91d67636.js?shop=econugenics.myshopify.com","https:\/\/cdn.zigpoll.com\/zigpoll-shopify-embed.js?accountId=64ff4037923f1b1184789098\u0026shop=econugenics.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);
    }
  };
  if(window.attachEvent) {
    window.attachEvent('onload', asyncLoad);
  } else {
    window.addEventListener('load', asyncLoad, false);
  }
})();</script>
<script id="__st">var __st={"a":6218154055,"offset":-28800,"reqid":"27be0cbe-b370-45ea-9283-8f9b71184845-1765813661","pageurl":"econugenics.com\/blogs\/news","s":"blogs-24402559047","u":"adfcde160b4a","p":"blog","rtyp":"blog","rid":24402559047};</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-52AcMU7V7pcBOXWImdc/TAGTFKeNjmkeM1Pvks/DTgc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//econugenics.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-81c60534.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.src="https://econugenics.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>
<link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://econugenics.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>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<script
      src="//econugenics.com/cdn/shop/t/81/assets/vendor-scripts-v14.js"
      defer="defer"
    ></script><script src="//econugenics.com/cdn/shop/t/81/assets/theme.js?v=98548539019321040861764680343" defer="defer"></script><!-- begin-boost-pfs-filter-css -->
    <link rel="preload stylesheet" href="//econugenics.com/cdn/shop/t/81/assets/boost-pfs-instant-search.css?v=83047141173087674691713533636" as="style"><link href="//econugenics.com/cdn/shop/t/81/assets/boost-pfs-custom.css?v=31515830619084048841713533646" rel="stylesheet" type="text/css" media="all" />
<style data-id="boost-pfs-style">
    .boost-pfs-filter-option-title-text {color: rgba(0,0,0,1);font-weight: 600;text-transform: uppercase;font-family: "Gellix";}

   .boost-pfs-filter-tree-v .boost-pfs-filter-option-title-text:before {border-top-color: rgba(0,0,0,1);}
    .boost-pfs-filter-tree-v .boost-pfs-filter-option.boost-pfs-filter-option-collapsed .boost-pfs-filter-option-title-text:before {border-bottom-color: rgba(0,0,0,1);}
    .boost-pfs-filter-tree-h .boost-pfs-filter-option-title-heading:before {border-right-color: rgba(0,0,0,1);
        border-bottom-color: rgba(0,0,0,1);}

    .boost-pfs-filter-refine-by .boost-pfs-filter-option-title h3 {color: rgba(41,41,41,1);}

    .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item button,
    .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item .boost-pfs-filter-button,
    .boost-pfs-filter-option-range-amount input,
    .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item,
    .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item,
    .boost-pfs-filter-refine-by .boost-pfs-filter-option-title,
    .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item>a,
    .boost-pfs-filter-refine-by>span,
    .boost-pfs-filter-clear,
    .boost-pfs-filter-clear-all{color: rgba(41,41,41,1);font-size: 13px;}
    .boost-pfs-filter-tree-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear .refine-by-type,
    .boost-pfs-filter-refine-by-wrapper-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear .refine-by-type {color: rgba(41,41,41,1);}

    .boost-pfs-filter-option-multi-level-collections .boost-pfs-filter-option-multi-level-list .boost-pfs-filter-option-item .boost-pfs-filter-button-arrow .boost-pfs-arrow:before,
    .boost-pfs-filter-option-multi-level-tag .boost-pfs-filter-option-multi-level-list .boost-pfs-filter-option-item .boost-pfs-filter-button-arrow .boost-pfs-arrow:before {border-right: 1px solid rgba(41,41,41,1);
        border-bottom: 1px solid rgba(41,41,41,1);}

    .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before,
    .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before,
    .boost-pfs-filter-refine-by-wrapper-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-refine-by-wrapper-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before,
    .boost-pfs-filter-tree-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-tree-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before {border-top-color: rgba(41,41,41,1);}
    .boost-pfs-filter-option-range-slider .noUi-value-horizontal {color: rgba(41,41,41,1);}

    .boost-pfs-filter-tree-mobile-button button,
    .boost-pfs-filter-top-sorting-mobile button {font-weight: 600 !important;text-transform: uppercase !important;}
    .boost-pfs-filter-top-sorting-mobile button>span:after {}
  </style>
    <!-- end-boost-pfs-filter-css -->

    

<script type="text/javascript">
  
    window.SHG_CUSTOMER = null;
  
</script>








    <script>var loox_global_hash = '1765742286010';</script><style>.loox-reviews-default { max-width: 1200px; margin: 0 auto; }.loox-rating .loox-icon { color:#f3c200; }
:root { --lxs-rating-icon-color: #f3c200; }</style>

    <script>
    
    
    
    
    var gsf_conversion_data = {page_type : '', event : '', data : {shop_currency : "USD"}};
    
</script>

    <script type="text/javascript">
      var _conv_page_type = 'blog';
      var _conv_category_id = '';
      var _conv_category_name = '';
      var _conv_product_sku = '';
      var _conv_product_name = '';
      var _conv_product_price = '';
      var _conv_customer_id = '';
      var _conv_custom_v1 = '';
      var _conv_custom_v2 = '';
      var _conv_custom_v3 = '0';
      var _conv_custom_v4 = '0.00';
    </script>

    
      <style>
          a:focus-visible,
          button:focus-visible,
          .site-nav__link:focus-visible,
          .btn:focus-visible {
              outline: 2px solid #20ac70;
              outline-offset: 2px;
          }
          a:focus:not(:focus-visible),
          button:focus:not(:focus-visible) {
              outline: none;
          }
          .boost-pfs-filter-option-title-heading:focus:not(:focus-visible) {
              outline: none;
          }
          .boost-pfs-filter-option-title-heading:focus-visible {
              outline: 2px solid #20ac70;
              outline-offset: 2px;
          }
          button:focus:not(:focus-visible),
          a:focus:not(:focus-visible) {
              outline: none;
          }
          button:focus-visible,
          a:focus-visible {
              outline: 2px solid #20ac70;
              outline-offset: 2px;
          }
      </style>
  <!-- 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/SY9r5c/klaviyo.js?company_id=SY9r5c"></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>







<!-- END app block --><!-- BEGIN app block: shopify://apps/checkmate/blocks/checked_network/697a3444-1374-4f13-ba8c-ec03db25ebf0 -->
  

  <script
    src='https://econugenics.myshopify.com/apps/cm/v1/load?source=embed'
    async
  ></script>



<!-- END app block --><!-- BEGIN app block: shopify://apps/provely/blocks/app-embed/c3bbd027-ae96-449f-8d8b-336c0bf32990 --><script id="provely-script" src="https://provely-public.s3.amazonaws.com/scripts/provely-shopify.js?shopId=6218154055&shop=econugenics.com" defer></script>

<!-- END app block --><!-- BEGIN app block: shopify://apps/stape-conversion-tracking/blocks/gtm/7e13c847-7971-409d-8fe0-29ec14d5f048 --><script>
  window.lsData = {};
  window.dataLayer = window.dataLayer || [];
  window.addEventListener("message", (event) => {
    if (event.data?.event) {
      window.dataLayer.push(event.data);
    }
  });
  window.dataShopStape = {
    shop: "econugenics.com",
    shopId: "6218154055",
  }
</script>
<script src="https://cdn.shopify.com/extensions/019ae668-a431-7e51-bf8d-74ee3ce8e01f/stape-remix-22/assets/custom_user_id.js" defer></script>

<!-- END app block --><script src="https://cdn.shopify.com/extensions/019ae668-a431-7e51-bf8d-74ee3ce8e01f/stape-remix-22/assets/widget.js" type="text/javascript" defer="defer"></script>
<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: 6218154055,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 id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;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=function(){var e={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+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=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,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),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:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?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 m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 6218154055,storefrontBaseUrl: "https://econugenics.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"],webPixelsConfigList: [{"id":"1496678638","configuration":"{\"projectId\":\"lqx36vm7ql\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"737156edc1fafd4538f270df27821f1c","type":"APP","apiClientId":240074326017,"privacyPurposes":[],"capabilities":["advanced_dom_events"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"]}},{"id":"1378025710","configuration":"{ \"accountId\": \"econugenics.myshopify.com\" }","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"96df8a978e115a23fcb7acea8fbeef30","type":"APP","apiClientId":94099111937,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"1240072430","configuration":"{\"advertiserId\":\"118927\",\"shopDomain\":\"econugenics.myshopify.com\",\"appVersion\":\"shopifyApp_5.2.3\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"12028261640958a57505ca3bca7d4e66","type":"APP","apiClientId":2887701,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"]}},{"id":"1181155566","configuration":"{\"accountID\":\"6218154055\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"ce7f0f30cd0b62616541cfaf2daba9cc","type":"APP","apiClientId":10250649601,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"1126138094","configuration":"{\"pixelCode\":\"D1TBCF3C77U55BHHM1L0\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"847151342","configuration":"{\"accountID\":\"1220658\",\"workspaceId\":\"f5d85e7d-4d58-4df4-b144-f0651ddac554\",\"projectId\":\"0bd5e5c4-f045-4543-a767-c4faeac5524b\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"52fc54f4608fa63b89d7f7c4f9344a98","type":"APP","apiClientId":5461967,"privacyPurposes":["ANALYTICS"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":[]}},{"id":"827326702","configuration":"{\"store_id\":\"107074\",\"environment\":\"prod\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"e1b3f843f8a910884b33e33e956dd640","type":"APP","apiClientId":294517,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"799932654","configuration":"{\"shopUrl\":\"econugenics.myshopify.com\",\"apiUrl\":\"https:\\\/\\\/services.nofraud.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"827d32b2aa36240efdd25ff13c076852","type":"APP","apiClientId":1380557,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"764903662","configuration":"{\"ti\":\"223002862\",\"endpoint\":\"https:\/\/bat.bing.com\/action\/0\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"5ee93563fe31b11d2d65e2f09a5229dc","type":"APP","apiClientId":2997493,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"]}},{"id":"753107182","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\",\\\"GT-PBGVMTMX\\\"],\\\"target_country\\\":\\\"US\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\/rObDCPj86f8BEPrb3-0D\\\"]},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\/mRvcCPv86f8BEPrb3-0D\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\/kWCXCPL86f8BEPrb3-0D\\\",\\\"MC-4SJ8Q4FH1Q\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\/yLr2CO_86f8BEPrb3-0D\\\",\\\"MC-4SJ8Q4FH1Q\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\/sqCrCOz86f8BEPrb3-0D\\\",\\\"MC-4SJ8Q4FH1Q\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\/NNMGCP786f8BEPrb3-0D\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-JTFRELKNN8\\\",\\\"AW-1035464186\\\/8OyiCPX86f8BEPrb3-0D\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"b2a88bafab3e21179ed38636efcd8a93","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"230785262","configuration":"{\"shopDomain\":\"econugenics.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"7f2de0ecb6b420d2fa07cf04a37a4dbf","type":"APP","apiClientId":2436932,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_personal_data"]}},{"id":"175800558","configuration":"{\"site_id\":\"4d417616-a85a-4d57-937e-26212d09a43f\",\"analytics_endpoint\":\"https:\\\/\\\/na.shgcdn3.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"695709fc3f146fa50a25299517a954f2","type":"APP","apiClientId":1158168,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"]}},{"id":"166035694","configuration":"{\"pixel_id\":\"2210573185708776\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"ca16bc87fe92b6042fbaa3acc2fbdaa6","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"60653806","configuration":"{\"tagID\":\"2612809079133\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"18031546ee651571ed29edbe71a3550b","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"26312942","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"9","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Amazon"},{"id":"50921710","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"DirectAvenueTag"},{"id":"52461806","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"6","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"ASONTV"},{"id":"101122286","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":[],"name":"Wicked Reports"},{"id":"103710958","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":[],"name":"Stape Data Layer"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"ecoNugenics","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"econugenics.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/econugenics.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://econugenics.com/cdn","ae1676cfwd2530674p4253c800m34e853cb",{"modern":"","legacy":""},{"shopId":"6218154055","storefrontBaseUrl":"https:\/\/econugenics.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\"]","isMerchantRequest":"false","hashVersion":"ae1676cfwd2530674p4253c800m34e853cb","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":24402559047}};
  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 || [];
    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);
        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: 6218154055,
      theme_id: 141036421358,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//econugenics.com/cdn/s/trekkie.storefront.1a0636ab3186d698599065cb6ce9903ebacdd71a.min.js"});

        };
        scriptFallback.async = true;
        scriptFallback.src = '//econugenics.com/cdn/s/trekkie.storefront.1a0636ab3186d698599065cb6ce9903ebacdd71a.min.js';
        first.parentNode.insertBefore(scriptFallback, first);
      };
      script.async = true;
      script.src = '//econugenics.com/cdn/s/trekkie.storefront.1a0636ab3186d698599065cb6ce9903ebacdd71a.min.js';
      first.parentNode.insertBefore(script, first);
    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":6218154055,"isMerchantRequest":null,"themeId":141036421358,"themeCityHash":"3653937410512966680","contentLanguage":"en","currency":"USD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"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":24402559047,"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 = "//econugenics.com/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);

})();</script>
  <script>
  if (!window.ga || (window.ga && typeof window.ga !== 'function')) {
    window.ga = function ga() {
      (window.ga.q = window.ga.q || []).push(arguments);
      if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
        window.Shopify.analytics.publish("ga_stub_called", {}, {sendTo: "google_osp_migration"});
      }
      console.error("Shopify's Google Analytics stub called with:", Array.from(arguments), "\nSee https://help.shopify.com/manual/promoting-marketing/pixels/pixel-migration#google for more information.");
    };
    if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
      window.Shopify.analytics.publish("ga_stub_initialized", {}, {sendTo: "google_osp_migration"});
    }
  }
</script>
<script
  defer
  src="https://econugenics.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-2.1.2.min.js"
  data-application="storefront-renderer"
  data-shop-id="6218154055"
  data-render-region="gcp-europe-west1"
  data-page-type="blog"
  data-theme-instance-id="141036421358"
  data-theme-name="ecoNugenics by Jan Veroti"
  data-theme-version="5.0"
  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://econugenics.com/api/collect"
></script>
</head>

  <body
    class="template-blog theme--141036421358 theme-name--eco-redesign-eco-main"
    data-transitions="false"
    data-type_header_capitalize="false"
    data-type_base_accent_transform="true"
    data-type_header_accent_transform="true"
    data-animate_sections="true"
    data-animate_underlines="false"
    data-animate_buttons="false"
    data-animate_images="true"
    data-animate_page_transition_style="page-slow-fade"
    data-type_header_text_alignment="true"
    data-animate_images_style="zoom-fade"
  >
    <!-- Google Tag Manager (noscript) -->
    <noscript>
      <iframe
        src="https://www.googletagmanager.com/ns.html?id=GTM-N3Z5GZP"
        height="0"
        width="0"
        style="display:none;visibility:hidden"
      ></iframe>
    </noscript>
    <!-- End Google Tag Manager (noscript) -->

    

    <a class="in-page-link visually-hidden skip-link" href="#MainContent">Skip to content</a>

    <div id="PageContainer" class="page-container">
      <div class="transition-body"><div id="shopify-section-header" class="shopify-section">
<div id="NavDrawer" class="drawer drawer--right">
  <div class="drawer__contents">
    <div class="drawer__fixed-header">
      <div class="drawer__header appear-animation appear-delay-2">
        <div class="drawer__title">Navigation</div>
        <div class="drawer__close">
          <button type="button" class="drawer__close-button js-drawer-close">
            <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 64 64"><path d="M19 17.61l27.12 27.13m0-27.12L19 44.74"/></svg>
            <span class="icon__fallback-text">Close menu</span>
          </button>
        </div>
      </div>
    </div>
    <div class="drawer__scrollable" role="navigation" aria-label="Primary">
      <ul class="mobile-nav">
        
<li class="mobile-nav__item appear-animation appear-delay-3"><a href="/collections/shop" class="mobile-nav__link">SHOP ALL</a></li>
<li class="mobile-nav__item appear-animation appear-delay-4"><div class="mobile-nav__has-sublist"><a href="/collections/pectasol" class="mobile-nav__link" id="Label-collections-pectasol2">
                    PECTASOL
                  </a>
                  <div class="mobile-nav__toggle">
                    <button type="button" class="collapsible-trigger collapsible--auto-height" aria-controls="Linklist-collections-pectasol2" aria-labelledby="Label-collections-pectasol2"><span class="collapsible-trigger__icon collapsible-trigger__icon--open" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg>
</span>
</button>
                  </div></div><div id="Linklist-collections-pectasol2" class="mobile-nav__sublist collapsible-content collapsible-content--all">
                <div class="collapsible-content__inner">
                  <ul class="mobile-nav__sublist"><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><a href="/products/pectasol-powder" class="mobile-nav__link" id="Sublabel-products-pectasol-powder1">
                              Powder
                            </a></div></li><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><a href="/products/pectasol-capsules" class="mobile-nav__link" id="Sublabel-products-pectasol-capsules2">
                              Capsules
                            </a></div></li><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><a href="/products/pectasol-chewables" class="mobile-nav__link" id="Sublabel-products-pectasol-chewables3">
                              Chewables
                            </a></div></li><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><a href="/products/pectasol-stick-packs" class="mobile-nav__link" id="Sublabel-products-pectasol-stick-packs4">
                              Stick-Packs
                            </a></div></li></ul></div>
              </div></li>
<li class="mobile-nav__item mobile-nav__item--active appear-animation appear-delay-5"><div class="mobile-nav__has-sublist"><button type="button" class="mobile-nav__link--button collapsible-trigger collapsible--auto-height" aria-controls="Linklist-blogs-news3">
                    <span class="mobile-nav__faux-link">LEARN</span>
                    <div class="mobile-nav__toggle">
                      <span><span class="collapsible-trigger__icon collapsible-trigger__icon--open" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg>
</span>
</span>
                    </div>
                  </button></div><div id="Linklist-blogs-news3" class="mobile-nav__sublist collapsible-content collapsible-content--all">
                <div class="collapsible-content__inner">
                  <ul class="mobile-nav__sublist"><li class="mobile-nav__item mobile-nav__item--active">
                        <div class="mobile-nav__child-item"><a href="/blogs/news" class="mobile-nav__link" id="Sublabel-blogs-news1">
                              BLOG
                            </a></div></li><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><button type="button" class="mobile-nav__link--button mobile-nav__link--button-small collapsible-trigger" aria-controls="Sublinklist-blogs-news3-pages-product-recommendation-quiz2">
                              <span class="mobile-nav__faux-link">QUIZZES</span>
                              <div class="mobile-nav__toggle">
                                <span><span class="collapsible-trigger__icon collapsible-trigger__icon--open collapsible-trigger__icon--circle" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-plus" viewBox="0 0 20 20"><path fill="#444" d="M17.409 8.929h-6.695V2.258c0-.566-.506-1.029-1.071-1.029s-1.071.463-1.071 1.029v6.671H1.967C1.401 8.929.938 9.435.938 10s.463 1.071 1.029 1.071h6.605V17.7c0 .566.506 1.029 1.071 1.029s1.071-.463 1.071-1.029v-6.629h6.695c.566 0 1.029-.506 1.029-1.071s-.463-1.071-1.029-1.071z"/></svg>
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-minus" viewBox="0 0 20 20"><path fill="#444" d="M17.543 11.029H2.1A1.032 1.032 0 0 1 1.071 10c0-.566.463-1.029 1.029-1.029h15.443c.566 0 1.029.463 1.029 1.029 0 .566-.463 1.029-1.029 1.029z"/></svg>
</span>
</span>
                              </div>
                            </button></div><div id="Sublinklist-blogs-news3-pages-product-recommendation-quiz2" class="mobile-nav__sublist collapsible-content collapsible-content--all" aria-labelledby="Sublabel-pages-product-recommendation-quiz2">
                            <div class="collapsible-content__inner">
                              <ul class="mobile-nav__grandchildlist"><li class="mobile-nav__item">
                                    <a href="/pages/product-recommendation-quiz" class="mobile-nav__link">
                                      FIND YOUR FORMULA
                                    </a>
                                  </li></ul>
                            </div>
                          </div></li><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><a href="/search" class="mobile-nav__link" id="Sublabel-search3">
                              HEALTH GUIDES
                            </a><button type="button" class="collapsible-trigger" aria-controls="Sublinklist-blogs-news3-search3" aria-labelledby="Sublabel-search3"><span class="collapsible-trigger__icon collapsible-trigger__icon--open collapsible-trigger__icon--circle" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-plus" viewBox="0 0 20 20"><path fill="#444" d="M17.409 8.929h-6.695V2.258c0-.566-.506-1.029-1.071-1.029s-1.071.463-1.071 1.029v6.671H1.967C1.401 8.929.938 9.435.938 10s.463 1.071 1.029 1.071h6.605V17.7c0 .566.506 1.029 1.071 1.029s1.071-.463 1.071-1.029v-6.629h6.695c.566 0 1.029-.506 1.029-1.071s-.463-1.071-1.029-1.071z"/></svg>
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-minus" viewBox="0 0 20 20"><path fill="#444" d="M17.543 11.029H2.1A1.032 1.032 0 0 1 1.071 10c0-.566.463-1.029 1.029-1.029h15.443c.566 0 1.029.463 1.029 1.029 0 .566-.463 1.029-1.029 1.029z"/></svg>
</span>
</button></div><div id="Sublinklist-blogs-news3-search3" class="mobile-nav__sublist collapsible-content collapsible-content--all" aria-labelledby="Sublabel-search3">
                            <div class="collapsible-content__inner">
                              <ul class="mobile-nav__grandchildlist"><li class="mobile-nav__item">
                                    <a href="/pages/ultimate-sleep-guide" class="mobile-nav__link">
                                      SLEEP GUIDE
                                    </a>
                                  </li><li class="mobile-nav__item">
                                    <a href="/pages/ultimate-detox-guide" class="mobile-nav__link">
                                      DETOX GUIDE
                                    </a>
                                  </li><li class="mobile-nav__item">
                                    <a href="/pages/ultimate-immunity-guide" class="mobile-nav__link">
                                      IMMUNITY GUIDE
                                    </a>
                                  </li><li class="mobile-nav__item">
                                    <a href="/pages/ultimate-digestion-guide" class="mobile-nav__link">
                                      DIGESTION GUIDE
                                    </a>
                                  </li></ul>
                            </div>
                          </div></li></ul></div>
              </div></li>
<li class="mobile-nav__item appear-animation appear-delay-6"><div class="mobile-nav__has-sublist"><a href="/pages/practitioners" class="mobile-nav__link" id="Label-pages-practitioners4">
                    PROFESSIONALS
                  </a>
                  <div class="mobile-nav__toggle">
                    <button type="button" class="collapsible-trigger collapsible--auto-height" aria-controls="Linklist-pages-practitioners4" aria-labelledby="Label-pages-practitioners4"><span class="collapsible-trigger__icon collapsible-trigger__icon--open" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg>
</span>
</button>
                  </div></div><div id="Linklist-pages-practitioners4" class="mobile-nav__sublist collapsible-content collapsible-content--all">
                <div class="collapsible-content__inner">
                  <ul class="mobile-nav__sublist"><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><a href="https://pro.econugenics.com/pages/practitioner-account-application" class="mobile-nav__link" id="Sublabel-https-pro-econugenics-com-pages-practitioner-account-application1">
                              Apply for An Account
                            </a></div></li><li class="mobile-nav__item">
                        <div class="mobile-nav__child-item"><a href="/pages/practitioners" class="mobile-nav__link" id="Sublabel-pages-practitioners2">
                              Testimonials
                            </a></div></li></ul></div>
              </div></li><li class="mobile-nav__item appear-animation appear-delay-7">
              <a href="/account/login" class="mobile-nav__link">Log in</a>
            </li><li class="mobile-nav__item appear-animation appear-delay-7" style="text-align:center;">
          <a href="/collections/best-sellers" class="mobile-nav__link" id="Label-Best-Sellers">
            <img src="https://cdn.shopify.com/s/files/1/0062/1815/4055/files/Best_Sellers_1.jpg?v=1698380036">
            <div style="padding:15px 0;">Achieve your health goals with our most popular products.</div>
            <span class="btn btn--black">Shop Best Sellers</button>
          </a>
        </li></ul></div>
  </div>
</div>

<style data-shopify>.site-nav__link,
    .site-nav__dropdown-link {
    font-size: 16px;
    }.site-header {
        border-bottom: 1px solid;
        border-bottom-color: #e5e5e5;
        }</style><div data-section-id="header" data-section-type="header">
    <div
      id="HeaderWrapper"
      class="header-wrapper"
    ><script id="utm-announcements-json" type="application/json">
  [
    
      {
        "parameter": "utm_medium",
        "value": "email",
        "text": "SUBSCRIBE TO SAVE AN EXTRA 15% + GET FREE DOMESTIC SHIPPING"
      },
    
      {
        "parameter": "utm_term",
        "value": "lindseyelmore_pectasol25",
        "text": "GET 20% OFF WITH CODE LINDSEY20"
      },
    
      {
        "parameter": "utm_term",
        "value": "ryansternagel_webinarjune25",
        "text": "GET 20% OFF WITH CODE STERN20"
      },
    
      {
        "parameter": "utm_medium",
        "value": "cpc",
        "text": "GET 25% OFF YOUR FIRST ORDER WITH CODE TRYECO25"
      },
    
      {
        "parameter": "wickedsource",
        "value": "Facebook",
        "text": "GET 25% OFF YOUR FIRST ORDER WITH CODE TRYECO25"
      }
    
  ]
</script>

<div class="announcement"><a href="/pages/eco-rewards" class="announcement__link">

  <span class="announcement__text announcement__text--open" data-text="20-off-your-first-order-with-code-20trynew">
    20% OFF YOUR FIRST ORDER WITH CODE 20TRYNEW
  </span></a></div>

<script>
  let overrideDynamicAnnouncement = false;

  function getQueryParams() {
    return window.location.search.substr(1)
      .split('&')
      .reduce(function(params, param) {
        var parts = param.split('=');
        if (parts[0]) {
          params[decodeURIComponent(parts[0])] = decodeURIComponent(parts[1] || '');
        }
        return params;
      }, {});
  }

  var params = getQueryParams();
  var announcementEl = document.querySelector('.announcement__text');
  var utmDataScript = document.getElementById('utm-announcements-json');
  var sessionKey = 'utm_announcement_text';

  function applyAnnouncement(text) {
    if (announcementEl && text) {
      announcementEl.textContent = text;
      announcementEl.setAttribute('data-text', text);
    }
  }

if (!overrideDynamicAnnouncement && utmDataScript) {
  var announcements = JSON.parse(utmDataScript.textContent);

  var match = announcements.find(entry => {
    return params[entry.parameter] &&
           params[entry.parameter].toLowerCase() === entry.value.toLowerCase();
  });

  if (match) {
    sessionStorage.setItem(sessionKey, match.text);
    applyAnnouncement(match.text);
  } else {
    var storedText = sessionStorage.getItem(sessionKey);
    if (storedText) {
      applyAnnouncement(storedText);
    }
  }
}
</script>


<header
        id="SiteHeader"
        class="site-header"
        data-sticky="true"
        data-overlay="false"
      >
        <div class="page-width">
          <div
            class="header-layout header-layout--left-center"
            data-logo-align="left"
          ><div class="header-item header-item--logo"><style data-shopify>.header-item--logo,
  .header-layout--left-center .header-item--logo,
  .header-layout--left-center .header-item--icons {
    -webkit-box-flex: 0 1 180px;
    -ms-flex: 0 1 180px;
    flex: 0 1 180px;
  }

  @media only screen and (min-width: 769px) {
    .header-item--logo,
    .header-layout--left-center .header-item--logo,
    .header-layout--left-center .header-item--icons {
      -webkit-box-flex: 0 0 280px;
      -ms-flex: 0 0 280px;
      flex: 0 0 auto;
    }
  }

  .site-header__logo a {
    max-width: 180px;
  }
  .is-light .site-header__logo .logo--inverted {
    max-width: 180px;
  }
  @media only screen and (min-width: 769px) {
    .site-header__logo a {
      max-width: 280px;
    }

    .is-light .site-header__logo .logo--inverted {
      max-width: 280px;
    }
  }</style><div id="LogoContainer" class="h1 site-header__logo" itemscope itemtype="http://schema.org/Organization">
  <a
    href="/"
    itemprop="url"
    class="site-header__logo-link  logo--has-inverted" aria-label="Go to homepage">
    
      
      
      
      
      
    
      
      
      
      
    <svg width="369" height="33" viewBox="0 0 369 33" fill="none" xmlns="http://www.w3.org/2000/svg">
      <g clip-path="url(#clip0_32_2283)">
        <path d="M365.513 4.62533V4.6008C365.944 4.4929 366.381 4.06618 366.381 3.37459C366.381 2.54077 365.812 1.99634 364.988 1.99634H363.335V6.6314H364.002V4.75285H364.895L365.822 6.6314H366.557L365.665 4.88528L365.508 4.62533H365.513ZM364.87 4.23294H364.002V2.55549H364.87C365.37 2.55549 365.694 2.85468 365.694 3.37459C365.694 3.89451 365.375 4.22803 364.87 4.22803V4.23294Z" fill="#231F20"/>
        <path d="M364.743 0C362.428 0 360.544 1.91288 360.544 4.31625C360.544 6.71961 362.423 8.64231 364.743 8.64231C367.063 8.64231 369 6.73923 369 4.31625C369 1.89326 367.112 0 364.743 0ZM364.743 7.99977C362.771 7.99977 361.25 6.3959 361.25 4.31625C361.25 2.2366 362.771 0.642532 364.743 0.642532C366.714 0.642532 368.308 2.25622 368.308 4.31625C368.308 6.37628 366.763 7.99977 364.743 7.99977Z" fill="#231F20"/>
        <path d="M4.4683 18.9131L14.0867 18.9278L14.0916 14.9304L4.4732 14.9206L4.47811 10.7809L15.4061 10.7907L15.411 6.79816L0.0196193 6.78345L0 27.1924L15.5385 27.2071L15.5434 23.2146L4.46339 23.1999L4.4683 18.9131Z" fill="#231F20"/>
        <path d="M37.9634 23.4402C34.4663 23.4402 32.0482 20.5218 32.0531 17.0198V16.9609C32.0531 13.4638 34.5349 10.6092 37.9781 10.6092C40.0185 10.6092 41.6224 11.4871 43.1919 12.9193L46.0515 9.62819C44.1582 7.75946 41.8578 6.47439 38.0075 6.46949C31.7392 6.46458 27.3592 11.2125 27.3543 17.0149V17.0737C27.3493 22.935 31.8029 27.575 37.8113 27.5799C41.7499 27.5799 44.0797 26.1869 46.1839 23.9454L43.3293 21.0564C41.7254 22.5132 40.2932 23.4451 37.9634 23.4402Z" fill="#231F20"/>
        <path d="M67.9269 6.50391C61.6291 6.49901 57.048 11.2469 57.0431 17.0444V17.1032C57.0382 22.9057 61.5506 27.6045 67.8484 27.6094C74.1462 27.6143 78.7273 22.8664 78.7322 17.0689V17.0101C78.7371 11.2076 74.2247 6.50881 67.9269 6.50391ZM74.0383 17.1229C74.0383 20.62 71.5271 23.4746 67.9122 23.4697C64.2973 23.4697 61.7321 20.5464 61.737 17.0493V16.9904C61.737 13.4933 64.2483 10.6387 67.8631 10.6387C71.478 10.6387 74.0432 13.562 74.0383 17.0591V17.118V17.1229Z" fill="#231F20"/>
        <path d="M160.074 24.7006L146.012 6.93042H144.584L144.56 27.3345L146.022 27.3394L146.036 9.20626L160.393 27.3541H161.531L161.55 6.94513H160.094L160.074 24.7006Z" fill="#231F20"/>
        <path d="M191.22 18.8983C191.22 23.8228 188.561 26.3291 184.421 26.3242C180.105 26.3242 177.515 23.5481 177.52 18.7365L177.53 6.95996H176.015L176.005 18.8836C176.005 24.5977 179.468 27.6927 184.363 27.6976C189.321 27.6976 192.735 24.5879 192.74 18.7266L192.75 6.97958H191.234L191.224 18.9032L191.22 18.8983Z" fill="#231F20"/>
        <path d="M216.327 18.2263H223.15L223.145 24.0924C221.659 25.3432 219.236 26.4222 216.641 26.4173C211.192 26.4124 207.896 22.4738 207.906 17.1962V17.1374C207.906 12.2129 211.383 8.0144 216.342 8.01931C219.432 8.01931 221.296 9.07385 222.9 10.4766L223.896 9.34361C221.855 7.65144 219.761 6.65577 216.435 6.65577C210.344 6.65086 206.341 11.6881 206.341 17.1962V17.2551C206.336 22.9987 210.147 27.7563 216.592 27.7612C219.918 27.7612 222.772 26.3388 224.612 24.7104V16.8382L216.342 16.8284V18.2263H216.327Z" fill="#231F20"/>
        <path d="M240.327 17.8388L252.015 17.8535L252.02 16.4557L240.327 16.441L240.337 8.42646L253.339 8.44118V7.0384L238.821 7.02368L238.801 27.4327L253.467 27.4474V26.0446L240.317 26.0348L240.327 17.8388Z" fill="#231F20"/>
        <path d="M282.567 24.8234L268.505 7.05322H267.073L267.053 27.4622H268.51L268.529 9.32906L282.886 27.4769H284.024L284.043 7.07284L282.587 7.06794L282.567 24.8234Z" fill="#231F20"/>
        <path d="M299.049 7.08445L299.017 27.4934L300.532 27.4958L300.564 7.08683L299.049 7.08445Z" fill="#231F20"/>
        <path d="M324.842 26.5007C319.971 26.5007 316.219 22.4689 316.224 17.3091V17.2502C316.224 12.1197 319.937 8.12722 324.832 8.13212C327.893 8.13212 329.933 9.42209 331.709 11.1437L332.788 10.0352C330.693 8.1076 328.506 6.76368 324.861 6.76368C318.971 6.75877 314.65 11.5361 314.645 17.3091V17.3679C314.64 23.2292 318.951 27.8691 324.778 27.8741C328.393 27.8741 330.728 26.4517 332.886 24.3279L331.865 23.3371C329.791 25.3775 327.78 26.5105 324.837 26.5105L324.842 26.5007Z" fill="#231F20"/>
        <path d="M352.785 16.5833C347.949 15.5876 346.84 14.2731 346.845 12.115V12.0561C346.845 9.92744 348.831 8.21075 351.833 8.21075C354.08 8.21075 356.002 8.85819 357.925 10.5209L358.886 9.32415C356.817 7.66141 354.864 6.84231 351.892 6.8374C348.106 6.8374 345.329 9.16229 345.329 12.1935V12.2523C345.329 15.3424 347.306 17.0051 352.206 18.0008C356.841 18.9376 357.974 20.1932 357.974 22.3514V22.4102C357.974 24.74 355.87 26.4567 352.809 26.4567C349.808 26.4567 347.738 25.4905 345.496 23.4157L344.5 24.5536C346.948 26.7412 349.454 27.8252 352.721 27.8252C356.66 27.8252 359.49 25.5591 359.49 22.2631V22.2042C359.49 19.2319 357.513 17.5397 352.79 16.5686L352.785 16.5833Z" fill="#231F20"/>
        <path d="M121.669 5.817C115.484 1.21137 97.0273 2.48663 94.9379 2.64358C94.31 2.69263 93.7411 3.01144 93.3634 3.51174C92.9857 4.01693 92.8484 4.65456 92.9808 5.26766C93.4223 7.31298 97.4835 25.3676 103.664 29.9782C106.293 31.9352 109.412 32.9652 112.634 32.9652C113.365 32.9652 114.106 32.9113 114.842 32.8034C118.819 32.2197 122.341 30.1253 124.74 26.898C127.143 23.6706 128.148 19.7026 127.57 15.7199C126.986 11.7371 124.892 8.22037 121.664 5.817H121.669ZM114.214 28.5067C111.374 28.9236 108.559 28.2075 106.258 26.4958C102.977 24.0483 99.5876 14.0081 97.7974 6.82249C105.194 6.48406 115.783 6.85683 119.07 9.30434C121.365 11.0161 122.856 13.5176 123.273 16.3526C123.631 18.7952 123.101 21.2133 121.86 23.3125L118.815 21.0563L118.618 12.6004C118.604 12.002 118.167 11.5851 117.51 11.536C116.907 11.5507 116.436 12.051 116.446 12.6494L116.602 19.4181L112.988 16.7401L112.782 9.92235C112.762 9.32396 112.36 8.90214 111.663 8.87271C111.065 8.89233 110.594 9.39262 110.614 9.99101L110.771 15.092L104.125 10.1725C103.644 9.81934 102.967 9.91254 102.604 10.3981C102.246 10.8788 102.349 11.5606 102.83 11.9137L109.363 16.7499L104.424 18.236C103.85 18.4077 103.521 19.0159 103.698 19.5898C103.835 20.0606 104.272 20.3598 104.738 20.3598L105.052 20.3157L111.546 18.3636L115.175 21.0465L108.519 22.8662C107.941 23.0231 107.602 23.6215 107.754 24.2003C107.887 24.681 108.328 24.9998 108.804 24.9998L109.088 24.9605L117.392 22.6896L120.575 25.0488C118.908 26.8931 116.705 28.134 114.214 28.4969V28.5067Z" fill="url(#paint0_linear_32_2283)"/>
        <path d="M365.513 4.62533V4.6008C365.944 4.4929 366.381 4.06618 366.381 3.37459C366.381 2.54077 365.812 1.99634 364.988 1.99634H363.335V6.6314H364.002V4.75285H364.895L365.822 6.6314H366.557L365.665 4.88528L365.508 4.62533H365.513ZM364.87 4.23294H364.002V2.55549H364.87C365.37 2.55549 365.694 2.85468 365.694 3.37459C365.694 3.89451 365.375 4.22803 364.87 4.22803V4.23294Z" fill="#333333"/>
        <path d="M364.743 0C362.428 0 360.544 1.91288 360.544 4.31625C360.544 6.71961 362.423 8.64231 364.743 8.64231C367.063 8.64231 369 6.73923 369 4.31625C369 1.89326 367.112 0 364.743 0ZM364.743 7.99977C362.771 7.99977 361.25 6.3959 361.25 4.31625C361.25 2.2366 362.771 0.642532 364.743 0.642532C366.714 0.642532 368.308 2.25622 368.308 4.31625C368.308 6.37628 366.763 7.99977 364.743 7.99977Z" fill="#333333"/>
        <path d="M4.4683 18.9131L14.0867 18.9278L14.0916 14.9304L4.4732 14.9206L4.47811 10.7809L15.4061 10.7907L15.411 6.79816L0.0196193 6.78345L0 27.1924L15.5385 27.2071L15.5434 23.2146L4.46339 23.1999L4.4683 18.9131Z" fill="#333333"/>
        <path d="M37.9634 23.4402C34.4663 23.4402 32.0482 20.5218 32.0531 17.0198V16.9609C32.0531 13.4638 34.5349 10.6092 37.9781 10.6092C40.0185 10.6092 41.6224 11.4871 43.1919 12.9193L46.0515 9.62819C44.1582 7.75946 41.8578 6.47439 38.0075 6.46949C31.7392 6.46458 27.3592 11.2125 27.3543 17.0149V17.0737C27.3493 22.935 31.8029 27.575 37.8113 27.5799C41.7499 27.5799 44.0797 26.1869 46.1839 23.9454L43.3293 21.0564C41.7254 22.5132 40.2932 23.4451 37.9634 23.4402Z" fill="#333333"/>
        <path d="M67.9269 6.50391C61.6291 6.49901 57.048 11.2469 57.0431 17.0444V17.1032C57.0382 22.9057 61.5506 27.6045 67.8484 27.6094C74.1462 27.6143 78.7273 22.8664 78.7322 17.0689V17.0101C78.7371 11.2076 74.2247 6.50881 67.9269 6.50391ZM74.0383 17.1229C74.0383 20.62 71.5271 23.4746 67.9122 23.4697C64.2973 23.4697 61.7321 20.5464 61.737 17.0493V16.9904C61.737 13.4933 64.2483 10.6387 67.8631 10.6387C71.478 10.6387 74.0432 13.562 74.0383 17.0591V17.118V17.1229Z" fill="#333333"/>
        <path d="M160.074 24.7006L146.012 6.93042H144.584L144.56 27.3345L146.022 27.3394L146.036 9.20626L160.393 27.3541H161.531L161.55 6.94513H160.094L160.074 24.7006Z" fill="#333333"/>
        <path d="M191.22 18.8983C191.22 23.8228 188.561 26.3291 184.421 26.3242C180.105 26.3242 177.515 23.5481 177.52 18.7365L177.53 6.95996H176.015L176.005 18.8836C176.005 24.5977 179.468 27.6927 184.363 27.6976C189.321 27.6976 192.735 24.5879 192.74 18.7266L192.75 6.97958H191.234L191.224 18.9032L191.22 18.8983Z" fill="#333333"/>
        <path d="M216.327 18.2263H223.15L223.145 24.0924C221.659 25.3432 219.236 26.4222 216.641 26.4173C211.192 26.4124 207.896 22.4738 207.906 17.1962V17.1374C207.906 12.2129 211.383 8.0144 216.342 8.01931C219.432 8.01931 221.296 9.07385 222.9 10.4766L223.896 9.34361C221.855 7.65144 219.761 6.65577 216.435 6.65577C210.344 6.65086 206.341 11.6881 206.341 17.1962V17.2551C206.336 22.9987 210.147 27.7563 216.592 27.7612C219.918 27.7612 222.772 26.3388 224.612 24.7104V16.8382L216.342 16.8284V18.2263H216.327Z" fill="#333333"/>
        <path d="M240.327 17.8388L252.015 17.8535L252.02 16.4557L240.327 16.441L240.337 8.42646L253.339 8.44118V7.0384L238.821 7.02368L238.801 27.4327L253.467 27.4474V26.0446L240.317 26.0348L240.327 17.8388Z" fill="#333333"/>
        <path d="M282.567 24.8234L268.505 7.05322H267.073L267.053 27.4622H268.51L268.529 9.32906L282.886 27.4769H284.024L284.043 7.07284L282.587 7.06794L282.567 24.8234Z" fill="#333333"/>
        <path d="M299.049 7.08445L299.017 27.4934L300.532 27.4958L300.564 7.08683L299.049 7.08445Z" fill="#333333"/>
        <path d="M324.842 26.5007C319.971 26.5007 316.219 22.4689 316.224 17.3091V17.2502C316.224 12.1197 319.937 8.12722 324.832 8.13212C327.893 8.13212 329.933 9.42209 331.709 11.1437L332.788 10.0352C330.693 8.1076 328.506 6.76368 324.861 6.76368C318.971 6.75877 314.65 11.5361 314.645 17.3091V17.3679C314.64 23.2292 318.951 27.8691 324.778 27.8741C328.393 27.8741 330.728 26.4517 332.886 24.3279L331.865 23.3371C329.791 25.3775 327.78 26.5105 324.837 26.5105L324.842 26.5007Z" fill="#333333"/>
        <path d="M352.785 16.5833C347.949 15.5876 346.84 14.2731 346.845 12.115V12.0561C346.845 9.92744 348.831 8.21075 351.833 8.21075C354.08 8.21075 356.002 8.85819 357.925 10.5209L358.886 9.32415C356.817 7.66141 354.864 6.84231 351.892 6.8374C348.106 6.8374 345.329 9.16229 345.329 12.1935V12.2523C345.329 15.3424 347.306 17.0051 352.206 18.0008C356.841 18.9376 357.974 20.1932 357.974 22.3514V22.4102C357.974 24.74 355.87 26.4567 352.809 26.4567C349.808 26.4567 347.738 25.4905 345.496 23.4157L344.5 24.5536C346.948 26.7412 349.454 27.8252 352.721 27.8252C356.66 27.8252 359.49 25.5591 359.49 22.2631V22.2042C359.49 19.2319 357.513 17.5397 352.79 16.5686L352.785 16.5833Z" fill="#333333"/>
      </g>
      <defs>
        <linearGradient id="paint0_linear_32_2283" x1="110.334" y1="32.9603" x2="110.334" y2="2.36401" gradientUnits="userSpaceOnUse">
          <stop stop-color="#52B877"/>
          <stop offset="1" stop-color="#2A714A"/>
        </linearGradient>
        <clipPath id="clip0_32_2283">
          <rect width="369" height="32.9604" fill="white"/>
        </clipPath>
      </defs>
    </svg>


  </a><a
      href="/"
      itemprop="url"
      class="site-header__logo-link logo--inverted text-white" aria-label="Go to homepage">
      
        
        
        
        
        
      
        
        
        
        
      <svg width="738" height="66" viewBox="0 0 369 33" fill="none" xmlns="http://www.w3.org/2000/svg">
        <g clip-path="url(#clip0_4001_9)">
          <path d="M365.513 4.62526V4.60074C365.944 4.49283 366.381 4.06611 366.381 3.37453C366.381 2.54071 365.812 1.99628 364.988 1.99628H363.335V6.63134H364.002V4.75279H364.895L365.822 6.63134H366.557L365.665 4.88522L365.508 4.62526H365.513ZM364.87 4.23288H364.002V2.55543H364.87C365.37 2.55543 365.694 2.85462 365.694 3.37453C365.694 3.89445 365.375 4.22797 364.87 4.22797V4.23288Z" fill="currentColor"/>
          <path d="M364.743 0C362.428 0 360.544 1.91288 360.544 4.31625C360.544 6.71961 362.423 8.64231 364.743 8.64231C367.063 8.64231 369 6.73923 369 4.31625C369 1.89326 367.112 0 364.743 0ZM364.743 7.99977C362.771 7.99977 361.25 6.3959 361.25 4.31625C361.25 2.2366 362.771 0.642532 364.743 0.642532C366.714 0.642532 368.308 2.25622 368.308 4.31625C368.308 6.37628 366.763 7.99977 364.743 7.99977Z" fill="currentColor"/>
          <path d="M4.4683 18.913L14.0867 18.9277L14.0916 14.9303L4.4732 14.9205L4.47811 10.7808L15.4061 10.7906L15.411 6.7981L0.0196193 6.78339L0 27.1924L15.5385 27.2071L15.5434 23.2146L4.46339 23.1998L4.4683 18.913Z" fill="currentColor"/>
          <path d="M37.9634 23.4402C34.4663 23.4402 32.0482 20.5218 32.0531 17.0197V16.9609C32.0531 13.4637 34.5349 10.6091 37.9781 10.6091C40.0185 10.6091 41.6224 11.4871 43.1919 12.9193L46.0515 9.62816C44.1582 7.75943 41.8578 6.47436 38.0075 6.46946C31.7392 6.46455 27.3592 11.2124 27.3543 17.0148V17.0737C27.3493 22.935 31.8029 27.5749 37.8113 27.5798C41.7499 27.5798 44.0797 26.1869 46.1839 23.9454L43.3293 21.0564C41.7254 22.5131 40.2932 23.4451 37.9634 23.4402Z" fill="currentColor"/>
          <path d="M67.9269 6.50379C61.6291 6.49888 57.048 11.2468 57.0431 17.0443V17.1031C57.0382 22.9055 61.5506 27.6044 67.8484 27.6093C74.1462 27.6142 78.7273 22.8663 78.7322 17.0688V17.0099C78.7371 11.2075 74.2247 6.50869 67.9269 6.50379ZM74.0383 17.1227C74.0383 20.6199 71.5271 23.4745 67.9122 23.4696C64.2973 23.4696 61.7321 20.5463 61.737 17.0492V16.9903C61.737 13.4932 64.2483 10.6386 67.8631 10.6386C71.478 10.6386 74.0432 13.5618 74.0383 17.059V17.1178V17.1227Z" fill="currentColor"/>
          <path d="M160.074 24.7007L146.012 6.93051H144.584L144.56 27.3346L146.022 27.3395L146.036 9.20635L160.393 27.3542H161.531L161.55 6.94523H160.094L160.074 24.7007Z" fill="currentColor"/>
          <path d="M191.22 18.8983C191.22 23.8228 188.561 26.3291 184.421 26.3242C180.105 26.3242 177.515 23.5481 177.52 18.7365L177.53 6.95996H176.015L176.005 18.8836C176.005 24.5977 179.468 27.6927 184.363 27.6976C189.321 27.6976 192.735 24.5879 192.74 18.7266L192.75 6.97958H191.234L191.224 18.9032L191.22 18.8983Z" fill="currentColor"/>
          <path d="M216.327 18.2263H223.15L223.145 24.0925C221.659 25.3432 219.236 26.4223 216.641 26.4174C211.192 26.4125 207.896 22.4739 207.906 17.1963V17.1375C207.906 12.213 211.383 8.01449 216.342 8.0194C219.432 8.0194 221.296 9.07394 222.9 10.4767L223.896 9.3437C221.855 7.65154 219.761 6.65586 216.435 6.65586C210.344 6.65095 206.341 11.6882 206.341 17.1963V17.2552C206.336 22.9987 210.147 27.7564 216.592 27.7613C219.918 27.7613 222.772 26.3389 224.612 24.7105V16.8383L216.342 16.8285V18.2263H216.327Z" fill="currentColor"/>
          <path d="M240.327 17.8389L252.015 17.8536L252.02 16.4557L240.327 16.441L240.337 8.42649L253.339 8.44121V7.03843L238.821 7.02371L238.801 27.4327L253.467 27.4474V26.0446L240.317 26.0348L240.327 17.8389Z" fill="currentColor"/>
          <path d="M282.567 24.8233L268.505 7.05313H267.073L267.053 27.4621H268.51L268.529 9.32897L282.886 27.4768H284.024L284.043 7.07275L282.587 7.06785L282.567 24.8233Z" fill="currentColor"/>
          <path d="M299.049 7.08439L299.017 27.4933L300.532 27.4957L300.564 7.08677L299.049 7.08439Z" fill="currentColor"/>
          <path d="M324.842 26.5008C319.971 26.5008 316.219 22.469 316.224 17.3091V17.2503C316.224 12.1198 319.937 8.12731 324.832 8.13221C327.893 8.13221 329.933 9.42218 331.709 11.1438L332.788 10.0353C330.693 8.10769 328.506 6.76377 324.861 6.76377C318.971 6.75886 314.65 11.5362 314.645 17.3091V17.368C314.64 23.2293 318.951 27.8692 324.778 27.8741C328.393 27.8741 330.728 26.4517 332.886 24.328L331.865 23.3372C329.791 25.3776 327.78 26.5106 324.837 26.5106L324.842 26.5008Z" fill="currentColor"/>
          <path d="M352.785 16.5832C347.949 15.5876 346.84 14.2731 346.845 12.1149V12.0561C346.845 9.92738 348.831 8.21069 351.833 8.21069C354.08 8.21069 356.002 8.85813 357.925 10.5209L358.886 9.32409C356.817 7.66135 354.864 6.84225 351.892 6.83734C348.106 6.83734 345.329 9.16223 345.329 12.1934V12.2523C345.329 15.3423 347.306 17.0051 352.206 18.0007C356.841 18.9376 357.974 20.1932 357.974 22.3513V22.4102C357.974 24.74 355.87 26.4567 352.809 26.4567C349.808 26.4567 347.738 25.4904 345.496 23.4157L344.5 24.5536C346.948 26.7411 349.454 27.8251 352.721 27.8251C356.66 27.8251 359.49 25.5591 359.49 22.263V22.2042C359.49 19.2318 357.513 17.5397 352.79 16.5685L352.785 16.5832Z" fill="currentColor"/>
          <path d="M121.669 5.81713C115.484 1.21149 97.0273 2.48675 94.9379 2.6437C94.31 2.69275 93.7411 3.01157 93.3634 3.51186C92.9857 4.01706 92.8484 4.65468 92.9808 5.26779C93.4223 7.3131 97.4835 25.3678 103.664 29.9783C106.293 31.9353 109.412 32.9653 112.634 32.9653C113.365 32.9653 114.106 32.9114 114.842 32.8035C118.819 32.2198 122.341 30.1255 124.74 26.8981C127.143 23.6707 128.148 19.7027 127.57 15.72C126.986 11.7373 124.892 8.22049 121.664 5.81713H121.669ZM114.214 28.5069C111.374 28.9238 108.559 28.2077 106.258 26.4959C102.977 24.0484 99.5876 14.0082 97.7974 6.82262C105.194 6.48418 115.783 6.85695 119.07 9.30446C121.365 11.0162 122.856 13.5177 123.273 16.3527C123.631 18.7953 123.101 21.2134 121.86 23.3126L118.815 21.0564L118.618 12.6005C118.604 12.0021 118.167 11.5852 117.51 11.5362C116.907 11.5509 116.436 12.0512 116.446 12.6496L116.602 19.4182L112.988 16.7402L112.782 9.92247C112.762 9.32408 112.36 8.90226 111.663 8.87283C111.065 8.89245 110.594 9.39275 110.614 9.99114L110.771 15.0922L104.125 10.1726C103.644 9.81947 102.967 9.91266 102.604 10.3982C102.246 10.8789 102.349 11.5607 102.83 11.9138L109.363 16.75L104.424 18.2362C103.85 18.4078 103.521 19.016 103.698 19.5899C103.835 20.0607 104.272 20.3599 104.738 20.3599L105.052 20.3158L111.546 18.3637L115.175 21.0466L108.519 22.8663C107.941 23.0233 107.602 23.6217 107.754 24.2004C107.887 24.6811 108.328 24.9999 108.804 24.9999L109.088 24.9607L117.392 22.6897L120.575 25.049C118.908 26.8932 116.705 28.1341 114.214 28.4971V28.5069Z" fill="currentColor"/>
          <path d="M365.513 4.62526V4.60074C365.944 4.49283 366.381 4.06611 366.381 3.37453C366.381 2.54071 365.812 1.99628 364.988 1.99628H363.335V6.63134H364.002V4.75279H364.895L365.822 6.63134H366.557L365.665 4.88522L365.508 4.62526H365.513ZM364.87 4.23288H364.002V2.55543H364.87C365.37 2.55543 365.694 2.85462 365.694 3.37453C365.694 3.89445 365.375 4.22797 364.87 4.22797V4.23288Z" fill="currentColor"/>
          <path d="M364.743 0C362.428 0 360.544 1.91288 360.544 4.31625C360.544 6.71961 362.423 8.64231 364.743 8.64231C367.063 8.64231 369 6.73923 369 4.31625C369 1.89326 367.112 0 364.743 0ZM364.743 7.99977C362.771 7.99977 361.25 6.3959 361.25 4.31625C361.25 2.2366 362.771 0.642532 364.743 0.642532C366.714 0.642532 368.308 2.25622 368.308 4.31625C368.308 6.37628 366.763 7.99977 364.743 7.99977Z" fill="currentColor"/>
          <path d="M4.4683 18.913L14.0867 18.9277L14.0916 14.9303L4.4732 14.9205L4.47811 10.7808L15.4061 10.7906L15.411 6.7981L0.0196193 6.78339L0 27.1924L15.5385 27.2071L15.5434 23.2146L4.46339 23.1998L4.4683 18.913Z" fill="currentColor"/>
          <path d="M37.9634 23.4402C34.4663 23.4402 32.0482 20.5218 32.0531 17.0197V16.9609C32.0531 13.4637 34.5349 10.6091 37.9781 10.6091C40.0185 10.6091 41.6224 11.4871 43.1919 12.9193L46.0515 9.62816C44.1582 7.75943 41.8578 6.47436 38.0075 6.46946C31.7392 6.46455 27.3592 11.2124 27.3543 17.0148V17.0737C27.3493 22.935 31.8029 27.5749 37.8113 27.5798C41.7499 27.5798 44.0797 26.1869 46.1839 23.9454L43.3293 21.0564C41.7254 22.5131 40.2932 23.4451 37.9634 23.4402Z" fill="currentColor"/>
          <path d="M67.9269 6.50379C61.6291 6.49888 57.048 11.2468 57.0431 17.0443V17.1031C57.0382 22.9055 61.5506 27.6044 67.8484 27.6093C74.1462 27.6142 78.7273 22.8663 78.7322 17.0688V17.0099C78.7371 11.2075 74.2247 6.50869 67.9269 6.50379ZM74.0383 17.1227C74.0383 20.6199 71.5271 23.4745 67.9122 23.4696C64.2973 23.4696 61.7321 20.5463 61.737 17.0492V16.9903C61.737 13.4932 64.2483 10.6386 67.8631 10.6386C71.478 10.6386 74.0432 13.5618 74.0383 17.059V17.1178V17.1227Z" fill="currentColor"/>
          <path d="M160.074 24.7007L146.012 6.93051H144.584L144.56 27.3346L146.022 27.3395L146.036 9.20635L160.393 27.3542H161.531L161.55 6.94523H160.094L160.074 24.7007Z" fill="currentColor"/>
          <path d="M191.22 18.8983C191.22 23.8228 188.561 26.3291 184.421 26.3242C180.105 26.3242 177.515 23.5481 177.52 18.7365L177.53 6.95996H176.015L176.005 18.8836C176.005 24.5977 179.468 27.6927 184.363 27.6976C189.321 27.6976 192.735 24.5879 192.74 18.7266L192.75 6.97958H191.234L191.224 18.9032L191.22 18.8983Z" fill="currentColor"/>
          <path d="M216.327 18.2263H223.15L223.145 24.0925C221.659 25.3432 219.236 26.4223 216.641 26.4174C211.192 26.4125 207.896 22.4739 207.906 17.1963V17.1375C207.906 12.213 211.383 8.01449 216.342 8.0194C219.432 8.0194 221.296 9.07394 222.9 10.4767L223.896 9.3437C221.855 7.65154 219.761 6.65586 216.435 6.65586C210.344 6.65095 206.341 11.6882 206.341 17.1963V17.2552C206.336 22.9987 210.147 27.7564 216.592 27.7613C219.918 27.7613 222.772 26.3389 224.612 24.7105V16.8383L216.342 16.8285V18.2263H216.327Z" fill="currentColor"/>
          <path d="M240.327 17.8389L252.015 17.8536L252.02 16.4557L240.327 16.441L240.337 8.42649L253.339 8.44121V7.03843L238.821 7.02371L238.801 27.4327L253.467 27.4474V26.0446L240.317 26.0348L240.327 17.8389Z" fill="currentColor"/>
          <path d="M282.567 24.8233L268.505 7.05313H267.073L267.053 27.4621H268.51L268.529 9.32897L282.886 27.4768H284.024L284.043 7.07275L282.587 7.06785L282.567 24.8233Z" fill="currentColor"/>
          <path d="M299.049 7.08439L299.017 27.4933L300.532 27.4957L300.564 7.08677L299.049 7.08439Z" fill="currentColor"/>
          <path d="M324.842 26.5008C319.971 26.5008 316.219 22.469 316.224 17.3091V17.2503C316.224 12.1198 319.937 8.12731 324.832 8.13221C327.893 8.13221 329.933 9.42218 331.709 11.1438L332.788 10.0353C330.693 8.10769 328.506 6.76377 324.861 6.76377C318.971 6.75886 314.65 11.5362 314.645 17.3091V17.368C314.64 23.2293 318.951 27.8692 324.778 27.8741C328.393 27.8741 330.728 26.4517 332.886 24.328L331.865 23.3372C329.791 25.3776 327.78 26.5106 324.837 26.5106L324.842 26.5008Z" fill="currentColor"/>
          <path d="M352.785 16.5832C347.949 15.5876 346.84 14.2731 346.845 12.1149V12.0561C346.845 9.92738 348.831 8.21069 351.833 8.21069C354.08 8.21069 356.002 8.85813 357.925 10.5209L358.886 9.32409C356.817 7.66135 354.864 6.84225 351.892 6.83734C348.106 6.83734 345.329 9.16223 345.329 12.1934V12.2523C345.329 15.3423 347.306 17.0051 352.206 18.0007C356.841 18.9376 357.974 20.1932 357.974 22.3513V22.4102C357.974 24.74 355.87 26.4567 352.809 26.4567C349.808 26.4567 347.738 25.4904 345.496 23.4157L344.5 24.5536C346.948 26.7411 349.454 27.8251 352.721 27.8251C356.66 27.8251 359.49 25.5591 359.49 22.263V22.2042C359.49 19.2318 357.513 17.5397 352.79 16.5685L352.785 16.5832Z" fill="currentColor"/>
        </g>
        <defs>
          <clipPath id="clip0_4001_9">
            <rect width="369" height="32.9604" fill="white"/>
          </clipPath>
        </defs>
      </svg>

    </a></div></div><div class="header-item header-item--navigation text-center"
              
              role="navigation" aria-label="Primary"
              
              ><ul
  class="site-nav site-navigation widescreen-down--hide"
  
  ><li
      class="site-nav__item site-nav__expanded-item site-nav--has-dropdown site-nav--is-megamenu"
      >

      <a href="/collections/shop" class="site-nav__link site-nav__link--has-dropdown" aria-haspopup="true">
        Shop
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg></a><div class="site-nav__dropdown megamenu text-left">
          <div class="page-width">
            <div class="megamenu__wrapper">
              
              <div class="megamenu__promo" style="padding-left:0;padding-right:30px;text-align:center;">
                <div style="margin-bottom:44px;">
                	<a href="/collections/shop" class="btn btn--menudark">Shop All</a>
                </div>
                <div style="margin-bottom:24px;">
                  <a href="/pages/product-recommendation-quiz" style="font-size:13px;margin-bottom:0;line-height:1;">New here?<br/><span style="font-weight:600;text-transform:uppercase;">Take the quiz</span></a>
                </div>
                
              </div>
              
              <div class="megamenu__cols">
                <div class="megamenu__col appear-animation appear-delay-1"><div class="megamenu__col-title">
                      <a href="/collections/pectasol" class="site-nav__dropdown-link site-nav__dropdown-link--top-level site-nav__dropdown-link--mega">
                        <span class="megamenu__link-label">
                          Pectasol | Total Body
                        </span>
                      </a>
                    </div><a href="/products/pectasol-powder" class="site-nav__dropdown-link">
                        PectaSol Powder
                      </a><a href="/products/pectasol-capsules" class="site-nav__dropdown-link">
                        PectaSol Capsules
                      </a><a href="/products/pectasol-chewables" class="site-nav__dropdown-link">
                        PectaSol Chewables
                      </a></div><div class="megamenu__col appear-animation appear-delay-2"><div class="megamenu__col-title">
                      <a href="/collections/oncology-support" class="site-nav__dropdown-link site-nav__dropdown-link--top-level site-nav__dropdown-link--mega">
                        <span class="megamenu__link-label">
                          Oncology Support
                        </span>
                      </a>
                    </div><a href="/products/total-body-oncology-nutritional-support-bundle" class="site-nav__dropdown-link">
                        Comprehensive
                      </a><a href="/products/breastdefend" class="site-nav__dropdown-link">
                        Breast
                      </a><a href="/products/prostacaid" class="site-nav__dropdown-link">
                        Prostate
                      </a></div><div class="megamenu__col appear-animation appear-delay-3"><div class="megamenu__col-title">
                      <a href="/collections/detox" class="site-nav__dropdown-link site-nav__dropdown-link--top-level site-nav__dropdown-link--mega">
                        <span class="megamenu__link-label">
                          Detoxification
                        </span>
                      </a>
                    </div><a href="/products/pectaclear" class="site-nav__dropdown-link">
                        Everyday + Toxic Metals
                      </a><a href="/products/ecodetox" class="site-nav__dropdown-link">
                        Liver Detox
                      </a><a href="/products/glyphocleanse" class="site-nav__dropdown-link">
                        Pesticides + Environmental
                      </a></div><div class="megamenu__col appear-animation appear-delay-4"><div class="megamenu__col-title">
                      <a href="/collections/immune-support" class="site-nav__dropdown-link site-nav__dropdown-link--top-level site-nav__dropdown-link--mega">
                        <span class="megamenu__link-label">
                          Immune Support
                        </span>
                      </a>
                    </div><a href="/products/mycophyto-complex" class="site-nav__dropdown-link">
                        Seasonal / Intensive
                      </a><a href="/products/ten-mushroom-formula" class="site-nav__dropdown-link">
                        Everyday
                      </a></div>
              </div><div class="megamenu__promo appear-animation appear-delay-5"><a href="/pages/eco-rewards" class="megamenu__promo-link"><div style="margin: 0 auto; max-width: 1400px">
                      <div class="image-wrap aos-animate megamenu__promo-image" style="height: 0; padding-bottom: 71.42857142857143%;"><img class="lazyload"
                            data-src="//econugenics.com/cdn/shop/files/PDP_page_graphics_2_{width}x.png?v=1706625559"
                            data-widths="[540, 750, 900]"
                            data-aspectratio="1.4"
                            data-sizes="auto"
                            alt="">
                      </div>
                    </div><div><strong>Subscribe & Save</strong></div><div style="font-size:calc(var(--typeBaseSize) - 2px);">Join ecoRewards</div></a></div></div>
          </div>
        </div></li><li
      class="site-nav__item site-nav__expanded-item site-nav--has-dropdown"
      >

      <a href="/collections/pectasol" class="site-nav__link site-nav__link--has-dropdown" aria-haspopup="true">
        PECTASOL
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg></a><ul class="site-nav__dropdown text-left"><li class="">
              <a href="/products/pectasol-powder" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                POWDER
</a></li><li class="">
              <a href="/products/pectasol-capsules" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                CAPSULES
</a></li><li class="">
              <a href="/products/pectasol-chewables" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                CHEWABLES
</a></li><li class="">
              <a href="/products/pectasol-stick-packs" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                STICK-PACKS
</a></li></ul></li><li
      class="site-nav__item site-nav__expanded-item site-nav--has-dropdown site-nav--active"
      >

      <a href="/blogs/news" class="site-nav__link site-nav__link--has-dropdown" aria-haspopup="true">
        LEARN
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg></a><ul class="site-nav__dropdown text-left"><li class=" site-nav__deep-dropdown-trigger">
              <a href="/pages/wellness-guides" class="site-nav__dropdown-link site-nav__dropdown-link--second-level site-nav__dropdown-link--has-children">
                HEALTH GUIDES
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg></a><ul class="site-nav__deep-dropdown"><li>
                      <a href="/pages/wellness-guides#sleep" class="site-nav__dropdown-link">SLEEP GUIDE</a>
                    </li><li>
                      <a href="/pages/wellness-guides#detox" class="site-nav__dropdown-link">DETOX GUIDE</a>
                    </li><li>
                      <a href="/pages/wellness-guides#immune" class="site-nav__dropdown-link">IMMUNITY GUIDE</a>
                    </li><li>
                      <a href="/pages/wellness-guides#digestion" class="site-nav__dropdown-link">DIGESTION GUIDE</a>
                    </li></ul></li><li class="site-nav--active site-nav__deep-dropdown-trigger">
              <a href="/blogs/news" class="site-nav__dropdown-link site-nav__dropdown-link--second-level site-nav__dropdown-link--has-children">
                BLOG
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg></a><ul class="site-nav__deep-dropdown"><li>
                      <a href="/blogs/news" class="site-nav__dropdown-link">View All</a>
                    </li><li>
                      <a href="/blogs/news/tagged/detoxification" class="site-nav__dropdown-link">Detoxification</a>
                    </li><li>
                      <a href="/blogs/news/tagged/brain-mood" class="site-nav__dropdown-link">Brain &amp; Mood</a>
                    </li><li>
                      <a href="/blogs/news/tagged/immune-system" class="site-nav__dropdown-link">Immune</a>
                    </li></ul></li><li class="">
              <a href="/pages/ingredients-index" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                INGREDIENTS
</a></li><li class="">
              <a href="/pages/product-recommendation-quiz" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                Find Your Formula Quiz
</a></li></ul></li><li
      class="site-nav__item site-nav__expanded-item site-nav--has-dropdown"
      >

      <a href="/pages/practitioners" class="site-nav__link site-nav__link--has-dropdown" aria-haspopup="true">
        PROFESSIONALS
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg></a><ul class="site-nav__dropdown text-left"><li class="">
              <a href="https://pro.econugenics.com/pages/practitioner-account-application" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                APPLY FOR AN ACCOUNT
</a></li><li class="">
              <a href="/pages/practitioners" class="site-nav__dropdown-link site-nav__dropdown-link--second-level">
                TESTIMONIALS
</a></li></ul></li></ul>
</div><div class="header-item header-item--icons"><div class="site-nav site-nav--icons">
  <div class="site-nav__icons">
    
      <a class="site-nav__link site-nav__link--icon medium-down--hide" href="/account">
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-user" viewBox="0 0 64 64"><path d="M35 39.84v-2.53c3.3-1.91 6-6.66 6-11.41 0-7.63 0-13.82-9-13.82s-9 6.19-9 13.82c0 4.75 2.7 9.51 6 11.41v2.53c-10.18.85-18 6-18 12.16h42c0-6.19-7.82-11.31-18-12.16z"/></svg>
        <span class="icon__fallback-text">
          
            Log in
          
        </span>
      </a>
    

    
      <a href="/search" class="site-nav__link site-nav__link--icon js-search-header js-no-transition">
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-search" viewBox="0 0 64 64"><path d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58zM54 54L41.94 42"/></svg>
        <span class="icon__fallback-text">Search</span>
      </a>
    

    
      <button
        type="button"
        class="site-nav__link site-nav__link--icon js-drawer-open-nav widescreen--hide"
        aria-controls="NavDrawer">
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-hamburger" viewBox="0 0 64 64"><path d="M7 15h51M7 32h43M7 49h51"/></svg>
        <span class="icon__fallback-text">Site navigation</span>
      </button>
    
	
                
                  
                  
                  
                  
                  
                

    
    <a href="/cart" class="site-nav__link site-nav__link--icon js-drawer-open-cart js-no-transition" aria-controls="CartDrawer" data-icon="bag-minimal">
      <span class="cart-link"><svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-bag-minimal" viewBox="0 0 64 64"><path stroke="null" id="svg_4" fill-opacity="null" stroke-opacity="null" fill="null" d="M11.375 17.863h41.25v36.75h-41.25z"/><path stroke="null" id="svg_2" d="M22.25 18c0-7.105 4.35-9 9.75-9s9.75 1.895 9.75 9"/></svg><span class="icon__fallback-text">Bag</span>
        <span class="cart-link__bubble"></span>
      </span>
    </a>
  </div>
</div>
</div>
          </div></div>
        <div class="site-header__search-container">
          <div class="site-header__search">
            <div class="page-width">
              <form
                action="/search"
                method="get"
                id="HeaderSearchForm"
                class="site-header__search-form"
                role="search"
              >
                <input type="hidden" name="type" value="product,article">
                <input type="hidden" name="options[prefix]" value="last">
                <button type="submit" class="text-link site-header__search-btn">
                  <svg
                    aria-hidden="true"
                    focusable="false"
                    role="presentation"
                    class="icon icon-search"
                    viewBox="0 0 64 64"
                  >
                    <path d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58zM54 54L41.94 42" />
                  </svg>
                  <span class="icon__fallback-text">Search</span>
                </button>
                <input
                  type="search"
                  name="q"
                  value=""
                  placeholder="Search our store"
                  class="site-header__search-input"
                  aria-label="Search our store"
                >
              </form>
              <button type="button" id="SearchClose" class="text-link site-header__search-btn">
                <svg
                  aria-hidden="true"
                  focusable="false"
                  role="presentation"
                  class="icon icon-close"
                  viewBox="0 0 64 64"
                >
                  <path d="M19 17.61l27.12 27.13m0-27.12L19 44.74" />
                </svg>
                <span class="icon__fallback-text">"Close (esc)"</span>
              </button>
            </div>
          </div><div id="PredictiveWrapper" class="predictive-results hide">
              <div class="page-width">
                <div id="PredictiveResults" class="predictive-result__layout"></div>
                <div class="text-center predictive-results__footer">
                  <button type="button" class="btn" data-predictive-search-button>
                    <small>
                      View more
                    </small>
                  </button>
                </div>
              </div>
            </div></div>
      </header>
    </div>
  </div>

</div><div id="shopify-section-promo-banner" class="shopify-section"><div class="promo-banner"><a href="/pages/eco-rewards" class="promo-banner__link"><span class="promo-banner__text promo-banner__text--open" data-text="subscribe-to-save-an-extra-15-get-free-domestic-shipping">
      SUBSCRIBE TO SAVE AN EXTRA 15% + GET FREE DOMESTIC SHIPPING
    </span></a></div>

</div><main class="main-content" id="MainContent">
          <div id="shopify-section-template--17682427642094__main" class="shopify-section"><div data-section-id="template--17682427642094__main" data-section-type="blog">
  <div class="page-width page-content">
<header class="section-header">
      <h1 class="section-header__title">
        Health & Wellness
<select 
              id="BlogTagFilter"
              name="BlogTagFilter"
              aria-label="Filter blog posts by tag"
              >
              <option value="/blogs/news">All</option>
                <option value="/blogs/news/tagged/brain-mood" >Brain & Mood</option>
                <option value="/blogs/news/tagged/cardiovascular" >Cardiovascular</option>
                <option value="/blogs/news/tagged/cellular-health" >Cellular Health</option>
                <option value="/blogs/news/tagged/dental-health" >Dental Health</option>
                <option value="/blogs/news/tagged/detoxification" >Detoxification</option>
                <option value="/blogs/news/tagged/digestive-health" >Digestive Health</option>
                <option value="/blogs/news/tagged/immune-system" >Immune System</option>
                <option value="/blogs/news/tagged/joint-support" >Joint Support</option>
                <option value="/blogs/news/tagged/mens-health" >Men's Health</option>
                <option value="/blogs/news/tagged/prostate-health" >Prostate Health</option>
                <option value="/blogs/news/tagged/skin-health" >Skin Health</option>
                <option value="/blogs/news/tagged/sleep" >Sleep</option>
                <option value="/blogs/news/tagged/womens-health" >Women's Health</option></select></h1>
    </header><article class="article article--layout" data-aos>
        <div class="article__image-wrap"><div class="article__image image-wrap"><img class="image-fit lazyload"
                  data-src="//econugenics.com/cdn/shop/articles/Blog_Headers_2_b1095780-9235-4297-8224-2032df573da8_{width}x.png?v=1754509731"
                  data-widths="[720, 900, 1080]"
                  data-aspectratio="2.0"
                  data-sizes="auto"
                  alt="Celebrating 30 Years of Clinical Excellence: A Legacy Rooted in Science and Real-World Results">
              <noscript>
                <img class="image-fit lazyloaded" src="//econugenics.com/cdn/shop/articles/Blog_Headers_2_b1095780-9235-4297-8224-2032df573da8_600x.png?v=1754509731" alt="Celebrating 30 Years of Clinical Excellence: A Legacy Rooted in Science and Real-World Results">
              </noscript>
            </div></div>

        <div class="article__content article__content--right ">
          <div class="article__content-meta">
            <div class="article__date">
<a href="/blogs/news/tagged/cellular-health">
                    Cellular Health
                  </a></div>

            <h2 class="h3 article__h3">
              <a href="/blogs/news/celebrating-30-years-of-clinical-excellence-a-legacy-rooted-in-science-and-real-world-results">Celebrating 30 Years of Clinical Excellence: A Legacy Rooted in Science and Real-World Results</a>
            </h2></div>

          <div class="rte rte--block">This year marks a major milestone: 30 years since the founding of ecoNugenics by integrative medicine pioneer, Dr. Isaac Eliaz. From the beginning, our mission has been clear—advance the field of integrative health through clinically researched, science-backed nutraceuticals that make...
</div>

          <a href="/blogs/news/celebrating-30-years-of-clinical-excellence-a-legacy-rooted-in-science-and-real-world-results" class="btn">
            Continue reading
          </a>
        </div>
      </article>

      
<article class="article article--layout" data-aos>
        <div class="article__image-wrap article__image-wrap--right"><div class="article__image image-wrap"><img class="image-fit lazyload"
                  data-src="//econugenics.com/cdn/shop/articles/unnamed_c5b5b14a-10c9-4030-88a3-3df82b4e4493_{width}x.png?v=1759345185"
                  data-widths="[720, 900, 1080]"
                  data-aspectratio="2.0"
                  data-sizes="auto"
                  alt="How One Daily Supplement Can Support Your Total Body Health">
              <noscript>
                <img class="image-fit lazyloaded" src="//econugenics.com/cdn/shop/articles/unnamed_c5b5b14a-10c9-4030-88a3-3df82b4e4493_600x.png?v=1759345185" alt="How One Daily Supplement Can Support Your Total Body Health">
              </noscript>
            </div></div>

        <div class="article__content ">
          <div class="article__content-meta">
            <div class="article__date">
<a href="/blogs/news/tagged/brain-mood">
                    Brain & Mood
                  </a>
&middot;<a href="/blogs/news/tagged/cardiovascular">
                    Cardiovascular
                  </a>
&middot;<a href="/blogs/news/tagged/cellular-health">
                    Cellular Health
                  </a>
&middot;<a href="/blogs/news/tagged/digestive-health">
                    Digestive Health
                  </a>
&middot;<a href="/blogs/news/tagged/prostate-health">
                    Prostate Health
                  </a></div>

            <h2 class="h3 article__h3">
              <a href="/blogs/news/how-one-daily-supplement-can-support-your-total-body-health-1">How One Daily Supplement Can Support Your Total Body Health</a>
            </h2></div>

          <div class="rte rte--block">Is there one natural ingredient that optimizes the health of your whole body?   An ingredient, formula or other solution that can address every area of health, and lead you to optimal wellness?   Regardless of your health concern, you need...
</div>

          <a href="/blogs/news/how-one-daily-supplement-can-support-your-total-body-health-1" class="btn">
            Continue reading
          </a>
        </div>
      </article>

      
<article class="article article--layout" data-aos>
        <div class="article__image-wrap"><div class="article__image image-wrap"><img class="image-fit lazyload"
                  data-src="//econugenics.com/cdn/shop/articles/Blog_Headers_2698466f-e497-4f46-b9a5-02b60225fbf8_{width}x.png?v=1758654947"
                  data-widths="[720, 900, 1080]"
                  data-aspectratio="2.0"
                  data-sizes="auto"
                  alt="7 Reasons to Use GlyphoDetox for Pesticide and Toxin Support">
              <noscript>
                <img class="image-fit lazyloaded" src="//econugenics.com/cdn/shop/articles/Blog_Headers_2698466f-e497-4f46-b9a5-02b60225fbf8_600x.png?v=1758654947" alt="7 Reasons to Use GlyphoDetox for Pesticide and Toxin Support">
              </noscript>
            </div></div>

        <div class="article__content article__content--right ">
          <div class="article__content-meta">
            <div class="article__date">
<a href="/blogs/news/tagged/detoxification">
                    Detoxification
                  </a></div>

            <h2 class="h3 article__h3">
              <a href="/blogs/news/7-reasons-to-use-glyphodetox">7 Reasons to Use GlyphoDetox for Pesticide and Toxin Support</a>
            </h2></div>

          <div class="rte rte--block">In today’s world, exposure to environmental toxins is nearly unavoidable. From the food we eat and the water we drink, to the air we breathe and the places we live — harmful substances like glyphosate (the active ingredient in Roundup®)...
</div>

          <a href="/blogs/news/7-reasons-to-use-glyphodetox" class="btn">
            Continue reading
          </a>
        </div>
      </article>

      
<article class="article article--layout" data-aos>
        <div class="article__image-wrap article__image-wrap--right"><div class="article__image image-wrap"><img class="image-fit lazyload"
                  data-src="//econugenics.com/cdn/shop/articles/MCP_Science_Blog_header_{width}x.png?v=1752160484"
                  data-widths="[720, 900, 1080]"
                  data-aspectratio="2.0"
                  data-sizes="auto"
                  alt="PectaSol Hits 100+ Studies—Here’s What the Latest Research Shows">
              <noscript>
                <img class="image-fit lazyloaded" src="//econugenics.com/cdn/shop/articles/MCP_Science_Blog_header_600x.png?v=1752160484" alt="PectaSol Hits 100+ Studies—Here’s What the Latest Research Shows">
              </noscript>
            </div></div>

        <div class="article__content ">
          <div class="article__content-meta">
            <div class="article__date">
<a href="/blogs/news/tagged/cellular-health">
                    Cellular Health
                  </a>
&middot;<a href="/blogs/news/tagged/digestive-health">
                    Digestive Health
                  </a></div>

            <h2 class="h3 article__h3">
              <a href="/blogs/news/pectasol-hits-100-studies">PectaSol Hits 100+ Studies—Here’s What the Latest Research Shows</a>
            </h2></div>

          <div class="rte rte--block">At ecoNugenics, we’re committed to science-backed wellness—and PectaSol is leading the way. We’re excited to share a major milestone: PectaSol, the original and only clinically researched form of Modified Citrus Pectin (MCP), is now backed by over 100 peer-reviewed studies....
</div>

          <a href="/blogs/news/pectasol-hits-100-studies" class="btn">
            Continue reading
          </a>
        </div>
      </article>

      
<article class="article article--layout" data-aos>
        <div class="article__image-wrap"><div class="article__image image-wrap"><img class="image-fit lazyload"
                  data-src="//econugenics.com/cdn/shop/articles/Blog_Headers_de45dde4-b172-4d34-a612-811cab867684_{width}x.png?v=1758655453"
                  data-widths="[720, 900, 1080]"
                  data-aspectratio="2.0"
                  data-sizes="auto"
                  alt="Sharpen Your Mind: 7 Natural Ways to Boost Memory and Brain Health">
              <noscript>
                <img class="image-fit lazyloaded" src="//econugenics.com/cdn/shop/articles/Blog_Headers_de45dde4-b172-4d34-a612-811cab867684_600x.png?v=1758655453" alt="Sharpen Your Mind: 7 Natural Ways to Boost Memory and Brain Health">
              </noscript>
            </div></div>

        <div class="article__content article__content--right ">
          <div class="article__content-meta">
            <div class="article__date">
<a href="/blogs/news/tagged/brain-mood">
                    Brain & Mood
                  </a></div>

            <h2 class="h3 article__h3">
              <a href="/blogs/news/sharpen-your-mind-7-natural-ways">Sharpen Your Mind: 7 Natural Ways to Boost Memory and Brain Health</a>
            </h2></div>

          <div class="rte rte--block">Cognitive decline may seem like an inevitable part of aging—but it doesn’t have to be. More than 6 million Americans are currently living with Alzheimer’s, and that number continues to rise. While aging is a factor, emerging research shows that...
</div>

          <a href="/blogs/news/sharpen-your-mind-7-natural-ways" class="btn">
            Continue reading
          </a>
        </div>
      </article>

      
<div class="pagination">
  

  
    
      
        <span class="page current">1</span>
      
    
  
    
      <span class="page">
        <a href="/blogs/news?page=2">2</a>
      </span>
    
  
    
      <span class="page">
        <a href="/blogs/news?page=3">3</a>
      </span>
    
  
    
      
        <span class="page">&hellip;</span>
      
    
  
    
      <span class="page">
        <a href="/blogs/news?page=64">64</a>
      </span>
    
  

  
    <span class="next">
      <a href="/blogs/news?page=2" title="Next">
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewBox="0 0 284.49 498.98"><path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98z"/></svg>
        <span class="icon__fallback-text">Next</span>
      </a>
    </span>
  
</div>
</div>
</div>
</div>
        </main><div id="shopify-section-footer" class="shopify-section"><footer class="site-footer" data-section-id="footer" data-section-type="footer">
  <div class="page-width">
    <div class="grid"><style data-shopify>@media only screen and (min-width: 769px) {
            .footer__item--1494292481350 {
              width: 20%;
            }
          }</style><div  class="grid__item footer__item--1494292481350"><div class="footer__logo-social"><style data-shopify>.footer__logo a {
        height: 30px;
      }</style><div class="footer__logo">
      <a href="/">
        <img src="//econugenics.com/cdn/shop/files/eco_web_label_white_x30@2x.png?v=1615541187" alt="ecoNugenics Logo">
      </a>
    </div><ul class="no-bullets footer__social"><li>
        <a target="_blank" rel="noopener" href="https://www.facebook.com/econugenics" title="ecoNugenics on Facebook">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-facebook" viewBox="0 0 14222 14222"><path d="M14222 7112c0 3549.352-2600.418 6491.344-6000 7024.72V9168h1657l315-2056H8222V5778c0-562 275-1111 1159-1111h897V2917s-814-139-1592-139c-1624 0-2686 984-2686 2767v1567H4194v2056h1806v4968.72C2600.418 13603.344 0 10661.352 0 7112 0 3184.703 3183.703 1 7111 1s7111 3183.703 7111 7111zm-8222 7025c362 57 733 86 1111 86-377.945 0-749.003-29.485-1111-86.28zm2222 0v-.28a7107.458 7107.458 0 0 1-167.717 24.267A7407.158 7407.158 0 0 0 8222 14137zm-167.717 23.987C7745.664 14201.89 7430.797 14223 7111 14223c319.843 0 634.675-21.479 943.283-62.013z"/></svg>
          <span class="icon__fallback-text">Facebook</span>
        </a>
      </li><li>
        <a target="_blank" rel="noopener" href="https://www.instagram.com/econugenics/" title="ecoNugenics on Instagram">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-instagram" viewBox="0 0 32 32"><path fill="#444" d="M16 3.094c4.206 0 4.7.019 6.363.094 1.538.069 2.369.325 2.925.544.738.287 1.262.625 1.813 1.175s.894 1.075 1.175 1.813c.212.556.475 1.387.544 2.925.075 1.662.094 2.156.094 6.363s-.019 4.7-.094 6.363c-.069 1.538-.325 2.369-.544 2.925-.288.738-.625 1.262-1.175 1.813s-1.075.894-1.813 1.175c-.556.212-1.387.475-2.925.544-1.663.075-2.156.094-6.363.094s-4.7-.019-6.363-.094c-1.537-.069-2.369-.325-2.925-.544-.737-.288-1.263-.625-1.813-1.175s-.894-1.075-1.175-1.813c-.212-.556-.475-1.387-.544-2.925-.075-1.663-.094-2.156-.094-6.363s.019-4.7.094-6.363c.069-1.537.325-2.369.544-2.925.287-.737.625-1.263 1.175-1.813s1.075-.894 1.813-1.175c.556-.212 1.388-.475 2.925-.544 1.662-.081 2.156-.094 6.363-.094zm0-2.838c-4.275 0-4.813.019-6.494.094-1.675.075-2.819.344-3.819.731-1.037.4-1.913.944-2.788 1.819S1.486 4.656 1.08 5.688c-.387 1-.656 2.144-.731 3.825-.075 1.675-.094 2.213-.094 6.488s.019 4.813.094 6.494c.075 1.675.344 2.819.731 3.825.4 1.038.944 1.913 1.819 2.788s1.756 1.413 2.788 1.819c1 .387 2.144.656 3.825.731s2.213.094 6.494.094 4.813-.019 6.494-.094c1.675-.075 2.819-.344 3.825-.731 1.038-.4 1.913-.944 2.788-1.819s1.413-1.756 1.819-2.788c.387-1 .656-2.144.731-3.825s.094-2.212.094-6.494-.019-4.813-.094-6.494c-.075-1.675-.344-2.819-.731-3.825-.4-1.038-.944-1.913-1.819-2.788s-1.756-1.413-2.788-1.819c-1-.387-2.144-.656-3.825-.731C20.812.275 20.275.256 16 .256z"/><path fill="#444" d="M16 7.912a8.088 8.088 0 0 0 0 16.175c4.463 0 8.087-3.625 8.087-8.088s-3.625-8.088-8.088-8.088zm0 13.338a5.25 5.25 0 1 1 0-10.5 5.25 5.25 0 1 1 0 10.5zM26.294 7.594a1.887 1.887 0 1 1-3.774.002 1.887 1.887 0 0 1 3.774-.003z"/></svg>
          <span class="icon__fallback-text">Instagram</span>
        </a>
      </li></ul>

</div>
</div><style data-shopify>@media only screen and (min-width: 769px) {
            .footer__item--1494301487049 {
              width: 18%;
            }
          }</style><div  class="grid__item footer__item--1494301487049">
  
    <p class="footer__title small--hide">
      INFO
    </p>
    <button type="button" class="footer__title collapsible-trigger collapsible-trigger-btn medium-up--hide" aria-controls="Footer-1494301487049">
      INFO
<span class="collapsible-trigger__icon collapsible-trigger__icon--open" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg>
</span>
</button>
  
  <div
    
      id="Footer-1494301487049" class="collapsible-content collapsible-content--small"
    >
    <div class="collapsible-content__inner">
      <div class="footer__collapsible">
        <ul class="no-bullets site-footer__linklist"><li><a href="https://econugenics.gorgias.help/">FAQ</a></li><li><a href="/pages/return-policy">Returns</a></li><li><a href="/pages/california-prop-65">California Prop 65</a></li><li><a href="/pages/shipping-policy">Shipping</a></li><li><a href="/pages/international">International</a></li><li><a href="/pages/privacy-policy">Privacy Policy</a></li><li><a href="/pages/terms-of-service">Terms of Service</a></li><li><a href="/pages/gdpr-policy">GDPR Policy</a></li><li><a href="/pages/california-policy">California Policy</a></li><li><a href="https://econugenics.com/pages/promotions">**Promotions</a></li><li><a href="/pages/eco-rewards">Subscribe & Save</a></li></ul>
      </div>
    </div>
  </div>

</div><style data-shopify>@media only screen and (min-width: 769px) {
            .footer__item--1494292485313 {
              width: 21%;
            }
          }</style><div  class="grid__item footer__item--1494292485313">
  
    <p class="footer__title small--hide">
      ABOUT
    </p>
    <button type="button" class="footer__title collapsible-trigger collapsible-trigger-btn medium-up--hide" aria-controls="Footer-1494292485313">
      ABOUT
<span class="collapsible-trigger__icon collapsible-trigger__icon--open" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg>
</span>
</button>
  
  <div
    
      id="Footer-1494292485313" class="collapsible-content collapsible-content--small"
    >
    <div class="collapsible-content__inner">
      <div class="footer__collapsible">
        <ul class="no-bullets site-footer__linklist"><li><a href="/pages/dr-isaac-eliaz">Dr. Isaac Eliaz</a></li><li><a href="/pages/research">Research</a></li><li><a href="/pages/ingredients-index">Our Ingredients</a></li><li><a href="https://econugenics.com/blogs/news">ecoBlog</a></li><li><a href="https://pro.econugenics.com">Healthcare Practitioners</a></li></ul>
      </div>
    </div>
  </div>

</div><style data-shopify>@media only screen and (min-width: 769px) {
            .footer__item--77efbd01-54b9-4411-a40e-70b110a6acc9 {
              width: 18%;
            }
          }</style><div  class="grid__item footer__item--77efbd01-54b9-4411-a40e-70b110a6acc9">
  <p class="footer__title small--hide">Contact</p>
  <button type="button" class="footer__title collapsible-trigger collapsible-trigger-btn medium-up--hide" aria-controls="Footer-77efbd01-54b9-4411-a40e-70b110a6acc9">
    Contact
<span class="collapsible-trigger__icon collapsible-trigger__icon--open" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg>
</span>
</button>

<div
  
    id="Footer-77efbd01-54b9-4411-a40e-70b110a6acc9" class="collapsible-content collapsible-content--small"
  >
  <div class="collapsible-content__inner">
    <div class="footer__collapsible">
      <p><a href="mailto:CustomerCare@econugenics.com">Email Customer Care<br/></a></p><p>Customer Care:<br/>800-308-5518</p><p>Health Professional Sales:<br/>888-570-7632</p>
    </div>
  </div>
</div>
</div><style data-shopify>@media only screen and (min-width: 769px) {
            .footer__item--1494292487693 {
              width: 23%;
            }
          }</style><div  class="grid__item grid-newsletter footer__item--1494292487693">
  <p class="footer__title small--hide">Sign up and save</p>
  <button type="button" class="footer__title collapsible-trigger collapsible-trigger-btn medium-up--hide" aria-controls="Footer-1494292487693">
    Sign up and save
<span class="collapsible-trigger__icon collapsible-trigger__icon--open" role="presentation">
  <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down" viewBox="0 0 28 16"><path d="M1.57 1.59l12.76 12.77L27.1 1.59" stroke-width="2" stroke="#000" fill="none" fill-rule="evenodd"/></svg>
</span>
</button>

<div
  
    id="Footer-1494292487693" class="collapsible-content collapsible-content--small is-open"
  >
  <div class="collapsible-content__inner">
    <div class="footer__collapsible footer_collapsible--disabled">
      
        <p>Subscribe to our ecoNewsletter to receive educational materials, promotions offers and more.</p>
      

      <form method="post" action="/contact#newsletter-footer" id="newsletter-footer" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" />
        
        

        <label for="Email-1494292487693" class="hidden-label">Enter your email</label>
        <input type="hidden" name="contact[tags]" value="prospect,newsletter">
        <input type="hidden" name="contact[context]" value="footer">
        <div class="footer__newsletter">
          <input type="email" value="" placeholder="Enter your email" name="contact[email]" id="Email-1494292487693" class="footer__newsletter-input" autocorrect="off" autocapitalize="off">
          <button type="submit" class="footer__newsletter-btn" name="commit">
            <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-email" viewBox="0 0 64 64"><path d="M63 52H1V12h62zM1 12l25.68 24h9.72L63 12M21.82 31.68L1.56 51.16m60.78.78L41.27 31.68"/></svg>
            <span class="icon__fallback-text">Subscribe</span>
          </button>
        </div>
      </form>
    </div>
  </div>
</div>
</div></div>

    <div class="site-footer__bottom"><div
        class="footer__copyright site-footer__bottom-block"
        style="text-align:center; padding-top:3rem;margin:auto;justify-content:center;"
      >
        <div>
          <span class="copyright__content mx-auto mb-4 block" style="max-width: 600px;text-align:center;">
            *These statements have not been evaluated by the Food and Drug Administration. These products are not
            intended to diagnose, treat, cure or prevent any disease.
          </span>
        </div><span class="copyright__content"
            >&copy; 2025, <a href="/" title="">ecoNugenics</a>&nbsp;| Chattanooga, TN 37402 USA
          </span><span></span></div>
    </div>
  </div>
</footer>


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

    <div id="shopify-section-newsletter-popup" class="shopify-section index-section--hidden">
</div>
<div id="VideoModal" class="modal modal--solid">
  <div class="modal__inner">
    <div class="modal__centered page-width text-center">
      <div class="modal__centered-content">
        <div class="video-wrapper video-wrapper--modal">
          <div id="VideoHolder"></div>
        </div>
      </div>
    </div>
  </div>

  <button type="button" class="modal__close js-modal-close text-link">
    <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 64 64"><path d="M19 17.61l27.12 27.13m0-27.12L19 44.74"/></svg>
    <span class="icon__fallback-text">"Close (esc)"</span>
  </button>
</div>
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
  <div class="pswp__bg"></div>
  <div class="pswp__scroll-wrap">
    <div class="pswp__container">
      <div class="pswp__item"></div>
      <div class="pswp__item"></div>
      <div class="pswp__item"></div>
    </div>

    <div class="pswp__ui pswp__ui--hidden">
      <button class="btn btn--no-animate btn--body btn--circle pswp__button pswp__button--arrow--left" title="Previous">
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-left" viewBox="0 0 284.49 498.98"><path d="M249.49 0a35 35 0 0 1 24.75 59.75L84.49 249.49l189.75 189.74a35.002 35.002 0 1 1-49.5 49.5L10.25 274.24a35 35 0 0 1 0-49.5L224.74 10.25A34.89 34.89 0 0 1 249.49 0z"/></svg>
      </button>

      <button class="btn btn--no-animate btn--body btn--circle btn--large pswp__button pswp__button--close" title="Close (esc)">
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 64 64"><path d="M19 17.61l27.12 27.13m0-27.12L19 44.74"/></svg>
      </button>

      <button class="btn btn--no-animate btn--body btn--circle pswp__button pswp__button--arrow--right" title="Next">
        <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewBox="0 0 284.49 498.98"><path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98z"/></svg>
      </button>
    </div>
  </div>
</div>

    <!-- begin-boost-pfs-js -->
<script>
  /* Declare bcSfFilterConfig variable */
  var boostPFSAppConfig = {
    api: {
      filterUrl: 'https://services.mybcapps.com/bc-sf-filter/filter',
      searchUrl: 'https://services.mybcapps.com/bc-sf-filter/search',
      suggestionUrl: 'https://services.mybcapps.com/bc-sf-filter/search/suggest',
      productsUrl: 'https://services.mybcapps.com/bc-sf-filter/search/products',
      analyticsUrl: 'https://lambda.mybcapps.com/e'
    },
    shop: {
      name: 'ecoNugenics',
      url: 'https://econugenics.com',
      domain: 'econugenics.myshopify.com',
      currency: 'USD',
      money_format: "\u0026#36;{{amount}}",
      money_format_with_currency: "\u0026#36;{{amount}} | {{ round: 2 }} USD"
    },
    general: {
      file_url: "//econugenics.com/cdn/shop/files/?55192",
      asset_url: "//econugenics.com/cdn/shop/t/81/assets/boost-pfs.js?55192",
      collection_id: 0,
      collection_handle: "",
      collection_product_count: 0,
      
      
      theme_id: 141036421358,
      collection_tags: null,
      current_tags: null,
      default_sort_by: "",
      swatch_extension: "png",
      no_image_url: "//econugenics.com/cdn/shop/t/81/assets/boost-pfs-no-image.gif?v=45510820439899768411713533637",
      search_term: "",
      template: "blog",currencies: ["USD"],
      current_currency:"USD",published_locales: {"en":true},
      current_locale:"en",
      isInitFilter:false},
    
    settings: {"general":{"productAndVariantAvailable":false,"availableAfterFiltering":false,"activeFilterScrollbar":true,"showFilterOptionCount":true,"showSingleOption":true,"showOutOfStockOption":true,"collapseOnPCByDefault":false,"collapseOnMobileByDefault":false,"keepToggleState":true,"showRefineBy":true,"capitalizeFilterOptionValues":true,"paginationType":"infinite","showLoading":false,"activeScrollToTop":false,"customSortingList":"relevance|best-selling|manual|title-ascending|title-descending|price-ascending|price-descending|created-ascending|created-descending","changeMobileButtonLabel":true,"sortingAvailableFirst":false,"showVariantImageBasedOn":"","addCollectionToProductUrl":false,"showVariantImageBasedOnSelectedFilter":"","urlScheme":2,"isShortenUrlParam":true,"shortenUrlParamList":["pf_c_health_focus:health_focus","pf_t_ingredient:ingredient","pf_c_collection:collection","pf_v_vendor:vendor","pf_pt_product_type:product_type","pf_p_price:price"],"enableAjaxCart":true,"ajaxCartStyle":"slide","selectOptionInProductItem":false},"search":{"enableSuggestion":true,"showSuggestionProductVendor":true,"showSuggestionProductPrice":true,"showSuggestionProductSalePrice":true,"showSuggestionProductSku":true,"showSuggestionProductImage":true,"productAvailable":false,"suggestionBlocks":[{"type":"suggestions","label":"Popular suggestions","status":"active","number":5},{"type":"products","label":"Products","status":"active","number":6},{"type":"collections","label":"Collections","status":"active","number":3,"excludedValues":[]},{"type":"pages","label":"Blog & Pages","status":"active","number":3}],"searchBoxOnclick":{"recentSearch":{"label":"Recent searches","status":true,"number":"3"},"searchTermSuggestion":{"label":"Popular searches","status":false,"data":[],"backup":[],"type":"manually"},"productSuggestion":{"label":"Trending products","status":false,"data":[],"backup":[],"type":"manually"}},"suggestionNoResult":{"search_terms":{"label":"Popular searches","status":false,"data":[],"type":"manually","backup":[]},"products":{"label":"Trending products","status":false,"data":[],"type":"manually","backup":[]}},"suggestionStyle":"style3","suggestionStyle1ProductItemType":"list","suggestionStyle1ProductPosition":"none","suggestionStyle1ProductPerRow":"1","suggestionStyle2ProductItemType":"list","suggestionStyle2ProductPosition":"right","suggestionStyle2ProductPerRow":"2","suggestionStyle3ProductItemType":"grid","suggestionStyle3ProductPosition":"right","suggestionStyle3ProductPerRow":"3","searchPanelBlocks":{"searchTermSuggestions":{"label":"Popular searches","type":"manually","active":false,"backup":[],"searchTermList":[]},"mostPopularProducts":{"label":"Trending products","type":"manually","active":false,"backup":[],"productList":[]},"collections":{"excludedValues":[]}},"scopedSuggestions":{"applyScopedSuggestion":false}},"backSettings":{"offSensitive":false},"actionlist":{"qvBtnBackgroundColor":"rgba(255||255||255||1)","qvBtnTextColor":"rgba(61||66||70||1)","qvBtnBorderColor":"rgba(255||255||255||1)","qvBtnHoverBackgroundColor":"rgba(61||66||70||1)","qvBtnHoverTextColor":"rgba(255||255||255||1)","qvBtnHoverBorderColor":"rgba(61||66||70||1)","atcBtnBackgroundColor":"rgba(0||0||0||1)","atcBtnTextColor":"rgba(255||255||255||1)","atcBtnBorderColor":"rgba(0||0||0||1)","atcBtnHoverBackgroundColor":"rgba(61||66||70||1)","atcBtnHoverTextColor":"rgba(255||255||255||1)","atcBtnHoverBorderColor":"rgba(61||66||70||1)","alStyle":"bc-al-style4","qvEnable":true,"atcEnable":true},"labelTranslations":{"en":{"refine":"Refine By","refineMobile":"Refine By","refineMobileCollapse":"Hide Filter","clear":"Clear","clearAll":"Clear All","viewMore":"View More","viewLess":"View Less","apply":"Apply","close":"Close","showLimit":"Show","collectionAll":"All","under":"Under","above":"Above","ratingStars":"Star","showResult":"Show results","searchOptions":"Search Options","loadMore":"Load More","loadMoreTotal":"{{ from }} - {{ to }} of {{ total }} Products","sortByOptions":{"relevance":"Relevance","best-selling":"Best selling","manual":"Manual","title-ascending":"Title ascending","title-descending":"Title descending","price-ascending":"Price ascending","price-descending":"Price descending","created-ascending":"Created ascending","created-descending":"Created descending"},"recommendation":{"homepage-386708":"Just dropped","homepage-108418":"Best Sellers","collectionpage-333675":"Just dropped","collectionpage-211256":"Most Popular Products","productpage-773771":"Recently viewed","productpage-533373":"Frequently Bought Together","cartpage-552101":"Still interested in this?","cartpage-651283":"Similar Products"},"search":{"generalTitle":"Search","resultHeader":"Search results for \"{{ terms }}\"","resultNumber":"Showing {{ count }} results for \"{{ terms }}\"","resultEmpty":"Your search for \"{{ terms }}\" did not match any results"},"suggestion":{"viewAll":"View all results","didYouMean":"Did you mean: {{ terms }}?","suggestQuery":"Showing results for {{ terms }}","instantSearchSuggestionsLabel":"Popular suggestions","instantSearchCollectionsLabel":"Collections","instantSearchProductsLabel":"Products","instantSearchPagesLabel":"Blog & Pages","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products","noSearchResultSearchTermLabel":"Popular searches","noSearchResultProductsLabel":"Trending products"},"error":{"noFilterResult":"Sorry, no products matched your selection","noSearchResult":"Sorry, no products matched the keyword","noProducts":"No products found in this collection","noSuggestionResult":"Sorry, nothing found for \"{{ terms }}\"","noSuggestionProducts":"Sorry, nothing found for \"{{ terms }}\""},"action_list":{"qvBtnLabel":"Quick View","qvAddToCartBtnLabel":"Add To Cart","qvSoldOutLabel":"Sold Out","qvSaleLabel":"Sale","qvViewFullDetails":"View Full Details","qvQuantity":"Quantity","atcAvailableLabel":"Add To Cart","atcSelectOptionsLabel":"Select Options","atcSoldOutLabel":"Sold Out"},"defaultTheme":{},"recentlyViewed":{"recentProductHeading":"Recently Viewed Products"},"mostPopular":{"popularProductsHeading":"Popular Products"}}},"label":{"sortByOptions":{"relevance":"Relevance","best-selling":"Best selling","manual":"Manual","title-ascending":"Title ascending","title-descending":"Title descending","price-ascending":"Price ascending","price-descending":"Price descending","created-ascending":"Created ascending","created-descending":"Created descending"},"recommendation":{"homepage-386708":"Just dropped","homepage-108418":"Best Sellers","collectionpage-333675":"Just dropped","collectionpage-211256":"Most Popular Products","productpage-773771":"Recently viewed","productpage-533373":"Frequently Bought Together","cartpage-552101":"Still interested in this?","cartpage-651283":"Similar Products"},"search":{},"suggestion":{"instantSearchSuggestionsLabel":"Popular suggestions","instantSearchCollectionsLabel":"Collections","instantSearchProductsLabel":"Products","instantSearchPagesLabel":"Blog & Pages","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products","noSearchResultSearchTermLabel":"Popular searches","noSearchResultProductsLabel":"Trending products"},"error":{},"action_list":{},"defaultTheme":{},"recentlyViewed":{},"mostPopular":{}},"style":{"filterTitleTextColor":"rgba(0||0||0||1)","filterTitleFontSize":"","filterTitleFontWeight":600,"filterTitleFontTransform":"uppercase","filterTitleFontFamily":"\"Gellix\"","filterOptionTextColor":"rgba(41||41||41||1)","filterOptionFontSize":13,"filterOptionFontFamily":"","filterMobileButtonTextColor":"","filterMobileButtonFontSize":"","filterMobileButtonFontWeight":600,"filterMobileButtonFontTransform":"uppercase","filterMobileButtonFontFamily":"","filterMobileButtonBackgroundColor":""},"searchEmptyResultMessages":{}},
    
    
swatch_settings: {
  
},
    
  };
  function mergeObject(obj1, obj2){
    var obj3 = {};
    for (var attr in obj1) { obj3[attr] = obj1[attr]; }
    for (var attr in obj2) { obj3[attr] = obj2[attr]; }
    return obj3;
  }
  if (typeof boostPFSConfig == 'undefined') {
    boostPFSConfig = {};
  }
  if (typeof boostPFSAppConfig != 'undefined') {
    boostPFSConfig = mergeObject(boostPFSConfig, boostPFSAppConfig);
  }
  if (typeof boostPFSThemeConfig != 'undefined') {
    boostPFSConfig = mergeObject(boostPFSConfig, boostPFSThemeConfig);
  }
</script>

<!-- Include Resources --><script defer src="//econugenics.com/cdn/shop/t/81/assets/boost-pfs-core-instant-search.js?v=67344048195048603481713533637"></script>
  <script defer src="//econugenics.com/cdn/shop/t/81/assets/boost-pfs-instant-search.js?v=115818787769020727451713533637"></script><!-- Initialize App -->
<script defer src="//econugenics.com/cdn/shop/t/81/assets/boost-pfs-init.js?v=172759782029916137151713533637"></script>



  <!-- Instant search no result JSON data -->
  <script type="application/json" id="boost-pfs-instant-search-products-not-found-json">
	{
		"search_terms": [],
		"products": []
	}
</script>


<!-- 3rd App Integration -->
<!-- end-boost-pfs-js -->

<script src="https://a.klaviyo.com/media/js/onsite/onsite.js"></script>
<script>
  var klaviyo = klaviyo || [];
  klaviyo.init({account: "SY9r5c", platform: "shopify"});
  klaviyo.enable("backinstock", {
    trigger: {
      product_page_text: "Notify me when this is back in stock",
      product_page_class: "btn btn--full btn--econugenics",
      product_page_text_align: "center",
      product_page_margin: "0px",
      product_page_width: "100%",
      replace_anchor: true
    },
    modal: {
      headline: "{product_name}",
      body_content: "Register to receive a notification when this item comes back in stock.",
      email_field_label: "Email",
      button_label: "Notify me when available",
      subscription_success_label: "You're in! We'll let you know when it's back.",
      footer_content: '',
      additional_styles: "@import url('https://fonts.googleapis.com/css?family=Helvetica+Neue');",
      drop_background_color: "#000",
      background_color: "#fff",
      text_color: "#222",
      button_text_color: "#fff",
      button_background_color: "#439fdb",
      close_button_color: "#ccc",
      error_background_color: "#fcd6d7",
      error_text_color: "#C72E2F",
      success_background_color: "#d3efcd",
      success_text_color: "#1B9500"
    }
  });
</script>
<script
  defer
  type="text/javascript"
  src="//static.klaviyo.com/onsite/js/klaviyo.js?company_id=SY9r5c"
></script>

<script>
  var _learnq = _learnq || [];
  var page = window.location.href;
  _learnq.push([
    'track', 'Viewed Page', {
      url: page
    }
  ]);
</script>

<script defer>
  var _learnq = _learnq || [];
  if ('') {
    _learnq.push(['identify', {
      '$email' : ''
    }]);
  }
</script>

<script async src="https://loox.io/widget/VJ-Neas1k3/loox.1644608979943.js?shop=econugenics.myshopify.com"></script>
<script>
  var productList = [];window.uetq = window.uetq || [];
  window.uetq.push('event', '', {
    'ecomm_prodid': productList,
    'ecomm_pagetype': 'home'
  });
</script>

<script
  type="text/javascript"
  id="pap_x2s6df8d"
  src="https://econugenics.postaffiliatepro.com/scripts/vqjwv7"
></script>
<script type="text/javascript">
  PostAffTracker.setAccountId('default1');
  try {
    PostAffTracker.track();
  } catch (err) { }
</script>

<script async src="https://cdn.rebuyengine.com/onsite/js/rebuy.js?shop=econugenics.myshopify.com"></script>

<script id="rebuy-cart-template" type="text/template">
<div
  id="rebuy-cart"
  class="rebuy-cart"
  v-cloak
  v-bind:class="[visible ? 'is-visible' : '', 'currency-' + currency() ]"
  role="dialog"
  aria-modal="true"
  aria-labelledby="SmartCart_title"
  v-bind:aria-hidden="!visible ? 'true' : 'false'"
>
  <div class="rebuy-cart__flyout">
    <div class="rebuy-cart__flyout-header">
      <div v-html="renderHeader()"></div>
      <button
        class="rebuy-cart__flyout-close"
        type="button"
        v-on:click="hide()"
        aria-label="Close Cart"
      >
        <i class="fal fa-times" aria-hidden="true"></i>
      </button>
    </div>
    <div class="rebuy-cart__flyout-body">
      <div
        class="rebuy-cart__flyout-announcement-bar"
        id="rebuy-smart-cart-announcement-bar"
        v-if="announcementBarEnabled()"
      >
        <div
          class="rebuy-cart__flyout-announcement-bar-message"
          v-for="message in settings.announcement_bar.messages"
          v-html="message"
        ></div>
      </div>

      <div
        class="rebuy-cart__flyout-shipping-bar"
        v-if="freeShippingEnabled()"
        v-bind:class="[ freeShippingHelperMessage() ? 'has-helper' : '', hasFreeShipping() ? 'has-free-shipping': '' ]"
      >
        <div
          class="rebuy-cart__flyout-shipping-bar-message"
          v-if="!hasFreeShipping()"
          v-html="freeShippingRemainingMessage()"
        ></div>
        <div
          class="rebuy-cart__flyout-shipping-bar-message"
          v-if="hasFreeShipping()"
          v-html="freeShippingCompleteMessage()"
        ></div>
        <div
          class="rebuy-cart__flyout-shipping-bar-meter"
          v-bind:class="[hasFreeShippingProgress() ? 'has-progress' : 'no-progress']"
        >
          <span id="free-shipping-progress-label" class="rebuy-cart__flyout-shipping-bar-meter-fill-text">
            Progress to free shipping: {{ freeShippingPercentComplete() }}
          </span>
          <div
            class="rebuy-cart__flyout-shipping-bar-meter-fill"
            v-bind:style="{ width: freeShippingPercentComplete() }"
            role="progressbar"
            tabindex="0"
            aria-valuemin="0"
            aria-valuemax="100"
            v-bind:aria-valuenow="freeShippingPercentComplete(false, true)"
            aria-labelledby="free-shipping-progress-label"
          ></div>
        </div>
        <div
          class="rebuy-cart__flyout-shipping-bar-helper"
          v-if="freeShippingHelperMessage()"
          v-html="freeShippingHelperMessage()"
        ></div>
      </div>

      <div v-else-if="progressBarEnabled()" class="rebuy-cart__progress-bar-container above">
        <div v-for="bar in settings.progress_bar.bars" v-if="isValidBar(bar)">
          <div class="rebuy-cart__progress-step-wrapper" v-bind:class="[ 'count-' + bar.tiers.length ]">
            <div v-for="tier in bar.tiers" class="rebuy-cart__progress-step" v-bind:style="{ width: progressStepMaxWidth(bar) }" v-bind:class="[ progressTierReached(tier) ? 'complete' : '' ]">
              <div class="rebuy-cart__progress-step-icon" v-html="progressTierIcon(tier)"></div>
              <span class="rebuy-cart__progress-step-label">{{ getTierLabel(tier)}}</span>
            </div>
          </div>

          <div class="rebuy-cart__progress-bar-wrapper">
            <div class="rebuy-cart__progress-bar-meter" v-bind:class="[hasTierProgress() ? 'has-progress' : 'no-progress']">
              <div
                class="rebuy-cart__progress-bar-meter-fill"
                v-bind:style="{ width: tiersPercentageComplete(bar) }"
                role="progressbar"
                tabindex="0"
                aria-valuemin="0"
                aria-valuemax="100"
                v-bind:aria-valuenow="tiersPercentageComplete(bar, true)"
                aria-labelledby="rebuy-cart__progress-bar-meter-label"
              >
                <span class="sr-only"></span>
              </div>
            </div>

            <div id="rebuy-cart__progress-bar-meter-label" class="rebuy-cart__progress-bar-prompt" v-if="hasProgressPrompt(bar)" v-html="getTierFeedbackText(bar)"></div>
          </div>

          <div class="rebuy-cart__progress-free-products" v-if="getBarLayout(bar) == 'above' && earnedProducts(bar).length > 0">
            <div class="rebuy-cart__progress-free-products-title">Free Gifts</div>
            <div class="rebuy-cart__progress-free-products-list" ref="freeProductList">
              <div v-for="product in earnedProducts(bar)" class="rebuy-cart__progress-free-product" v-bind:style="[ freeProductTileStyle(bar) ]">
                <div class="rebuy-cart__progress-free-product-image" v-bind:style="freeProductStyles(product)"></div>
                <div class="rebuy-cart__progress-free-product-info">
                  <div>
                    <p class="rebuy-cart__progress-free-product-title" v-html="product.title"></p>
                    <span v-if="product.chosen_variant" class="rebuy-cart__progress-free-product-variant-title" v-html="getFreeVariantTitle(product)"></span>
                  </div>
                  <div v-if="!product.chosen_variant" class="rebuy-cart__progress-free-product-variant-select-container">
                    <select class="rebuy-cart__progress-free-product-variant-select" v-on:change="selectFreeProductVariant($event, product)">
                      <option value="" disabled selected>Select Variant</option>
                      <option v-for="variant in freeProductOptions(product)" v-bind:value="variant.id">{{ variant.title }}</option>
                    </select>
                    <div class="rebuy-cart__progress-free-product-variant-select-prompt" v-html="freeProductPrompt(product)"></div>
                  </div>
                </div>
                <button
                  v-show="product.chosen_variant"
                  class="rebuy-cart__progress-free-product-remove"
                  v-on:click="removeFreeProduct(product)"
                >
                  <i class="fal fa-times" aria-hidden="true"></i>
                  <span class="sr-only">Remove {{ product.title }} {{ product.chosen_variant?.title ? product.chosen_variant.title : '' }} from Cart</span>
                </button>
              </div>
            </div>
          </div>
        </div>
      </div>

      <div
        class="rebuy-cart__flyout-content"
        v-bind:class="[ hasItems() ? 'has-items' : 'no-items' ]"
      >
        <ul class="rebuy-cart__flyout-items" v-if="hasItems()" data-smartcart-items tabindex="0">
          <li
            class="rebuy-cart__flyout-item"
            v-for="item in items()"
            v-if="!isHiddenItem(item)"
            :key="item.key"
            v-bind:class="[ 'product-' + item.handle, itemProductTagsClasses(item), itemPropertyClasses(item) ]"
            role="group"
            aria-label="product"
          >
            <div class="rebuy-cart__flyout-item-media">
              <a v-bind:href="itemURL(item)" tabindex="-1">
                <img
                  v-bind:src="sizeImage(item.image, '240x240')"
                  v-bind:alt="item.featured_image?.alt"
                />
              </a>
            </div>
            <div class="rebuy-cart__flyout-item-info">
              <a
                role="heading"
                aria-level="5"
                class="rebuy-cart__flyout-item-product-title"
                v-bind:href="itemURL(item)"
                v-html="item.product_title"
                v-bind:alt="'View ' + item.product_title"
              ></a>
              <div
                class="rebuy-cart__flyout-item-variant-title"
                v-html="item.variant_title"
                v-if="item.variant_title"
              ></div>

              <div
                class="rebuy-cart__flyout-item-discount-message"
                v-if="hasLineItemDiscount(item)"
                v-html="lineItemDiscountMessage(item)"
              ></div>

              <div
                class="rebuy-cart__flyout-item-properties"
                v-if="hasItemProperties(item)"
              >
                <div
                  class="rebuy-cart__flyout-item-property rebuy-cart__flyout-item-property--delivery-frequency"
                  v-if="itemDeliveryFrequency(item)"
                  v-html="itemDeliveryFrequency(item)"
                ></div>
                <div
                  class="rebuy-cart__flyout-item-property"
                  v-for="property in itemProperties(item)"
                  v-bind:class="[ itemPropertyKeyClass(property), itemPropertyValueClass(property) ]"
                >
                  <span
                    class="rebuy-cart__flyout-item-property-name"
                    v-html="property.key"
                  ></span>
                  <span class="rebuy-cart__flyout-item-property-separator">
                    :
                  </span>
                  <span
                    class="rebuy-cart__flyout-item-property-value"
                    v-html="property.value"
                  ></span>
                </div>
              </div>

              <button
                class="rebuy-cart__flyout-item-remove"
                type="button"
                v-bind:alt="'Remove ' + item.product_title"
                v-bind:aria-label="'Remove ' + item.product_title"
                v-on:click="removeItem(item)"
              >
                <i
                  class="far"
                  v-bind:class="[(item.status == 'removing') ? 'fa-sync-alt fa-fast-spin' : 'fa-trash']"
                  aria-hidden="true"
                ></i>
              </button>

              <div class="rebuy-cart__flyout-item-quantity">
                <div
                  class="rebuy-cart__flyout-item-quantity-widget"
                  v-if="hideQuantitySelectors && !hideQuantitySelectors(item)"
                >
                  <button
                    class="rebuy-cart__flyout-item-quantity-widget-button"
                    v-bind:alt="'Decrease quantity of ' + item.product_title"
                    v-bind:aria-label="'Decrease quantity of ' + item.product_title"
                    v-on:click="decreaseItem(item)"
                    type="button"
                  >
                    <i
                      class="far"
                      v-bind:class="[(item.status == 'decreasing') ? 'fa-sync-alt fa-fast-spin' : 'fa-minus']"
                      aria-hidden="true"
                    ></i>
                  </button>

                  <span
                    class="rebuy-cart__flyout-item-quantity-widget-label"
                  >
                    <span class="sr-only">Quantity of {{ item.product_title }}</span>
                    {{ item.quantity }}
                  </span>

                  <button
                    class="rebuy-cart__flyout-item-quantity-widget-button"
                    v-bind:alt="'Increase quantity of ' + item.product_title"
                    v-bind:aria-label="'Increase quantity of ' + item.product_title"
                    v-on:click="increaseItem(item)"
                    type="button"
                  >
                    <i
                      class="far"
                      v-bind:class="[(item.status == 'increasing') ? 'fa-sync-alt fa-fast-spin' : 'fa-plus']"
                      aria-hidden="true"
                    ></i>
                  </button>
                </div>
              </div>

              <div class="rebuy-cart__flyout-item-price">
                <div v-if="itemHasDiscount(item)">
                  <span
                    class="rebuy-money sale"
                  >
                    <span class="sr-only">Sale price</span>
                    <span v-html="formatMoney(itemPrice(item))"></span>
                  </span>
                  <span
                    class="rebuy-money compare-at"
                  >
                    <span class="sr-only">Original price</span>
                    <span v-html="formatMoney(compareAtPrice(item))"></span>
                  </span>
                </div>
                <div v-if="!itemHasDiscount(item)">
                  <span
                    class="rebuy-money"
                  >
                    <span class="sr-only">Price</span>
                    <span v-html="formatMoney(itemPrice(item))"></span>
                  </span>
                </div>
              </div>

              <div class="rebuy-cart__flyout-item-bundle" v-if="itemIsBundle(item) && !hideBundleOptions(item)">
                <button
                  class="rebuy-cart__flyout-item-bundle-show-button"
                  v-if="itemBundleLength(item) > 0 && !isSeeingBundle(item)"
                  v-on:click="toggleActiveBundle(item)"
                  type="button"
                  v-bind:alt="'Expand bundle of ' + item.product_title"
                  v-bind:aria-label="'Expand bundle of ' + item.product_title"
                  >
                    Show
                    <span v-html="itemBundleLength(item)"></span>
                    items
                    <span class="rebuy-cart__flyout-bundle-chev-icon"><i class="fas fa-chevron-down"></i></span>
                </button>

                <button
                  class="rebuy-cart__flyout-item-bundle-hide-button"
                  v-if="itemBundleLength(item) > 0 && isSeeingBundle(item)"
                  v-on:click="toggleActiveBundle(item)"
                  type="button"
                  v-bind:alt="'Collapse bundle of ' + item.product_title"
                  v-bind:aria-label="'Collapse bundle of ' + item.product_title"
                  >
                    Hide
                    <span v-html="itemBundleLength(item)"></span>
                    items
                    <span class="rebuy-cart__flyout-bundle-chev-icon"><i class="fas fa-chevron-up"></i></span>
                </button>

                <ul
                  class="rebuy-cart__flyout-item-bundle-children"
                  v-if="itemBundleLength(item) > 0 && isSeeingBundle(item)"
                  tabindex="0"
                  >
                  <li class="rebuy-cart__flyout-item-bundle-child" v-for="(option, index) in item.options_with_values">
                      <div class="rebuy-cart__flyout-item-bundle-child-left">
                        <div class="rebuy-cart__flyout-item-bundle-image-container">
                          <img
                            v-bind:src="getBundleOptionImage(item.product, option, index)"
                            v-bind:alt="childBundleTitle(option)"
                            class="rebuy-cart__flyout-item-bundle-image"
                          />
                        </div>
                      </div>

                      <div class="rebuy-cart__flyout-item-bundle-child-right">
                        <h5 v-html="childBundleTitle(option)" class="rebuy-cart__flyout-item-bundle-title"></h5>
                        <p v-html="option.value" class="rebuy-cart__flyout-item-bundle-value"></p>
                      </div>
                  </li>
                <ul>
              </div>
            </div>

            <div
              v-if="itemHasBMSM(item) && bMSMFinalTierNotReached(item)"
              class="rebuy-cart__flyout-item-buy-more-save-more"
            >
              <div
                v-if="hasBMSMButtons()"
                class="rebuy-cart__flyout-item-buy-more-save-more-container"
              >
                <div
                  v-for="tier in getBMSMTiers()"
                  class="rebuy-cart__flyout-item-buy-more-save-more-button-container"
                  v-if="tier.quantity > item.quantity"
                >
                  <button
                    v-on:click="adjustBMSMQuantity(item, tier)"
                    class="rebuy-button rebuy-cart__flyout-item-buy-more-save-more-button"
                    v-bind:alt="getBMSMButtonText(tier)"
                  >
                    <span v-html="getBMSMButtonText(tier)"></span>
                  </button>
                </div>
              </div>

              <span
                v-if="!hasBMSMButtons()"
                class="rebuy-cart__flyout-buy-more-save-more-dynamic-message-text"
                v-html="buyMoreSaveMoreDynamicText(item)"
              ></span>
            </div>

            <div
              class="rebuy-cart__flyout-item-subscription"
              v-if="hasSwitchToSubscription(item)"
            >
              <button
                class="rebuy-button outline"
                v-if="!item.product.subscription || item.status == 'downgrading' || item.status == 'upgrading'"
                v-bind:alt="'Switch ' + item.product_title + ' to a Subscription'"
                v-bind:disabled="(item.status == 'downgrading' || item.status == 'upgrading')"
                v-on:click="updateItemDeliveryFrequency(item, selectedSubscriptionFrequency(item, 0), 'onetime')"
                type="button"
              >
                <span v-html="switchToSubscriptionLabel(item)"></span>
              </button>

              <select
                class="rebuy-select muted"
                aria-label="subscription frequency"
                v-if="item.product.subscription && item.status != 'downgrading'"
                v-model="item.product.subscription_frequency"
                v-on:change="updateItemDeliveryFrequency(item)"
              >
                <optgroup
                  v-if="!item.product.is_subscription_only && !subscriptionDowngradeDisabled()"
                  v-bind:label="onetimeOptionGroupLabel(item)"
                >
                  <option
                    v-bind:value="'onetime'"
                    v-html="onetimeOptionLabel(item)"
                  ></option>
                </optgroup>
                <optgroup v-bind:label="subscriptionOptionGroupLabel(item)">
                  <option
                    v-for="frequency in subscriptionFrequencies(item)"
                    v-bind:value="frequency"
                    v-html="subscriptionOptionLabel(item, frequency, item.product.subscription_interval)"
                  ></option>
                </optgroup>
              </select>
            </div>
          </li>
        </ul>
        <div class="rebuy-cart__flyout-note" v-if="notesEnabled()">
          <label class="rebuy-cart__flyout-note-toggle">
            <input
              class="rebuy-cart__flyout-note-toggle-input rebuy-checkbox"
              type="checkbox"
              v-model="notes.visible"
              v-on:click="notesToggle()"
            />
            <span
              class="rebuy-cart__flyout-note-toggle-label"
              v-html="settings.language.notes_label"
            ></span>
          </label>
          <div
            class="rebuy-cart__flyout-note-content"
            v-if="notesIsVisible()"
          >
            <textarea
              id="rebuy-cart-notes"
              class="rebuy-textarea rebuy-cart__flyout-note-textarea"
              v-model="notes.value"
              v-on:keyup="notesChange($event)"
              v-on:keydown="notesChange($event)"
              v-on:change="notesChange($event)"
              v-bind:placeholder="settings.language.notes_placeholder"
            ></textarea>
            <small
              id="rebuy-cart-characters-remaining"
              v-html="notesRemainingCharacters()"
            ></small>
          </div>
        </div>


        <div class="rebuy-cart__flyout-empty-cart" v-html="emptyCartMessage()" v-if="!hasItems()"></div>
        <div class="rebuy-cart__flyout-empty-cart-footer" v-if="!hasItems()">
          <div data-app-target="empty_cart"></div>
        </div>

        <div class="rebuy-cart__flyout-recommendations" v-if="hasCrossSells()">
          <div
            v-for="widget_id in settings.cross_sells"
            v-bind:data-rebuy-id="widget_id"
          ></div>
        </div>

        <div class="rebuy-cart__upsells" v-if="hasPrePurchase()">
          <div v-bind:data-rebuy-id="settings.pre_purchase.id"></div>
        </div>
      </div>

      <div v-if="progressBarEnabled()" class="rebuy-cart__progress-bar-container below">
        <div class="rebuy-cart__progress-free-products" v-for="bar in settings.progress_bar.bars" v-if="isValidBar(bar) && getBarLayout(bar) == 'below' && earnedProducts(bar).length > 0">
          <div class="rebuy-cart__progress-free-products-title">Free Gifts</div>
          <div class="rebuy-cart__progress-free-products-list" ref="freeProductList">
            <div v-for="product in earnedProducts(bar)" class="rebuy-cart__progress-free-product" v-bind:style="[ freeProductTileStyle(bar) ]">
              <div class="rebuy-cart__progress-free-product-image" v-bind:style="freeProductStyles(product)"></div>
              <div class="rebuy-cart__progress-free-product-info">
                <div>
                  <p class="rebuy-cart__progress-free-product-title" v-html="product.title"></p>
                  <span v-if="product.chosen_variant" class="rebuy-cart__progress-free-product-variant-title" v-html="product.chosen_variant.title"></span>
                </div>
                <div v-if="!product.chosen_variant" class="rebuy-cart__progress-free-product-variant-select-container">
                  <select class="rebuy-cart__progress-free-product-variant-select" v-on:change="selectFreeProductVariant($event, product)">
                    <option value="" disabled selected>Select Variant</option>
                    <option v-for="variant in freeProductOptions(product)" v-bind:value="variant.id">{{ variant.title }}</option>
                  </select>
                  <div class="rebuy-cart__progress-free-product-variant-select-prompt" v-html="freeProductPrompt(product)"></div>
                </div>
              </div>
              <button
                v-show="product.chosen_variant"
                class="rebuy-cart__progress-free-product-remove"
                v-on:click="removeFreeProduct(product)"
                v-bind:aria-label="'Remove ' + product.title +  ' ' + (product.chosen_variant?.title)"
              >
                <i class="fal fa-times" aria-hidden="true"></i>
              </button>
            </div>
          </div>
        </div>
      </div>
    </div>

    <div class="rebuy-cart__flyout-footer" v-show="hasItems()">

      <div class="rebuy-cart__flyout-discount-container" v-if="discountEnabled()">

        <form class="rebuy-cart__flyout-discount-form" v-if="shouldShowDiscountInput()" v-on:submit="applyDiscount(null, $event)">
          <div
            class="rebuy-input-wrapper rebuy-input-wrapper--floating-label"
            v-bind:class="[discount.inputValue ? 'show-label' : '' ]"
          >
            <span
              class="rebuy-input-label"
              v-html="settings.language.discount_code_label"
            ></span>
            <input
              class="rebuy-input"
              v-model="discount.inputValue"
              v-bind:placeholder="settings.language.discount_code_label"
              v-bind:disabled="discount.loading"
              id="rebuy-discount-input"
              aria-label="Input Discount"
              autocomplete
            />
          </div>
          <button
            class="rebuy-button"
            v-bind:disabled="discount.loading"
          >
            <span v-html="discountButtonLabel()"></span>
          </button>
        </form>

        <div class="rebuy-cart__flyout-discount-error-message" v-if="discount.hasError()" v-html="discount.errorMessage()"></div>

        <div class="rebuy-cart__flyout-discount-tag" v-if="shouldShowDiscountSubtotal()">
          <span class="rebuy-cart__flyout-discount-tag-icon"><i class="fas fa-tags"></i></span>
          <span class="rebuy-cart__flyout-discount-tag-text" v-html="discount.code"></span>
          <span
            class="rebuy-cart__flyout-discount-tag-remove"
            v-on:click="removeDiscount()"
          >
            <i class="far fa-times"></i>
          </span>
        </div>

        <div class="rebuy-cart__flyout-discount-amount" v-if="shouldShowDiscountSubtotal()">
          <span v-html="discountTotal()"></span>
        </div>
      </div>

      <div
        class="rebuy-cart__flyout-integration"
        v-if="settings.integrations && settings.integrations.enabled"
      ></div>
      <div class="rebuy-cart__flyout-apps">
        <div data-app-target="above_subtotal"></div>
      </div>

      <div class="rebuy-cart__flyout-subtotal">
        <div class="rebuy-cart__flyout-subtotal-label">
          <span v-html="subtotalLabel()"></span>
        </div>
        <div
          class="rebuy-cart__flyout-subtotal-amount"
          v-html="subtotal()"
        ></div>
      </div>
      <div data-app-target="below_subtotal"></div>

      <div class="rebuy-cart__flyout-actions">
        <div
          v-if="settings.terms && settings.terms.enabled"
          class="rebuy-cart__flyout-terms"
        >
          <input
            class="rebuy-cart__flyout-terms-checkbox rebuy-checkbox"
            id="rebuy-terms-checkbox"
            name="rebuy-terms-checkbox"
            type="checkbox"
            v-model="termsAccepted"
            v-on:click="updateTermsCheck()"
          />
          <label
            class="rebuy-cart__flyout-terms-label"
            for="rebuy-terms-checkbox"
            v-html="settings.terms.disclaimer"
          ></label>
        </div>

        <button
          v-show="hasCheckoutButton()"
          class="rebuy-button rebuy-cart__checkout-button block"
          type="button"
          v-on:click="checkout()"
          v-bind:disabled="hasTermsEnabled() && !hasAcceptedTerms()"
        >
          <span v-html="checkoutLabel()"></span>
        </button>

        <button
          v-if="hasViewCartButton()"
          class="rebuy-button rebuy-cart__view-cart-button block"
          v-bind:class="{'outline': hasCheckoutButton()}"
          type="button"
          v-on:click="viewCart()"
        >
          <span v-html="viewCartLabel()"></span>
        </button>

        <button
          v-if="hasContinueShoppingButton()"
          class="rebuy-button rebuy-cart__continue-shopping-button block outline"
          type="button"
          v-on:click="hide()"
        >
          <span v-html="continueShoppingLabel()"></span>
        </button>

        <button
          v-if="hasShopPayButton()"
          class="rebuy-button rebuy-cart__shop-pay-button block"
          v-on:click="shopPayCheckout()"
          aria-label="Checkout with Shop Pay"
        >
          <svg
            width="80"
            height="30"
            viewBox="0 0 4317 1037"
            fill="none"
            xmlns="http://www.w3.org/2000/svg"
          >
            <g clip-path="url(#clip0)">
              <path
                d="M1105.96 326.186C1071.34 253.553 1005.7 206.635 906.786 206.635C876.426 207.164 846.593 214.661 819.588 228.543C792.585 242.427 769.128 262.328 751.033 286.711L747.423 291.109V6.44337C747.423 4.7982 746.77 3.22051 745.606 2.05722C744.443 0.8939 742.864 0.240234 741.219 0.240234H601.367C599.742 0.269795 598.194 0.936325 597.055 2.09644C595.915 3.25656 595.277 4.81756 595.277 6.44337V822.999C595.277 824.614 595.92 826.162 597.062 827.304C598.204 828.447 599.752 829.089 601.367 829.089H751.145C752.771 829.089 754.332 828.452 755.492 827.311C756.652 826.172 757.318 824.624 757.348 822.999V474.835C757.348 407.165 802.461 359.231 874.643 359.231C953.592 359.231 973.555 424.195 973.555 490.398V822.999C973.555 824.614 974.196 826.162 975.338 827.304C976.48 828.447 978.03 829.089 979.645 829.089H1129.08C1130.71 829.089 1132.27 828.452 1133.43 827.311C1134.59 826.172 1135.26 824.624 1135.29 822.999V470.549C1135.29 458.481 1135.29 446.638 1133.71 435.135C1131.14 397.437 1121.74 360.519 1105.96 326.186Z"
                fill="white"
              />
              <path
                d="M358.093 447.206C358.093 447.206 281.851 429.273 253.768 422.055C225.684 414.837 176.623 399.498 176.623 362.392C176.623 325.286 216.21 313.443 256.362 313.443C296.513 313.443 341.176 323.143 344.672 367.693C344.813 369.299 345.552 370.791 346.742 371.879C347.933 372.965 349.488 373.563 351.1 373.558L498.734 372.994C499.603 372.996 500.463 372.819 501.26 372.474C502.057 372.129 502.774 371.623 503.367 370.987C503.96 370.353 504.416 369.602 504.705 368.783C504.994 367.963 505.113 367.093 505.05 366.226C495.915 223.668 370.837 172.69 255.459 172.69C118.652 172.69 18.6132 262.917 18.6132 362.392C18.6132 435.025 39.1399 503.147 200.533 550.516C228.842 558.749 267.302 569.463 300.912 578.825C341.288 590.104 363.055 607.134 363.055 633.976C363.055 665.104 317.942 686.758 273.618 686.758C209.444 686.758 163.879 662.961 160.157 620.215C159.963 618.652 159.202 617.212 158.016 616.172C156.831 615.132 155.305 614.564 153.728 614.576L6.43255 615.253C5.569 615.253 4.71432 615.426 3.91928 615.764C3.12425 616.101 2.40528 616.594 1.80527 617.216C1.20527 617.836 0.736446 618.572 0.426968 619.378C0.11749 620.185 -0.0263401 621.045 0.00395994 621.908C6.77099 756.459 136.698 828.978 257.829 828.978C438.283 828.978 519.825 727.474 519.825 632.397C520.051 587.734 509.787 486.003 358.093 447.206Z"
                fill="white"
              />
              <path
                d="M2257.37 206.409C2182.38 206.409 2119.55 247.913 2079.06 297.991V212.274C2079.06 210.678 2078.43 209.145 2077.31 208.007C2076.21 206.868 2074.68 206.213 2073.08 206.185H1933.01C1931.4 206.185 1929.84 206.825 1928.7 207.967C1927.56 209.11 1926.91 210.66 1926.91 212.274V1013.04C1926.95 1014.63 1927.61 1016.16 1928.75 1017.27C1929.89 1018.39 1931.42 1019.02 1933.01 1019.02H2082.9C2084.48 1019.02 2086 1018.39 2087.12 1017.27C2088.24 1016.15 2088.87 1014.62 2088.87 1013.04V749.802H2091.13C2114.92 786.117 2180 829.653 2265.05 829.653C2424.96 829.653 2558.28 697.019 2558.28 517.806C2558.4 345.811 2425.76 206.409 2257.37 206.409ZM2243.5 677.057C2211.94 677.841 2180.83 669.2 2154.2 652.238C2127.57 635.274 2106.58 610.759 2093.93 581.82C2081.29 552.88 2077.55 520.829 2083.21 489.757C2088.85 458.685 2103.64 430.002 2125.66 407.369C2147.69 384.733 2175.96 369.175 2206.87 362.679C2237.77 356.183 2269.91 359.042 2299.18 370.893C2328.46 382.743 2353.53 403.048 2371.22 429.215C2388.9 455.383 2398.38 486.224 2398.47 517.806C2398.79 538.449 2395.03 558.955 2387.42 578.145C2379.81 597.335 2368.47 614.831 2354.07 629.628C2339.68 644.425 2322.5 656.232 2303.51 664.371C2284.54 672.511 2264.15 676.821 2243.5 677.057Z"
                fill="white"
              />
              <path
                d="M1483.34 171.229C1343.6 171.229 1273.9 218.711 1217.95 256.72L1216.26 257.847C1213.38 259.821 1211.35 262.813 1210.57 266.221C1209.8 269.63 1210.34 273.204 1212.09 276.231L1267.35 371.419C1268.39 373.201 1269.81 374.732 1271.5 375.901C1273.2 377.071 1275.13 377.852 1277.17 378.187C1279.16 378.546 1281.2 378.459 1283.15 377.932C1285.1 377.405 1286.91 376.454 1288.45 375.141L1292.84 371.533C1321.6 347.397 1367.73 315.14 1479.39 306.343C1541.53 301.382 1595.22 317.622 1634.8 354.615C1678.34 394.767 1704.4 459.617 1704.4 528.077C1704.4 654.057 1630.18 733.23 1510.97 734.81C1412.73 734.246 1346.75 683.042 1346.75 607.364C1346.75 567.212 1364.91 541.047 1400.33 514.881C1403.03 512.947 1404.94 510.1 1405.71 506.866C1406.48 503.632 1406.05 500.229 1404.5 497.287L1354.87 403.45C1353.96 401.771 1352.72 400.289 1351.23 399.089C1349.74 397.889 1348.03 396.995 1346.19 396.458C1344.31 395.899 1342.34 395.741 1340.4 395.992C1338.45 396.245 1336.58 396.903 1334.91 397.925C1279.2 430.97 1210.85 491.422 1214.57 607.59C1219.08 755.449 1342.02 868.345 1501.83 872.97H1509.84H1520.78C1710.7 866.766 1847.85 725.787 1847.85 534.619C1847.85 359.126 1719.95 171.229 1483.34 171.229Z"
                fill="white"
              />
              <path
                d="M3148.93 261.455H3053.73C3051.51 261.484 3049.37 262.385 3047.79 263.964C3046.2 265.544 3045.3 267.679 3045.29 269.914V469.653C3045.3 471.878 3046.21 473.999 3047.8 475.561C3049.38 477.123 3051.51 478 3053.73 478H3148.93C3206.9 478 3249.65 432.322 3249.65 369.727C3249.65 307.132 3206.9 261.455 3148.93 261.455Z"
                fill="white"
              />
              <path
                d="M3441.38 614.802C3441.38 643.787 3465.85 659.915 3508.48 659.915C3566.45 659.915 3600.73 628.561 3600.73 572.958V556.944L3513.9 561.455C3468.1 563.71 3441.38 582.772 3441.38 614.802Z"
                fill="white"
              />
              <path
                d="M4146.27 2.04983H2867.3C2846.33 2.04981 2825.54 6.18442 2806.17 14.2172C2786.78 22.25 2769.17 34.0237 2754.35 48.8653C2739.51 63.707 2727.75 81.3258 2719.73 100.715C2711.7 120.104 2707.59 140.883 2707.61 161.865V862.026C2707.61 904.392 2724.43 945.025 2754.38 974.992C2784.33 1004.96 2824.95 1021.81 2867.3 1021.84H4146.27C4167.28 1021.9 4188.1 1017.82 4207.53 1009.83C4226.95 1001.84 4244.61 990.093 4259.5 975.273C4274.37 960.45 4286.2 942.839 4294.28 923.445C4302.35 904.052 4306.51 883.258 4306.55 862.252V162.09C4306.58 141.042 4302.47 120.192 4294.43 100.74C4286.39 81.2884 4274.58 63.6179 4259.69 48.7448C4244.8 33.8719 4227.11 22.0899 4207.65 14.0763C4188.19 6.06265 4167.33 1.97545 4146.27 2.04983ZM3153.77 556.609H3053.17C3050.93 556.609 3048.79 557.499 3047.19 559.085C3045.61 560.672 3044.71 562.824 3044.71 565.068V708.302C3044.71 710.545 3043.82 712.697 3042.24 714.283C3040.65 715.87 3038.5 716.761 3036.26 716.761H2965.42C2963.2 716.732 2961.05 715.831 2959.47 714.25C2957.89 712.672 2957.01 710.537 2956.97 708.302V191.639C2956.97 189.397 2957.86 187.245 2959.46 185.658C2961.04 184.072 2963.18 183.181 2965.42 183.181H3153.77C3260.47 183.181 3336.82 260.889 3336.82 369.951C3336.82 479.013 3261.03 556.833 3154.35 556.833L3153.77 556.609ZM3683.86 708.19C3683.88 709.31 3683.68 710.421 3683.25 711.461C3682.83 712.5 3682.21 713.447 3681.43 714.244C3680.63 715.041 3679.7 715.675 3678.66 716.107C3677.64 716.538 3676.52 716.761 3675.4 716.761H3608.52C3607.4 716.761 3606.29 716.538 3605.26 716.107C3604.22 715.675 3603.28 715.041 3602.5 714.244C3601.72 713.447 3601.09 712.5 3600.68 711.461C3600.26 710.421 3600.05 709.31 3600.07 708.19V692.739C3600.17 691.382 3599.85 690.026 3599.12 688.874C3598.41 687.72 3597.34 686.829 3596.06 686.334C3594.8 685.84 3593.41 685.769 3592.1 686.131C3590.77 686.491 3589.62 687.266 3588.79 688.34C3568.82 710.107 3536.34 725.896 3484.57 725.896C3408.34 725.896 3357.91 686.197 3357.91 617.624C3357.18 600.904 3360.63 584.265 3367.96 569.216C3375.28 554.17 3386.26 541.19 3399.88 531.458C3427.39 510.818 3470.02 500.104 3533.29 497.622L3600.39 495.367V475.741C3600.39 436.154 3573.78 419.35 3531.03 419.35C3488.29 419.35 3461.33 434.463 3455.03 459.163C3454.52 460.907 3453.45 462.433 3451.97 463.496C3450.51 464.56 3448.72 465.098 3446.9 465.027H3380.7C3379.48 465.058 3378.27 464.82 3377.15 464.334C3376.05 463.846 3375.04 463.12 3374.23 462.206C3373.43 461.291 3372.83 460.214 3372.49 459.044C3372.14 457.875 3372.05 456.646 3372.24 455.441C3382.17 396.793 3430.66 352.243 3534.09 352.243C3643.94 352.243 3683.52 403.335 3683.52 500.892L3683.86 708.19ZM4100.49 372.995L3951.62 770.108C3917.78 862.364 3858.56 886.05 3793.71 886.05C3781.5 886.348 3769.3 884.866 3757.51 881.652C3755.67 881.157 3754.06 880.073 3752.88 878.563C3751.73 877.056 3751.1 875.208 3751.08 873.305V812.965C3751.08 811.703 3751.35 810.455 3751.88 809.311C3752.42 808.167 3753.19 807.154 3754.16 806.347C3755.14 805.538 3756.27 804.955 3757.49 804.637C3758.71 804.319 3759.99 804.274 3761.23 804.506C3771.46 806.446 3781.84 807.428 3792.25 807.44C3810.18 808.339 3827.9 803.193 3842.57 792.825C3857.22 782.457 3867.98 767.467 3873.11 750.258L3877.52 736.385C3878.2 734.529 3878.2 732.491 3877.52 730.633L3738.33 373.109C3737.91 371.831 3737.79 370.469 3737.99 369.137C3738.2 367.804 3738.71 366.537 3739.47 365.439C3740.26 364.341 3741.29 363.442 3742.48 362.814C3743.67 362.187 3745 361.849 3746.34 361.83H3814.02C3815.75 361.847 3817.43 362.381 3818.86 363.367C3820.29 364.351 3821.39 365.741 3822.02 367.357L3916.54 619.542C3917.17 621.189 3918.27 622.608 3919.72 623.609C3921.18 624.612 3922.89 625.147 3924.66 625.147C3926.41 625.147 3928.15 624.612 3929.59 623.609C3931.04 622.608 3932.16 621.189 3932.77 619.542L4014.78 368.034C4015.32 366.319 4016.41 364.825 4017.87 363.77C4019.33 362.714 4021.08 362.153 4022.88 362.169H4092.26C4093.59 362.163 4094.91 362.475 4096.12 363.073C4097.31 363.673 4098.36 364.545 4099.16 365.62C4099.96 366.695 4100.49 367.942 4100.72 369.263C4100.96 370.582 4100.88 371.938 4100.49 373.221V372.995Z"
                fill="white"
              />
            </g>
            <defs>
              <clipPath id="clip0">
                <rect
                  width="4317"
                  height="1036.76"
                  fill="white"
                  transform="translate(0 0.240234)"
                />
              </clipPath>
            </defs>
          </svg>
        </button>
      </div>

      <div
        class="rebuy-cart__flyout-installments"
        v-if="installmentsEnabled()"
        v-html="installmentsMessage()"
      ></div>

      <div data-app-target="below_checkout"></div>
    </div>
  </div>

  <div class="rebuy-cart__background" v-on:click="hide()"></div>
  <div id="rebuy-cart-live-region" class="sr-only" aria-live="polite"></div>
</div>
</script>

<div data-rebuy-id="66914"></div> 
<div data-rebuy-id="126946"></div>
<div data-rebuy-id="149239"></div>

<script>
  (function (w, d, ns) {
    w['EmailableObject'] = ns;
    w[ns] = w[ns] || function () { (w[ns].q = w[ns].q || []).push(arguments) },
    s = d.createElement('script'), fs = d.getElementsByTagName('script')[0];
    s.async = 1; s.src = 'https://js.emailable.com/v2/';
    fs.parentNode.insertBefore(s, fs)
  })(window, document, 'emailable');

  emailable('apiKey', 'live_91a49439938280cd6dab');
</script>

<script>
  // types of emails that are allowed
  emailable('allow', {
    states: ['deliverable'],
    free: true,
    role: true,
    disposable: false
  });

  // maximum time to wait for the verification to respond. some mail servers
  // are slow and we don't want to hold the user up for too long.
  emailable('verificationTimeout', 5);

  // how long to wait after a user stops typing to verify the email
  emailable('verifyAfterDelay', 1000);

  // enable form validation messages
  // this will also remove the novalidate attribute from forms with one
  emailable('formValidation', true);

  // this is the selector for the inputs we will monitor
  emailable('inputSelector', 'input[type=email]');

  // array of form names to ignore
  emailable('ignoredForms', []);

  // array of input names to ignore
  emailable('ignoredInputs', []);

  // users who enter 10+ emails will be rate-limited by our servers.
  // when set to true the user will get the rateLimited message.
  emailable('blockOnRateLimit', false)

  // the parent element to append the status element to. can be an element or
  // CSS identifier.
  emailable('statusAppendTo', 'body')

  // styles
  emailable('style', {
    loadingIconColor: 'rgba(0, 0, 0, 0.3)'
  });

  // messages
  emailable('messages', {
    verifying: "Please wait a moment while we verify your email address.",
    invalid: "It looks like you've entered an invalid email address.",
    role: "It looks like you've entered a role or group email address.",
    free: "It looks like you've entered a free email address.",
    disposable: "It looks like you've entered a disposable email.",
    didYouMean: "It looks like you've entered an invalid email address. Did you mean [EMAIL]?",
    rateLimited: "It looks like you've attempted to enter too many emails."
  });
</script>

<script defer src="https://cdn.jsdelivr.net/npm/simplelightbox@2.14.3/dist/simple-lightbox.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/simplelightbox@2.14.3/dist/simple-lightbox.min.css">
    
    <script>
        document.addEventListener('DOMContentLoaded', function () {
            const looxLink = document.querySelector('a[href="#looxReviews"]');
            if (looxLink && !looxLink.hasAttribute('aria-label')) {
                looxLink.setAttribute('aria-label', 'Read reviews');
            }
        });
    </script>
    
    <script>
        document.addEventListener('DOMContentLoaded', function () {
            const skipContent = document.querySelector('a[href="#acsbContent"]');
            if (skipContent) {
                skipContent.setAttribute('href', '#MainContent');
            }

            const skipMenu = document.querySelector('a[href="#acsbMenu"]');
            if (skipMenu) {
                skipMenu.setAttribute('href', '#HeaderWrapper');
            }

            const skipFooter = document.querySelector('a[href="#acsbFooter"]');
            if (skipFooter) {
                skipFooter.setAttribute('href', '#shopify-section-footer');
            }
        });
        document.addEventListener('DOMContentLoaded', function () {
            const acsbButton = document.querySelector('.acsb-trigger[role="button"]');
            if (acsbButton && !acsbButton.hasAttribute('aria-label')) {
                acsbButton.setAttribute('aria-label', 'Open accessibility menu');
            }
        });
    </script>
    
    <script>
        document.addEventListener('DOMContentLoaded', function () {
            const cart = document.getElementById('rebuy-cart');

            if (cart) {
                const observer = new MutationObserver(() => {
                    if (cart.getAttribute('aria-hidden') === 'true') {
                        // Check for focusable children
                        const focusables = cart.querySelectorAll('a[href], button, input, [tabindex]:not([tabindex="-1"])');
                        focusables.forEach(el => {
                            el.setAttribute('tabindex', '-1');
                        });
                    } else {
                        // Restore focusability when visible
                        const focusables = cart.querySelectorAll('[tabindex="-1"]');
                        focusables.forEach(el => {
                            el.removeAttribute('tabindex');
                        });
                    }
                });

                observer.observe(cart, { attributes: true, attributeFilter: ['aria-hidden'] });
            }
        });
    </script>
  <style> .rebuy-widget {padding: 0;} .rebuy-button,.rebuy-widget .rebuy-button {background: #2b554c;} .shop-hero {background: #000;} .subscription-details,.subscription-details ul {list-style-type: disc;} .grid__item.medium-up--one-third .btn--secondary {width: 100%;} .btn--secondary {background: #fff; color: #000; border: 1px solid #000;} .square-row .h1,.square-row .h2 {color: #2b554c;} .a {cursor: pointer;} .flickity-button {background-color: #fff; color: black; background: #fff; box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);} .background-media-text__aligner {margin: 0 auto;} .background-media-text__aligner .btn {background: #ecf2d4; max-width: 200px; color: #2b554c;} @media (min-width: 1280px) {[aria-label="Primary"] .site-nav__link {letter-spacing: 0.15rem; }} </style>
<div id="shopify-block-AMXlNNXM5SWtGZ0cxR__17151115064775110295" class="shopify-block shopify-app-block"><style data-recharge-theme='{"has_theme_customization": true, "design_mode": false }'>
  .recharge-theme {
    /* App */
    --recharge-app-background: #FFFFFF;
    --recharge-app-container: 1200px;
    --recharge-app-vertical-padding: 32px;

    /* Brand colors */
    
--recharge-color-brand: #75B77E;

    /* Tints */
    --recharge-color-brand-120: #57a762;
    --recharge-color-brand-20: #91c598;
    --recharge-color-brand-40: #acd4b2;
    --recharge-color-brand-60: #c8e2cb;
    --recharge-color-brand-75: #ddeddf;
    --recharge-color-brand-85: #eaf4ec;

    /* Neutral */
    --recharge-color-neutral: hsl(128, 35%, 7%);
    --recharge-color-neutral-80: hsl(128, 7%, 25%);
    --recharge-color-neutral-70: hsl(128, 5%, 35%);
    --recharge-color-neutral-40: hsl(128, 3%, 63%);
    --recharge-color-neutral-10: hsl(128, 2%, 91%);
    

    /* Links */
    --recharge-button-secondary: #496C4E;
    --recharge-button-secondary-120: #37513a;
    --recharge-button-secondary-60: #92a795;

    /* Images */
    --recharge-images-ratio: 1;

    /* Cards */
    
    --recharge-cards-background: #F6F8FA;
    

    
    --recharge-cards-border-color: RGBA(0,0,0,0);
    

    /* Fonts */
    --recharge-typography-scale: 16px;
    --recharge-typography-size-1: calc(3 * var(--recharge-typography-scale));
    --recharge-typography-size-2: calc(2.25 * var(--recharge-typography-scale));
    --recharge-typography-size-3: calc(1.625 * var(--recharge-typography-scale));
    --recharge-typography-size-4: calc(1.25 * var(--recharge-typography-scale));
    --recharge-typography-size-5: calc(1 * var(--recharge-typography-scale));
    --recharge-typography-size-6: calc(.875 * var(--recharge-typography-scale));

    /** Text **/
    --recharge-typography-light: #FFFFFF;
    --recharge-typography-primary: var(--recharge-color-neutral);
    --recharge-typography-secondary: var(--recharge-color-neutral-70);

    /* Corners */
    --recharge-corners-radius: 8px;

    --recharge-button-border-radius: 8px;
    

    /* Views */
    
    --recharge-views-background: #FFFFFF;
    

    /* Buttons */
    --recharge-button-font-family: inherit;
    --recharge-button-brand: var(--recharge-color-brand);
    --recharge-button-color: #FFFFFF;
  }
</style>

</div><div id="shopify-block-AT0owZzZkT3YxaUxyM__17824471530847535147" class="shopify-block shopify-app-block"><div id='widget-config' style="opacity:0; font-size: 1px;">{"statementLink":"","footerHtml":"","hideMobile":false,"hideTrigger":false,"disableBgProcess":false,"language":"en","position":"left","leadColor":"#2b554c","triggerColor":"#2b554c","triggerRadius":"50%","triggerPositionX":"right","triggerPositionY":"bottom","triggerIcon":"people","triggerSize":"medium","triggerOffsetX":20,"triggerOffsetY":20,"mobile":{"triggerSize":"small","triggerPositionX":"right","triggerPositionY":"bottom","triggerOffsetX":10,"triggerOffsetY":10,"triggerRadius":"50%"}}</div>
<div id='widget-status' style="opacity:0; font-size: 1px;">true</div>
<script>
    (
        function () {
            const s = document.createElement('script');
            const h = document.querySelector('head') || document.body;
            const widgetConfigEle = document.getElementById('widget-config');
            const widgetConfig = JSON.parse(widgetConfigEle.innerHTML);

            if (widgetConfig.footerHtml === '') {
                widgetConfig.footerHtml = ' ';
            }
            
            widgetConfigEle.style.display = 'none';

            const widgetStatusEle = document.getElementById('widget-status');
            const widgetStatus = widgetStatusEle.innerHTML;
            widgetStatusEle.style.display = 'none';
            s.src = 'https://acsbapp.com/apps/app/dist/js/app.js';
            s.async = true;
            s.onload = function () {
                acsbJS.init(widgetConfig);
            };
            if (widgetStatus === '' || widgetStatus === 'true') {
                h.appendChild(s);
            }
        })();
</script>

</div><div id="shopify-block-AVEtGd2tPMlM0RmlGM__14017166734719355524" class="shopify-block shopify-app-block"><div id="hc-widget" style="display: block"></div>

<script>
    window.HCAppData = {extShopId: 6218154055}
</script>

<script type="text/javascript" async="" src="https://s3.helpcenterapp.com/cdn/widget/mount-widget.js"></script>

</div><div id="shopify-block-AQTlTWDBDUEVwNWNoZ__10641372206048101839" class="shopify-block shopify-app-block">
<script>
  window.rebuyAppEmbedEnabled = true;
</script>


<script async src="https://cdn.rebuyengine.com/onsite/js/rebuy.js?shop=econugenics.myshopify.com"></script>


</div><div id="shopify-block-AakNoTzR0N0NkN3Z2W__11532412952436166569" class="shopify-block shopify-app-block"><script async src="https://loox.io/widget/VJ-Neas1k3/loox.1644608979943.js?shop=econugenics.myshopify.com"></script>


	<script>var loox_global_hash = '1765742286010';</script><style>.loox-reviews-default { max-width: 1200px; margin: 0 auto; }.loox-rating .loox-icon { color:#f3c200; }
:root { --lxs-rating-icon-color: #f3c200; }</style>







</div></body>
</html>
