/** Shopify CDN: Minification failed

Line 128:14 Expected identifier but found whitespace
Line 128:16 Unexpected "{"
Line 128:25 Expected ":"
Line 128:64 Expected ":"
Line 131:14 Expected identifier but found whitespace
Line 131:16 Unexpected "{"
Line 131:25 Expected ":"
Line 131:68 Expected ":"

**/


/* CSS from section stylesheet tags */
.probiotic-tabs {
  font-family: sans-serif;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tab-section-heading {
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-buttons button {
  padding: 0.8rem 2rem;
  border: 1px solid #ddd;
  background-color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-buttons button[aria-selected="true"] {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.tab-panel {
  display: none;
}

.tab-panel[aria-hidden="false"] {
  display: block;
}

.card {
  display: flex;
  gap: 1rem;
  background: #fff5e9;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.card-icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.card-content {
  flex-grow: 1;
}

.card-title {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.card-text {
  line-height: 1.4;
  transition: max-height 0.4s ease;
}

/* Mobile accordion styling only for benefits */
@media (max-width: 767px) {
  #panel-benefits .card-text {
    max-height: 0;
    overflow: hidden;
  }
  #panel-benefits .card.open .card-text {
    max-height: 500px;
  }
  .accordion-toggle {
    display: inline-block;
    margin-left: auto;
    font-size: 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease;
  }
  .card.open .accordion-toggle {
    transform: rotate(180deg);
  }
  .tab-section-heading {
    font-size: {{ section.settings.heading_font_size_mobile }}px !important;
  }
  .card-text {
    font-size: {{ section.settings.description_font_size_mobile }}px !important;
  }
}

/* Hide accordion toggle on desktop and for non-benefits tabs */
@media (min-width: 768px) {
  .accordion-toggle {
    display: none;
  }
}
.circular-progress-section {
  padding: 60px 20px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.circular-progress-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.circular-progress-content h2 {
  margin-bottom: 0; /* removed bottom margin for subheading spacing */
}

.circular-progress-subheading {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .circular-progress-subheading {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
}

/* ... rest of your existing styles ... */

.circular-progress-bars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.circular-progress-item {
  width: 180px;
  position: relative;
  transition: transform 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.circular-progress-item:hover {
  transform: scale(1.05);
}

.progress-circle-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.progress-svg {
  transform: rotate(-90deg);
  width: 140px;
  height: 140px;
  display: block;
  margin: 0 auto;
}

.progress-bg {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 12;
}

.progress-arc {
  fill: none;
  stroke-width: 20;
  stroke-linecap: round;
  stroke-dasharray: 4 8;
  transition: stroke-dashoffset 1s ease-out;
}

.percentage-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: normal;
  width: auto;
  height: auto;
}

.progress-label {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 16px;
}

.progress-description {
  font-size: 1.5rem;
  margin-top: 6px;
  line-height: 1.8;
}

.find-out-more-button {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
  .circular-progress-section {
    padding: 40px 16px;
  }

  .circular-progress-content h2 {
    font-size: 1.8rem !important;
    line-height: 1.3;
    padding: 0 10px;
  }

  .circular-progress-bars {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 40px;
    gap: 16px;
    box-sizing: border-box;
  }

  .circular-progress-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 90px;
    min-width: 90px;
    box-sizing: border-box;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .progress-circle-wrapper {
    width: 100px;
    height: 100px;
  }

  .progress-svg {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
  }

  .progress-bg,
  .progress-arc {
    stroke-width: 15;
  }

  .percentage-text {
    font-size: 1.2rem;
    width: auto;
    height: auto;
    line-height: normal;
  }

  .progress-label {
    font-size: 1.5rem;
    margin-top: 12px;
  }

  .progress-description {
    font-size: 1rem;
    margin-top: 4px;
  }

  .circular-progress-subheading {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
}