.o-stl {
  --flex-dir: column;
  --flex-justify: flex-start;
  --dots-post-left: 0;
  --dots-pos-right: 0;
  --dots-pos-top: auto;
  --dots-post-bottom: 0;
  --image-border-radius: clamp(40px, 10vw, 100px);
  --radius-bottom-left: var(--image-border-radius);
  --radius-bottom-right: 0;
  --product-block-left-padding: 40px;
  --product-block-right-padding: 0;
}
@media screen and (min-width: 990px) {
  .o-stl {
    --flex-dir: row;
    --flex-justify: center;
    --dots-post-left: auto;
    --dots-pos-right: 0;
  }
  .o-stl[data-image-location=right] {
    --flex-dir: row-reverse;
    --radius-bottom-left: 0;
    --radius-bottom-right: var(--image-border-radius);
    --product-block-left-padding: 0;
    --product-block-right-padding: 40px;
  }
}
.o-stl__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: var(--flex-dir);
  position: relative;
  padding-bottom: 0;
  transition: padding 0.3s ease;
  justify-content: var(--flex-justify);
}
.o-stl__image-wrapper {
  position: relative;
  padding: 0;
  width: auto;
}
@media screen and (min-width: 990px) {
  .o-stl__image-wrapper {
    width: 50%;
  }
}
.o-stl__image {
  overflow: hidden;
  border-bottom-left-radius: var(--radius-bottom-left);
  border-bottom-right-radius: var(--radius-bottom-right);
}
.o-stl__image img {
  pointer-events: none;
  width: 100%;
  height: auto;
  display: block;
}
.o-stl__dot {
  --size: 40px;
  --innerSize: 28px;
  --dot-color: 255, 255, 255;
  position: absolute;
  display: grid;
  place-items: center;
  width: var(--size);
  height: var(--size);
  margin: calc(var(--size) / 2 * -1) 0 0 calc(var(--size) / 2 * -1);
  z-index: 1;
  transform: scale(1);
  transition: transform 0.25s ease-in-out;
  cursor: pointer;
}
.o-stl__dot.is-active {
  transform: scale(1.2);
}
.o-stl__dot.is-active::before {
  transform: scale(1);
}
.o-stl__dot--light, .o-stl__dot--dark {
  background: transparent;
  border-radius: 100%;
  background: rgba(var(--dot-color), 0.5);
}
.o-stl__dot--light::before, .o-stl__dot--dark::before {
  content: "";
  width: var(--innerSize);
  height: var(--innerSize);
  background: rgba(var(--dot-color), 1);
  border-radius: inherit;
  transform: scale(0.8);
  transition: transform 0.25s ease-in-out;
}
.o-stl__dot--light:after, .o-stl__dot--dark:after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  left: -1.2rem;
  top: -1.2rem;
  border-radius: 100%;
  background: rgba(var(--rgb-secondary), 0.4);
  animation: 1.4s shopTheLookDotKeyframe ease-in-out infinite;
  box-shadow: 0 1px 10px rgba(var(--rgb-primary), 0.02);
}
.o-stl__dot--dark {
  --dot-color: 0, 0, 0;
}
.o-stl__products {
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 990px) {
  .o-stl__products {
    width: 50%;
    padding-left: var(--product-block-left-padding);
    padding-right: var(--product-block-right-padding);
  }
}
.o-stl__products > h2, .o-stl__products > p {
  text-align: center;
}
.o-stl__products h2 {
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  padding: 0.5rem 0;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 990px) {
  .o-stl__products > h2, .o-stl__products > p {
    display: block;
  }
  .o-stl__products h2 {
    padding: 1rem 0 0;
    margin-bottom: 1.8rem;
    margin-top: 0;
  }
}
.o-stl__products p {
  padding: 0 0 1rem;
  margin: 0;
}
.o-stl__products-slider {
  position: relative;
}
.o-stl__products-wrapper {
  margin-top: 2rem;
}
.o-stl__product-item {
  max-width: 100%;
  width: fit-content;
  margin: auto;
  left: auto;
  right: auto;
  top: auto;
  position: relative;
  opacity: 1;
  margin-top: 0;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}
