/** Shopify CDN: Minification failed

Line 21:85 Expected identifier but found whitespace
Line 21:87 Unexpected "{"
Line 21:96 Expected ":"
Line 21:152 Expected identifier but found whitespace
Line 21:154 Unexpected "{"
Line 21:163 Expected ":"
Line 21:212 Expected ":"
Line 21:226 Expected identifier but found whitespace
Line 21:228 Unexpected "{"
Line 21:237 Expected ":"

**/
:root {
    --body-font-family: 'DM Sans', sans-serif;
    --heading-font-family: 'DM Mono', monospace;
    --persian-green: #00AFAA;
    --grey: #F6F6F7;
}
.body-font, body {font-size: 16px; font-family: var(--body-font-family); font-weight: {{settings.body_font_weight}}; font-style: normal; letter-spacing: {{settings.body_font_letter_spacing | divided_by: 10.00}}em; line-height: {{settings.body_font_line_height}};}

.h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
}

h2, .h2 {
    font-weight: 500;
}

.btn--green {
    background: var(--persian-green);
    color: white;
    border: 1px solid var(--persian-green);
}
.btn--green:hover {
    background: var(--persian-green);
    color: white;
    border: 1px solid var(--persian-green) !important;
}
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background:var(--persian-green);
    opacity: 1;
}
.dm-h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}
.section-title {
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    font-family: var(--heading-font-family);
}

.text-small {
    font-size: 14px;
    line-height: 1.4;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

@media screen and (max-width: 740px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-title h2 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 500;
        font-family: var(--heading-font-family);
    }

    .dm-h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.4;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        margin-bottom: 32px;
    }
}

.jdgm-rev__timestamp {
    display: none !important;
}


