/** Shopify CDN: Minification failed

Line 96:20 Unexpected "{"
Line 96:29 Expected ":"
Line 105:20 Unexpected "{"
Line 105:29 Expected ":"
Line 110:20 Unexpected "{"
Line 110:29 Expected ":"
Line 116:20 Unexpected "{"
Line 116:29 Expected ":"
Line 122:20 Unexpected "{"
Line 122:29 Expected ":"
... and 65 more hidden warnings

**/


/* CSS from section stylesheet tags */
.product-comparison-section {
  max-width: 1630px;
  margin: 0 auto;
  padding: 30px 15px;
}

.product-comparison-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
  width: 100%;
}
  
.section-title {
   text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 888px;
font-size: 64px;
}
  
.product-comparison-section .tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.product-comparison-section .tab {
  width: 360px;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  text-align: center;
}

.product-comparison-section .tab.active {
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.product-comparison-section .tab-content {
  margin: 0 auto;
  width: 100%;
}

.product-comparison-section .image-container {
  width: 100%;
  text-align: center;
}

.product-comparison-section .image-container img {
  max-width: 100%;
  height: auto;
}

.product-comparison-section .product-showcase {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .product-comparison-section .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  
  .product-comparison-section .tabs-container {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .product-comparison-section .tab {
    width: 50%;
    padding: 10px 15px;
    font-size: 14px;
  }
}
/* 使用更特定的CSS选择器，避免影响其他section */
  #shopify-section-{{ section.id }} .product-tabs-showcase-section {
    max-width: 1370px;
    margin: 0 auto;
    padding: 30px 15px;
    position: relative;
    z-index: 1;
    isolation: isolate; /* 创建新的层叠上下文 */
  }

  #shopify-section-{{ section.id }} .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  #shopify-section-{{ section.id }} .section-title {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 15px;
  }

  #shopify-section-{{ section.id }} .section-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: normal;
  }

  #shopify-section-{{ section.id }} .section-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    color: rgba(22, 22, 22, 0.6);
  }

  #shopify-section-{{ section.id }} .tab-image-container {
    width: 100%;
    text-align: center;
    margin-bottom: 48px;
    display: none;
  }

  #shopify-section-{{ section.id }} .tab-image-container.active {
    display: block;
  }

  #shopify-section-{{ section.id }} .tab-image-container img {
    max-width: 100%;
    height: auto;
  }

  #shopify-section-{{ section.id }} .tabs-container {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 auto;
    max-width: 1080px;
    position: relative;
    z-index: 9 !important; /* 提高容器的z-index */
  }

  #shopify-section-{{ section.id }} .tab {
    padding: 12px 15px;
    cursor: pointer !important; /* 强制使用指针光标 */
    position: relative;
    text-align: center;
    box-sizing: border-box;
    z-index: 10 !important; /* 确保标签在其他元素之上 */
    pointer-events: auto !important; /* 确保点击事件有效 */
    user-select: none; /* 防止文本选择干扰点击 */
  }

  #shopify-section-{{ section.id }} .tab.active {
    font-weight: bold;
    border-bottom: 2px solid #000;
  }

  #shopify-section-{{ section.id }} .tab-content {
    margin: 48px auto 0;
    width: 100%;
    max-width: 1080px;
    display: none;
  }

  #shopify-section-{{ section.id }} .tab-content.active {
    display: block;
  }

  #shopify-section-{{ section.id }} .custom-html {
    width: 100%;
  }

  #shopify-section-{{ section.id }} .mobile-tabs-container {
    margin: 0 auto 30px;
    max-width: 300px;
    display: none;
  }

  #shopify-section-{{ section.id }} .mobile-tabs-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
  }

  #shopify-section-{{ section.id }} .product-tabs-mobile-swiper {
    margin-bottom: 30px;
    display: none;
  }

  #shopify-section-{{ section.id }} .product-tabs-swiper-container {
    width: 100%;
    overflow: hidden;
  }

  #shopify-section-{{ section.id }} .product-tabs-swiper-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease;
  }

  #shopify-section-{{ section.id }} .product-tabs-swiper-slide {
    flex-shrink: 0;
    width: 100%;
  }

  #shopify-section-{{ section.id }} .product-tabs-swiper-slide img {
    width: 100%;
    height: auto;
  }

  /* 分页指示器样式 */
  #shopify-section-{{ section.id }} .product-tabs-swiper-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #shopify-section-{{ section.id }} .product-tabs-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: #ccc;
    opacity: 1;
    display: inline-block;
  }

  #shopify-section-{{ section.id }} .product-tabs-swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
    width: 10px;
    height: 10px;
  }

  #shopify-section-{{ section.id }} .desktop-hidden {
    display: none;
  }

  /* 确保标签内容可点击 */
  #shopify-section-{{ section.id }} .tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* 在标签文本之下，但能够捕获点击 */
  }

  @media (max-width: 768px) {
    #shopify-section-{{ section.id }} .section-header {
      margin-bottom: 30px;
    }

    #shopify-section-{{ section.id }} .section-title {
      font-size: 28px;
      margin-bottom: 10px;
       font-weight: 400;
    }

    #shopify-section-{{ section.id }} .section-subtitle {
      font-size: 18px;
      margin-bottom: 10px;
    }

    #shopify-section-{{ section.id }} .section-description {
      font-size: 16px;
    }

    #shopify-section-{{ section.id }} .mobile-hidden {
      display: none !important;
    }

    #shopify-section-{{ section.id }} .desktop-hidden {
      display: block;
    }

    #shopify-section-{{ section.id }} .mobile-tabs-container {
      display: block;
    }

    #shopify-section-{{ section.id }} .product-tabs-mobile-swiper {
      display: block;
    }

    #shopify-section-{{ section.id }} .tab-content {
      margin-top: 30px;
    }

    /* 确保移动端图片可见 */
    #shopify-section-{{ section.id }} .product-tabs-swiper-slide {
      display: none;
    }

    #shopify-section-{{ section.id }} {

      
    }.product-tabs-swiper-slide.active {
      display: block;
    }
  }