.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.promo-popup[hidden] {
  display: none;
}

.promo-popup-dialog {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 760px;
  max-height: calc(100vh - 40px);
}

.promo-popup-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(100vh - 40px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.promo-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 9999px;
  background: #C6A767;
  color: #fff;
  font: 700 28px/1 Arial, sans-serif;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.promo-popup-close:hover,
.promo-popup-close:focus-visible {
  background: #C89E5C;
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .promo-popup {
    padding: 12px;
  }

  .promo-popup-dialog,
  .promo-popup-image {
    max-height: calc(100vh - 24px);
  }

  .promo-popup-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }
}
