html.pvd-booking-page,
body.pvd-booking-page {
	background: #0d1217 !important;
	color: #ffffff;
}

body.pvd-booking-page {
	--wp--style--global--content-size: 1200px;
	--wp--style--global--wide-size: 1200px;
}

body.pvd-booking-page .wp-site-blocks,
body.pvd-booking-page .site,
body.pvd-booking-page #page,
body.pvd-booking-page main,
body.pvd-booking-page article,
body.pvd-booking-page .wp-block-group,
body.pvd-booking-page .wp-block-group.has-global-padding,
body.pvd-booking-page .is-layout-constrained,
body.pvd-booking-page .is-layout-flow,
body.pvd-booking-page .entry-content,
body.pvd-booking-page .wp-block-post-content {
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
	background: #0d1217 !important;
}

body.pvd-booking-page .is-layout-constrained > * {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100% !important;
}

body.pvd-booking-page .wp-site-blocks > header,
body.pvd-booking-page .wp-site-blocks > footer,
body.pvd-booking-page header.wp-block-template-part,
body.pvd-booking-page footer.wp-block-template-part,
body.pvd-booking-page .site-header,
body.pvd-booking-page .site-footer,
body.pvd-booking-page .wp-block-post-title,
body.pvd-booking-page .entry-title,
body.pvd-booking-page .wp-block-post-featured-image {
	display: none !important;
}

.pvd-form {
	--pvd-bg: #0d1217;
	--pvd-panel: #151c24;
	--pvd-panel-2: #1b2430;
	--pvd-text: #ffffff;
	--pvd-muted: rgba(255, 255, 255, 0.58);
	--pvd-title: #0098c8;
	--pvd-accent: #0098c8;
	--pvd-accent-hover: #33b5e0;
	--pvd-border: rgba(255, 255, 255, 0.1);
	--pvd-danger: #ff6b6b;
	--pvd-ok: #3dcf8e;
	--pvd-radius: 14px;
	--pvd-radius-sm: 8px;
	color: var(--pvd-text);
	background: var(--pvd-bg);
	font-family: "Rubik", system-ui, sans-serif;
	line-height: 1.5;
	min-height: 100vh;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	position: relative;
}

.pvd-form *,
.pvd-form *::before,
.pvd-form *::after {
	box-sizing: border-box;
}

.pvd-shell {
	width: min(1200px, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: 0.75rem 0 4rem;
}

.pvd-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.pvd-brand img {
	height: 110px;
	width: auto;
}

.pvd-brand h1 {
	margin: 0;
	color: var(--pvd-title);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.pvd-form__loading,
.pvd-form__empty {
	color: var(--pvd-muted);
	padding: 2rem 0;
}

.pvd-form__alert {
	margin: 0 0 1.25rem;
	padding: 0.9rem 1.1rem;
	background: rgba(255, 107, 107, 0.12);
	color: #ffd4d4;
	border-radius: var(--pvd-radius-sm);
}

.pvd-steps {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
	counter-reset: pvdstep;
	position: relative;
}

.pvd-steps::before {
	content: "";
	position: absolute;
	left: 1.1rem;
	right: 1.1rem;
	top: 1.05rem;
	height: 1px;
	background: var(--pvd-border);
	z-index: 0;
}

.pvd-steps li {
	counter-increment: pvdstep;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	flex: 1;
	position: relative;
	z-index: 1;
	color: var(--pvd-muted);
	font-size: 0.82rem;
	text-align: center;
}

.pvd-steps li::before {
	content: counter(pvdstep);
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pvd-panel);
	border: 1px solid var(--pvd-border);
	color: var(--pvd-muted);
	font-weight: 600;
}

.pvd-steps li.is-active {
	color: var(--pvd-text);
}

.pvd-steps li.is-active::before {
	background: #fff;
	color: #0d1217;
	border-color: #fff;
}

.pvd-steps li.is-done::before {
	content: "✓";
	background: var(--pvd-accent);
	border-color: var(--pvd-accent);
	color: #fff;
}

.pvd-title {
	color: var(--pvd-title);
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 600;
	margin: 0 0 0.35rem;
	letter-spacing: -0.02em;
}

.pvd-title + .pvd-cards {
	margin-top: 0.85rem;
}

.pvd-lead {
	color: var(--pvd-muted);
	margin: 0 0 1.1rem;
	max-width: 36rem;
	font-size: 0.95rem;
}

.pvd-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 1.5rem;
	align-items: start;
}

