/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 62:0 Unexpected "<"
Line 67:12 Expected identifier but found whitespace
Line 67:14 Unexpected "{"
Line 67:23 Expected ":"
Line 67:58 Unexpected "20px"
Line 67:64 Unexpected "{"
Line 67:73 Expected ":"
Line 67:110 Expected ":"
Line 113:10 Expected identifier but found whitespace
... and 25 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
  .bowel-balance-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px 20px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }
  .bowel-balance-image {
    flex: 1 1 60%;
    text-align: center;
    padding: 10px;
  }
  .bowel-balance-image img {
    max-width: 100%;
    border-radius: 12px;
  }
  .bowel-balance-content {
    flex: 1 1 35%;
    padding: 20px;
    border-radius: 12px;
  }
  .bowel-balance-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .bowel-balance-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .bowel-balance-content a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
  }
</style>
<style>
  /* Inner white wrapper (inside Shopify’s outer wrapper) */
  .certs-product-image-section .cert-section-wrapper {
    background-color: #ffffff !important;
    padding: {{ section.settings.wrapper_padding_top }}px 20px {{ section.settings.wrapper_padding_bottom }}px;
  }

  /* Flex container, always centered */
  .certs-product-image-section .cert-section {
    display: flex;
    justify-content: center;
    padding: 60px 16px;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* Base card styles */
  .certs-product-image-section .cert-box {
    background-color: #FDF6F6;
    border: 1px solid #000000;
    border-radius: 14px;
    padding: 30px;
    flex: 0 0 calc(48% - 20px);
    box-sizing: border-box;
  }

  /* Left‐hand content */
  .certs-product-image-section .cert-left h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .certs-product-image-section .cert-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* Icons: bigger and perfectly centered */
  .certs-product-image-section .cert-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    justify-content: center;
    align-items: center;
  }
  .certs-product-image-section .cert-icons img {
    width: {{ section.settings.icon_size }}px;
    height: auto;
    object-fit: contain;
  }

  /* Right card: no inner padding/border so image is full-bleed */
  .certs-product-image-section .cert-box.cert-right {
    padding: 0;
    border: none;
    overflow: hidden;
    background-color: {{ section.settings.right_bg }};
    border-radius: 14px;
  }
  .certs-product-image-section .cert-box.cert-right img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Stack on mobile */
  @media screen and (max-width: 990px) {
    .certs-product-image-section .cert-section {
      flex-direction: column;
    }
    .certs-product-image-section .cert-box {
      flex: 1 1 100%;
      max-width: 100%;
      text-align: center;
    }
    .certs-product-image-section .cert-icons {
      justify-content: center;
    }
  }

  /* Mobile: Icons 3 per row (up to 600px) */
  @media screen and (max-width: 600px) {
    .certs-product-image-section .cert-icons {
      gap: 14px 8px;
    }
    .certs-product-image-section .cert-icons img {
      flex: 0 0 23.3333%;
      max-width: 23.3333%;
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 12px;
    }
  }
</style>
.curious-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .curious-heading {
    font-size: 48px;
    font-weight: 700;
    color: {{ section.settings.heading_color }};
  }

  .curious-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: {{ section.settings.faq_title_color }};
  }

  .faq-answer {
    display: none;
    margin-top: 8px;
    color: {{ section.settings.faq_text_color }};
    font-size: 16px;
  }

  .faq-item.open .faq-answer {
    display: block;
  }

  .faq-item .toggle-icon {
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .faq-item.open .toggle-icon {
    transform: rotate(45deg);
  }

  @media (max-width: 768px) {
    .curious-section {
      grid-template-columns: 1fr;
    }
  }
<style>
/* ─── ORIGINAL MOBILE-FIRST + EXISTING DESKTOP RULES ─── */
.no-list-section{
  display:flex;justify-content:center;padding:60px 20px;
  background:{{ section.settings.background_color }};
}
@media (min-width:1300px){
  .no-list-section{
    padding-left:calc((100vw - 1300px)/2);
    padding-right:calc((100vw - 1300px)/2);
  }
  .no-list-inner{max-width:1300px;gap:60px;}
}

.no-list-inner{
  display:flex;flex-wrap:wrap;width:100%;max-width:1200px;gap:40px;align-items:center;
}
.no-list-image{flex:1 1 48%;max-width:48%;}
.no-list-content{
  flex:1 1 48%;max-width:48%;display:flex;flex-direction:column;
  gap:40px;align-items:flex-start;text-align:left;
}
.no-list-point{display:flex;align-items:flex-start;gap:20px;text-align:left;}
.no-list-point img{width:40px;height:40px;}
.no-list-point h4{font-size:20px;font-weight:700;margin:0 0 8px;}
.no-list-point p{font-size:16px;line-height:1.6;margin:0;}

/* Medium screens */
@media (max-width:1200px){
  .no-list-inner{max-width:100%;gap:32px;}
  .no-list-image,.no-list-content{max-width:100%;flex:1 1 100%;}
}

/* Mobile */
@media (max-width:768px){
  .no-list-inner{flex-direction:column;gap:24px;}
  .no-list-image,.no-list-content{max-width:100%;flex:1 1 100%;}
  .no-list-content{padding:0 16px;gap:24px;}
  .no-list-point{flex-direction:column;align-items:flex-start;gap:10px;}
  .no-list-point img{margin-bottom:10px;width:60px;height:60px;}
}
</style>
<style>
.our-values-section {
  padding: 40px 20px;
  background-color: {{ section.settings.background_color }};
  text-align: center;
}

.our-values-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.our-values-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.our-values-left {
  width: 35%;
  padding: 0;
  display: block;
  text-align: center;
  background-color: #e3f6f5;
}

.our-values-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.our-values-right {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 30px;
  gap: 20px;
  box-sizing: border-box;
  align-items: start;
  justify-content: start;
}

.value-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}

.value-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}

.value-box h4 {
  margin: 5px 0;
  font-size: 16px;
  font-weight: bold;
}

.value-box p {
  font-size: 14px;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .our-values-container {
    flex-direction: column;
  }

  .our-values-left,
  .our-values-right {
    width: 100%;
  }

  .our-values-right {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
</style>