/** Shopify CDN: Minification failed

Line 82:4 Unexpected "{"
Line 82:5 Expected identifier but found "%"
Line 82:47 Unexpected "{"
Line 82:48 Expected identifier but found "%"
Line 86:4 Unexpected "{"
Line 86:5 Expected identifier but found "%"
Line 86:44 Unexpected "{"
Line 86: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 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: 112px;
}

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

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