/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:askamrio-marquee (INDEX:2) */
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%;
    }
/* END_SECTION:askamrio-marquee */

/* START_SECTION:askmario-product-ingredients-v2 (INDEX:5) */
.ingredient-spotlight {
    padding: 60px 20px;
  }
  .ingredient-spotlight__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .ingredient-spotlight__card {
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .ingredient-spotlight__card.has-bg-image {
    background-color: transparent;
  }
  .ingredient-spotlight__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .ingredient-spotlight__card--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
  }
  .ingredient-spotlight__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .ingredient-spotlight__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .ingredient-spotlight__center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 15px 0 25px 0;
  }
  .ingredient-spotlight__element {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
  }
  .ingredient-spotlight__element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .ingredient-spotlight__button {
    display: inline-block;
    background: #d83d89;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease;
    align-self: center;
    margin-top: auto;
  }
  .ingredient-spotlight__button:hover {
    background: rgb(198, 76, 135);
  }

  /* Popup */
  .ingredient-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;
  }
  .ingredient-popup.active {
    display: flex;
  }
  .ingredient-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;
  }
  .ingredient-popup__close {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .ingredient-popup__image {
    margin-bottom: 20px;
  }
  .ingredient-popup__image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
  }
  .ingredient-popup__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .ingredient-popup__sci {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 16px;
    color: #777;
  }
  .ingredient-popup__section {
    margin-bottom: 20px;
  }
  .ingredient-popup__section h4 {
    font-size: 16px;
    margin-bottom: 6px;
    border-bottom: 2px solid #f8e1eb;
    display: inline-block;
  }
  .ingredient-popup__section p,
  .ingredient-popup__section li {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
  }
  .ingredient-popup__section ul {
    padding-left: 18px;
  }
/* END_SECTION:askmario-product-ingredients-v2 */

/* START_SECTION:askmario-product-ingredients (INDEX:6) */
.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);
  }
  .element-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 4px solid white;
    border-radius: 50%;
    background-color: #B8D465;
    width: 120px;
    height: 120px;
    margin: 16px auto;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .element-block p, .element-block h3 {
    color: white;
    text-align: center;
    margin: 0;
  }
  .element-block p {
    font-size: 14px;
  }
  .element-block h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
  }

  /* 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;
  }
/* END_SECTION:askmario-product-ingredients */

/* START_SECTION:custom-ingredient-section-v3 (INDEX:17) */
.ingredient-card-grid {
    padding: 60px 20px;
  }
  .ingredient-card-grid__container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .ingredient-card {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .ingredient-card--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
  }
  .ingredient-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .ingredient-card__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
  }
  .ingredient-card__description {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    line-height: 1.5;
    max-width: 90%;
  }
  .ingredient-card__button {
    display: inline-block;
    background: #d83d89;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease;
    margin-top: auto;
  }
  .ingredient-card__button:hover {
    background: rgb(198, 76, 135);
  }

  /* Popup */
  .ingredient-modal {
    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;
  }
  .ingredient-modal.active {
    display: flex;
  }
  .ingredient-modal__content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    text-align: left;
  }
  .ingredient-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .ingredient-modal__image {
    margin-bottom: 20px;
  }
  .ingredient-modal__image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
  }
  .ingredient-modal__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .ingredient-modal__sci {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 16px;
    color: #777;
  }
  .ingredient-modal__section {
    margin-bottom: 20px;
  }
  .ingredient-modal__section h4 {
    font-size: 16px;
    margin-bottom: 6px;
    border-bottom: 2px solid #f8e1eb;
    display: inline-block;
  }
  .ingredient-modal__section p,
  .ingredient-modal__section li {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
  }
  .ingredient-modal__section ul {
    padding-left: 18px;
  }
/* END_SECTION:custom-ingredient-section-v3 */