/** Shopify CDN: Minification failed

Line 146:20 Unexpected "{"
Line 146:29 Expected ":"

**/


/* CSS from section stylesheet tags */
.featured-collection-slider {
  background-color: var(--section-bg);
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.featured-collection-slider__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.featured-collection-slider__content {
  display: flex;
  flex-direction: column;
}

.featured-collection-slider__block--subheading,
.featured-collection-slider__block--heading,
.featured-collection-slider__block--text {
  margin-bottom: 20px;
}

.featured-collection-slider__block--button {
  margin-top: 10px;
}

.featured-collection-slider .subheading {
  color: var(--subheading-color);
  font-size: var(--subheading-font-size);
}

.featured-collection-slider .h1-style-heading {
  color: var(--heading-color);
  font-size: var(--heading-font-size);
  margin: 0;
}

/* Scoped RTE styles */
.featured-collection-slider .rte {
  color: var(--text-color);
  font-size: var(--text-font-size);
}
.featured-collection-slider .rte p {
  margin: 0;
}

.featured-collection-slider__content.align-left {
  text-align: left;
  align-items: flex-start;
}
.featured-collection-slider__content.align-center {
  text-align: center;
  align-items: center;
}
.featured-collection-slider__content.align-left .button {
  margin-left: 0;
  margin-right: auto;
}
.featured-collection-slider__content.align-center .button {
  margin-left: auto;
  margin-right: auto;
}

.featured-collection-slider .flickity-carousel {
  width: 100%;
}

.featured-collection-slider .carousel-cell {
  width: 33.3333%;
  max-width: 100%;
  margin-right: 0;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .featured-collection-slider .carousel-cell {
    width: 33.333%;
  }
}

.featured-collection-slider .product-card {
  text-align: center;
}
.featured-collection-slider .product-card__image-wrapper {
  display: block;
  margin-bottom: 15px;
}
.featured-collection-slider .product-card__image-container {
  position: relative;
}
.featured-collection-slider .product-card__image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}
.featured-collection-slider .product-card__image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.featured-collection-slider .product-card__image-container.show-hover-image:hover .product-card__image--primary {
  opacity: 0;
}
.featured-collection-slider .product-card__image-container.show-hover-image:hover .product-card__image--secondary {
  opacity: 1;
}
.featured-collection-slider .product-card__title {
  font-weight: 500;
  color: var(--product-title-color, #121212);
  margin-bottom: 6px;
  line-height: normal;
}
.featured-collection-slider .product-card__price {
  color: var(--product-price-color, #555);
}

@media (max-width: 768px) {
  .featured-collection-slider {
    padding-top: var(--padding-top-mobile);
    padding-bottom: var(--padding-bottom-mobile);
  }

  .featured-collection-slider__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-collection-slider__content {
    align-items: center;
    text-align: center;
  }

  #shopify-section-{{ section.id }} .flickity-prev-next-button {
    top: 35% !important;
  }

  .featured-collection-slider__content .button {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Scope Flickity focus outline suppression to this section */
.featured-collection-slider .flickity-enabled:focus,
.featured-collection-slider .flickity-enabled:focus-visible {
  outline: none;
  box-shadow: none;
}

.featured-collection-slider .flickity-prev-next-button {
  width: 30px !important;
  height: 30px !important;
}