/** Shopify CDN: Minification failed

Line 186:29 Unexpected "{"
Line 186:30 Expected identifier but found "-"
Line 186:46 Unexpected ","

**/
card-product-slider,
recently-viewed-products,
complementary-products {
  display: block;
}

html .card-product-slider {
  overflow: visible;
}

.card-product-slider__buttons {
  position: static;
  padding: 0;
  transform: none;
  justify-content: flex-end;
}

.card-product-slider .card-product-slider__slide {
  width: calc(100% - 16.666%);
}

html.no-js .card-product-slider__wrapper {
  overflow-x: auto;
  margin: 0 calc(0rem - var(--page-gutter));
  padding: 0 var(--page-gutter) 2rem;
}

html.no-js .card-product-slider__slide + .card-product-slider__slide {
  margin-inline-start: .2rem;
}

@media screen and (min-width: 480px) {
  .card-product-slider .card-product-slider__slide {
    width: calc((100% - 50%) - .2rem);
  }
}

@media screen and (min-width: 575px) {
  .card-product-slider .card-product-slider__slide {
    width: calc((100% - 56%) - .2rem);
  }
}

@media screen and (min-width: 750px) {
  html.js .card-product-slider {
    overflow: hidden;
  }

  .card-product-slider__buttons > :not(.swiper-button-lock) {
    margin-block-start: 3.2rem;
  }

  .card-product-slider .card-product-slider__slide {
    width: 100%;
  }

  html.no-js .card-product-slider .card-product-slider__slide {
    width: calc(100% / 3 - .2rem);
  }
}

@media screen and (min-width: 1100px) {
  html.no-js .card-product-slider .card-product-slider__slide {
    width: calc(25% - .2rem);
  }
}

/* Card product slider - secondary */

.card-product-slider--secondary {
  width: 72.5%;
  margin-inline-start: 0;
}

@media screen and (min-width: 750px) {

  html.js .card-product-slider--secondary,
  html.no-js .card-product-slider--secondary {
    overflow: visible;
  }
}

@media screen and (min-width: 990px) {
  .card-product-slider--secondary {
    width: 100%;
  }
}

.products-feed__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 2.4rem;
}
.products-feed__tab button {
  padding: .4rem 1.2rem;
  outline: none;
  cursor: pointer;
  border-radius: 9rem;
  border: none;
  transition: 0.3s;
  background-color: #f1f1f1;
  margin: 0 .8rem;
  color: #000;
  font-size: 1rem;
  line-height: 1.3rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
}
.products-feed__tab button:hover {
  background-color: var(--color-text-secondary);
  color: #fff;
}
.products-feed__tab button.active {
  background-color: var(--color-text-secondary);
  color: #fff;
}

.products-feed__tabcontent {
  display: none;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}




/* Tab Container Styles */
.products-feed__tab {
  width: 100%;
  margin-bottom: 20px;
}

.products-feed__tab-wrapper {
  position: relative;
  overflow: hidden;
}

.products-feed__tab-container {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
}

/* Desktop - Centered tabs */
@media screen and (min-width: 750px) {
  .products-feed__tab-container {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .products-feed__tab-wrapper {
    overflow: visible;
  }
}

/* Mobile - Scrollable tabs */
@media screen and (max-width: 749px) {
  .products-feed__tab-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .products-feed__tab-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .products-feed__tab-container {
    flex-wrap: nowrap;
    padding: 0 15px;
  }
  
  .products-feed__tablinks--{{- section.id -}},
  [class*="products-feed__tablinks"] {
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
  }
}

/* Tab Button Styles */
[class*="products-feed__tablinks"] {
  padding: 10px 20px;
  border: 1px solid #ddd;
  background: transparent;
  cursor: pointer;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

[class*="products-feed__tablinks"]:hover,
[class*="products-feed__tablinks"].active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Collection Flex Container */
.collection__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 749px) {
  .collection__flex {
    flex-direction: column;
    align-items: stretch;
  }
  
  .products-feed__tab {
    width: 100%;
    margin-bottom: 15px;
  }
}
/* Enhanced Mobile Scrolling with Snap */
@media screen and (max-width: 749px) {
  .products-feed__tab-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
  }
  
  .products-feed__tab-container {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    flex-wrap: nowrap;
  }
  
  [class*="products-feed__tablinks"] {
    scroll-snap-align: start;
    white-space: nowrap;
    flex-shrink: 0;
  }
}