.product-gallery {
  display: flex;
  flex-direction: column;
}

/* Większe główne zdjęcie z fade-in przy zmianie */
.main-image {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.main-image img {
  width: 100%;
  cursor: zoom-in;
  display: block;
  transition: opacity 0.3s ease-in-out; /* fade-in przy zmianie zdjęcia */
  opacity: 1;
}

/* Zoom lens */
.zoom-lens {
  position: absolute;
  border: 2px solid #000;
  width: 250px;  
  height: 250px;
  display: none;
  pointer-events: none;
  background-repeat: no-repeat;
  z-index: 10;
  /* usuń opóźnienie – natychmiastowy ruch */
  transition: none;
}

.thumbnails {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-top: 10px;
}

.thumbnails .thumb {
  flex-shrink: 0;
}

.thumbnails .thumb img {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 2px;
  height: 60px;
  transition: border 0.2s;
}

.thumbnails .thumb.active img {
  border: 2px solid #000;
}

.thumbnails .thumb:hover img {
  border: 1px solid #000;
}
