.product-intro-gallery {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.product-intro-gallery__item {
  display: block;
  border: 1px solid #eee;
  padding: 2px;
  cursor: pointer;
}
.product-intro-gallery__item img {
  display: block;
  max-width: 100px;
  height: auto;
}
.product-intro-gallery__item:hover {
  border-color: #ccc;
}

.product-intro-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.product-intro-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}
.product-intro-lightbox__inner {
  position: absolute;
  inset: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.product-intro-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background: #fff;
  pointer-events: auto;
}

/*# sourceMappingURL=product-intro-gallery.css.map */
