.playdro-booking {
	background:
		radial-gradient(circle at 12% 0%, rgba(255, 59, 221, 0.09), transparent 30%),
		radial-gradient(circle at 88% 14%, rgba(56, 189, 248, 0.11), transparent 32%),
		linear-gradient(180deg, rgba(36, 139, 255, 0.055), rgba(255, 59, 212, 0.025));
}

.booking-header p:not(.eyebrow) {
	max-width: 820px;
}

.booking-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
	gap: 0;
	align-items: start;
	max-width: 1180px;
	border: 1px solid rgba(117, 159, 255, 0.28);
	border-radius: var(--radius, 12px);
	background: rgba(4, 8, 18, 0.88);
	box-shadow: 0 0 42px rgba(20, 136, 255, 0.14);
	overflow: hidden;
}

.booking-card.is-error {
	animation: playdro-booking-shake 0.34s ease;
}

.booking-card.is-success {
	border-color: rgba(56, 189, 248, 0.55);
	box-shadow: 0 0 46px rgba(56, 189, 248, 0.14);
}

.booking-card__main {
	display: grid;
	gap: 14px;
	padding: clamp(16px, 2vw, 24px);
}

.booking-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.booking-step {
	display: flex;
	gap: 12px;
	align-items: center;
}

.booking-step > span {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(56, 189, 248, 0.38);
	border-radius: 50%;
	color: var(--cyan, #11d9ff);
	font-weight: 900;
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.13);
}

