/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 86:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css">
<style>
.hero-slider-container {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-height: 90vh;
  width: 99.2vw;
  height: auto;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.hero-slide video,
.hero-slide iframe {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 0 0 10%;
}
.hero-slide-content h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
}
.hero-slide-content .button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: none;
  font-weight: bold;
  line-height: 1;
}
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
  
@media (max-width: 768px) {
  .hero-slide {
    width: 100%;      /* 缩小宽度 */
    aspect-ratio: 16 / 9;  /* 高度自动按比例 */
    margin: 0 auto;   /* 居中 */
  }
  .hero-slide-content {
    
    max-width: 40%;  /* 让内容撑满容器宽度 */
    padding: 1.5vw;
  }
  .hero-slide-content h1 {
    font-size: 4vw;   /* 字体随容器缩放 */
  }
  .hero-slide-content .button {
    size:4vw;
    padding: 1.2vw 3vw;
    border-radius: 25vw;
  }
}
  
}
</style>
.indoor-container {
    display: flex;
    background-color: #ffffff;
    color: #003366;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 600px;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
  }
  /* 左侧筛选栏 */
  .indoor-filters {
    width: 300px;
    background-color: #f9fafe;
    border: 2px solid #003366;
    border-radius: 8px;
    padding: 25px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .indoor-filters h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #003366;
  }
  .indoor-search input[type="search"] {
    width: 100%;
    padding: 10px 12px;
    border: 1.8px solid #003366;
    border-radius: 6px;
    font-size: 16px;
    color: #003366;
    margin-bottom: 25px;
    box-sizing: border-box;
  }
  .filter-option {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: #003366;
  }
  .filter-option label {
    font-size: 16px;
    color: #003366;
    user-select: none;
  }

  /* 右侧产品展示 */
  .indoor-products {
    flex: 1;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .indoor-products h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 12px;
    color: #003366;
  }
  .indoor-products p.description {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #003366;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px;
  }
  .product-card {
    border: 1.8px solid #003366;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    transition: box-shadow 0.25s ease-in-out;
  }
  .product-card:hover {
    box-shadow: 0 4px 14px rgba(0, 51, 102, 0.3);
  }
  .product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
    object-fit: contain;
  }
  .product-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    font-weight: 700;
    color: #003366;
  }
  .product-card .price {
    font-size: 16px;
    font-weight: 600;
    color: #003366;
  }

  /* 响应式 */
  @media (max-width: 900px) {
    .indoor-container {
      flex-direction: column;
    }
    .indoor-filters {
      width: 100%;
      margin-bottom: 30px;
    }
  }
.video-gallery-filter {
  text-align: center;
  margin-bottom: 25px;
}
.video-gallery-filter button {
  background: #eee;
  border: none;
  padding: 8px 15px;
  margin: 0 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.video-gallery-filter button.active,
.video-gallery-filter button:hover {
  background-color: #007bff;
  color: #fff;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  margin: 0 auto;
  max-width: 1200px;
}
.video-thumbnail {
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: 350px;
  display: block; /* 默认显示 */
}
.video-thumbnail img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.video-title {
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
  font-size: 1rem;
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.video-modal.active {
  display: flex;
}
.video-modal-content {
  background: #fff;
  border-radius: 10px;
  max-width: 90vw;
  max-height: 80vh;
  padding: 20px;
  overflow-y: auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 15px;
}
.video-description {
  font-size: 0.95rem;
  color: #333;
  text-align: center;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  user-select: none;
}