/* Keep the secondary product views inside the main visual. */
.mi-product .product__images {
  position: relative;
}

.mi-product .product__thumbnails {
  position: absolute;
  z-index: 11;
  bottom: 14px;
  left: 14px;
  max-width: calc(100% - 70px);
  margin: 0;
  padding: 7px;
  overflow-x: auto;
  border: 1px solid rgb(207 218 230 / 88%);
  border-radius: 12px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 6px 18px rgb(32 52 76 / 14%);
  backdrop-filter: blur(5px);
}

.mi-product .product__thumbnails-list {
  display: flex;
  gap: 7px;
  width: max-content;
  margin: 0;
}

.mi-product .product__thumbnail {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
}

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

@media (max-width: 767px) {
  .mi-product .product__thumbnails {
    bottom: 8px;
    left: 8px;
    max-width: calc(100% - 54px);
    padding: 5px;
    border-radius: 10px;
  }

  .mi-product .product__thumbnails-list {
    gap: 5px;
  }

  .mi-product .product__thumbnail {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 6px;
  }
}