.o-stl__product-item.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.o-stl__product-item .m-product-card__url {
  max-width: 24rem;
}
@media screen and (min-width: 990px) {
  .o-stl__product-item .m-product-card__url {
    max-width: initial;
  }
}
.o-stl__product-nav {
  position: relative;
  display: flex;
  justify-content: center;
  bottom: -3rem;
  z-index: 100;
  transition: 0.3s ease;
  flex-direction: row;
  top: calc(50% + 2rem);
  left: var(--dots-post-left);
  right: var(--dots-pos-right);
  top: var(--dots-pos-top);
  bottom: var(--dots-post-bottom);
  bottom: 0;
  width: initial;
  opacity: 1;
}
@media screen and (min-width: 990px) {
  .o-stl__product-nav {
    position: absolute;
    flex-direction: column;
    top: calc(50% + 2rem);
    transform: translateY(-50%);
    bottom: 0;
  }
}
.o-stl__product-nav--desktop {
  display: flex;
}
@media screen and (min-width: 990px) {
  .o-stl__product-nav--desktop {
    display: none;
  }
}
.o-stl__product-nav--mobile {
  display: none;
}
@media screen and (min-width: 990px) {
  .o-stl__product-nav--mobile {
    display: block;
  }
}
.o-stl__product-nav-item {
  width: 15px;
  height: 15px;
  color: var(--color-secondary-btn-bg);
  border: 1px solid;
  margin-right: 0.5rem;
  background-color: transparent;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 990px) {
  .o-stl__product-nav-item {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.o-stl__product-nav-item:last-child {
  margin-bottom: 0;
}
.o-stl__product-nav-item.is-active::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: inherit;
  background-color: currentColor;
}
.o-stl__product-nav-item {
  margin-bottom: 0.5rem;
}
.o-stl__product-nav-item + .o-stl__product-nav-item {
  margin-left: 0rem;
}
.o-stl__products-swiper-container {
  position: relative;
  overflow: hidden;
  height: fit-content;
  max-width: 400px;
  padding-inline: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: height 0.3s ease;
}
@media screen and (min-width: 990px) {
  .o-stl__products-swiper-container {
    height: auto;
    margin-top: 2rem;
  }
}
.o-stl__products-swiper {
  background-color: transparent;
  z-index: 99;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
}
@media screen and (min-width: 990px) {
  .o-stl__products-swiper {
    padding-bottom: 0;
  }
}
.o-stl__products-swiper:not(.swiper-initialized) .swiper-slide {
  width: 100%;
}
.o-stl .swiper-wrapper {
  margin: 0;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  touch-action: pan-y;
}
.o-stl .swiper-slide > div {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}
.o-stl.is-active .o-stl__product-nav {
  opacity: 1;
}
.o-stl__product-dots-nav {
  display: grid;
  gap: 5px;
}
.o-stl__product-dots-nav-item {
  color: #000;
  width: 15px;
  height: 15px;
  border: 1px solid;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.o-stl__product-dots-nav-item.is-active::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: currentColor;
}
.o-stl .product-block {
  width: 100%;
}
.o-stl .product-block > * {
  width: 100%;
}
.o-stl .product-block:not(.collection-block) .image {
  height: 0;
  padding-top: 150%;
  position: relative;
  background-color: transparent;
}
.o-stl .product-block:not(.collection-block) .image .rimage-wrapper,
.o-stl .product-block:not(.collection-block) .image .rimage-outer-wrapper,
.o-stl .product-block:not(.collection-block) .image .image__first,
.o-stl .product-block:not(.collection-block) .image .image-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.o-stl .product-block:not(.collection-block) .image .image__first img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-stl .m-product-card__content,
.o-stl .m-price {
  margin-top: 0.625rem;
}
.o-stl .m-product-card__heading {
  font-weight: 400;
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  text-align: left;
  font-family: var(--ff-primary);
}
.o-stl .product-block:not(.collection-block) .product-block__wrapper.image-ratio__1x1 .image {
  padding-top: 100%;
}
.o-stl .product-block:not(.collection-block) .product-block__wrapper.image-ratio__2x3 .image {
  padding-top: 150%;
}
.o-stl .product-block:not(.collection-block) .product-block__wrapper.image-ratio__4x3 .image {
  padding-top: 75%;
}
.o-stl .product-block:not(.collection-block) .product-block__wrapper.image-ratio__4x5 .image {
  padding-top: 125%;
}
.o-stl .product-block:not(.collection-block) .product-block__wrapper.image-ratio__16x9 .image {
  padding-top: 56.25%;
}
