/** Shopify CDN: Minification failed

Line 33:2 Unexpected "{"
Line 33:3 Expected identifier but found "%"
Line 35:2 Unexpected "{"
Line 35:3 Expected identifier but found "%"
Line 37:2 Unexpected "{"
Line 37:3 Expected identifier but found "%"
Line 75:2 Comments in CSS use "/* ... */" instead of "//"

**/


/* CSS from section stylesheet tags */
/* Collection Card Styles */
.collection-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  flex: 0 0 auto;
  width: 100%;
  scroll-snap-align: start;
  margin-right: 16px;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}
.collection-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.collection-card:hover img {
  {% if section.settings.hover_effect %}
  transform: scale(1.05);
  {% else %}
  transform: none;
  {% endif %}
}
.collection-card h3 {
  font-size: var(--font-size);
  margin-top: 10px;
}

/* Mobile Carousel Styles */
.mobile-carousel {
  display: none;
}
@media (max-width: 640px) {
  .custom-collection-grid {
    display: none !important;
  }

  .mobile-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
  }
  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .collection-card {
    width: 50%; /* Two collections per view on mobile */
    flex: 0 0 50%;
    box-sizing: border-box;
    scroll-snap-align: start;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.sbc-wrapper {
  //max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}
article.sbc-product {
    max-width: 400px;
}
.sbc-heading {
  text-align: center;
  font-size: 2.1rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.sbc-tablist {
      display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
   
    max-width: 670px;
    margin: 2.2rem auto;
}
.sbc-tab {
  border: 1px solid #000;
  background: #fff;
  border-radius: 9999px;
  padding: 0.5rem 1.4rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.sbc-tab.is-active {
  background: #000;
  color: #fff;
}
.sbc-badge {
  background: #ff0046;
  color: #fff;
  font-size: .65rem;
  padding: .15rem .5rem;
  border-radius: 999px;
  line-height: 1.1;
}
.sbc-panels {
  width: 100%;
}
.sbc-panel {
  display: none;
}
.sbc-panel.is-active {
  display: block;
}
.sbc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
}
.sbc-product {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.sbc-product__imgwrap {
  display: block;
  position: relative;
  padding-bottom: 140%;
  overflow: hidden;
  background: #f5f5f5;
}
.sbc-product__imgwrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  transition: transform .25s ease;
}
.sbc-product:hover .sbc-product__imgwrap img {
  transform: scale(1.03);
}
.sbc-product__info {
  padding: .75rem .5rem 1rem;
  text-align: left;
}
.sbc-product__title {
  font-size: .9rem;
  margin-bottom: .35rem;
  line-height: 1.35;
}
.sbc-product__title a {
  color: inherit;
  text-decoration: none;
}
.sbc-product__price {
  font-weight: 600;
  font-size: .9rem;
}
.sbc-product__compare {
  font-weight: 400;
  text-decoration: line-through;
  opacity: .6;
  margin-left: .4rem;
}
.sbc-empty {
  text-align: center;
  color: #666;
}
@media (max-width: 749px) {
  .sbc-heading {
    font-size: 1.5rem;
  }
  .sbc-tablist {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sbc-tablist::-webkit-scrollbar {
    display: none;
  }
  .sbc-wrapper {
    padding-inline: 1rem;
  }
}