/** Shopify CDN: Minification failed

Line 142:19 Expected identifier but found whitespace
Line 142:21 Unexpected "{"
Line 142:30 Expected ":"

**/


/* CSS from section stylesheet tags */
/* .image-text-section .page-width {
   width: {{ section.settings.custom_page_width }}px;
    margin: auto;
    padding: 0 34px;
} */
.image-text-section {
  padding: 60px 20px;
}
.image-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.image-text-wrapper.reverse {
  flex-direction: row-reverse;
}
.image-text-content {
  flex: 1 1 60%;
  padding: 20px;
}
.image-text-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700!important;
    line-height: 40px;
}
.image-text-content .subheading {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 400;
}
.image-text-content .rich-text {
  font-size: 1rem;
  line-height: 1.6;
}
.image-text-image {
  flex: 1 1 35%;
  padding: 20px;
}
.image-text-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
img.signecher-image {
    width: 217px;
    padding: 15px 0;
}
  .image_with_text_button a {
    width: 420px;
    display: inline-block;
    margin-top: 16px;
}
  .image-text-content .subheading {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: normal;
}
    .review_texts .custom_review {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
  .review_texts p {
    font-size: 18px;
}
  @media screen and (max-width: 767px) {
  .image-text-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .image-text-section .page-width {
    width: 100% !important;
    padding: 0px;
  }

  .image-text-content {
    padding: 0 10px;
  }
.image_with_text_button a {
    width: 100%;
}
    .review_texts p {
    font-size: 15px;
}
  .image-text-content h2 {
    font-size: 28px;
    line-height: 32px;
    text-align: left;
  }

  .image-text-content .subheading {
    font-size: 28px;
    line-height: 28px;
    text-align: left;
  }

  .image-text-content .rich-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .image-text-image {
    padding: 0 10px;
    text-align: center;
  }

  .image-text-image img {
    max-width: 100%;
    height: auto;
  }

  .image-text-section {
    padding: 20px 0;
  }

  img.signecher-image {
    width: 160px;
    padding: 10px 0;
  }
    .image-text-wrapper.reverse {
    flex-direction: column-reverse;
}
}
.logo-list-section {
  padding: 40px 20px;
  background-color: {{ section.settings.bg_color }};
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.logo-grid .logo-item {
  flex: 0 0 120px; /* fixed width per logo */
}

.logo-grid img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.swiper {
  display: none;
}

@media screen and (max-width: 767px) {
  .logo-grid {
    display: none;
  }
  .swiper {
    display: block;
    padding: 20px 0;
  }
  .swiper-slide {
    text-align: center;
  }
  .swiper-slide img {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    margin: auto;
  }
}

/* CSS from snippet stylesheet tags */
.skin-tabs-section {
  --bg: #f9f9f9;
  --text: #000;
  --radius: 12px;
  --padding: 20px;
  --icon-size: 20px;
  --font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}
.skin-tab {
  background: var(--bg);
  border-radius: 25px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.skin-tab-button {
    width: 100%;
    text-align: left;
    padding: var(--padding);
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.skin-tab-icon {
  font-size: var(--icon-size);
  transition: transform 0.3s ease;
}
.skin-tab-content {
    padding: var(--padding);
    display: none;
    font-size: 13px;
    font-weight: 400;
}
.skin-tab-content p {
  margin: 0 0 10px;
}
.skin-tab.open .skin-tab-content {
  display: block;
}
.skin-tab.open .skin-tab-icon {
  transform: rotate(180deg);
}
  @media (max-width:767px){
    .skin-tab-button {
  font-size: 13px;
}
    .skin-tab-content p {
    font-size: 12px;
}
  }