/** Shopify CDN: Minification failed

Line 105:4 Unexpected "{"
Line 105:5 Expected identifier but found "%"
Line 105:47 Unexpected "{"
Line 105:48 Expected identifier but found "%"
Line 109:4 Unexpected "{"
Line 109:5 Expected identifier but found "%"
Line 109:44 Unexpected "{"
Line 109:45 Expected identifier but found "%"

**/
.related-variant-slider {
  margin-top: 50px;
  padding: 0 15px;
}
.related-product-card {
  display: block;
  text-align: center;
  text-decoration: none;
}

.related-product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4; /* or whatever your product image ratio is */
  object-fit: cover;
  display: block;
}

.related-product-card img {
  width: 100%;
  transition: opacity 0.3s ease;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-foreground);
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

.slider-text-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-text-container-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.slider-title-and-price {
  display: flex;
  justify-content: space-between;
  width: 100%;
  }

.slider-title-and-price h3 {
  font-family: 'Cosmica', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.slider-text-container h3 {
  font-weight: 700;
  font-size: 12px;
  line-height: 15.6px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Cosmica', sans-serif;
}

.slider-text-container .shop-now-link {
  font-family: 'Cosmica', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 15.6px;
  text-transform: uppercase;
  color: #8f2f29;
  text-underline-offset: 0.3rem;
}

.related-variant-slider .swiper-button-prev:after,
.related-variant-slider .swiper-button-next:after {
  content: none;
}

.related-variant-slider .rich-text__heading {
  margin-top: 0;
  margin-bottom: 40px;
}

.related-variant-slider .swiper-slide {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    {% comment %} transform: translateY(10px); {% endcomment %}
  }
  to {
    opacity: 1;
    {% comment %} transform: translateY(0); {% endcomment %}
  }
}

/* .related-variant-slider.make-it-a-set {
  padding: 0;
} */

.set-item-pill button.set-option {
  width: 48px;
  height: 43px;
  border: 1px solid rgba(var(--color-foreground), 1);
  background-color: transparent;
  color: rgb(var(--color-foreground));
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cosmica', sans-serif;
  padding: 0;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.set-item-pill button.set-option.is-active {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

.set-item__add {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  padding: 0;
  height: 60px;
  line-height: 60px;
}

.set-item__price {
  font-family: 'Cosmica', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.set-item__add.loading {
  color:#F4F4F0
}

.set-item__options {
  width: 100%;
}

.set-item-pill.set-item__sizes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/*
.variant-slider-container {
  overflow: visible;
}

.variant-slider-container .swiper-wrapper {
  align-items: stretch;
} */

.make-it-a-set .swiper-slide {
  width: 400px;
  flex-shrink: 0;
}


@media screen and (min-width: 1220px) {
 .make-it-a-set-slider .swiper-wrapper.swiper-wrapper--lt-4 {
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 991px) {
 .make-it-a-set-slider .swiper-wrapper.swiper-wrapper--lt-3 {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 1025px) {
  .make-it-a-set .swiper-slide {
    width: 320px;
  }

  .set-item-pill button.set-option {
    width: 38px;
    height: 38px;
    font-size: 10px;
    padding:0
  }
}

@media screen and (max-width: 990px) {
  .make-it-a-set .swiper-button{
    display: none;
  }

  .make-it-a-set .swiper-slide {
    width: 320px;
  }

  .make-it-a-set .swiper-slide img {
    height: 363px;
  }
}

@media screen and (max-width: 749px) {
  .related-variant-slider .rich-text__heading {
    margin-bottom: 30px;
  }

  .slider-title-and-price h3 {
    font-size: 10px;
  }

  .set-item-pill button.set-option {
    width: 38px;
    height: 38px;
    font-size: 10px;
    padding:0
  }

  .set-item__price {
    font-size: 10px;
  }

  .set-item__add {
    height: 50px;
    line-height: 50px;
  }
}