.product-gallery {
  max-width: 500px;
  margin: 0 auto;
}

.main-image-container img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-image-container:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.thumbnail-list {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.thumbnail:hover {
  opacity: 0.8;
}

.thumbnail.active {
  border-color: #47b7b6; /* Highlight selected thumbnail */
  opacity: 1;
}

.gallery-image {
  height: 120;
}