.booking-step strong {
	display: block;
	color: var(--text, #fff);
	font-size: clamp(20px, 2.2vw, 26px);
	line-height: 1.05;
	text-transform: uppercase;
}

.booking-step p {
	margin: 4px 0 0;
	color: var(--muted, #aab3c9);
	line-height: 1.45;
}

.booking-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.booking-option {
	position: relative;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto auto;
	gap: 8px;
	align-items: center;
	min-height: 86px;
	padding: 12px;
	border: 1px solid rgba(117, 159, 255, 0.24);
	border-radius: var(--radius, 12px);
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition:
		border-color 0.2s ease,
		transform 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.booking-option:hover {
	transform: translateY(-2px);
	border-color: rgba(56, 189, 248, 0.42);
	background: rgba(255, 255, 255, 0.055);
}

.booking-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.booking-option.is-selected,
.booking-option:has(input:checked) {
	border-color: rgba(56, 189, 248, 0.78);
	background:
		linear-gradient(180deg, rgba(56, 189, 248, 0.085), rgba(255, 255, 255, 0.035)),
		rgba(56, 189, 248, 0.035);
	box-shadow: 0 0 22px rgba(56, 189, 248, 0.12);
}

.booking-option b,
.booking-addons > strong {
	display: block;
	color: var(--text, #fff);
	font-size: 14px;
	line-height: 1.15;
	text-transform: uppercase;
}

.booking-option small {
	display: block;
	margin-top: 6px;
	color: var(--muted, #aab3c9);
	font-size: 12px;
	line-height: 1.35;
}

.booking-option strong {
	color: var(--cyan, #38bdf8);
	font-size: 13px;
	white-space: nowrap;
}

.booking-option__badge,
.booking-addon__badge {
	display: none;
	align-self: start;
	justify-self: start;
	width: max-content;
	padding: 4px 8px;
	border: 1px solid rgba(56, 189, 248, 0.42);
	border-radius: 999px;
	background: rgba(56, 189, 248, 0.1);
	color: var(--cyan, #38bdf8);
	font-size: 10px;
	font-style: normal;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0;
}

.booking-option.is-selected .booking-option__badge,
.booking-option:has(input:checked) .booking-option__badge,
.booking-addons label.is-selected .booking-addon__badge,
.booking-addons label:has(input:checked) .booking-addon__badge {
	display: inline-grid;
}

.booking-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.booking-field {
	display: grid;
	gap: 8px;
}

.booking-field span,
.booking-duration__head > span {
	color: #dbe5fb;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid rgba(117, 159, 255, 0.28);
	border-radius: var(--radius, 10px);
	background: rgba(5, 10, 22, 0.84);
	color: var(--text, #fff);
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	filter: invert(1);
	opacity: 0.58;
}

.booking-field textarea {
	min-height: 78px;
	padding-top: 14px;
	resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
	border-color: rgba(56, 189, 248, 0.72);
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.booking-field.is-invalid input,
.booking-field.is-invalid select,
.booking-field.is-invalid textarea {
	border-color: rgba(255, 86, 113, 0.78);
	box-shadow: 0 0 0 3px rgba(255, 86, 113, 0.12);
}

.booking-field em {
	display: none;
	color: #ff8da0;
	font-size: 12px;
	font-style: normal;
	line-height: 1.3;
}

.booking-field.is-invalid em {
	display: block;
}

.booking-days {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.booking-day {
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid rgba(117, 159, 255, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text, #fff);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.booking-day:hover:not(:disabled) {
	transform: translateY(-1px);
	border-color: rgba(56, 189, 248, 0.56);
}

.booking-day.is-active {
	border-color: rgba(56, 189, 248, 0.86);
	color: var(--cyan, #38bdf8);
	background: rgba(56, 189, 248, 0.095);
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.18) inset,
		0 0 18px rgba(56, 189, 248, 0.14);
}

.booking-day:disabled {
	cursor: not-allowed;
	opacity: 0.34;
	text-decoration: line-through;
}

.booking-duration {
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid rgba(117, 159, 255, 0.22);
	border-radius: var(--radius, 12px);
	background: rgba(255, 255, 255, 0.035);
}

.booking-duration__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.booking-duration__head strong {
	color: var(--cyan, #38bdf8);
	font-size: 14px;
	white-space: nowrap;
}

.booking-duration__options {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
}

.booking-duration__button {
	display: grid;
	place-items: center;
	min-height: 56px;
	padding: 8px 6px;
	border: 1px solid rgba(117, 159, 255, 0.24);
	border-radius: 12px;
	background: rgba(5, 10, 22, 0.72);
	color: var(--text, #fff);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.booking-duration__button:hover {
	transform: translateY(-1px);
	border-color: rgba(56, 189, 248, 0.52);
}

.booking-duration__button.is-active {
	border-color: rgba(56, 189, 248, 0.84);
	background: rgba(56, 189, 248, 0.1);
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.16) inset,
		0 0 18px rgba(56, 189, 248, 0.14);
}

.booking-duration__button span {
	color: inherit;
	font-size: 18px;
	font-weight: 950;
	line-height: 1;
}

.booking-duration__button small {
	color: var(--muted, #aab3c9);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.1;
}

.booking-duration__button.is-active small {
	color: var(--cyan, #38bdf8);
}

.booking-addons {
	display: grid;
	gap: 12px;
}

.booking-addons > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.booking-addons label {
	position: relative;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 4px 10px;
	min-height: 74px;
	padding: 10px 12px;
	border: 1px solid rgba(117, 159, 255, 0.22);
	border-radius: var(--radius, 12px);
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.booking-addons label.is-hidden,
.booking-addons label[hidden] {
	display: none !important;
}

.booking-addons label:hover {
	border-color: rgba(56, 189, 248, 0.44);
	background: rgba(255, 255, 255, 0.055);
}

.booking-addons label.is-selected,
.booking-addons label:has(input:checked) {
	border-color: rgba(56, 189, 248, 0.72);
	background: rgba(56, 189, 248, 0.075);
	box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

.booking-addons input {
	grid-row: 1 / span 2;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	border: 1px solid rgba(219, 229, 251, 0.5);
	border-radius: 4px;
	background: rgba(5, 10, 22, 0.88);
	appearance: none;
	cursor: pointer;
	position: relative;
}

.booking-addons input:checked {
	border-color: rgba(56, 189, 248, 0.86);
	background: rgba(56, 189, 248, 0.14);
}

.booking-addons input:checked::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid var(--cyan, #38bdf8);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.booking-addons span {
	color: var(--text, #fff);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
}

.booking-addons small {
	grid-column: 2;
	color: var(--cyan, #38bdf8);
	font-size: 12px;
	font-weight: 800;
}

.booking-addon__badge {
	grid-column: 2;
	margin-top: 2px;
}

.booking-summary {
	position: sticky;
	top: 106px;
	display: grid;
	gap: 14px;
	align-content: start;
	min-height: auto;
	padding: clamp(18px, 2.4vw, 26px);
	border-left: 1px solid rgba(117, 159, 255, 0.24);
	background:
		radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.105), transparent 30%),
		radial-gradient(circle at 12% 0, rgba(255, 59, 212, 0.055), transparent 34%),
		rgba(6, 12, 24, 0.88);
}

.booking-summary__top {
	display: grid;
	gap: 8px;
}

.booking-status {
	color: var(--cyan, #38bdf8);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.booking-summary__top > strong {
	color: var(--text, #fff);
	font-size: clamp(34px, 3.4vw, 46px);
	line-height: 0.95;
	text-shadow: 0 0 20px rgba(56, 189, 248, 0.18);
	transition: transform 0.18s ease;
}

.booking-summary.is-updating .booking-summary__top > strong {
	transform: scale(1.025);
}

.booking-summary__breakdown {
	color: rgba(219, 229, 251, 0.78) !important;
	font-size: 12px;
	font-weight: 800;
}

.booking-summary__details {
	display: grid;
	gap: 8px;
	padding: 12px;
	border: 1px solid rgba(117, 159, 255, 0.18);
	border-radius: var(--radius, 12px);
	background: rgba(255, 255, 255, 0.035);
}

.booking-summary__details div {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.booking-summary__details span {
	color: var(--muted, #aab3c9);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.booking-summary__details b {
	color: var(--text, #fff);
	font-size: 13px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.booking-summary .button {
	width: 100%;
	min-height: 46px;
	padding: 0 16px;
	font-size: 13px;
	align-self: start;
}

.booking-summary p {
	margin: 0;
	color: var(--muted, #aab3c9);
	line-height: 1.5;
}

.booking-summary button:disabled {
	cursor: not-allowed;
	filter: grayscale(0.35);
	opacity: 0.68;
}

.booking-legal {
	padding: 12px;
	border-radius: var(--radius, 12px);
	background: rgba(255, 255, 255, 0.04);
	font-size: 12px;
}

.playdro-booking-admin table input[type="number"] {
	width: 110px;
}

.playdro-admin-inline-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	max-width: 1120px;
	padding: 12px;
	border: 1px solid #dcdcde;
	background: #fff;
}

@keyframes playdro-booking-shake {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	50% {
		transform: translateX(4px);
	}
	75% {
		transform: translateX(-2px);
	}
}

@media (max-width: 1100px) {
	.booking-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.booking-addons > div {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.booking-card {
		grid-template-columns: 1fr;
	}

	.booking-summary {
		position: static;
		border-top: 1px solid rgba(117, 159, 255, 0.24);
		border-left: 0;
	}

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

@media (max-width: 720px) {
	.playdro-booking {
		padding-left: 12px;
		padding-right: 12px;
	}

	.booking-card {
		border-radius: 14px;
		box-shadow: 0 0 32px rgba(20, 136, 255, 0.12);
	}

	.booking-card__main {
		gap: 12px;
		padding: 14px;
	}

	.booking-step {
		align-items: flex-start;
	}

	.booking-step > span {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
		font-size: 13px;
	}

	.booking-step strong {
		font-size: 21px;
	}

	.booking-options,
	.booking-grid,
	.booking-addons > div {
		grid-template-columns: 1fr;
	}

	.booking-option {
		min-height: 92px;
		padding: 13px;
	}

	.booking-field input,
	.booking-field select,
	.booking-field textarea {
		min-height: 50px;
		font-size: 16px;
	}

	.booking-days {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.booking-day {
		min-height: 42px;
		padding: 0 8px;
	}

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

	.booking-duration__button {
		min-height: 58px;
	}

	.booking-addons label {
		min-height: 74px;
	}

	.booking-summary {
		padding: 16px 14px 18px;
		border-radius: 0 0 14px 14px;
	}

	.booking-summary__top > strong {
		font-size: 42px;
	}

	.booking-summary__details {
		grid-template-columns: 1fr;
	}

	.booking-summary__details div {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.booking-summary .button {
		min-height: 52px;
	}
}

@media (max-width: 390px) {
	.booking-days {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.booking-summary__details div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}

/* === Play Dro booking final TZ polish v1.0.10 === */
.playdro-booking {
	padding-top: clamp(36px, 5vw, 62px);
	padding-bottom: clamp(36px, 5vw, 62px);
}

.booking-header {
	margin-bottom: 20px;
}

.booking-card {
	grid-template-columns: minmax(0, 1fr) minmax(270px, 300px);
	max-width: 1120px;
	border-radius: 16px;
}

.booking-card__main {
	gap: 12px;
	padding: clamp(14px, 1.8vw, 20px);
}

.booking-step {
	align-items: flex-start;
}

.booking-step > span {
	flex-basis: 34px;
	width: 34px;
	height: 34px;
	font-size: 12px;
}

.booking-step strong {
	font-size: clamp(20px, 1.8vw, 24px);
}

.booking-step p {
	max-width: 680px;
	font-size: 14px;
}

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

.booking-option {
	min-height: 76px;
	padding: 11px 12px;
	border-radius: 12px;
}

.booking-option__badge,
.booking-addon__badge {
	display: none !important;
}

.booking-duration__options {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-duration__button {
	min-height: 46px;
	border-radius: 10px;
}

.booking-duration__button span {
	font-size: 16px;
}

.booking-duration__button small {
	font-size: 10px;
}

.booking-addons label {
	min-height: 62px;
}

.booking-summary {
	top: 92px;
	gap: 12px;
	padding: 18px;
}

.booking-summary__top > strong {
	font-size: clamp(30px, 2.6vw, 40px);
}

.booking-summary__details {
	padding: 10px;
}

.booking-summary .button {
	min-height: 44px;
	font-size: 12px;
	line-height: 1.1;
}

.booking-legal {
	font-size: 11.5px;
}

@media (max-width: 980px) {
	.booking-card {
		grid-template-columns: 1fr;
	}

	.booking-summary {
		position: static;
	}
}

@media (max-width: 720px) {
	.booking-header p:not(.eyebrow) {
		font-size: 15px;
		line-height: 1.45;
	}

	.booking-card__main {
		padding: 12px;
	}

	.booking-options,
	.booking-addons > div {
		grid-template-columns: 1fr;
	}

	.booking-option {
		min-height: 70px;
	}

	.booking-days {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.booking-day {
		min-height: 38px;
		font-size: 11px;
	}

	.booking-duration__options {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.booking-duration__button {
		min-height: 44px;
	}

	.booking-summary__top > strong {
		font-size: 34px;
	}
}

@media (max-width: 430px) {
	.booking-days,
	.booking-duration__options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* === Play Dro booking density polish v1.0.14 === */
.playdro-booking {
	scroll-margin-top: 96px;
}

.booking-header h2 {
	max-width: 760px;
	font-size: clamp(34px, 4.8vw, 56px);
	line-height: 0.98;
}

.booking-header p:not(.eyebrow) {
	max-width: 720px;
}

.booking-card {
	max-width: min(1180px, 100%);
	margin-inline: 0;
}

.booking-options,
.booking-addons > div {
	gap: 10px;
}

.booking-option,
.booking-addons label {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(56, 189, 248, 0.02));
}

.booking-option b,
.booking-addons span {
	line-height: 1.15;
}

.booking-days {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.booking-day {
	flex: 0 0 auto;
	min-width: 78px;
}

.booking-duration {
	padding: 12px;
}

.booking-summary .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding-inline: 18px;
}

@media (max-width: 720px) {
	.playdro-booking {
		padding-top: 34px;
		padding-bottom: 34px;
	}

	.booking-header h2 {
		font-size: clamp(30px, 10vw, 42px);
	}

	.booking-card {
		max-width: calc(100% - 24px);
		border-radius: 14px;
	}

	.booking-step {
		gap: 10px;
	}

	.booking-step strong {
		font-size: 19px;
	}

	.booking-option,
	.booking-addons label {
		min-height: 60px;
	}

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

	.booking-summary {
		padding: 14px;
	}
}

/* v1.1.0 — hookah flavour picker (real tobacco/coal products). */
.booking-flavours__hint {
	margin: -2px 0 2px;
	color: var(--muted, #93a0b8);
	font-size: 12.5px;
	line-height: 1.4;
}

.booking-flavours > div {
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.booking-flavours .booking-flavour--coal small {
	color: var(--amber, #ffb45a);
}
