/** Shopify CDN: Minification failed

Line 90:14 Expected identifier but found whitespace
Line 90:16 Unexpected "{"
Line 90:23 Expected ":"
Line 94:22 Expected identifier but found whitespace
Line 94:23 Unexpected "1px"
Line 94:34 Unexpected "{"
Line 94:41 Expected ":"
Line 106:18 Expected identifier but found whitespace
Line 106:20 Unexpected "{"
Line 106:27 Expected ":"
... and 10 more hidden warnings

**/
/* Benefits List Styling */
.productView-benefitsList {
    padding-top: var(--spacing-top, 0);
    padding-bottom: var(--spacing-bottom, 20px);
}

.productView-benefitsList .benefits-heading {
    margin-bottom: 15px;
        width: 80%;
}

.productView-benefitsList .benefits-heading .title {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
   line-height: 20px;
    color: var(--text-color);
}

.productView-benefitsList .benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--item-spacing, 10px);
}

.productView-benefitsList .benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.productView-benefitsList .benefits-icon {
    flex-shrink: 0;
    width: var(--icon-size, 18px);
    height: var(--icon-size, 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.productView-benefitsList .benefits-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.productView-benefitsList .benefits-text {
    flex: 1;
    font-size: var(--text-size, 14px);
    line-height: 1.5;
    color: var(--text-color, #232323);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .productView-benefitsList .benefits-item {
        gap: 10px;
    }
    
    .productView-benefitsList .benefits-text {
        font-size: calc(var(--text-size, 14px) - 1px);
    }
}

/* .accordion-content css */
 .product-accordion-wrapper {
        width: 100%;
      }

      .accordion-main-heading {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: {{ block.settings.title_color }};
      }

      .product-accordion .accordion-item {
        border-bottom: 1px solid {{ block.settings.border_color }};
      }

      .product-accordion .accordion-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        background: none;
        border: none;
        cursor: pointer;
        font-size: {{ block.settings.title_font_size }}px !important;
        font-weight: {{ block.settings.title_font_weight }};
        color: {{ block.settings.title_color }};
        text-align: left;
        transition: all 0.3s ease;
      }

      .product-accordion .accordion-header:hover {
        opacity: 0.7;
      }

      .product-accordion .accordion-icon {
        flex-shrink: 0;
        transition: transform 0.3s ease;
      }

      .product-accordion .accordion-item.active .accordion-icon {
transform: rotate(1deg);
      }

      .product-accordion .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .product-accordion .accordion-item.active .accordion-content {
        max-height: 1000px;
      }

      .product-accordion .accordion-content-inner {
        padding: 0 0 15px 0;
        color: {{ block.settings.content_color }};
        font-size: 14px;
        line-height: 1.6;
      }
.ingredient-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

/* Main Ingredient List */
.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.ingredient-item {
  display: flex !important;
  align-items: center!important;
  align-items: flex-start;
  gap: 15px;
}

.ingredient-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.ingredient-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ingredient-content {
  flex: 1;
}

.ingredient-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
}

.ingredient-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Accordion Section */
.ingredient-accordion {
  margin: 20px 0;
}

.ingredient-accordion-item {
  background: #fff;
}

.ingredient-accordion-toggle {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-align: left;
}

.ingredient-accordion-title {
  flex: 1;
}

.ingredient-accordion-icon {
  font-size: 20px;
  font-weight: 300;
  color: #666;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.ingredient-accordion-toggle[aria-expanded="true"] .ingredient-accordion-icon {
    transform: rotate(1deg);
}

.ingredient-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ingredient-accordion-toggle[aria-expanded="true"] + .ingredient-accordion-content {
  max-height: 1000px;
}

.ingredient-accordion-inner {
  padding: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Features Grid */
.ingredient-features {
  margin-top: 30px;
}

.ingredient-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}

.ingredient-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.ingredient-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ingredient-feature-text {
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ingredient-section {
    padding: 15px;
  }

  .ingredient-icon {
    width: 50px;
    height: 50px;
  }

  .ingredient-title {
    font-size: 15px;
  }

  .ingredient-description {
    font-size: 13px;
  }

  .ingredient-features-grid {
     grid-template-rows: 1fr;
    gap: 0px;
  }
}

/* Accordion Container */
.product-accordion {
  border-top: 1px solid #e5e5e5;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

/* Accordion Header */
.accordion-header {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s ease;
}

.accordion-header:hover {
  opacity: 0.7;
}

/* Accordion Icon - Plus/Minus */
.accordion-icon,
.ingredient-accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}

.accordion-icon::before,
.accordion-icon::after,
.ingredient-accordion-icon::before,
.ingredient-accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Horizontal line (minus) - always visible */
.accordion-icon::before,
.ingredient-accordion-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical line (plus) - hidden when active */
.accordion-icon::after,
.ingredient-accordion-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Active state - rotate and hide vertical line */
.accordion-item.active .accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.ingredient-accordion-item.active .ingredient-accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
}

.accordion-content-inner {
  padding: 0 0 20px 0;
}

/* Ingredient Accordion */
.ingredient-accordion {
  margin: 20px 0;
}

.ingredient-accordion-toggle {
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.ingredient-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ingredient-accordion-item.active .ingredient-accordion-content {
  max-height: 1000px;
}

.ingredient-accordion-inner {
  padding: 15px 0;
}