/** Shopify CDN: Minification failed

Line 80:13 Expected ":"
Line 80:25 Expected ":"

**/
.product-carousel {
  margin: 60px 0;
  cursor: var(--custom-cursor), auto;
}

@media screen and (max-width: 768px) {
  .product-carousel {
    margin: 30px 0;
  }
}

.product-carousel .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-carousel .swiper-button-next,
.product-carousel .swiper-button-prev {
  height: auto;
  width: auto;
  margin: 0 !important;
}

.product-carousel .swiper-button-next:after,
.product-carousel .swiper-button-prev:after {
  content: none;
}

.product-carousel__swiper-container * {
  cursor: var(--custom-cursor), auto;
}

.product-carousel__header-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .product-carousel__header-wrapper {
    margin-bottom: 10px;
  }
} 

.product-carousel__heading-image + .product-carousel__heading {
  opacity: 0;
  width: 0;
  height: 0;
}

.product-carousel__heading-image {
  height: var(--header-image-height);
}

@media screen and (max-width: 768px) {
  .product-carousel__heading-image {
    height: var(--header-image-height-mobile);
  }
}

.product-carousel__heading-image img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.product-carousel__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items; flex-start;
  gap: 80px;
}

@media screen and (min-width: 769px) {
  .product-carousel__content-wrapper.product-carousel__split {
    display: grid;
    grid-template-columns: repeat(2,minmax(0, 1fr));
    gap: 19px;
  }
}

@media screen and (max-width: 768px){
  .product-carousel__content-wrapper {
    gap: 40px;
  }
}
 
.product-carousel__shoppable-container {
  overflow: hidden;
}
.product-carousel__shoppable {
  position: relative;
  height: fit-content;
  overflow: hidden;
  height: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .product-carousel__shoppable {
    height: fit-content;
    height: -webkit-fit-content;
  }
}

.product-carousel__shoppable-image {
  width: 100%;
  position: relative;
  overflow: clip;
  height: 100%;
}

.product-carousel__shoppable-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-carousel__shoppable-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  color: white;
  font-weight: 500;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .product-carousel__shoppable-text {
    bottom: 10px;
    left: 10px;
  }
}

.product-carousel__shoppable-text p {
  margin: 0;
  line-height: normal;
}

.product-carousel__shoppable-container.product-carousel__shoppable-split {
  display: grid;
  grid-template-columns: repeat(2,minmax(0, 1fr));
  gap: 19px;
}

@media screen and (max-width: 768px) {
  .product-carousel__shoppable-container {
    width: calc(100% + 66px);
    margin-left: -33px;
  }
}

.product-carousel__shoppable-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding:4px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  overflow-y: clip;
}

.product-carousel__shoppable-overlay .product-carousel__shoppable-item {
  opacity: 0;
  transform: translateY(-25%);
}

.product-carousel__shoppable-overlay[open] .product-carousel__shoppable-item {
  opacity: 1;
  transform: translateY(0);
}

.product-carousel__shoppable-item {
  width: 95px;
  position: relative;
  transition: all .3s ease;
  transition-delay: var(--product-delay);
}

.product-carousel__shoppable-item-title {
  font-size: 10px;
  line-height: 8px;
  color: #ffffff;
  margin-top: 4px;
}

.product-carousel__shoppable-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-carousel__shoppable-cursor {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;
  cursor: none;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .product-carousel__shoppable-cursor {
    display: none;
  }
}