/* ==========================================================================
   POPUP PRENOTAZIONE — sfondo con effetto "vetro smerigliato" (glass):
   semi-trasparente ma con sfocatura forte, non un semplice overlay scuro.
   ========================================================================== */
.vmp-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(16, 63, 43, 0.45);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}
.vmp-popup-overlay.is-open { display: flex; }

.vmp-popup-panel {
	position: relative;
	width: 100%;
	max-width: 760px;
	max-height: 88vh;
	overflow-y: auto;
	padding: 44px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.86);
	-webkit-backdrop-filter: blur(28px) saturate(160%);
	backdrop-filter: blur(28px) saturate(160%);
	box-shadow: 0 30px 70px rgba(16, 63, 43, 0.35);
	animation: vmp-popup-in 0.25s ease;
}
@keyframes vmp-popup-in {
	from { opacity: 0; transform: translateY(16px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.vmp-popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: none;
	background: rgba(16, 63, 43, 0.08);
	color: #103f2b;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.15s ease;
}
.vmp-popup-close:hover { background: rgba(16, 63, 43, 0.16); }

body.vmp-popup-attivo { overflow: hidden; }

@media (max-width: 640px) {
	.vmp-popup-panel { padding: 28px 22px; max-height: 92vh; border-radius: 22px; }
	.vmp-popup-overlay { padding: 12px; }
}
