/* LuxeHotel Booking Connect — fallback bar styles + modal / iframe.
   The bar reuses the active theme's .lv-booking-* classes; these fallback
   rules use :where() (0 specificity) so any theme easily overrides them. */

:where(.lbc-booking-wrapper) { width: 100%; }

:where(.lbc-booking-bar) {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: flex-end;
	background: #fff;
	padding: 16px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
:where(.lbc-booking-bar .lbc-field) {
	display: flex;
	flex-direction: column;
	flex: 1 1 140px;
	gap: 6px;
}
:where(.lbc-booking-bar .lbc-field span) {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .06em;
	opacity: .7;
}
:where(.lbc-booking-bar input, .lbc-booking-bar select) {
	padding: 10px 12px;
	border: 1px solid #d9d4c8;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	color: inherit;
}
:where(.lbc-booking-bar button) {
	padding: 12px 22px;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	background: #b89b5e;
	color: #fff;
	font-weight: 600;
	letter-spacing: .04em;
	align-self: stretch;
}

.lbc-admin-note {
	margin: 10px 0 0;
	padding: 8px 12px;
	background: #fff8e5;
	border: 1px solid #f0e1a8;
	border-radius: 6px;
	font-size: 13px;
	color: #6b5b16;
}

/* Inline embedded iframe — looks like part of the page. */
.lbc-iframe-wrap { position: relative; width: 100%; }
.lbc-iframe-wrap iframe { width: 100%; min-height: 600px; border: 0; display: block; }
.lbc-inline-target { margin-top: 18px; }
.lbc-inline-target .lbc-iframe-wrap iframe { min-height: 500px; }

/* Modal / lightbox. */
body.lbc-modal-open { overflow: hidden; }
.lbc-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(20, 18, 15, .72);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.lbc-modal__inner {
	position: relative;
	width: min(980px, 100%);
	height: min(86vh, 900px);
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
.lbc-modal__frame { width: 100%; height: 100%; border: 0; display: block; }
.lbc-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 0;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}
.lbc-modal__close:hover { background: rgba(0, 0, 0, .8); }

@media (max-width: 600px) {
	.lbc-modal { padding: 0; }
	.lbc-modal__inner { width: 100%; height: 100%; border-radius: 0; }
}
