.skatboet-booking {
	--skatboet-booking-ink: #1e2d27;
	--skatboet-booking-forest: #355b4d;
	--skatboet-booking-water: #5e8180;
	--skatboet-booking-ochre: #bf7e2d;
	--skatboet-booking-mist: #dce6df;
	--skatboet-booking-line: #cbd7cf;
	--skatboet-booking-canvas: #f7f8f4;
	margin: 2.5rem 0;
	color: var(--skatboet-booking-ink);
}

.skatboet-booking *,
.skatboet-booking *::before,
.skatboet-booking *::after {
	box-sizing: border-box;
}

.skatboet-booking__layout {
	display: grid;
	grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
	gap: 2rem;
	align-items: start;
}

.skatboet-booking__availability {
	position: sticky;
	top: 1.5rem;
}

.skatboet-booking__section-heading {
	margin-bottom: 1.25rem;
}

.skatboet-booking__section-heading h2 {
	margin: 0.45rem 0;
	font-size: 1.8rem;
}

.skatboet-booking__section-heading p:last-child {
	margin: 0;
	font-size: 0.95rem;
}

.skatboet-booking__eyebrow {
	margin: 0;
	color: var(--skatboet-booking-forest);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.skatboet-calendar,
.skatboet-booking-form {
	border: 1px solid var(--skatboet-booking-line);
	border-radius: 6px;
	background: #fff;
}

.skatboet-calendar {
	overflow: hidden;
}

.skatboet-calendar__header {
	display: grid;
	grid-template-columns: 2.75rem 1fr 2.75rem;
	align-items: center;
	min-height: 3.75rem;
	border-bottom: 1px solid var(--skatboet-booking-line);
	background: var(--skatboet-booking-mist);
}

.skatboet-calendar__header h3 {
	margin: 0;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.skatboet-calendar__nav {
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	background: transparent;
	color: var(--skatboet-booking-ink);
	cursor: pointer;
	font-size: 1.25rem;
}

.skatboet-calendar__nav:hover:not(:disabled) {
	color: var(--skatboet-booking-forest);
}

.skatboet-calendar__nav:disabled {
	color: #8b9990;
	cursor: not-allowed;
}

.skatboet-calendar__weekdays,
.skatboet-calendar__days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.skatboet-calendar__weekdays {
	border-bottom: 1px solid var(--skatboet-booking-line);
	background: #fff;
}

.skatboet-calendar__weekdays span {
	padding: 0.65rem 0;
	color: var(--skatboet-booking-forest);
	font-size: 0.72rem;
	font-weight: 700;
	text-align: center;
}

.skatboet-calendar__day {
	position: relative;
	min-width: 0;
	aspect-ratio: 1 / 0.92;
	border: 0;
	border-right: 1px solid #e6ece7;
	border-bottom: 1px solid #e6ece7;
	background: #fff;
	color: var(--skatboet-booking-ink);
	cursor: pointer;
	font-family: inherit;
	font-size: 0.85rem;
}

.skatboet-calendar__day:nth-child(7n) {
	border-right: 0;
}

.skatboet-calendar__day:hover:not(:disabled) {
	background: var(--skatboet-booking-mist);
}

.skatboet-calendar__day.is-booked,
.skatboet-calendar__day:disabled {
	background: #e7e9e7;
	color: #79847e;
	cursor: not-allowed;
	text-decoration: line-through;
}

.skatboet-calendar__day.is-selected {
	background: var(--skatboet-booking-forest);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.skatboet-calendar__day.is-in-range {
	background: #e8f0e8;
	color: var(--skatboet-booking-ink);
	text-decoration: none;
}

.skatboet-calendar__day.is-empty {
	background: var(--skatboet-booking-canvas);
	cursor: default;
}

.skatboet-calendar__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	padding: 1rem;
	font-size: 0.8rem;
}

.skatboet-calendar__legend span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.skatboet-calendar__swatch {
	display: inline-block;
	width: 0.75rem;
	height: 0.75rem;
	border: 1px solid var(--skatboet-booking-line);
	border-radius: 50%;
}

.skatboet-calendar__swatch--available {
	background: #fff;
}

.skatboet-calendar__swatch--booked {
	background: #e7e9e7;
}

.skatboet-booking-form {
	padding: 1.5rem;
}

.skatboet-booking-form__fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.skatboet-booking-form__fieldset + .skatboet-booking-form__fieldset {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--skatboet-booking-line);
}

.skatboet-booking-form__fieldset legend {
	margin-bottom: 1rem;
	font-family: Georgia, serif;
	font-size: 1.35rem;
	font-weight: 700;
}

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

.skatboet-booking-form__field--full {
	grid-column: 1 / -1;
}

.skatboet-booking-form__field label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.88rem;
	font-weight: 700;
}

