/** Shopify CDN: Minification failed

Line 145:22 Unexpected "{"
Line 145:31 Expected ":"
Line 145:38 Unexpected "{"

**/
.stack-collection-tabs { width: 100%; overflow: hidden; }
.stack-header { text-align: center; margin-bottom: 40px; }
.stack-heading { margin: 0 0 6px; }
.stack-subheading { opacity: 0.8; }
.stack-tabs-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.stack-tabs-scroll::-webkit-scrollbar { display: none; }
.stack-tabs-list {
  display: flex;
  gap: 6px;
  padding: 0 20px 8px;
  justify-content: center;
  flex-wrap: nowrap;
}
.stack-tab-btn {
  flex-shrink: 0;
  padding: 12px 28px;
  background: var(--stack-tabs-bg-inactive);
  color: var(--stack-tabs-color-inactive);
  border: none;
  border-radius: var(--stack-tabs-border-radius);
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  font-weight: 600;
}
.stack-tab-btn:hover { opacity: .85; }
.stack-tab-btn.stack-active {
  background: var(--stack-tabs-bg-active);
  color: var(--stack-tabs-color-active);
}
.stack_product_grid_item .t4s-product-img {
    min-height: 280px;
}
.stack_product_grid_item .t4s-product-info {
    text-align: center;
}
.stack-panels { position: relative; }
.stack-panel { display: none; animation: stackFade .4s ease; }
.stack-panel.stack-active { display: block; }

@keyframes stackFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.stack-carousel {
  overflow: hidden;
  padding: 0 20px;
  margin: 0 -20px;
  user-select: none;
  -webkit-user-select: none;
}

.stack-track {
  display: flex;
  gap: var(--stack-gap);
  will-change: transform;
}

.stack-item {
  flex-shrink: 0;
  width: calc((100vw - 40px) / var(--stack-mobile-columns) - (var(--stack-gap) * (var(--stack-mobile-columns) - 1) / var(--stack-mobile-columns)));
}

.stack-card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stack-card:hover {
  transform: translateY(-6px);
}

.stack-link { display: block; text-decoration: none; color: inherit; }

.stack-image {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  background: #f9f9f9;
  overflow: hidden;
}
.stack-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack-placeholder { width: 60%; opacity: .3; }

.stack-info { padding: 16px; }
.stack-title {
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stack-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stack-sale { color: #e74c3c; }
.stack-compare {
  text-decoration: line-through;
  opacity: .7;
}

@media (min-width: 768px) {
  .stack-item {
    width: calc(100% / var(--stack-desktop-columns) - (var(--stack-gap) * (var(--stack-desktop-columns) - 1) / var(--stack-desktop-columns)));
  }
  .stack-tabs-scroll { overflow: visible; }
  .stack-tabs-list { padding: 0; }
  .stack-carousel { margin: 0; padding: 0; }
}

.stack-placeholder {
  text-align: center;
  padding: 80px 20px;
  opacity: .6;
}

@media(max-width: 768px) {
    .stack_product_grid_item .t4s-product-img {
        min-height: 200px;
    }
    #shopify-section-{{ section.id }} {
    --stack-gap: 10px;
    }
    .stack-tabs-scroll {
        margin-bottom: 15px;
    }
    .stack-header {
        margin-bottom: 30px;
    }
    .stack-tabs-list {
        display: flex;
        gap: 6px;
        padding: 0 0px 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}
@media(max-width: 460px) {
    .stack_product_grid_item .t4s-product-img {
        min-height: 180px;
    }
}