.wago-pop-scrim {
  position: fixed; inset: 0; z-index: 240;
  background: rgba(17, 17, 17, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.wago-pop {
  position: relative;
  width: min(560px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
}
.wago-pop-close {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 40px; height: 40px; border: 0; border-radius: 12px;
  background: #171717; color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer;
}
.wago-pop-close:hover { background: #2a2a2a; }
.wago-pop img {
  display: block; width: 100%; height: auto;
  border-radius: 18px 18px 0 0;
}
.wago-pop-actions {
  display: grid; gap: 8px; padding: 14px 16px 16px;
}
.wago-pop-actions .btn { width: 100%; justify-content: center; min-height: 46px; }
@media (max-width: 560px) {
  .wago-pop { width: min(440px, 100%); }
}
