.popup-trigger {
  cursor: pointer;
}

.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.image-popup.active {
  opacity: 1;
  visibility: visible;
}
.image-popup__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: zoom-out;
}
.image-popup__img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  cursor: default;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.image-popup.active .image-popup__img {
  opacity: 1;
  transform: scale(1);
}/*# sourceMappingURL=popup.css.map */