/** Shopify CDN: Minification failed

Line 193:0 Unexpected "<"
Line 196:36 Comments in CSS use "/* ... */" instead of "//"
Line 201:14 Comments in CSS use "/* ... */" instead of "//"

**/
.collection-tab--wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.collection-tab--slider {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}

.tab-vertical .tab-nav .tab-nav-item {
  flex: 1;
  width: 100%;
  padding-left: 0.5rem;
}

.tab-vertical .tab-nav-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  filter: grayscale(100%) brightness(0.5);
  color: rgba(var(--text-color));
  word-break: break-word;
  text-transform: uppercase;
}

:is(.tab-horizontal) .tab-nav-link span {
  border-bottom: 0.06rem solid transparent;
}

.collection-tab--panel:not(.tab-vertical) .tab-image {
  display: none;
  padding-right: 0.3rem;
  border-right: 0.19rem solid transparent;
  transition: all 0.5s cubic-bezier(0.3, 1, 0.3, 1);
}

.tab-nav-link .tab-image {
  position: relative;
}

.tab-nav-link .tab-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5rem;
  width: 0.125rem;
  height: 0;
  background: rgb(var(--border-color));
  transition: all 0.5s cubic-bezier(0.3, 1, 0.3, 1);
}

.tab-nav-link :is(img, .placeholder-svg) {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  border-radius: var(--rounded-card);
}

.tab-nav-link:is(.is-active, :hover) {
  filter: grayscale(0);
  color: rgba(var(--text-color));
}

.tab-nav-link:is(.is-active, :hover) .tab-image:before {
  height: 100%;
}

:is(:not(.tab-vertical)) .tab-nav-link:is(.is-active, :hover) span {
  border-bottom-color: rgba(var(--text-color));
}

.tab-collections-content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.tab-collections-content .swiper {
  width: 100%;
}

.tab-collections-content:not(.is-active) {
  display: none;
}

@media (min-width: 768px) {
  .collection-tab--slider
    .swiper:not(.swiper-initialized)
    .swiper-wrapper
    .swiper-slide {
    width: 33.33333%;
  }
}

@media (min-width: 1025px) {
  .tab-vertical .tab-nav {
    flex-direction: column;
  }
  .collection-tab--slider
    .swiper:not(.swiper-initialized)
    .swiper-wrapper
    .swiper-slide {
    width: 25%;
  }
  .tab-collections-content {
    flex-direction: column-reverse;
  }
  .tab-collections-content .slider-controls {
    position: absolute;
    top: -4.2rem;
    right: 0rem;
  }
  .tab-collections-content .slider-controls a.underline--link {
    right: 10px;
  }
  .collection-tab--panel.tab-vertical {
    max-width: 9rem;
    width: 9rem;
    max-height: 550px;
    overflow-y: auto;
  }
  .collection-tab--panel.tab-vertical::-webkit-scrollbar {
    display: none;
  }
  .collection-tab--panel:is(.tab-horizontal),
  .collection-tab--panel.tab-vertical + .collection-tab--slider {
    max-width: calc(100% - 12rem);
  }
}

@media (min-width: 1201px) {
  .collection-tab--panel.tab-vertical {
    max-width: 12.5rem;
    width: 12.5rem;
  }
  .collection-tab--panel:is(.tab-horizontal),
  .collection-tab--panel.tab-vertical + .collection-tab--slider {
    max-width: calc(100% - 15.625rem);
  }
}

@media screen and (max-width: 1024px) {
  .collection-tab--panel {
    width: 100%;
    overflow: hidden;
  }
  .tab-nav {
    grid-gap: .4rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    flex-wrap: nowrap;
}
  .tab-vertical .tab-nav .tab-nav-item {
    flex: 0 0 100%;
    max-width: calc(22% - 1rem);
  }
}

@media screen and (max-width: 991px) {
  .collection-tab--wrapper {
    gap: 0.875rem;
  }
  .tab-collections-content .slider-controls {
    margin: 1rem 0rem 0rem;
  }
  .tab-vertical .tab-nav .tab-nav-item {
    padding-left: 0.3rem;
  }
  .tab-nav-link .tab-image:before {
    left: -0.3rem;
  }
}

@media screen and (max-width: 767px) {
  .tab-vertical .tab-nav-link {
    font-size: var(--text-small);
  }
  .tab-vertical .tab-nav .tab-nav-item {
    max-width: calc(33% - 1rem);
  }
}
<script>
  document.querySelectorAll('.tab-nav-link').forEach(function(link) {
    link.addEventListener('click', function(e) {
      e.stopImmediatePropagation(); // 阻止原有的 tab 切换逻辑
      var url = this.getAttribute('data-url') || this.getAttribute('href');
      if (url) {
        window.location.href = url;
      }
    }, true); // true = capture phase，确保优先于原有监听器执行
  });
</script>
