/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.product-carousel-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.product-carousel-section--quick-add swiper-slide {
  height: auto;
}
.product-carousel-section--quick-add product-card {
  display: block;
  height: 100%;
}
.product-carousel-section--quick-add .product-card {
  height: 100%;
}
.product-carousel-section--bundle swiper-slide {
  height: auto;
}
.product-carousel-section--bundle .bundle-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-carousel-section--bundle .bundle-card__content {
  flex: 1;
  padding: 0 var(--container-side-space);
}
@media only screen and (min-width: 576px) {
  .product-carousel-section--bundle .bundle-card__content {
    padding: 0;
  }
}
.product-carousel-section--bundle .bundle-card__price {
  margin-bottom: 6px;
}
.product-carousel-section--bundle .bundle-card__button {
  margin-top: auto;
}

.product-carousel-section__top {
  width: 100%;
  box-sizing: border-box;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--container-side-space);
  display: flex;
  flex-flow: column;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section__top {
    margin-bottom: 2.5rem;
  }
}

.product-carousel-section__content {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}

.product-carousel-section__middle {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 1rem;
}

.product-carousel-section__body {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section__body {
    width: 50%;
  }
}

.product-carousel-section__body-text {
  color: #1a1a1a;
}

.product-carousel-section__content-eyebrow {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: -0.0125rem;
}
@media (min-width: 992px) {
  .product-carousel-section__content-eyebrow {
    font-size: 1.25rem;
  }
}

.product-carousel-section__content-title {
  font-size: 2rem;
  line-height: 130%;
  font-weight: 600;
  letter-spacing: -0.0875rem;
}
@media (min-width: 992px) {
  .product-carousel-section__content-title {
    font-size: 3rem;
  }
}

.product-carousel-section__swiper {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .product-carousel-section__wrapper--side-image {
    display: grid;
    gap: 1.5rem;
  }
  .product-carousel-section__wrapper--side-image .product-carousel-section__swiper {
    grid-column: span 3;
  }
  .product-carousel-section__wrapper--side-image-left {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }
  .product-carousel-section__wrapper--side-image-left .product-carousel-section__side-image {
    padding-left: var(--container-side-space);
  }
  .product-carousel-section__wrapper--side-image-left swiper-container,
  .product-carousel-section__wrapper--side-image-left .swiper-scrollbar-container {
    padding-left: 0 !important;
  }
  .product-carousel-section__wrapper--side-image-left .swiper-arrow--prev {
    left: 0 !important;
  }
  .product-carousel-section__wrapper--side-image-right {
    grid-template-columns: 1fr 1fr 1fr 1.25fr;
  }
  .product-carousel-section__wrapper--side-image-right .product-carousel-section__side-image {
    padding-right: var(--container-side-space);
  }
  .product-carousel-section__wrapper--side-image-right swiper-container,
  .product-carousel-section__wrapper--side-image-right .swiper-scrollbar-container {
    padding-right: 0 !important;
  }
  .product-carousel-section__wrapper--side-image-right .swiper-arrow--next {
    right: 0 !important;
  }
}

.product-carousel-section__side-image {
  display: none;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section__side-image {
    display: block;
  }
}
.product-carousel-section__side-image img {
  display: inline-block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-carousel-section__cta-anchor {
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  margin: 0 0 0 auto;
}

@media only screen and (min-width: 768px) {
  .product-carousel-section swiper-container {
    width: 100%;
    box-sizing: border-box;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 var(--container-side-space);
  }
}

.product-carousel-section .swiper-scrollbar-container {
  width: 100%;
  box-sizing: border-box;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--container-side-space);
}
.product-carousel-section .swiper-scrollbar-container .swiper-scrollbar {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section .swiper-scrollbar-container .swiper-scrollbar {
    margin-top: 3rem;
  }
}

.product-carousel-section .swiper-arrow {
  position: absolute;
  top: 26%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  padding: 0.75rem;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section .swiper-arrow {
    top: 37%;
    width: 4rem;
    height: 4rem;
    padding: 1.25rem;
  }
}
.product-carousel-section .swiper-arrow > svg {
  max-height: initial;
  max-width: 0.9375rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section .swiper-arrow > svg {
    max-width: 1.5rem;
  }
}
.product-carousel-section .swiper-arrow[disabled] {
  display: none;
}
.product-carousel-section .swiper-arrow--prev {
  left: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section .swiper-arrow--prev {
    left: 2.5rem;
  }
}
.product-carousel-section .swiper-arrow--prev svg {
  transform: rotate(180deg);
}
.product-carousel-section .swiper-arrow--next {
  right: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section .swiper-arrow--next {
    right: 2.5rem;
  }
}

.product-carousel-section .swiper-scrollbar {
  height: 0.125rem;
  position: static !important;
  border-radius: 1.25rem;
  background: #e6e6e6;
}

.product-carousel-section .swiper-scrollbar-drag {
  height: 0.125rem;
  border-radius: 1.25rem;
  background: #054040;
}

@media only screen and (max-width: 767px) {
  .product-carousel-section,
  .product-card__media-container:hover,
  .product-card__media-item:last-child {
    opacity: 1 !important;
  }
}
.product-carousel-section__tabs-labels {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  overflow-x: auto;
  margin-inline: -1rem;
  padding-inline: 1rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section__tabs-labels {
    margin-inline: 0;
    padding-inline: 0;
  }
}

.product-carousel-section__tabs-labels-tab {
  color: #054040;
  white-space: nowrap;
  letter-spacing: 0.2px;
  border: 0;
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
  background-color: #fafafa;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .product-carousel-section__tabs-labels-tab {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }
}
.product-carousel-section__tabs-labels-tab:hover, .product-carousel-section__tabs-labels-tab[data-active] {
  background-color: #054040;
  color: #fff;
}

.product-carousel-section__tabs-products-tab {
  display: none;
}
.product-carousel-section__tabs-products-tab[data-active] {
  display: block;
}
