.sw-popup-overlay {
  position: fixed; inset: 0;
  display: none; /* Start versteckt */
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.5);
  z-index: 9999; padding: 1rem;
}
.sw-popup-box {
  position: relative;
  max-width: 640px; width: 100%;
  background: #fff; border-radius: 12px; padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.sw-popup-close {
  position: absolute; right: 1rem; top: 1rem;
  border: 0; background: transparent;
  font-size: 2rem; cursor: pointer;
  line-height: 1; color: #333;
}
.has-sw-popup { overflow: hidden; }
.sw-popup-text p { margin: 0 0 0.75rem 0; }

