.stl__shoppable-image {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.stl__shoppable-image {
  grid-template-columns: repeat(auto-fit, minmax(clamp(45%, 320px, 100%), 1fr))
}

.stl__shoppable-image .stl__main_image_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.stl__shoppable-image .stl__hotspot {
  position: absolute;
}

.stl__shoppable-image .hotspot-trigger {
    display: block;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 10px rgba(0,0,0,.25);
    cursor: pointer;
    z-index: 1;
    transform: scale(1);
    transition: transform .25s ease-in-out;
}


.stl__shoppable-image .stl__hotspot:hover, .stl__shoppable-image .stl__hotspot.active {
  transform: scale(1.5);
}

.stl__shoppable-image .hotspot-trigger::after {
  content: '';
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: -12px;
  top: -12px;
  border-radius: 100%;
  background: var(--hotspot-bg);
  -webkit-animation: 1.4s ease-in-out infinite pulse;
  animation: 1.4s ease-in-out infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
}


.stl__shoppable-image .hotspot-card {
  display: none;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f0f0f0;
  padding: 12px;
  border-radius: 4px;
  width: 280px;
  margin-left: 10px;
  z-index: 3;
}

.stl__shoppable-image .stl__product-list-item.stl__product-list-item {
  margin-top: 0;
}

.product__info-wrapper .stl__shoppable-image .stl__main_image_container.stl__main_image_container {
  display: block;
}

.stl__shoppable-image .stl__product-list {
  padding-bottom: 30px;
  width: 330px;
  justify-self: center;
}

.stl__shoppable-image .glide__bullets {
  position: relative;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: inline-flex;
  list-style: none;
  transform: none;
}

.shopthelook-section-v2 .stl__shoppable-image .stl__product-actions-button {
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.stl__shoppable-image .stl__product-image-wrapper {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.stl__shoppable-image .glide__bullet {
  width: 12px;
  height: 12px;
  box-shadow: none;
  border: 2px solid #e8e8e8;
}

.stl__shoppable-image .glide__bullet:hover, .stl__shoppable-image  .glide__bullet:focus, .stl__shoppable-image  .glide__bullet--active {
  background-color: rgb(103, 103, 103);
  border: 2px solid transparent;
}

.stl__shoppable-image .stl__product-title {
  color: inherit;
  display: block;
}

.stl__shoppable-image .stl__product-title a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.stl__shoppable-image .stl__product-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stl__shoppable-image .glide-page-dots {
  width: 100%;
  padding: 0;
  margin: 22px 0 0;
  text-align: center;
  position: absolute;
  bottom: 0;
}

.stl__shoppable-image .shopthelook_add-to-cart {
  width: 100%;
}

.stl__shoppable-image .stl__main_image_container img {
  aspect-ratio: 1 / 1.5;
}

.stl__shoppable-image {
  gap: 12px;
}

/* mobile */
@media only screen and (max-width: 678px) {
  .stl__shoppable-image {
    --image-parent-width: 100px;
    --gap: 6px;
    --heading-size: 15px;
    --pricing-size: 14px;
    --aspect-ratio: 1;
  }
  .stl__shoppable-image .stl__product-image-wrapper {
    padding: 0;
  }
  .stl__shoppable-image .stl__product-image-wrapper img {
    width: var(--image-parent-width);
    height: auto;
    object-fit: cover;
    aspect-ratio: var(--aspect-ratio);
  }
  .stl__shoppable-image .stl__product-item {
    flex-direction: row;
    gap: var(--gap);
  }
  .stl__shoppable-image .stl__product-item a {
    display: flex;
    flex-direction: column;
  }
  .stl__shoppable-image .stl__product-title a {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    font-size: var(--heading-size);
  }
  .stl__shoppable-image .js-stl__product__add-to-cart {
    width: calc(100% - var(--image-parent-width));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .shopthelook-section-v2 select.shopthelook_variants.shopthelook_variants_single {
    display: none;
  }
  .stl__shoppable-image span.stl__product-price {
    font-size: var(--pricing-size);
  }
  .stl__shoppable-image .stl__main_image_container img {
    aspect-ratio: 1 / 1.5;
  }
  .stl__shoppable-image .shopthelook_variants {
    width: 100%;
  }
  .stl__shoppable-image .stl__product-list {
    padding-bottom: 30px;
    width: 100%;
    justify-self: center;
  }
}