.zoom-check {
  display: none;
}

.zoom-img {
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
  max-width: 100%;
  box-shadow: 0 0 5px #ffd6d6;
}

.zoom-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #ffb6c1;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 182, 193, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.zoomed-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 12px white;
}

.zoom-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-out;
}

#zoomCheck:checked + .zoom-overlay {
  display: flex;
}