.skatboet-booking-form input:not([type="checkbox"]),
.skatboet-booking-form select,
.skatboet-booking-form textarea {
	width: 100%;
	border: 1px solid #93a69c;
	border-radius: 4px;
	background: #fff;
	color: var(--skatboet-booking-ink);
	font: inherit;
	line-height: 1.35;
}

.skatboet-booking-form input:not([type="checkbox"]),
.skatboet-booking-form select {
	min-height: 2.8rem;
	padding: 0.6rem 0.7rem;
}

.skatboet-booking-form textarea {
	padding: 0.7rem;
	resize: vertical;
}

.skatboet-booking-form input:focus,
.skatboet-booking-form select:focus,
.skatboet-booking-form textarea:focus,
.skatboet-calendar__nav:focus-visible,
.skatboet-calendar__day:focus-visible,
.skatboet-booking-form__submit:focus-visible {
	outline: 3px solid var(--skatboet-booking-ochre);
	outline-offset: 2px;
}

.skatboet-booking-form__help,
.skatboet-booking-form__payment-note {
	margin: 0.45rem 0 0;
	color: #526259;
	font-size: 0.82rem;
}

.skatboet-booking-price {
	margin: 1.5rem 0 2rem;
	padding: 1.25rem;
	border-left: 4px solid var(--skatboet-booking-ochre);
	background: var(--skatboet-booking-mist);
}

.skatboet-booking-price strong {
	display: block;
	margin-bottom: 0.35rem;
	font-family: Georgia, serif;
	font-size: 1.25rem;
}

.skatboet-booking-price p {
	margin: 0;
}

.skatboet-booking-price__detail {
	margin-top: 0.4rem !important;
	color: #526259;
	font-size: 0.86rem;
}

.skatboet-booking-price.is-error {
	border-left-color: #a34034;
	background: #f9e9e6;
}

.skatboet-booking-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-top: 1.25rem;
	line-height: 1.45;
}

.skatboet-booking-form__checkbox input {
	flex: 0 0 auto;
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.18rem;
	accent-color: var(--skatboet-booking-forest);
}

.skatboet-booking-form__payment-note {
	margin-top: 1.5rem;
}

.skatboet-booking-form__submit {
	width: 100%;
	min-height: 3rem;
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--skatboet-booking-forest);
	border-radius: 4px;
	background: var(--skatboet-booking-forest);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
}

.skatboet-booking-form__submit:hover {
	background: var(--skatboet-booking-ink);
	border-color: var(--skatboet-booking-ink);
}

.skatboet-booking__notice {
	margin-bottom: 1.5rem;
	padding: 1rem 1.15rem;
	border-left: 4px solid;
}

.skatboet-booking__notice--success {
	border-left-color: var(--skatboet-booking-forest);
	background: #e7f0e8;
}

.skatboet-booking__notice--error {
	border-left-color: #a34034;
	background: #f9e9e6;
}

.skatboet-booking__trap {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 850px) {
	.skatboet-booking__layout {
		grid-template-columns: 1fr;
	}

	.skatboet-booking__availability {
		position: static;
	}
}

@media (max-width: 520px) {
	.skatboet-booking-form {
		padding: 1.1rem;
	}

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

	.skatboet-booking-form__field--full {
		grid-column: auto;
	}
}