/** Shopify CDN: Minification failed

Line 275:14 Expected identifier but found whitespace
Line 275:16 Unexpected "{"
Line 275:25 Expected ":"
Line 275:64 Expected ":"
Line 341:25 Unexpected "{"
Line 341:34 Expected ":"
Line 341:41 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.image-signup-section {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--section-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
  }
  .image-signup__container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background-color: var(--card-bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  .image-signup__grid {
    flex-basis: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
  }
  .image-signup__grid img,
  .image-signup__grid .placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  .image-signup__content {
    flex-basis: 50%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-color);
  }
  .image-signup__subheading {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--subheading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .image-signup__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .image-signup__text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .image-signup__text p {
    margin: 0;
  }
  .image-signup__button {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
  }
  .image-signup__button:hover {
    background-color: var(--button-hover-bg-color);
  }
  .image-signup__disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin-top: 15px;
    text-align: left;
  }
  .image-signup__social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .image-signup__social span {
    font-weight: 600;
  }
  .image-signup__social a {
    text-decoration: none;
    color: inherit;
    font-size: 1.2rem;
  }
  .image-signup__social p {
    margin: 0;
  }
  @media (max-width: 992px) {
    .image-signup__container {
      flex-direction: column;
    }
    .image-signup__content {
      padding: 40px;
    }
    .image-signup__heading {
      font-size: 2rem;
    }
  }
  @media (max-width: 576px) {
    .image-signup-section {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .image-signup__grid {
      padding: 15px;
      gap: 10px;
    }
    .image-signup__content {
      padding: 30px;
    }
    .image-signup__heading {
      font-size: 1.8rem;
    }
  }
/* Original CSS with custom class names */
    .custom-price-body * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .custom-price-body {
      /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    }

    .custom-pricing-section {
      background-color: white;
    }

    .custom-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .custom-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (min-width: 1024px) {
      .custom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 230px;
      }

      .custom-pricing-info {
        display: flex;
        justify-content: space-between;
      }

      .custom-price,
      .custom-description {
        text-align: left;
      }

      .custom-cta-button {
        margin-left: auto;
      }
    }

    .custom-heading {
      font-size: 2.25rem;
      /* font-weight: bold; */
      color: #000000;
      line-height: 1.25;
    }

    @media (min-width: 1024px) {
      .custom-heading {
        font-size: 60px;
      }
    }

    .custom-pricing-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .custom-price p{
      font-size: 3rem;
      font-weight: bold;
      color: #000000;
    }

    @media (min-width: 1024px) {
      .custom-price {
        font-size: 40px;
      }
    }

    .custom-description {
      font-size: 20px;
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 4rem;
    }

    .custom-cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      border: 2px solid #000000;
      background-color: transparent;
      color: #000000;
      font-weight: 500;
      font-size: 20px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      max-width: max-content;
    }

    .custom-cta-button:hover {
      background-color: #000000;
      color: white;
    }

    .custom-chevron-icon {
      width: 1.25rem;
      height: 1.25rem;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
    }

    /* Fixes */
    .body-text-wrapper p {
      font-family: 'Flecha Test M';
}
.sideeffect-container {
    max-width: 1440px;
    margin: 0 auto;
    padding:0 52px;
  }

  .sideeffect-main-heading {
    color: #ffffff;
    /* UPDATED: Font size now comes from schema */
    font-size: {{ section.settings.heading_font_size_mobile }}px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .sideeffect-treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sideeffect-treatment-item {
    text-align: left;
  }

  .sideeffect-icon-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .sideeffect-icon-x {
    width: 20px;
    height: 20px;
    position: relative;
  }

  .sideeffect-icon-x::before,
  .sideeffect-icon-x::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    top: 50%;
    left: 0;
  }

  .sideeffect-icon-x::before {
    transform: translateY(-50%) rotate(45deg);
  }

  .sideeffect-icon-x::after {
    transform: translateY(-50%) rotate(-45deg);
  }

  .sideeffect-treatment-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
  }

  .sideeffect-treatment-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
  }

  @media (max-width: 768px) {
    .sideeffect-section-{{ section.id }} {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
  
    .sideeffect-container {
      padding: 20px;
    }

    .sideeffect-main-heading {
      /* REMOVED: font-size: 2rem; */
      margin-bottom: 59px !important;
    }
    
    /* Other mobile styles remain the same */
  }

  @media only screen and (max-width:767px){
    .sideeffect-treatments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.comparison-table-body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .comparison-table-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .comparison-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .comparison-table-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
  }
  .comparison-table-main-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 600px;
  }
  .comparison-table-treatment-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 10px;
  }
  .comparison-table-treatment-link:hover {
    opacity: 0.7;
  }
  .comparison-table-arrow {
    font-size: 20px;
  }
  .comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
  }
  .comparison-table-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
  }
  .comparison-table-table-header {
    background-color: #f8f9fa;
  }
  .comparison-table-table-header th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #000000;
    border-right: 1px solid #e5e5e5;
  }
  .comparison-table-table-header th:first-child {
    text-align: left;
    background-color: transparent;
  }
  .comparison-table-awt-header {
    color: #000000;
  }
  .comparison-table-table-row {
    border-bottom: 1px solid #e5e5e5;
  }
  .comparison-table-table-row:last-child {
    border-bottom: none;
  }
  .comparison-table-feature-cell {
    padding: 20px 16px;
    font-weight: 500;
    background-color: transparent;
    border-right: 1px solid #e5e5e5;
  }
  .comparison-table-treatment-cell {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
  }
  .comparison-table-treatment-cell:last-child {
    border-right: none;
  }
  .comparison-table-check-mark, .comparison-table-x-mark {
    font-size: 20px;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .comparison-table-header {
      flex-direction: column;
      align-items: flex-start;
    }
    .comparison-table-main-title {
      font-size: 32px;
    }
    .comparison-table-treatment-link {
      align-self: flex-end;
    }
    .comparison-table-table {
      font-size: 14px;
    }
    .comparison-table-table-header th,
    .comparison-table-feature-cell,
    .comparison-table-treatment-cell {
      padding: 12px 8px;
    }
  }
