/* Booking popup — reuses the same visual language as your search
   results popup (dark overlay, white box, no border-radius, centered
   but never past the viewport edges, scrollable if tall). */
.plc-book-modal-overlay {
	all: initial;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 2100000;
	display: none;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	padding: 60px 20px;
}
.plc-book-modal-overlay.plc-open {
	display: flex;
}
.plc-book-modal {
	background: #ffffff;
	border-radius: 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	max-width: 900px;
	width: 100%;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	margin: auto;
	padding: 40px;
	position: relative;
}
.plc-book-modal-title {
	font-family: 'Gilda Display', serif;
	font-size: 24px;
	font-weight: 400;
	color: #222222;
	margin: 0 0 20px 0;
	padding-right: 40px; /* keeps text clear of the close button */
}
.plc-book-modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: transparent;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #484848;
	line-height: 1;
	z-index: 10;
}
.plc-book-modal-close:hover {
	color: #ab8a62;
}