.wapps-booking {
	background:
		radial-gradient(circle at 78% 12%, rgba(172, 198, 195, 0.2), transparent 24rem),
		linear-gradient(145deg, #454a4d 0%, #303638 100%);
	color: rgba(255, 255, 255, 0.82);
	padding: clamp(48px, 7vw, 92px) 0;
}

.wapps-booking__shell {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
	margin: 0 auto;
	max-width: 1180px;
	min-height: min(720px, calc(100vh - 150px));
	padding: 0 clamp(18px, 4vw, 34px);
}

.wapps-booking__intro {
	align-content: center;
	display: grid;
	gap: 18px;
	max-width: 520px;
}

.wapps-booking__intro p {
	color: #ffcd38;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0;
	text-transform: uppercase;
}

.wapps-booking__intro h2 {
	color: #fff;
	font-size: clamp(2.25rem, 4.8vw, 4.8rem);
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
}

.wapps-booking__intro span {
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(1rem, 1.4vw, 1.14rem);
	line-height: 1.65;
	max-width: 34rem;
}

.wapps-booking__form {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 28px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
	color: #454a4d;
	display: grid;
	gap: 18px;
	justify-self: end;
	max-width: 640px;
	padding: clamp(22px, 3vw, 34px);
	width: 100%;
}

.wapps-booking__progress {
	border-bottom: 1px solid rgba(69, 74, 77, 0.1);
	color: rgba(69, 74, 77, 0.62);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	padding-bottom: 13px;
	text-transform: uppercase;
}

.wapps-booking__step {
	display: none;
	gap: 16px;
}

.wapps-booking__step.is-active {
	display: grid;
}

.wapps-booking__step h3 {
	color: #202625;
	font-size: clamp(1.32rem, 2.5vw, 1.86rem);
	line-height: 1.12;
	margin: 0;
}

.wapps-booking__options,
.wapps-booking__fields {
	display: grid;
	gap: 10px;
}

.wapps-booking__options label {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(69, 74, 77, 0.12);
	border-radius: 16px;
	cursor: pointer;
	display: flex;
	gap: 12px;
	min-height: 58px;
	padding: 13px 15px;
	transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.wapps-booking__options label:hover,
.wapps-booking__options label:focus-within {
	background: rgba(255, 205, 56, 0.08);
	border-color: rgba(69, 74, 77, 0.18);
}

.wapps-booking__options label.is-selected {
	background: rgba(255, 205, 56, 0.16);
	border-color: rgba(255, 205, 56, 0.78);
	box-shadow: inset 4px 0 0 #ffcd38;
}

.wapps-booking__options input {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.wapps-booking__options label > span {
	background: #fff;
	border: 1px solid rgba(69, 74, 77, 0.24);
	border-radius: 999px;
	display: inline-grid;
	flex: 0 0 18px;
	height: 18px;
	place-items: center;
	width: 18px;
}

.wapps-booking__options label.is-selected > span {
	background: #ffcd38;
	border-color: #ffcd38;
	box-shadow: inset 0 0 0 5px #fff;
}

.wapps-booking__options strong {
	color: #202625;
	font-size: 0.96rem;
	line-height: 1.25;
}

.wapps-booking__fields {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wapps-booking__fields label {
	color: rgba(69, 74, 77, 0.74);
	display: grid;
	font-size: 0.88rem;
	font-weight: 800;
	gap: 6px;
}

.wapps-booking__field-wide {
	grid-column: 1 / -1;
}

.wapps-booking input,
.wapps-booking textarea,
.wapps-booking select {
	background: #fff;
	border: 1px solid rgba(69, 74, 77, 0.16);
	border-radius: 12px;
	color: #202625;
	font: inherit;
	padding: 11px 12px;
	width: 100%;
}

.wapps-booking textarea {
	min-height: 96px;
	resize: vertical;
}

.wapps-booking input:focus-visible,
.wapps-booking textarea:focus-visible,
.wapps-booking select:focus-visible,
.wapps-booking button:focus-visible {
	outline: 3px solid rgba(255, 205, 56, 0.45);
	outline-offset: 2px;
}

.wapps-booking__availability {
	display: grid;
	gap: 14px;
}

.wapps-booking__calendar,
.wapps-booking__slot-panel {
	background: rgba(172, 198, 195, 0.1);
	border: 1px solid rgba(69, 74, 77, 0.1);
	border-radius: 18px;
	padding: 14px;
}

.wapps-booking__calendar p,
.wapps-booking__slot-panel p {
	color: rgba(69, 74, 77, 0.66);
	margin: 0;
}

.wapps-booking__calendar-header {
	align-items: center;
	display: grid;
	grid-template-columns: 36px 1fr 36px;
	gap: 8px;
	margin-bottom: 12px;
}

.wapps-booking__calendar-header strong {
	color: #202625;
	font-size: 1rem;
	text-align: center;
}

.wapps-booking__month-nav {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(69, 74, 77, 0.12);
	border-radius: 999px;
	color: #454a4d;
	cursor: pointer;
	display: inline-flex;
	font-size: 1.3rem;
	height: 36px;
	justify-content: center;
	line-height: 1;
	width: 36px;
}

.wapps-booking__month-nav:disabled {
	cursor: default;
	opacity: 0.35;
}

.wapps-booking__weekdays,
.wapps-booking__calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 6px;
}

.wapps-booking__weekdays {
	color: rgba(69, 74, 77, 0.54);
	font-size: 0.72rem;
	font-weight: 800;
	margin-bottom: 7px;
	text-align: center;
	text-transform: uppercase;
}

.wapps-booking__date-cell {
	aspect-ratio: 1;
	background: #fff;
	border: 1px solid rgba(69, 74, 77, 0.1);
	border-radius: 12px;
	color: #454a4d;
	cursor: pointer;
	display: grid;
	font: inherit;
	font-weight: 800;
	min-height: 38px;
	place-items: center;
}

.wapps-booking__date-cell.is-empty {
	background: transparent;
	border-color: transparent;
}

.wapps-booking__date-cell.is-disabled {
	background: rgba(69, 74, 77, 0.04);
	color: rgba(69, 74, 77, 0.28);
	cursor: default;
}

.wapps-booking__date-cell.is-available:hover {
	background: rgba(172, 198, 195, 0.2);
}

.wapps-booking__date-cell.is-today {
	border-color: rgba(69, 74, 77, 0.28);
}

.wapps-booking__date-cell.is-selected {
	background: #ffcd38;
	border-color: #ffcd38;
	color: #202625;
}

.wapps-booking__slot-heading {
	display: grid;
	gap: 2px;
	margin-bottom: 10px;
}

.wapps-booking__slot-heading span {
	color: rgba(69, 74, 77, 0.58);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.wapps-booking__slot-heading strong {
	color: #202625;
	font-size: 0.98rem;
}

.wapps-booking__slots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wapps-booking__slot {
	background: #fff;
	border: 1px solid rgba(69, 74, 77, 0.12);
	border-radius: 999px;
	color: #454a4d;
	cursor: pointer;
	font-weight: 800;
	padding: 9px 13px;
}

.wapps-booking__slot:hover {
	background: rgba(172, 198, 195, 0.18);
}

.wapps-booking__slot.is-selected {
	background: #ffcd38;
	border-color: rgba(69, 74, 77, 0.14);
	color: #202625;
}

.wapps-booking__summary {
	background: rgba(172, 198, 195, 0.12);
	border: 1px solid rgba(69, 74, 77, 0.1);
	border-radius: 18px;
	display: grid;
	gap: 10px;
	padding: 16px;
}

.wapps-booking__summary div {
	display: grid;
	gap: 3px;
}

.wapps-booking__summary span {
	color: rgba(69, 74, 77, 0.58);
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.wapps-booking__summary strong {
	color: #202625;
	font-weight: 800;
}

.wapps-booking__summary p {
	border-top: 1px solid rgba(69, 74, 77, 0.1);
	color: rgba(69, 74, 77, 0.7);
	line-height: 1.5;
	margin: 4px 0 0;
	padding-top: 12px;
}

.wapps-booking__fallback-note {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 18px;
	color: #454a4d;
	display: grid;
	gap: 10px;
	margin-bottom: 14px;
	padding: 16px;
}

.wapps-booking__fallback-note p {
	font-weight: 800;
	margin: 0;
}

.wapps-booking__contact-form {
	scroll-margin-top: 120px;
}

.wapps-booking__honeypot {
	height: 1px;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.wapps-booking__notice {
	color: #454a4d;
	font-weight: 800;
	min-height: 1.4em;
}

.wapps-booking__actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.wapps-booking__primary,
.wapps-booking__secondary {
	border-radius: 999px;
	cursor: pointer;
	font-weight: 800;
	padding: 11px 17px;
}

.wapps-booking__primary {
	background: #ffcd38;
	border: 1px solid rgba(69, 74, 77, 0.14);
	color: #202625;
}

.wapps-booking__primary:disabled {
	cursor: default;
	opacity: 0.48;
}

.wapps-booking__secondary {
	background: transparent;
	border: 1px solid rgba(69, 74, 77, 0.16);
	color: #454a4d;
}

@media (max-width: 900px) {
	.wapps-booking__shell {
		align-items: start;
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.wapps-booking__form {
		justify-self: stretch;
		max-width: none;
	}
}

@media (max-width: 620px) {
	.wapps-booking {
		padding: 34px 0;
	}

	.wapps-booking__fields {
		grid-template-columns: 1fr;
	}

	.wapps-booking__calendar,
	.wapps-booking__slot-panel {
		padding: 12px;
	}

	.wapps-booking__weekdays,
	.wapps-booking__calendar-grid {
		gap: 4px;
	}

	.wapps-booking__date-cell {
		border-radius: 10px;
		min-height: 34px;
	}

	.wapps-booking__actions {
		flex-direction: column;
	}
}
