
/* ==== MODAL ==== */
#imgModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

#imgModal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.3s ease-in-out;
}

#imgModal img:hover {
  transform: scale(1.05);
  cursor: zoom-in;
}

/* Botón de cerrar */
#imgModal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* Flechas */
#imgModal .prev, #imgModal .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  
  border-radius: 50%;
}

#imgModal .prev { left: 30px; }
#imgModal .next { right: 30px; }

#imgModal .prev:hover, #imgModal .next:hover, #imgModal .close:hover {
  color: #f1c40f;
}
