/** Shopify CDN: Minification failed

Line 16:31 Unexpected "{"
Line 16:40 Expected ":"
Line 22:31 Unexpected "{"
Line 22:40 Expected ":"
Line 22:47 Unexpected "{"
Line 26:31 Unexpected "{"
Line 26:40 Expected ":"
Line 32:31 Unexpected "{"
Line 32:40 Expected ":"
Line 40:31 Unexpected "{"
... and 59 more hidden warnings

**/
.featured-collection-carousel-{{ section.id }}
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  position: relative;
  margin-top: 40px;
}

.featured-collection-carousel-{{ section.id }} {
  padding-top: 50px;
}

.featured-collection-carousel-{{ section.id }} .fcc__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.featured-collection-carousel-{{ section.id }} .fcc__info {
  flex: 0 0 30%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-collection-carousel-{{ section.id }} .fcc__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.featured-collection-carousel-{{ section.id }} .fcc__text {
  margin: 0 0 20px;
  color: #121212;
  font-size: 16px;
  font-weight: 275;
}

.featured-collection-carousel-{{ section.id }} .fcc__text p {
  margin: 0;
}

.featured-collection-carousel-{{ section.id }} .fcc__button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 60px 8px 25px;
  border: 1px solid #121212;
  border-radius: 50px;
  color: #121212;
  font-weight: 300;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.featured-collection-carousel-{{ section.id }} .fcc__button svg {
  margin-left: 50px;
  transition: transform 0.3s ease;
}

.featured-collection-carousel-{{ section.id }} .fcc__button:hover svg {
  transform: translateX(4px);
}

.featured-collection-carousel-{{ section.id }} .fcc__swiper-container {
  flex: 1;
  min-width: 0;
}

.featured-collection-carousel-{{ section.id }}
  .swiper.product-swiper-{{ section.id }} {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.featured-collection-carousel-{{ section.id }}
  .swiper.product-swiper-{{ section.id }}.is-initialized {
  opacity: 1;
  visibility: visible;
}

.featured-collection-carousel-{{ section.id }}
  .product-swiper-{{ section.id }}
  .swiper-wrapper {
  display: flex;
}

.featured-collection-carousel-{{ section.id }}
  .product-swiper-{{ section.id }}
  .swiper-slide {
  height: auto;
  display: flex;
  flex-shrink: 0;
}

.featured-collection-carousel-{{ section.id }}
  .product-swiper-{{ section.id }}
  .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}

.featured-collection-carousel-{{ section.id }}
  .product-swiper-{{ section.id }}
  .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #e9e9e9 !important;
  opacity: 1;
  transition:
    background-color 0.3s ease,
    width 0.3s ease;
}

.featured-collection-carousel-{{ section.id }}
  .product-swiper-{{ section.id }}
  .swiper-pagination-bullet-active {
  background-color: #121212 !important;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .featured-collection-carousel-{{ section.id }} {
    padding-top: 10px;
  }

  .featured-collection-carousel-{{ section.id }} .fcc__container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .featured-collection-carousel-{{ section.id }} .fcc__info {
    max-width: 100%;
    align-items: flex-start;
    padding-top: 30px;
    border-top: 1px solid #e9e9e9;
  }

  .featured-collection-carousel-{{ section.id }} .fcc__title {
    margin: 0 0 7px;
    font-size: 24px;
  }

  .featured-collection-carousel-{{ section.id }} .fcc__text {
    margin: 0 0 15px;
    font-size: 14px;
  }

  .featured-collection-carousel-{{ section.id }} .fcc__swiper-container {
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
  }

  .featured-collection-carousel-{{ section.id }} .fcc__button {
    padding: 8px 38px 8px 25px;
  }

  .featured-collection-carousel-{{ section.id }} .fcc__button svg {
    margin-left: 30px;
  }
}