/* Overlay */
.privacy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 192, 203, 0.85); /* rosa semitrasparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
}

/* Box */
.privacy-box {
  background: #ffe4ec;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  font-family: "Georgia", serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Chiudi */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Bottone fisso */
.privacy-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffe4ec;
  border: 1px solid #d48aaa;
  border-radius: 20px;
  padding: 10px 20px;
  font-family: "Georgia", serif;
  font-size: 16px;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: none;
}