/* ===== IMAGE VIEWER MODAL ===== */

.image-viewer-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-viewer-modal.is-open {
  display: flex;
}

.image-viewer-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.image-viewer-content img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
  transform-origin: center center;
}

#close-image-modal {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.zoom-image {
  position: absolute;
  top: -40px;
  left: 0;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.zoom-image:hover {
  opacity: 0.8;
}

.image-viewer-content img {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.image-viewer-content img.zoomed {
  cursor: zoom-out;
}