.lf-whatsapp-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.lf-whatsapp-popup.is-open {
	opacity: 1;
	pointer-events: auto;
}

.lf-whatsapp-popup__card {
	position: relative;
	width: 600px;
	height: 600px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	transform: scale(0.95);
	transition: transform 0.25s ease;
}

.lf-whatsapp-popup.is-open .lf-whatsapp-popup__card {
	transform: scale(1);
}

.lf-whatsapp-popup__close {
	position: absolute;
	top: 18px;
	right: 20px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #262626;
	cursor: pointer;
	padding: 4px 8px;
	opacity: 0.5;
	transition: opacity 0.15s ease;
}

.lf-whatsapp-popup__close:hover,
.lf-whatsapp-popup__close:focus,
.lf-whatsapp-popup__close:active {
	opacity: 1;
	background: none !important;
	color: #262626 !important;
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
}

.lf-whatsapp-popup__title {
	font-family: 'Quicksand', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #262626;
	margin: 0;
}

.lf-whatsapp-popup__qr {
	display: block;
	width: 370px;
	height: 370px;
}

.lf-whatsapp-popup__alt-link {
	font-family: 'Quicksand', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #555555;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.15s ease;
}

.lf-whatsapp-popup__alt-link:hover {
	color: #262626;
}

@media (max-width: 680px) {
	.lf-whatsapp-popup__card {
		width: 90vw;
		height: auto;
		padding: 48px 24px 36px;
	}

	.lf-whatsapp-popup__qr {
		width: 200px;
		height: 200px;
	}
}

/* ---- Booking popup ---- */

.lf-booking-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.lf-booking-popup.is-open {
	opacity: 1;
	pointer-events: auto;
}

.lf-booking-popup__card {
	position: relative;
	width: min(900px, 92vw);
	height: min(750px, 90vh);
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: scale(0.95);
	transition: transform 0.25s ease;
}

.lf-booking-popup.is-open .lf-booking-popup__card {
	transform: scale(1);
}

.lf-booking-popup__header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 12px 16px;
	flex-shrink: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lf-booking-popup__close {
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #262626;
	cursor: pointer;
	padding: 4px 8px;
	opacity: 0.5;
	transition: opacity 0.15s ease;
}

.lf-booking-popup__close:hover,
.lf-booking-popup__close:focus,
.lf-booking-popup__close:active {
	opacity: 1;
	background: none !important;
	color: #262626 !important;
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
}

.lf-booking-popup__iframe {
	flex: 1;
	width: 100%;
	border: none;
}

@media (max-width: 680px) {
	.lf-booking-popup__card {
		width: 95vw;
		height: 90vh;
		border-radius: 14px;
	}
}
