/** Shopify CDN: Minification failed

Line 341:3 Expected "}" to go with "{"

**/
/* Meds Section – GLP-1 Typical Outcomes slider */

.meds-section {
  padding: 16px 0 0 0;
  background-color: #ffffff;

  
  .meds-section-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  /* Main card */
  
  .meds-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: stretch;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    min-height: 320px;
    border: 1px solid #E7E7E7;
  }
  
.meds-card-left {
    position: relative;
}
.meds-bottle-image {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    object-fit: cover;
}
  
  .meds-card-right {
    padding: 40px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }
  
.meds-heading {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #1d1d1f;
    font-weight: normal;
}
  
  .meds-subheading {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: rgba(29, 29, 31, 0.8);
  }
  
  /* Stats row */
  
  .meds-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
  
  .meds-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .med-stat-grid {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

  .meds-stat-icon {
    font-size: 20px;
    /* color: #215564; */
    color: #29A09F;
  }
  
.meds-stat-value {
    font-size: 30px;
    font-weight: normal;
    color: #29A09F;
    line-height: 1.1;
    font-family: Urbanist, sans-serif;
}
  
  .meds-stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(29, 29, 31, 0.8);
  }
  
  /* Swiper container */
  
  .meds-swiper {
    width: 100%;
  }
  
  .meds-swiper .swiper-wrapper {
    align-items: stretch;
  }
  
  .meds-slide {
    padding: 0;
  }
  
  /* Nav area */
  
  .meds-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #ffffff;
    padding: 40px 0;
}

  .meds-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #215564;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }
  
  .meds-nav-arrow:hover {
    background-color: #215564;
    color: #fff;
    border-color: #215564;
  }

  .meds-nav-arrow:hover img {
    filter: brightness(0) invert(1);
  }

  .meds-nav-arrow img {
      width: 14px;
  }
  
  .meds-nav-pills-wrap {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }

  .meds-pills-swiper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    touch-action: pan-y;
    min-height: 44px;
  }

  .meds-pills-swiper .swiper-wrapper {
    align-items: center;
    display: flex;
  }

  .meds-pills-swiper .swiper-slide {
    flex-shrink: 0;
    height: auto;
    box-sizing: border-box;
  }

  .meds-pill-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .meds-nav-pills-wrap .meds-pill {
    white-space: nowrap;
  }
  
  .meds-pill {
    border-radius: 999px;
    border: 1px solid rgba(29, 29, 31, 0.2);
    background-color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(29, 29, 31, 0.8);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }
  
  .meds-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: transparent;
    border: 1px solid rgba(29, 29, 31, 0.3);
  }
  
  .meds-pill.is-active {
    background-color: #215564;
    color: #ffffff;
    border-color: #215564;
  }
  
  .meds-pill.is-active::before {
    background-color: #FDD4A3;
    border-color: #ffd884;
  }
  
  /* Responsive */
  
  @media screen and (max-width: 1024px) {
    .meds-card {
      grid-template-columns: 260px minmax(0, 1fr);
    }
  
    .meds-card-right {
      padding: 32px 32px;
    }
  
    .meds-heading {
      font-size: 28px;
    }
  
    .meds-stat-value {
      font-size: 32px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .meds-section {
      padding: 64px 0 0;
    }
  
    .meds-section .container-main {
      padding: 0 16px;
    }
  
    .meds-card {
      grid-template-columns: 1fr;
    }
  
    .meds-card-left {
      padding: 50%;
    }
    .meds-bottle-image {
        left: 0;
        top: 0;
    }
  
    .meds-card-right {
      padding: 24px 20px 32px 20px;
      gap: 0;
    }
  
    .meds-heading {
      font-size: 24px;
    }
  
    .meds-subheading {
      font-size: 16px;
      margin-bottom: 2rem;
    }
  
    .meds-stats-row {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .meds-stat-value {
      font-size: 28px;
    }
    
    .meds-section .meds-nav .meds-nav-arrow {
      width: 30px;
      height: 30px;
      min-width: 30px;
    }
    
    .meds-section .meds-nav .meds-nav-arrow img {
      width: 11px;
    }

    .meds-nav {
      gap: 16px;
      padding: 16px 15px;
    }

    .meds-nav-pills-wrap {
      width: 100%;
      max-width: 240px;
      min-width: 140px;
    }
  }

  @media screen and (min-width: 768px) {
    .meds-nav-pills-wrap {
      max-width: 380px;
      min-width: 200px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .meds-heading {
      font-size: 22px;
    }
  
    .meds-stat-value {
      font-size: 24px;
    }
    .meds-section .meds-nav .meds-nav-arrow {
      width: 30px;
      height: 30px;
      min-width: 30px;
    }
    
    .meds-section .meds-nav .meds-nav-arrow img {
      width: 11px;
    }
  }