/** Shopify CDN: Minification failed

Line 41:16 Expected identifier but found whitespace
Line 41:18 Unexpected "{"
Line 41:27 Expected ":"
Line 41:51 Expected ":"

**/


/* CSS from section stylesheet tags */
img{
    border-radius: 0 !important;
  }
    .marquee-wrapper {
      overflow: hidden;
      width: 100%;
      display: flex;
      align-items: center;
      background-color: var(--color-{{ section.settings.color_scheme }}-bg);
      color: var(--color-{{ section.settings.color_scheme }}-fg);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      will-change: transform;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      padding: 0 2rem;
      white-space: nowrap;
    }

    .marquee-item .icon {
      margin-right: 0.5rem;
      display: inline-flex;
      align-items: center;
      font-size: {{ section.settings.icon_size }}px;
    }

    .marquee-item .custom-image {
      margin-right: 0.5rem;
      display: inline-flex;
      align-items: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .marquee-item .custom-image img {
      display: block;
      object-fit: var(--image-fit);
    }

    /* Aspect ratio classes */
    .image-ratio-original .custom-image img {
      width: auto;
      height: auto;
      max-width: var(--image-width);
      max-height: var(--image-height);
    }

    .image-ratio-square .custom-image {
      width: var(--image-width);
      height: var(--image-width);
    }

    .image-ratio-square .custom-image img {
      width: 100%;
      height: 100%;
    }

    .image-ratio-portrait .custom-image {
      width: var(--image-width);
      height: calc(var(--image-width) * 4 / 3);
    }

    .image-ratio-portrait .custom-image img {
      width: 100%;
      height: 100%;
    }

    .image-ratio-landscape .custom-image {
      width: var(--image-width);
      height: calc(var(--image-width) * 3 / 4);
    }

    .image-ratio-landscape .custom-image img {
      width: 100%;
      height: 100%;
    }
.electrolyte-ingredients {
    padding: 60px 20px;
  }
  .electrolyte-ingredients__grid {
    display: grid;
    gap: 30px;
  }
  .electrolyte-card {
    background: var(--color-background, #fff);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .electrolyte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .electrolyte-card__image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
  }
  .electrolyte-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .electrolyte-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .electrolyte-card__desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
  }
  .electrolyte-card__highlight {
    display: inline-block;
    background: #f8d473;
    color: #d83d89;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
  }
  .electrolyte-card__button {
    display: inline-block;
    background: #d83d89;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background .3s ease;
  }
  .electrolyte-card__button:hover {
    background:rgb(198, 76, 135);
  }

  /* Popup */
  .electrolyte-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .electrolyte-popup.active {
    display: flex;
  }
  .electrolyte-popup__content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    text-align: left;
  }
  .electrolyte-popup__close {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .electrolyte-popup__image {
    margin-bottom: 20px;
  }
  .electrolyte-popup__image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
  }
  .electrolyte-popup__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .electrolyte-popup__sci {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 16px;
    color: #777;
  }
  .electrolyte-popup__section {
    margin-bottom: 20px;
  }
  .electrolyte-popup__section h4 {
    font-size: 16px;
    margin-bottom: 6px;
    border-bottom: 2px solid #f8e1eb;
    display: inline-block;
  }
  .electrolyte-popup__section p,
  .electrolyte-popup__section li {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
  }
  .electrolyte-popup__section ul {
    padding-left: 18px;
  }