/* Popup: chiusura per evento privato / Closed for private event */
.pce-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.65);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pce-overlay.pce-visible {
  opacity: 1;
  visibility: visible;
}

.pce-box {
  position: relative;
  background: #fffdf8;
  max-width: 560px;
  width: 100%;
  border-radius: 12px;
  padding: 48px 44px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-20px) scale(0.96);
  transition: transform 0.3s ease;
  font-family: inherit;
}

.pce-overlay.pce-visible .pce-box {
  transform: translateY(0) scale(1);
}

.pce-icon {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1;
}

.pce-box h3 {
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.pce-box p {
  margin: 0 0 28px;
  font-size: 21px;
  line-height: 1.55;
  color: #333;
}

.pce-close-btn {
  display: inline-block;
  padding: 13px 36px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pce-close-btn:hover {
  background: #3a3a3a;
}

.pce-dismiss {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #555 !important;
  opacity: 1 !important;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.pce-dismiss:hover {
  color: #1a1a1a !important;
}

@media (max-width: 480px) {
  .pce-box {
    padding: 30px 22px 26px;
  }
}
