/* Popup Banner Styles */
.popup-banner-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-banner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 0;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
}
.popup-banner img {
  max-width: 100%;
  border-radius: 16px 16px 0 0;
}
.popup-banner .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #ff6b9d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}
