/* Contenedor del overlay */
.popup {
  position: fixed;
  inset: 0;
  display: none;               /* oculto por defecto */
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  z-index: 10000;              /* por encima del header/menú */
}

/* Se muestra cuando el JS agrega .is-open */
.popup.is-open {
  display: flex;
}

/* Caja del contenido */
.popup-content {
  position: relative;
  background: #fff;
  width: min(560px, calc(100% - 32px));
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  font-family: Arial, sans-serif;
}

/* Botón cerrar (X) */
.popup-close {
  position: absolute;
  top: 10px; right: 12px;
  background: transparent;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

/* Bloque donde se muestra el nombre del producto */
.popup-resumen {
  background: #f7f7f7;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Evitar scroll del body al abrir */
.no-scroll { overflow: hidden; }

/* Honeypot anti-spam (oculto sin display:none para que los bots lo “vean”) */
.hp{
  position:absolute !important;
  left:-5000px !important;
  height:0 !important;
  width:0 !important;
  overflow:hidden !important;
}
