.floating-booking-widget {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9999;
	font-family: inherit;
}

.floating-booking-btn {
	border: 0;
	border-radius: 999px;
	padding: 12px 16px;
	background: #d4a276;
	color: #111;
	font-weight: 700;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	line-height: 1;
}

.floating-booking-btn:focus {
	outline: 2px solid rgba(212, 162, 118, 0.55);
	outline-offset: 2px;
}

.floating-booking-panel {
	position: absolute;
	right: 0;
	bottom: 58px;
	width: 340px;
	max-width: calc(100vw - 36px);
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	transform-origin: bottom right;
	transform: scale(0.96);
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms ease, transform 160ms ease;
}

.floating-booking-widget.is-open .floating-booking-panel {
	transform: scale(1);
	opacity: 1;
	pointer-events: auto;
}

.floating-booking-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	background: #111;
	color: #fff;
}

.floating-booking-header span {
	font-weight: 700;
}

.floating-booking-close {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	padding: 0 4px;
	cursor: pointer;
}

.floating-booking-body {
	padding: 14px;
}

.floating-booking-form .form-control,
.floating-booking-form .form-select {
	height: 44px;
}

.floating-booking-form .form-group {
	margin-bottom: 12px;
}

.floating-booking-note {
	font-size: 12px;
	color: #555;
	margin-top: 8px;
}

@media (max-width: 420px) {
	.floating-booking-widget {
		right: 12px;
		bottom: 12px;
	}
	.floating-booking-panel {
		bottom: 54px;
	}
}

