#popup-banner-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

#popup-banner-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  max-height: 80vh;
  max-width: 80vw;
  background: transparent;
}

#popup-banner-wrapper.show {
  opacity: 1;
}

#popup-banner img {
  max-height: 80vh;
  max-width: 80vw;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
}

#popup-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 10001;
}