@charset "utf-8";
/* CSS Document */
	/* [1] The container */
.img-hover-zoom {
  height: auto;
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}
      
      .img-hover-zoom--point-zoom img {
    transform-origin: 65% 75%;
    transition: transform 1s, filter .5s ease-out;
}
      
      /* The Transformation */
.img-hover-zoom--point-zoom:hover img {
  transform: scale(1.1);
}

.cols-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.cols-6 > * {
  margin: 0;
}

.cols-6::before,
.cols-6::after {
  content: none !important;
  display: none !important;
}

.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
}

.img-hover-zoom img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

.img-hover-zoom h5 {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* Controls (same look as yours) */
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
}

.lightbox-close {
  top: 10px;
  right: 10px;
}

.lightbox-nav.prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
		
		.lightbox-content {
  pointer-events: none;
}

.lightbox-content * {
  pointer-events: auto;
}
	#lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  font-size: 0.95rem;
}

