/** Shopify CDN: Minification failed

Line 171:19 Expected identifier but found whitespace
Line 171:21 Unexpected "{"
Line 171:30 Expected ":"
Line 172:8 Expected identifier but found whitespace
Line 172:10 Unexpected "{"
Line 172:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.collection-list-new-wrapper {
  padding: 0px 0;
}

.collection-list-new-grid {
  position: relative;
}

.collection-list-container {
  display: flex;
  flex-direction: column;
}

.section-header {
  margin-bottom: 20px;
}

.section-header__title {
  margin: 0 0 10px;
}

.section-header__text {
  margin-bottom: 20px;
}

.collection-list-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 20px;
}

.collection-list-carousel::-webkit-scrollbar {
  display: none;
}

.collection-list-item {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
}

.collection-list-item__content {
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e0e0e0; /* Light grey stroke */
  height: 100%; /* Set height to 100% for uniformity */
  display: flex;
  flex-direction: column;
}

.collection-list-item__content:hover {
  transform: translateY(-5px);
}

.collection-list-item__image-wrapper {
  position: relative;
  padding-top: 100%;
}

.collection-list-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-list-item__info {
  padding: 20px;
  flex-grow: 1; /* Allow info section to grow and fill available space */
  display: flex;
  flex-direction: column;
}

.collection-list-item__title {
  margin: 0 0 10px;
  font-size: 18px;
}

.collection-list-item__text {
  font-size: 14px;
  flex-grow: 1; /* Allow text to grow and push the bottom content down */
}

.circular-image .collection-list-item__image-wrapper {
  border-radius: 50%;
}

.collection-list-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.collection-list-navigation__prev,
.collection-list-navigation__next {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.collection-list-promo {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  overflow: hidden;
}

.collection-list-promo__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.collection-list-promo__content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: left;
  height: 100%;
}

.collection-list-promo__title {
  margin: 0 0 15px;
  font-size: 24px;
}

.collection-list-promo__text {
  margin-bottom: 20px;
}

.collection-list-promo__button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  margin-top: auto;
}

.collection-list-promo__button:hover {
  background-color: {{ section.settings.promo_button_hover_color }};
  color: {{ section.settings.promo_button_hover_text_color }};
}


@media screen and (min-width: 768px) {
  .collection-list-container {
    flex-direction: row;
  }

  .collection-list-promo {
    flex: 0 0 calc(25% - 15px);
    margin-bottom: 0;
    margin-right: 20px;
  }

  .collection-list-carousel--with-promo {
    flex: 0 0 calc(75% - 5px);
  }

  .collection-list-carousel--with-promo .collection-list-item {
    flex: 0 0 calc(33.333% - 13.333px);
  }

  .collection-list-carousel--without-promo .collection-list-item {
    flex: 0 0 calc(25% - 15px);
  }
}

@media screen and (max-width: 767px) {
  .collection-list-carousel--with-promo .collection-list-item,
  .collection-list-carousel--without-promo .collection-list-item {
    flex: 0 0 calc(50% - 10px);
  }

  .collection-list-promo {
    margin-bottom: 20px;
  }
}