.image-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.image-gallery .gallery-thumbnail {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  opacity: 0.7;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
}
.image-gallery .gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-gallery .gallery-thumbnail:hover {
  opacity: 1;
  border-color: #ddd;
}
.image-gallery .gallery-thumbnail.active {
  opacity: 1;
  border-color: #2196F3;
  /* Shopify Blue or Brand Color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 600px) {
  .image-gallery .gallery-thumbnail {
    width: 90px;
    height: 90px;
  }
}

/*# sourceMappingURL=image-gallery.css.map */
