/* Ready to Book choice modal.
   Triggered by .tt-book-now / [data-tt-book-now] / href="#book-now". */

.tt-book-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.tt-book-modal[hidden] {
	display: none !important;
}

.tt-book-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.tt-book-modal__panel {
	position: relative;
	background: var(--nv-site-bg, #fff);
	color: var(--nv-text-color, #1a1a1a);
	padding: 36px 32px 28px;
	border-radius: 16px;
	max-width: 480px;
	width: 100%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tt-book-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	background: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: inherit;
	opacity: 0.6;
	transition: opacity 0.15s ease;
}

.tt-book-modal__close:hover,
.tt-book-modal__close:focus {
	opacity: 1;
}

.tt-book-modal__title {
	margin: 0 0 20px;
	font-family: var(--tt-font-display, inherit);
	font-size: clamp(1.3rem, 3vw, 1.6rem);
	text-align: center;
	color: inherit;
}

.tt-book-modal__options {
	display: grid;
	gap: 12px;
}

.tt-book-modal__option {
	display: block;
	width: 100%;
	text-align: left;
	background: color-mix(in srgb, var(--nv-primary-accent, #d8c7e8) 35%, transparent);
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 18px 20px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
	color: inherit;
	font-family: inherit;
}

.tt-book-modal__option:hover,
.tt-book-modal__option:focus-visible {
	background: var(--nv-primary-accent, #d8c7e8);
	border-color: var(--nv-text-color, #1a1a1a);
	transform: translateY(-2px);
	outline: none;
}

.tt-book-modal__option-title {
	display: block;
	font-family: var(--tt-font-display, inherit);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 4px;
	color: inherit;
}

.tt-book-modal__option-sub {
	display: block;
	font-size: 0.875rem;
	opacity: 0.75;
	color: inherit;
}

body.tt-book-modal-open {
	overflow: hidden;
}
