   /* Swiper container styling */
.product-image-slide.swiper {
  width: 100%;
  height: 100%;
}

/* Custom thumbnail pagination styling */
.swiper-pagination-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.swiper-pagination-thumbs .swiper-pagination-bullet {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-thumbs .swiper-pagination-bullet-active {
  opacity: 1;
  border: 2px solid #333; /* Optional active state styling */
}

.swiper-pagination-thumbs .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