.vision-cards-section {
    margin: 0;
    background-color: #f9f9f9;
    color: #1c1c1c;
  }
  .vision-cards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .vision-cards__header {
    text-align: center;
    margin-bottom: 40px;
  }
  .vision-cards__heading {
    font-size: var(--heading-font-size);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }
  .vision-cards__heading strong,
  .vision-cards__heading b {
    color: var(--highlight-color);
    font-weight: 600;
  }
  .vision-cards__grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .vision-cards__item {
    flex: 1;
    /* max-width: 280px; */
    max-width: 432px;
  }
  .vision-cards__card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
  }
  .vision-cards__image-wrapper {
    overflow: hidden;
    height: 100%;
  }
  .vision-cards__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  .vision-cards__card:hover .vision-cards__image {
    transform: scale(1.05);
  }
  .vision-cards__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    border: 1px solid #e5e5e5;
  }
  .vision-cards__title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(to top, var(--overlay-start-color), var(--overlay-end-color));
  }
  .vision-cards__card-title {
    color: white;
    font-size: var(--card-title-font-size);
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
  .vision-cards__card-title p {
    margin: 0;
  }

  .vision-cards__main-heading {
     font-family: Flecha Test M;
  }
  .vision-cards__description {
   font-family: 'Styrene B Trial';
  }
  .vision-cards__card-title {
    font-family: 'Styrene B Trial';
    }
  @media (max-width: 768px) {
    .vision-cards__container {
      padding: 0 15px;
    }
    .vision-cards__grid {
      flex-direction: column;
      align-items: center;
    }
    .vision-cards__heading {
      font-size: calc(var(--heading-font-size) * 0.75);
    }
    .vision-cards__card-title {
      font-size: calc(var(--card-title-font-size) * 0.85);
    }
    .vision-cards__image-wrapper {
    overflow: hidden;
    width: 339px;
    height: 339px;
  }
  }