/* Contenedor principal con fondo oscuro */
.my-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 15px;
  box-sizing: border-box;
}

/* Caja modal estilizada */
.my-popup-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  background: #218497;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Botón flotante para cerrar */
.my-popup-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Ajustes responsivos para Swiper e imágenes */
.swiper {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}