.ih-product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }
  
  .ih-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: box-shadow 0.3s ease;
  }
  
  /* Move hover effect to the link instead of the card */
  .ih-product-card__link:hover .ih-product-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Remove the existing hover on card */
  .ih-product-card:hover {
    /* removed */
  }
  
  /* Prevent button from triggering parent link */
  .ih-product-card__add-to-cart {
    position: relative;
    z-index: 1;
    pointer-events: auto;
  }
  
  /* Add this to prevent the button click from triggering the card link */
  .ih-product-card__action-row {
    position: relative;
    z-index: 2;
  }
  
  .ih-product-card__media {
    position: relative;
    margin-bottom: 12px;
  }
  
  .ih-product-card__image-container {
    position: relative;
    width: 100%;
    background: white;
  }
  
  .ih-product-card__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: contain;
  }
  
  .ih-product-card__top-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .ih-product-card__step-label {
    background-color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .ih-product-card__savings-label {
    background-color: #00AFAA;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .ih-product-card__certification {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    width: 50px;
    height: 50px;
  }
  
  .ih-product-card__certification img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .ih-product-card__content {
    display: flex;
    flex-direction: column;
    padding: 0 16px 16px;
    flex-grow: 1; /* Allow content to grow */
    justify-content: space-between; /* Space between elements */
  }
  
  .ih-product-card__info-wrapper {
    flex-grow: 1; /* This wrapper will take up available space */
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }
  
  .ih-product-card__reviews {
    margin-bottom: 8px;
  }
  
  .ih-product-card__title {
    font-size: 16px;
    font-weight: 700; /* Changed from 500 to 700 for bold */
    margin: 0 0 4px;
    color: #333;
    font-family: "DM Sans", sans-serif;
  }
  
  .ih-product-card__subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }
  
  .ih-product-card__action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto; /* Push to bottom when there's extra space */
  }
  
  .ih-product-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ih-product-card__price-regular {
    font-size: 14px;
    font-weight: 500; /* Changed from 500 to 400 for regular weight */
    color: #333;
  }
  
  .ih-product-card__price-compare {
    font-size: 14px;
    opacity: 0.5;
    color: #333 !important;
  }
  
  .ih-product-card__add-to-cart {
    background-color: transparent;
    color: #00AFAA;
    border: 1px solid #00AFAA;
    padding: 8px 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .ih-product-card__add-to-cart:hover {
    background-color: #00AFAA;
    color: #ffffff !important;
    border-color: #00AFAA;
  }
  
  .ih-product-card__add-to-cart:disabled {
    background-color: #cccccc;
    border-color: #cccccc;
    color: white;
    cursor: not-allowed;
  }
  
  /* JudgeMe star color override */
  /* .jdgm-preview-badge .jdgm-star.jdgm--on,
  .jdgm-preview-badge .jdgm-star.jdgm-star {
    color: #00AFAA !important;
    font-size: 11px !important;
  } */
  
  /* Show review text */
  /* .jdgm-prev-badge__text {
    display: inline !important;
    font-size: 16px !important;
  } */
  
  .ih-product-card__badge {
    background-color: #E6F7F7;
    color: #00AFAA;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    z-index: 2;
    white-space: nowrap;
  }
  
  .product-card__image-wrapper {
    position: relative;
  }
  
  .product-card__seal {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    width: 42px; /* Updated desktop size */
  }
  
  .product-card__seal img {
    width: 100%;
    height: auto;
    display: block;
  }

  .pdp-product-price {
    flex-direction: column;
    white-space: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .ih-product-card__price-discounted-sale {
    font-size: 14px;
    font-weight: 600;
    color: #00AFAA;
  }
  .pdp-product-price .ih-product-card__price-discounted-sale {
    font-size: 16px;
    line-height: 1.5;
  }
  .pdp-product-price .ih-product-card__savings-label {
    margin-bottom: 4px;
  }
  .line-through {
    text-decoration: line-through;
  }
  .ih-product-price-with-discounted-sale {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  /* Mobile styles */
  @media screen and (max-width: 768px) {
    .pdp-product-price {
        flex-direction: column;
        white-space: nowrap;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .ih-product-card {
      padding: 0;
    }
  
    .ih-product-card__content {
      padding: 0 9px 15px;
    }
  
    .ih-product-card__image-container {
      padding: 0;
      margin-bottom: 8px;
    }
  
    .ih-product-card__title {
      line-height: 1.3;
      margin-bottom: 2px;
    }
  
    .ih-product-card__subtitle {
      line-height: 1.3;
      margin-bottom: 20px;
    }
  
    .ih-product-card__info-wrapper {
      margin-bottom: 20px;
    }
  
    .ih-product-card__reviews {
      margin-bottom: 6px;
    }
  
    .ih-product-card__action-row {
      flex-direction: column;
      gap: 6px;
    }
  
    .ih-product-card__price {
      text-align: left;
      width: 100%;
      align-items: flex-start;
    }
    .ih-product-card__add-to-cart {
      width: 100%;
      padding: 8px 30px;
      margin-top: 2px;
    }
  
    .ih-product-card__top-labels {
      top: 8px;
      left: 8px;
      gap: 4px;
    }
  
    .ih-product-card__step-label,
    .ih-product-card__savings-label {
      padding: 4px 6px;
    }
  
    .ih-product-card__certification {
      width: 36px;
      height: 36px;
      bottom: 8px;
      right: 8px;
    }
  
    .ih-product-card__media {
      margin-bottom: 0;
    }
  
    .jdgm-preview-badge .jdgm-star.jdgm-star {
      padding-right: 1px !important;
    }
  
    .ih-product-card__badge {
      top: 8px;
      left: 8px;
    }
  
    .product-card__seal {
      width: 30px;
      bottom: 0px;
      right: 7px;
    }
  
  
    .ih-product-card__info-wrapper {
      gap: 4px;
    }
  
    .ih-product-card__reviews {
      margin-bottom: 4px;
    }
  
    .ih-product-card__subtitle {
      margin-bottom: 8px;
    }
  }