/**
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-details__option-wrapper {
  margin-bottom: 1rem;
}

.product-details__option-header {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  column-gap: 2.5rem;
  align-items: center;
}

.product-details__option-name {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-details__option-selected {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 500;
}

.product-details__option-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-details__option-label {
  font-size: 0.75rem;
  line-height: 140%;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  padding: 0.75rem 1.5rem;
  border: 1px solid #e6e6e6;
  border-radius: 6.25rem;
  display: inline-block;
  cursor: pointer;
  color: #054040;
  text-decoration: none;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.product-details__option-label:hover {
  border-color: #054040;
}
.product-details__option-label--selected {
  background-color: #50fcce;
  border-color: #50fcce;
}
.product-details__option-label--selected:hover {
  border-color: #50fcce;
}
.product-details__option-label--sold-out {
  border-color: #e6e6e6;
  color: #595959;
}
.product-details__option-label--sold-out:hover {
  border-color: #595959;
}

.product-details__option-label--selected.product-details__option-label--sold-out {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}

.product-details__option-name-value {
  font-size: 0.875rem;
  line-height: 140%;
  font-weight: 500;
  text-transform: none;
}
.product-details__option-name-value span {
  letter-spacing: 0;
  animation: opacity-appear 0.3s ease 1;
}

.product-details__option-color-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-details__option-color-values .color-swatches {
  padding: 2px 0;
}
.product-details__option-color-values a {
  height: 2rem;
  min-width: 2rem;
  line-height: 2rem;
  border-radius: 6.25rem;
  border: 1px solid #e0e0e0;
  padding: 0 0.625rem;
  flex: 0 0 auto;
  position: relative;
  box-sizing: border-box;
  color: black;
  text-decoration: none;
}
.product-details__option-color-values a:not([href])::before {
  content: "";
  position: absolute;
  border: 1px solid black;
  inset: -4px;
  border-radius: 100%;
}
.product-details__option-color-values a.is-sold-out::after {
  content: "";
  width: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotateZ(-45deg);
  height: 100%;
  background-color: white;
  position: absolute;
}
.product-details__option-color-values a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
}

.rich-quick-view__product {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .rich-quick-view__product {
    flex-direction: column;
  }
}

.rich-quick-view__gallery {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .rich-quick-view__gallery {
    width: 20rem;
  }
}
.rich-quick-view__gallery img {
  width: 100%;
  height: auto;
}
.rich-quick-view__gallery .swiper-arrow {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-1.25rem);
  z-index: 3;
  padding: 0;
  transition: 0.3s ease;
  display: none;
}
@media only screen and (min-width: 768px) {
  .rich-quick-view__gallery .swiper-arrow {
    display: flex;
  }
}
.rich-quick-view__gallery .swiper-arrow[disabled] {
  opacity: 0;
}
.rich-quick-view__gallery .swiper-arrow--prev {
  left: 0.75rem;
  transform: translateY(-1.25rem) rotate(180deg);
}

.rich-quick-view__content {
  flex: 1;
  margin-top: 0.75rem;
  padding-inline: 1rem;
}
@media only screen and (min-width: 768px) {
  .rich-quick-view__content {
    max-height: 60vh;
    overflow-y: auto;
    padding-inline: 0;
  }
}
.rich-quick-view__content .product-details__option-color-values {
  margin-left: 0.5rem;
}
.rich-quick-view__content .quantity-selector {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.rich-quick-view__title {
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  letter-spacing: -0.0625rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .rich-quick-view__title {
    font-size: 2rem;
  }
}

.rich-quick-view__price-reviews {
  margin-bottom: 1.5rem;
}

.rich-quick-view__description {
  font-size: 14px;
}

.rich-quick-view__description-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
