

/* Overlay Hintergrund */
.plp-overlay {
  position: fixed;        /* <— absolut entscheidend */
  inset: 0;               /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0,0,0,0.6);
  display: none;          /* Start: unsichtbar */
  justify-content: center;
  align-items: center;
  z-index: 9999;          /* <— über allem */
}

/* Overlay Box */
.plp-overlay-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
