.oe-booking {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	animation: oe-booking-fade 0.2s ease-out;
}

.oe-booking__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(28, 17, 10, 0.62);
	backdrop-filter: blur(4px);
}

.oe-booking__dialog {
	position: relative;
	width: 100%;
	max-width: 460px;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	animation: oe-booking-rise 0.25s ease-out;
}

.oe-booking__dialog:focus {
	outline: none;
}

.oe-booking__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #f3e8dc;
	color: #3b2415;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.oe-booking__close:hover {
	background: #ead8c5;
}

.oe-booking__close:focus-visible {
	outline: 3px solid #fdba74;
	outline-offset: 2px;
}

.oe-booking__card {
	display: grid;
	gap: 14px;
	padding: 28px;
	border-radius: 18px;
	background: #fffaf3;
	box-shadow: 0 24px 60px rgba(28, 17, 10, 0.35);
	color: #3b2415;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oe-booking__eyebrow {
	margin: 0;
	color: #c2410c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.oe-booking__title {
	margin: 0;
	padding-right: 40px;
	color: #1c110a;
	font-family: Fraunces, Georgia, serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.15;
}

.oe-booking__text {
	margin: 0;
	color: #6b4f3a;
	font-size: 15px;
	line-height: 1.55;
}

.oe-booking__meter {
	overflow: hidden;
	width: 100%;
	height: 8px;
	border-radius: 999px;
	background: #f3e8dc;
}

.oe-booking__meter-fill {
	display: block;
	width: 72%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #ea580c, #c2410c);
}

.oe-booking__slots {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 4px 0 0;
	padding: 0;
	list-style: none;
}

.oe-booking__slot {
	display: grid;
	gap: 2px;
	padding: 12px 14px;
	border: 1px solid #ead8c5;
	border-radius: 12px;
	background: #ffffff;
}

.oe-booking__slot-time {
	color: #1c110a;
	font-size: 18px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.oe-booking__slot-note {
	color: #15803d;
	font-size: 13px;
	font-weight: 600;
}

.oe-booking__slot.is-full {
	background: #faf5ef;
	opacity: 0.7;
}

.oe-booking__slot.is-full .oe-booking__slot-time {
	text-decoration: line-through;
}

.oe-booking__slot.is-full .oe-booking__slot-note {
	color: #991b1b;
}

.oe-booking__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 6px;
}

.oe-booking__badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: #ffedd5;
	color: #9a3412;
	font-size: 13px;
	font-weight: 700;
}

.oe-booking__cta {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 999px;
	background: #1c110a;
	color: #fffaf3;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.oe-booking__cta:hover,
.oe-booking__cta:focus {
	background: #c2410c;
	color: #ffffff;
}

@keyframes oe-booking-fade {
	from {
		opacity: 0;
	}
}

@keyframes oe-booking-rise {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
}

@media (max-width: 480px) {
	.oe-booking__card {
		padding: 22px;
	}

	.oe-booking__title {
		font-size: 24px;
	}
}
