.booking-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(20, 25, 28, 0.35);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);
	z-index: 30;
}

.booking-bar button
{
	text-transform: uppercase;
}
.booking-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.booking-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--white);
}
.booking-item:first-child {
	border-left: 0;
}
.booking-label {
	font-family: var(--display);
	font-size: 1.35rem;
	line-height: 1.1;
}
.booking-value {
	font-size: 0.65rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.72;
}
.booking-date-item,
.booking-people-item {
	position: relative;
	min-width: 0;
}
.booking-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1.25rem 1.5rem;
	border: 0;
	background: transparent;
	color: var(--white);
	font: inherit;
	text-align: left;
	cursor: pointer;
}
.booking-trigger-content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 0.25rem;
}
.booking-trigger .booking-label {
	text-transform: none;
}
.booking-trigger-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 0.15rem;
	opacity: 0.6;
}
.booking-trigger-copy strong {
	overflow: hidden;
	font-family: var(--body);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.booking-trigger-copy small {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.63rem;
	letter-spacing: 0.05em;
}
.trigger-chevron {
	font-size: 1.05rem;
	line-height: 1;
	transition: transform 0.2s ease;
}
.booking-trigger[aria-expanded="true"] .trigger-chevron {
	transform: rotate(180deg);
}
.booking-trigger:focus-visible,
.icon-button:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}
.booking-cta
{
	padding: 1.25rem 1.5rem;
}
.booking-trigger:hover,
.booking-cta:hover {
	background: rgba(255, 255, 255, 0.08);
}

.date-popover,
.guest-popover {
	position: absolute;
	z-index: 30;
	bottom: calc(100% + 0.8rem);
	left: 1.5rem;
	width: min(24rem, calc(100vw - 3rem));
	padding: 1rem;
	border: 1px solid rgba(37, 45, 53, 0.1);
	border-radius: 1rem;
	background: var(--white);
	color: var(--ink);
	box-shadow: 0 1.5rem 4rem rgba(20, 25, 28, 0.22);
}
.guest-popover {
	width: min(19rem, calc(100vw - 3rem));
}
.date-popover[hidden],
.guest-popover[hidden] {
	display: none;
}
.popover-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
}
.popover-header strong {
	font-family: var(--display);
	font-size: 1.15rem;
	font-weight: 400;
}
.icon-button {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--soft);
	color: var(--ink);
	font-size: 1rem;
	cursor: pointer;
}
.icon-button:hover:not(:disabled) {
	background: #ddd8ca;
}
.icon-button:disabled {
	cursor: not-allowed;
	opacity: 0.35;
}
.date-modes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.35rem;
	margin-bottom: 1rem;
	padding: 0.25rem;
	border-radius: 0.7rem;
	background: var(--soft);
}
.date-mode {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.65rem 0.7rem;
	border-radius: 0.55rem;
	border: 2px solid #fff;
	background: transparent;
	color: var(--muted);
	font: inherit;
	text-align: left;
	cursor: pointer;
	align-items: center;
	transition: all 0.3s ease-in;
}
.date-mode span {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: none;
}
.popover-eyebrow {
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.date-mode strong {
	font-size: 0.8rem;
	font-weight: 400;
}
.date-mode.is-active {
	background: var(--white);
	box-shadow: 0 0.15rem 0.45rem rgba(37, 45, 53, 0.1);
	border: 2px solid red;
	color: red;
}
.calendar-weekdays,
.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.25rem;
}
.calendar-weekdays {
	margin-bottom: 0.25rem;
	color: var(--muted);
	font-size: 0.74rem;
	text-align: center;
}
.calendar-day,
.calendar-spacer {
	aspect-ratio: 1.35;
}
.calendar-day {
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-size: 0.8rem;
	cursor: pointer;
}
.calendar-day:hover:not(:disabled) {
	background: var(--soft);
}
.calendar-day:disabled {
	color: #b5b7b3;
	cursor: not-allowed;
}
.calendar-day.is-range {
	border-radius: 0;
	background: #cff1e6;
}
.calendar-day.is-selected {
	color: var(--white);
	background-color: #408a72;
}
.calendar-day.is-start {
	border-radius: 50% 0 0 50%;
}
.calendar-day.is-end {
	border-radius: 0 50% 50% 0;
}
.calendar-day.is-start.is-end {
	border-radius: 50%;
}
[data-mode="check-out"] .calendar-day.is-end,
[data-mode="check-in"] .calendar-day.is-start {
	background-color: #358dcc;
}
[data-mode="check-out"] .calendar-day.is-start,
[data-mode="check-in"] .calendar-day.is-end {
	background-color: #cff1e6;  /* range color */
	color: #000;
}

.popover-done {
	width: 100%;
	margin-top: 1rem;
	padding: 0.7rem 1rem;
	border: 0;
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font: inherit;
	font-size: 0.85rem;
	cursor: pointer;
}
.popover-done:hover {
	background: #39454d;
}
.popover-eyebrow {
	display: block;
	margin-bottom: 1rem;
	color: var(--muted);
}
.guest-stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}
.guest-stepper > div:first-child {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.guest-stepper strong {
	font-family: var(--display);
	font-size: 1.08rem;
	font-weight: 400;
}
.guest-stepper small {
	color: var(--muted);
	font-size: 0.75rem;
}
.stepper-controls {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}
.stepper-button {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
}
.stepper-button:hover {
	background: var(--soft);
}
.stepper-controls > strong {
	min-width: 1rem;
	text-align: center;
}
.booking-status {
	display: block;
	margin-top: 0.3rem;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.62rem;
	letter-spacing: 0.05em;
}



@media (max-width: 58rem) {
	.booking-grid {
		display: block;
	}
	.booking-item {
		display: none;
	}
	.booking-item.booking-date-item,
	.booking-item.booking-people-item,
	.booking-item.booking-cta {
		display: flex;
		border-left: 0;
	}
	.booking-item.booking-date-item,
	.booking-item.booking-people-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	.booking-status {
		margin-top: 0.15rem;
	}
	.date-popover,
	.guest-popover {
		position: fixed;
		right: 1rem;
		bottom: 1rem;
		left: 1rem;
		width: auto;
		max-width: none;
	}
	.date-popover {
		max-height: calc(100svh - 2rem);
		overflow: auto;
	}
}
