/* PINS "Book Now" split modal. Same armor rules as the configurator:
   high-specificity + !important where the legacy global button CSS bites. */

.pc-bn {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}
.pc-bn * { box-sizing: border-box; }
.pc-bn-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.62);
	backdrop-filter: blur(2px);
}
.pc-bn-card {
	position: relative;
	width: 100%;
	max-width: 640px;
	background: #f5f1e6;
	border-radius: 18px;
	padding: 26px 22px 22px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	animation: pc-bn-in 0.22s ease both;
}
@keyframes pc-bn-in {
	from { opacity: 0; transform: translateY(14px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
	.pc-bn-card { animation: none; }
}
.pc-bn button.pc-bn-x {
	position: absolute !important;
	top: 10px;
	right: 12px;
	background: transparent !important;
	color: #2b4026 !important;
	border: none !important;
	width: 36px !important;
	height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 26px !important;
	font-style: normal !important;
	line-height: 36px !important;
	font-family: georgia, serif !important;
	border-radius: 50% !important;
	cursor: pointer;
	text-align: center;
}
.pc-bn-title {
	margin: 0 0 16px;
	font-family: 'Anton', 'Arial Narrow', sans-serif;
	font-style: italic;
	font-size: 26px;
	line-height: 1;
	text-transform: uppercase;
	color: #2b4026;
	text-align: center;
}
.pc-bn-split {
	display: grid;
	gap: 12px;
}
@media (min-width: 560px) {
	.pc-bn-split { grid-template-columns: 1fr 1fr; }
}
.pc-bn-opt {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: #fffdf7;
	border: 2px solid rgba(43, 64, 38, 0.2);
	border-radius: 14px;
	padding: 18px;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pc-bn-opt:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(43, 64, 38, 0.18);
}
.pc-bn-opt:focus-visible {
	outline: 3px solid #c8102e;
	outline-offset: 2px;
}
.pc-bn-opt--party {
	background: #2b4026;
	border-color: #2b4026;
}
.pc-bn-opt-name {
	font-family: 'Anton', 'Arial Narrow', sans-serif;
	font-style: italic;
	font-size: 21px;
	line-height: 1;
	text-transform: uppercase;
	color: #2b4026;
}
.pc-bn-opt--party .pc-bn-opt-name { color: #f5f1e6; }
.pc-bn-opt-sub {
	font-family: 'Spectral', georgia, serif;
	text-transform: none;
	letter-spacing: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(20, 20, 20, 0.75);
	flex: 1 1 auto;
}
.pc-bn-opt--party .pc-bn-opt-sub { color: rgba(245, 241, 230, 0.85); }
.pc-bn-opt-cta {
	align-self: flex-start;
	font-family: 'Oswald', 'Arial Narrow', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: #c8102e;
	border-radius: 999px;
	padding: 9px 20px;
}
.pc-bn-opt-cta--ghost {
	color: #2b4026;
	background: transparent;
	border: 1.5px solid rgba(43, 64, 38, 0.55);
}
