/* =========================
   GLOBAL MODAL
========================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal-overlay {
  position: fixed;   /* 🔥 viktigaste raden */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 9999;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 90%;
  max-width: 520px;
  margin: 80px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.modal-overlay.is-open {
  display: block;
}


/* ta bort WP underline */
.modal a {
  box-shadow: none !important;
}

/* stäng-knapp */
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #ddd;
  z-index: 10;
}

.modal-close:hover {
  background: #f3f4f6;
}