/** Shopify CDN: Minification failed

Line 121:0 Unexpected "}"
Line 215:26 Unexpected "{"
Line 215:35 Expected ":"
Line 227:26 Unexpected "{"
Line 227:35 Expected ":"
Line 247:26 Unexpected "{"
Line 247:35 Expected ":"
Line 256:26 Unexpected "{"
Line 256:35 Expected ":"
Line 266:26 Unexpected "{"
... and 21 more hidden warnings

**/
/* -------------------------------------
   TABS + SLIDER (ENHANCED UI) CSS
   ------------------------------------- */

/* Section Wrapper */
.tabs-with-slider-section {
  padding: 40px 0;
  background-color: #fff;
}


/* Tabs Navigation */
.tabs-nav {
  display: flex;
  justify-content: center;
  border-bottom:1px solid #e1dede;
  gap: 30px;
  margin-bottom: 30px;
}

.tab-button {
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
  color: #333;
}

.tab-button:hover {
  color: #000;
}

.tab-button.active {
  color: #0072e5;
  font-weight: 600;
  position: relative;
}

.tab-button.active::after {
  content: "";
  display: block;
  height: 2px;
  background: #0072e5;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}

/* Tab Content */
.tab-content {
  max-width:1520px;
  display: none; /* Initially hidden; script shows the active tab */
  margin: 0 auto;
  padding: 0 20px;
}
.tab-content-banner{max-width:1320px;}

/* Two-Column Layout with Equal Heights */
.twocol {
  display: flex;
  flex-wrap: nowrap; /* prevent wrapping to keep columns equal height */
  min-height: 600px;
  align-items: stretch;
  gap: 0px;
}

/* LEFT COLUMN: BACKGROUND IMAGE */
.twocol-left {
  flex: 1 1 50%;
  min-width: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 80px 0 0px 80px;
}

/* RIGHT COLUMN: SLIDER */
.twocol-right {
  flex: 1 1 50%;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 20px 30px;
  border-radius: 0px 80px 80px 0;
}

.twocol-banner-right {
  width:100%;
  min-width: 300px;
  position: relative;
  overflow: hidden;


}

  h3{
    margin:0;
    color: #0a2449;
  }

}


/* Make slider column responsive */
.slider-column {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


.slider-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;        
  will-change: transform;
}


.slide-item {
  flex: 0 0 100%;       
  box-sizing: border-box;
    background-color: #f0f0f0;
  padding: 20px 30px;   
}
.slide-item-banner{
  padding:0px;
  border-radius:30px;
}

.slide-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  mix-blend-mode: multiply;
}

.slide-item-banner img{
  margin-bottom:0px;
  border-radius:30px;
    height: 100%;
  object-fit: cover;
}


.slide-title,
.slide-subtitle,
.slide-product-title,
.slide-price {
  font-size: clamp(14px, 1.5vw, 18px); 
  line-height: 1;
}

.slide-price{
  text-align: right;
}

/* Slider Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  opacity: 0.5;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-next-banner{background-color:#0072e5;border-radius: 0px;padding: 5px;color:#fff;}
.slider-prev-banner{background-color:#0072e5;border-radius: 0px;padding: 5px;color:#fff;}
.shop-now-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.home-shop-now{
  border-radius: 30px;
  padding:10px 20px;
  color:#ffffff;
  background-color:#2f6fcc;
}

#tabs-with-banner-slider-{{ section.id }} .slider-thumbs{
  position:absolute;
  left:50%;
  bottom:10%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:12px;                
  z-index:5;
}


#tabs-with-banner-slider-{{ section.id }} .thumb-item{
  --thumb-w: 180px;         
  --thumb-h: 96px;          
  --pad: 4px;               
  --rad: 14px;             

  width:var(--thumb-w);
  height:var(--thumb-h);
  padding:var(--pad);
  background:#fff;
  border-radius:calc(var(--rad) + var(--pad));
  border:1px solid rgba(255,255,255,.6);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
  cursor:pointer;
  outline:none;
}


#tabs-with-banner-slider-{{ section.id }} .thumb-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:var(--rad);
}


#tabs-with-banner-slider-{{ section.id }} .thumb-item::after{
  content:"";
  position:absolute;
  left:var(--pad); right:var(--pad);
  top:var(--pad); bottom:var(--pad);
  border-radius:var(--rad);
  background:rgba(0,0,0,.45);   
  opacity:1;
  transition:opacity .25s ease;
}
#tabs-with-banner-slider-{{ section.id }} .thumb-item[aria-current="true"]::after{
  opacity:0;                    
}
#tabs-with-banner-slider-{{ section.id }} .thumb-item:not([aria-current="true"]):hover::after{
  opacity:.3;                  
}


#tabs-with-banner-slider-{{ section.id }} .thumb-item:not([aria-current="true"]) img{
  filter:saturate(.85) brightness(.85);
  transition:filter .25s ease;
}
#tabs-with-banner-slider-{{ section.id }} .thumb-item[aria-current="true"] img{
  filter:none;
}
#tabs-with-banner-slider-{{ section.id }} .thumb-item[aria-current="false"]{
  padding:0;
  border-radius:0px;
  background:none;
  border:none;
}

#tabs-with-banner-slider-{{ section.id }} .thumb-item[aria-current="false"]::after{
  top:0;left:0;bottom:0;right:0;                
}
@media (max-width: 768px){
  #tabs-with-banner-slider-{{ section.id }} .slider-thumbs{
    bottom:6%;
    gap:8px;
  }
  #tabs-with-banner-slider-{{ section.id }} .thumb-item{
    --thumb-w: 90px;
    --thumb-h:50px;
    --pad: 1px;
    --rad: 8px;
  }
}


@media (max-width: 768px) {

  .tabs-nav {
    gap:0;
  }
  .tab-button{
    font-size:14px;
    padding: 10px 15px;
  }
  .twocol {
    flex-direction: column;
    min-height:auto;
  }

  .twocol-left,
  .twocol-right {
    flex: 1 1 100%;
  }

  .twocol-left{
        border-radius: 40px 40px 0 0px;
        min-height: 420px;
  }
  .twocol-right {
     border-radius: 0px 0px 40px 40px;
  }

  .slider-wrapper {
    flex-direction: row;
  }

  .slide-item {
    min-width: 100%;
  }
}
/* 手机端：缩略图条改为整行横向滑动，吸附对齐 */
@media (max-width: 768px){
  #tabs-with-banner-slider-{{ section.id }} .slider-thumbs{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:6%;
    width:calc(100% - 24px);    
    padding:0 4px;
    gap:8px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;       
    scroll-snap-type:x mandatory;
    justify-content: center;
  }
  #tabs-with-banner-slider-{{ section.id }} .slider-thumbs::-webkit-scrollbar{ display:none; } 


  #tabs-with-banner-slider-{{ section.id }} .thumb-item{
    --thumb-w: 23vw;             
    --thumb-h: 13vw;            
    --rad: 12px;
    width:var(--thumb-w);
    height:var(--thumb-h);
    flex:0 0 var(--thumb-w);     
    scroll-snap-align:start;     
  }
}
