/** Shopify CDN: Minification failed

Line 143:20 Unexpected "{"
Line 143: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;
}

.subheading {
  color: var(--subheading-color);
  font-size: var(--subheading-font-size);
}
.h1-style-heading {
  color: var(--heading-color);
  font-size: var(--heading-font-size);
  margin: 0;
}
.rte {
  color: var(--text-color);
  font-size: var(--text-font-size);
}
.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;
}


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

.product-card {
  text-align: center;
}
.product-card__image-wrapper {
  display: block;
  margin-bottom: 15px;
}
.product-card__image-container {
  position: relative;
}
.product-card__image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}
.product-card__image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-card__image-container.show-hover-image:hover .product-card__image--primary {
  opacity: 0;
}
.product-card__image-container.show-hover-image:hover .product-card__image--secondary {
  opacity: 1;
}
.product-card__title {
  font-weight: 500;
  color: var(--product-title-color, #121212);
  margin-bottom: 6px;
  line-height: normal;
}
.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 {
    align-items: center !important;
    text-align: center !important;
  }

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

  .flickity-enabled:focus,
.flickity-enabled:focus-visible {
  outline: none;
  box-shadow: none;
}

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