.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-image {
  width: 400px;
  height: 535px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.5);
  /* Adjust the scale as needed */
  cursor: zoom-in;
}

.thumbnail-gallery {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 95px;
  height: 80px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.thumbnail:hover {
  border-color: #000;
}
@media (max-width: 767px) {
  .feature-sec1 {
    margin-top: 20px;
  }
  .thumbnail {
    width: 70px;
  }
  .main-image {
    width: 315px;
  }
}
