/* Popup reutilizable Casa Italiani */

:root {
  --ci-popup-overlay-bg: rgba(0,0,0,0.6);
  --ci-popup-max-width: min(90vw, 720px);
  --ci-popup-z: 9999;
}

.ci-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Overlay */
.ci-popup-overlay[hidden] { display: none !important; }
.ci-popup-overlay {
  position: fixed;
  inset: 0;
  background: var(--ci-popup-overlay-bg);
  z-index: var(--ci-popup-z);
}

/* Modal */
.ci-popup[hidden] { display: none !important; }
.ci-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: calc(var(--ci-popup-z) + 1);
  padding: 20px;
}

/* Contenedor de contenido para posicionar el botón respecto a la imagen */
.ci-popup__content {
  position: relative;
  display: inline-block;
}

.ci-popup__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: var(--ci-popup-max-width);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.ci-popup__link { display: inline-block; line-height: 0; }

/* Close button (arriba a la derecha de la imagen) */
.ci-popup__close {
  position: absolute;
  top: 8px;
  right: 8px; /* esquina superior derecha */
  width: 36px; height: 36px;
  border-radius: 18px;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: calc(var(--ci-popup-z) + 2);
}
.ci-popup__close:hover { background: rgba(0,0,0,0.7); }

/* Bloqueo de scroll al abrir */
html.ci-popup-open, body.ci-popup-open {
  overflow: hidden !important;
}
