.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(63,42,86,0.85);
  display: none; justify-content: center; align-items: center;
  z-index: 9999;
}
.popup-content {
  background: #FFFFFF;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #6A4C93;
  cursor: pointer;
}
.nectar-button {
  background-color: #6A4C93;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.nectar-button:hover {
  background-color: #3F2A56;
}