.pvd-layout--equal {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.pvd-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.pvd-card {
	appearance: none;
	display: flex;
	flex-direction: column;
	text-align: left;
	background: var(--pvd-panel);
	border: 1px solid var(--pvd-border);
	border-radius: var(--pvd-radius);
	padding: 0.85rem;
	color: inherit;
	cursor: pointer;
	font: inherit;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.pvd-card:hover:not(:disabled) {
	transform: translateY(-3px);
	border-color: rgba(0, 152, 200, 0.55);
}

.pvd-card.is-selected,
.pvd-card.is-taken {
	border-color: var(--pvd-accent);
}

.pvd-card:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.pvd-card__image {
	position: relative;
	background: #1b2430;
	border-radius: 16px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.pvd-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pvd-card__body {
	padding: 0.9rem 0.35rem 0.35rem;
}

.pvd-card__kicker {
	margin: 0 0 0.2rem;
	color: var(--pvd-muted);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pvd-card__name {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 600;
}

.pvd-card__meta {
	margin: 0.35rem 0 0;
	color: var(--pvd-muted);
	font-size: 0.85rem;
}

.pvd-days {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
	margin-bottom: 1.5rem;
}

.pvd-day {
	appearance: none;
	background: var(--pvd-panel);
	border: 1px solid var(--pvd-border);
	border-radius: 16px;
	color: var(--pvd-text);
	padding: 0.8rem 0.4rem;
	cursor: pointer;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pvd-day.is-active {
	background: #fff;
	color: #0d1217;
	border-color: #fff;
}

.pvd-day small {
	display: block;
	margin-top: 0.25rem;
	opacity: 0.7;
	font-size: 0.8rem;
}

.pvd-slots {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	width: 100%;
}

.pvd-slot {
	appearance: none;
	width: 100%;
	background: var(--pvd-panel);
	border: 1px solid var(--pvd-border);
	border-radius: var(--pvd-radius-sm);
	color: var(--pvd-text);
	padding: 0.95rem 0.8rem;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
}

.pvd-slot:hover:not(:disabled) {
	border-color: var(--pvd-accent);
	color: var(--pvd-accent);
}

.pvd-slot.is-selected {
	background: var(--pvd-accent);
	border-color: var(--pvd-accent);
	color: #fff;
}

.pvd-slot:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.pvd-slot.is-conflict {
	text-decoration: line-through;
	opacity: 0.35;
}

.pvd-slot-hint {
	color: var(--pvd-muted);
	margin: 0.85rem 0 0;
	max-width: 36rem;
	font-size: 0.9rem;
	line-height: 1.45;
}

.pvd-slot-hint a {
	color: var(--pvd-accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.pvd-slot-hint a:hover {
	color: var(--pvd-text);
}

.pvd-aside {
	background: var(--pvd-panel);
	border: 1px solid var(--pvd-border);
	border-radius: var(--pvd-radius);
	padding: 0.95rem;
	position: sticky;
	top: 1.5rem;
}

.pvd-aside h2 {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	font-weight: 600;
}

.pvd-aside__empty {
	color: var(--pvd-muted);
	margin: 0;
}

.pvd-pick {
	margin-bottom: 1rem;
}

.pvd-aside--multi {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem 1rem;
	align-items: start;
}

.pvd-aside--multi h2,
.pvd-aside--multi .pvd-aside__empty {
	grid-column: 1 / -1;
}

.pvd-aside--multi .pvd-pick {
	margin-bottom: 0;
}

.pvd-pick__top {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	margin-bottom: 0.55rem;
}

.pvd-pick__top span {
	color: var(--pvd-muted);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pvd-pick__top button {
	appearance: none;
	background: none;
	border: 0;
	color: var(--pvd-accent);
	cursor: pointer;
	font: inherit;
	padding: 0;
}

.pvd-pick__photo {
	position: relative;
	background: #1b2430;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	margin-bottom: 0.5rem;
}

.pvd-pick__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pvd-pick strong {
	display: block;
}

.pvd-pick p {
	margin: 0.2rem 0 0;
	color: var(--pvd-muted);
	font-size: 0.9rem;
}

.pvd-choice {
	background: var(--pvd-panel);
	border: 1px solid var(--pvd-border);
	border-radius: var(--pvd-radius);
	padding: 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pvd-layout--choice {
	grid-template-columns: minmax(0, 1fr) 260px;
	align-items: stretch;
}

.pvd-choice .pvd-title {
	margin-bottom: 0.5rem;
}

.pvd-choice .pvd-lead {
	margin-bottom: 1.15rem;
}

.pvd-choice .pvd-actions {
	margin-top: 0;
}

.pvd-choice .pvd-btn {
	width: auto;
	flex: 0 0 auto;
}

.pvd-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1.15rem;
}

.pvd-btn {
	appearance: none;
	border: 0;
	border-radius: var(--pvd-radius-sm);
	padding: 0.55rem 1.1rem;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	line-height: 1.3;
}

.pvd-btn--primary {
	background: var(--pvd-accent);
	color: #fff;
}

.pvd-btn--primary:hover:not(:disabled) {
	background: var(--pvd-accent-hover);
}

.pvd-btn--ghost {
	background: transparent;
	color: var(--pvd-text);
	border: 1px solid var(--pvd-border);
}

.pvd-btn:disabled {
	opacity: 0.55;
	cursor: wait;
}

.pvd-form__fields-wrap {
	position: relative;
	width: 100%;
	background: var(--pvd-panel);
	border: 1px solid var(--pvd-border);
	border-radius: var(--pvd-radius);
	padding: 1.75rem 2rem 2rem;
}

.pvd-form__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.25rem;
	margin-bottom: 1rem;
}

.pvd-form__fields .pvd-field:nth-child(n + 3),
.pvd-form__fields .pvd-check {
	grid-column: 1 / -1;
}

.pvd-aside--wide {
	position: static;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem 1.25rem;
	margin-bottom: 1.5rem;
}

.pvd-aside--wide.pvd-aside--multi {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pvd-aside--wide h2 {
	grid-column: 1 / -1;
	margin-bottom: 0.25rem;
}

.pvd-aside--wide .pvd-pick {
	margin: 0;
}

.pvd-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.pvd-field label {
	font-weight: 600;
	font-size: 0.9rem;
}

.pvd-field input[type="text"],
.pvd-field input[type="email"],
.pvd-field input[type="tel"],
.pvd-field input[type="number"] {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--pvd-border);
	border-radius: 12px;
	font: inherit;
	color: var(--pvd-text);
	background: var(--pvd-bg);
}

.pvd-field input:focus {
	outline: 2px solid var(--pvd-accent);
	outline-offset: 1px;
}

.pvd-hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.pvd-check {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	grid-column: 1 / -1;
	color: var(--pvd-muted);
}

.pvd-check a {
	color: var(--pvd-accent);
}

.pvd-thanks {
	text-align: center;
	padding: 3rem 1rem 4rem;
}

.pvd-thanks h1,
.pvd-thanks h2 {
	color: var(--pvd-title);
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin: 0 0 0.75rem;
}

.pvd-thanks p {
	color: var(--pvd-muted);
	font-size: 1.1rem;
	max-width: 32rem;
	margin: 0 auto;
}

.pvd-thanks__mark {
	width: 4.2rem;
	height: 4.2rem;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	background: var(--pvd-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
}

@media (max-width: 960px) {
	.pvd-layout,
	.pvd-layout--equal,
	.pvd-cards {
		grid-template-columns: 1fr 1fr;
	}

	.pvd-layout,
	.pvd-layout--equal {
		grid-template-columns: 1fr;
	}

	.pvd-aside--wide.pvd-aside--multi {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.pvd-shell {
		width: min(1200px, calc(100% - 1.5rem));
		padding-top: 0.6rem;
	}

	.pvd-cards,
	.pvd-aside--wide,
	.pvd-aside--multi {
		grid-template-columns: 1fr;
	}

	.pvd-day {
		font-size: 0.68rem;
		padding: 0.7rem 0.2rem;
	}

	.pvd-steps li {
		font-size: 0.68rem;
	}
}
