/* ==========================
POPUP
============================ */
.popup-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 480px;
  max-width: calc(100vw - 40px);
  z-index: 9999;

  transform: translateX(120%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.popup-banner.is-show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.popup-banner__link {
  display: block;
}

.popup-banner__link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.popup-banner__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .popup-banner {
    right: 12px;
    bottom: 12px;
    width: 320px;
    max-width: calc(100vw - 24px);
  }
}
