.htv-searchform,
.htv-results,
.htv-properties,
.htv-card,
.htv-highlights,
.htv-gallery,
.htv-feedbacks {
	font-family: inherit;
	color: var(--htv-color-text, #333);
	box-sizing: border-box;
}

.htv-searchform *,
.htv-results *,
.htv-card * { box-sizing: border-box; }

[class^="htv-"],
[class*=" htv-"] {
	font-family: "Roboto Slab", Georgia, serif;
}

.htv-single__title,
.htv-single__type,
.htv-single__section > h2,
.htv-card__title {
	font-family: "Lobster Two", cursive;
	font-weight: 700;
}

.htv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4em;
	padding: .7em 1.4em;
	border: 1px solid transparent;
	border-radius: var(--htv-radius, 5px);
	font-size: var(--htv-font-medium, 16px);
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: filter .15s ease, background .15s ease;
}
.htv-btn--primary {
	background: var(--htv-color-brand, #2c5572);
	color: var(--htv-color-brand-text, #fff);
}
.htv-btn--primary:hover { filter: brightness(1.08); color: var(--htv-color-brand-text, #fff); }
.htv-btn--ghost {
	background: transparent;
	border-color: var(--htv-color-brand, #2c5572);
	color: var(--htv-color-brand, #2c5572);
}
.htv-btn--ghost:hover { background: var(--htv-color-brand, #2c5572); color: var(--htv-color-brand-text, #fff); }

.htv-searchform {
	background: var(--htv-color-form, #fff);
	border: 1px solid var(--htv-color-border, #ddd);
	border-radius: var(--htv-radius, 5px);
	padding: 1rem 1.25rem;
	box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.htv-searchform__row {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	align-items: end;
}
.htv-field { display: flex; flex-direction: column; gap: .3rem; flex: 1 1 160px; min-width: 140px; }
.htv-field__label { font-size: var(--htv-font-small, 14px); font-weight: 600; opacity: .85; }
.htv-input {
	width: 100%;
	padding: .6em .7em;
	border: 1px solid var(--htv-color-border, #ccc);
	border-radius: var(--htv-radius, 5px);
	font-size: var(--htv-font-medium, 16px);
	background: #fff;
	color: inherit;
}
.htv-input:focus { outline: 2px solid var(--htv-color-brand, #2c5572); outline-offset: 1px; }
.htv-searchform__row .htv-btn { flex: 0 0 auto; height: calc(.6em * 2 + 1.2em + 2px); }
.htv-searchform__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--htv-color-border, #eee);
	align-items: end;
}
.htv-checkboxes { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.htv-checkbox { display: inline-flex; align-items: center; gap: .35rem; font-size: var(--htv-font-small, 14px); cursor: pointer; }

.htv-results__count { font-size: var(--htv-font-medium, 16px); margin: 1.25rem 0; }
.htv-results__empty { padding: 2rem; text-align: center; background: var(--htv-color-box, #f4f4f4); border-radius: var(--htv-radius, 5px); }
.htv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}
.htv-results__more { text-align: center; margin: 2rem 0; }

.htv-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--htv-color-border, #e6e6e6);
	border-radius: var(--htv-radius, 5px);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}
.htv-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.htv-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.htv-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.htv-card:hover .htv-card__img { transform: scale(1.05); }
.htv-card__type {
	position: absolute; top: .6rem; left: .6rem;
	background: var(--htv-color-brand, #2c5572); color: var(--htv-color-brand-text, #fff);
	font-size: 12px; font-weight: 600; padding: .25em .6em; border-radius: 999px;
}
.htv-card__body { display: flex; flex-direction: column; gap: .5rem; padding: .9rem 1rem 1rem; flex: 1; }
.htv-card__head { display: flex; justify-content: space-between; align-items: start; gap: .5rem; }
.htv-card__title { font-size: var(--htv-font-big, 19px); margin: 0; line-height: 1.25; }
.htv-card__title a { color: inherit; text-decoration: none; }
.htv-card__rating { font-size: var(--htv-font-small, 14px); color: #f5a623; white-space: nowrap; font-weight: 600; }
.htv-card__rating small { color: var(--htv-color-text, #888); font-weight: 400; }
.htv-card__location { font-size: var(--htv-font-small, 14px); margin: 0; opacity: .85; }
.htv-card__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem .9rem; font-size: var(--htv-font-small, 14px); opacity: .9; }
.htv-card__facts li { margin: 0; }
.htv-card__footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; padding-top: .6rem; }
.htv-card__price small { opacity: .75; font-size: 12px; }
.htv-card__price strong { font-size: var(--htv-font-big, 19px); color: var(--htv-color-brand, #2c5572); }

.htv-highlights { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; }
.htv-highlights__item { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--htv-font-medium, 16px); }

.htv-properties { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.htv-properties__title { font-size: var(--htv-font-medium, 16px); font-weight: 700; color: #1c1c1c; margin: 0 0 .7rem; }
.htv-properties__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.htv-properties__item { display: flex; align-items: center; gap: .5rem; font-size: var(--htv-font-small, 14px); }
.htv-properties__check { color: var(--htv-cal-available, #3aa967); font-weight: 700; }
.htv-properties__list--distances .htv-properties__item { justify-content: space-between; }
.htv-properties__dist-value { font-weight: 600; }

.htv-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: .5rem; }
.htv-gallery__item { overflow: hidden; border-radius: var(--htv-radius, 5px); }
.htv-gallery__item--lead { grid-column: span 2; grid-row: span 2; }
.htv-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.htv-gallery__item:hover img { transform: scale(1.06); }

.htv-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: flex; align-items: center; justify-content: center; z-index: 99999; padding: 2rem; }
.htv-lightbox img { max-width: 95%; max-height: 90%; object-fit: contain; border-radius: 4px; }
.htv-lightbox__close, .htv-lightbox__nav { position: absolute; background: rgba(255,255,255,.15); color: #fff; border: 0; font-size: 2rem; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; }
.htv-lightbox__close { top: 1rem; right: 1rem; }
.htv-lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.htv-lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

.htv-rating { display: inline-flex; align-items: center; gap: .4rem; }
.htv-rating__stars { color: #f5a623; letter-spacing: 1px; }
.htv-rating__value { font-weight: 700; }
.htv-rating__count { font-size: var(--htv-font-small, 14px); opacity: .8; }
.htv-feedbacks { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.htv-feedback { margin: 0; padding: 1rem 1.2rem; background: var(--htv-color-box, #f6f6f6); border-radius: var(--htv-radius, 5px); border-left: 3px solid var(--htv-color-brand, #2c5572); }
.htv-feedback__score { color: #f5a623; font-weight: 700; }
.htv-feedback__text { margin: .4rem 0; }
.htv-feedback__meta { display: flex; justify-content: space-between; font-size: var(--htv-font-small, 14px); opacity: .8; }

.htv-slider { overflow: hidden; }
.htv-slider__track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; -webkit-overflow-scrolling: touch; }
.htv-slider__slide { flex: 0 0 300px; scroll-snap-align: start; }

.htv-min-price small { opacity: .75; font-size: 12px; }
.htv-min-price strong { font-size: var(--htv-font-big, 19px); color: var(--htv-color-brand, #2c5572); }
.htv-placeholder { padding: .5rem .75rem; border: 1px dashed var(--htv-cal-blocked, #c83641); border-radius: 4px; color: var(--htv-cal-blocked, #c83641); font-size: 14px; }

@media (max-width: 600px) {
	.htv-gallery { grid-template-columns: repeat(2, 1fr); }
	.htv-searchform__row { flex-direction: column; align-items: stretch; }
}

.htv-single__inner { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }
.htv-single__title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 .5rem; }
.htv-single__meta { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; margin-bottom: 1.5rem; }
.htv-single__layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; margin-top: 2rem; align-items: start; }
.htv-single__section { margin-bottom: 2.5rem; }
.htv-single__section > h2 { font-size: var(--htv-font-big, 19px); margin: 0 0 1rem; }
.htv-single__sidebar { position: sticky; top: 1.5rem; }
.htv-single__booking { background: var(--htv-color-form, #fff); border: 1px solid var(--htv-color-border, #ddd); border-radius: var(--htv-radius, 5px); padding: 1.25rem; box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.htv-single__price { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--htv-color-border, #eee); }
@media (max-width: 900px) { .htv-single__layout { grid-template-columns: 1fr; } .htv-single__sidebar { position: static; } }

.htv-results { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.htv-searchform { margin: 0 auto; }
.htv-grid { gap: clamp(1rem, 2.5vw, 1.75rem); }

.htv-card__body { gap: .6rem; padding: 1rem 1.1rem 1.15rem; }
.htv-card__facts { gap: .4rem 1rem; }

.htv-gallery {
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: .6rem;
}
.htv-gallery__item { aspect-ratio: 4 / 3; }
.htv-gallery__item--lead { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.htv-single__inner { padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem); }
.htv-single__layout { gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.htv-single__section { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.htv-single__section > h2 {
	padding-bottom: .5rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid var(--htv-color-border, #e6e6e6);
}
.htv-properties { gap: 1.25rem 2rem; }
.htv-feedbacks { gap: 1.25rem; }

@media (max-width: 900px) {
	.htv-single__layout { grid-template-columns: 1fr; }
	.htv-single__sidebar { position: static; order: -1; margin-bottom: 1.5rem; }
	.htv-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
	.htv-searchform { padding: 1rem; }
	.htv-searchform__row { flex-direction: column; align-items: stretch; gap: .6rem; }
	.htv-searchform__row .htv-btn { width: 100%; height: auto; padding: .8em 1.4em; }
	.htv-searchform__filters { flex-direction: column; align-items: stretch; gap: .9rem; }
	.htv-field { min-width: 0; }
	.htv-daterange__inputs { flex-direction: column; gap: .6rem; }

	.htv-grid { grid-template-columns: 1fr; }
	.htv-card__media { aspect-ratio: 16 / 10; }

	.htv-gallery { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
	.htv-gallery__item--lead { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 10; }

	.htv-single__title { font-size: 1.5rem; }
	.htv-single__meta { gap: .5rem 1rem; }
	.htv-properties { grid-template-columns: 1fr; }
	.htv-feedbacks { grid-template-columns: 1fr; }
	.htv-highlights { gap: .6rem 1.1rem; }
	.htv-lightbox__nav { width: 2.6rem; height: 2.6rem; font-size: 1.6rem; }
}

@media (hover: none) {
	.htv-card:hover { transform: none; }
	.htv-btn, .htv-input, .htv-checkbox { -webkit-tap-highlight-color: transparent; }
}

.htv-field--daterange { position: relative; flex: 2 1 300px; }
.htv-daterange__inputs { display: flex; gap: .75rem; }
.htv-daterange__col { flex: 1; display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.htv-daterange__field { cursor: pointer; background: #fff; }
.is-open .htv-daterange__field { outline: 2px solid var(--htv-color-brand, #2c5572); outline-offset: 1px; }

.htv-dp {
	position: absolute;
	z-index: 9999;
	top: calc(100% + 8px);
	left: 0;
	background: var(--htv-color-form, #fff);
	border: 1px solid var(--htv-color-border, #ddd);
	border-radius: var(--htv-radius, 8px);
	box-shadow: 0 16px 48px rgba(0,0,0,.18);
	padding: 1rem;
	min-width: min(620px, 92vw);
}
.htv-dp__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.htv-dp__label { font-weight: 700; font-size: var(--htv-font-medium, 16px); }
.htv-dp__nav {
	-webkit-appearance: none; appearance: none;
	box-sizing: border-box; flex: 0 0 auto;
	width: 36px !important; height: 36px !important; padding: 0 !important; margin: 0 !important;
	border: 1px solid var(--htv-color-border, #ddd) !important;
	background: #fff !important; color: var(--htv-color-text, #333); border-radius: 50% !important; cursor: pointer;
	display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s;
}
.htv-dp__nav svg { display: block; }
.htv-dp__nav:hover:not(:disabled) { background: var(--htv-color-brand, #2c5572) !important; color: var(--htv-color-brand-text, #fff); }
.htv-dp__months { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.htv-dp { --htv-dp-range: color-mix(in srgb, var(--htv-color-brand, #2c5572) 12%, transparent); }
.htv-dp__dow, .htv-dp__days { display: grid; grid-template-columns: repeat(7, 1fr); }
.htv-dp__dow { gap: 0; margin-bottom: .4rem; border-bottom: 1px solid var(--htv-color-border, #eee); padding-bottom: .35rem; }
.htv-dp__dow span { text-align: center; font-size: 12px; font-weight: 600; opacity: .7; }
.htv-dp__days { gap: 0; }

.htv-dp__day {
	aspect-ratio: 1; border: 0; background: transparent; cursor: pointer; padding: 1px 0;
	display: flex; align-items: center; justify-content: center; position: relative;
}
.htv-dp__daynum {
	position: relative; z-index: 1;
	width: 86%; aspect-ratio: 1; max-width: 42px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%; font-size: 13px; color: var(--htv-color-text, #333);
	transition: background .12s ease, color .12s ease, box-shadow .12s ease;
}
.htv-dp__day:not(.is-disabled):hover .htv-dp__daynum { box-shadow: inset 0 0 0 1.5px var(--htv-color-brand, #2c5572); }

.htv-dp__day.is-in-range { background: var(--htv-dp-range); }
.htv-dp__day.is-range-start { background: linear-gradient(90deg, transparent 0 50%, var(--htv-dp-range) 50% 100%); }
.htv-dp__day.is-range-end { background: linear-gradient(90deg, var(--htv-dp-range) 0 50%, transparent 50% 100%); }
.htv-dp__day.is-preview.is-in-range,
.htv-dp__day.is-preview.is-range-start,
.htv-dp__day.is-preview.is-range-end { opacity: .85; }

.htv-dp__day.is-start .htv-dp__daynum,
.htv-dp__day.is-end .htv-dp__daynum {
	background: var(--htv-color-brand, #2c5572); color: var(--htv-color-brand-text, #fff); font-weight: 700; box-shadow: none;
}

.htv-dp__day--available:not(.is-start):not(.is-end) .htv-dp__daynum { background: color-mix(in srgb, var(--htv-cal-available, #3aa967) 16%, transparent); }
.htv-dp__day--unavailable .htv-dp__daynum { background: color-mix(in srgb, var(--htv-cal-blocked, #c83641) 16%, transparent); color: color-mix(in srgb, var(--htv-cal-blocked, #c83641) 80%, #000); }
.htv-dp__day--check-in .htv-dp__daynum { background: linear-gradient(135deg, var(--htv-cal-blocked, #c83641) 0 50%, color-mix(in srgb, var(--htv-cal-available,#3aa967) 35%, #fff) 50% 100%); }
.htv-dp__day--check-out .htv-dp__daynum { background: linear-gradient(135deg, color-mix(in srgb, var(--htv-cal-available,#3aa967) 35%, #fff) 0 50%, var(--htv-cal-blocked, #c83641) 50% 100%); }

.htv-dp__day.is-disabled { cursor: not-allowed; }
.htv-dp__day.is-disabled .htv-dp__daynum { color: #cfcfcf; text-decoration: line-through; }
.htv-dp__nav:disabled { opacity: .3; cursor: not-allowed; }

.htv-dp-backdrop { display: none; }

@media (max-width: 720px) {
	.htv-dp {
		position: fixed;
		left: 8px; right: 8px; top: 50%;
		transform: translateY(-50%);
		min-width: 0; width: auto;
		max-height: 88vh; overflow-y: auto;
		padding: 1rem; z-index: 100000;
	}
	.htv-dp__months { grid-template-columns: 1fr; gap: 1rem; }
	.htv-dp-backdrop.is-visible {
		display: block; position: fixed; inset: 0;
		background: rgba(0,0,0,.45); z-index: 99999;
		animation: htv-fade .15s ease;
	}
}
@keyframes htv-fade { from { opacity: 0; } to { opacity: 1; } }

.htv-single__inner { max-width: 1500px; }
.htv-single__header { margin-bottom: 1rem; }
.htv-single__title { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 .35rem; line-height: 1.2; }
.htv-single__subline { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #555); }
.htv-single__subline .htv-single__rating { font-weight: 600; color: #1c1c1c; }
.htv-single__sep { opacity: .5; }
.htv-single__loc { text-decoration: underline; }

.htv-hero {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 8px;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 2rem;
}
.htv-hero__item { position: relative; overflow: hidden; cursor: pointer; display: block; }
.htv-hero__item--lead { grid-column: 1 / 3; grid-row: 1 / 3; }
.htv-hero__item--extra { display: none; }
.htv-hero__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter .2s, transform .4s; }
.htv-hero__item:hover img { filter: brightness(.92); }
.htv-hero__more {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	background: rgba(0,0,0,.35); color: #fff; font-size: 1.4rem; font-weight: 700;
}
.htv-hero__hidden { display: none; }
.htv-hero__all {
	position: absolute; right: 14px; bottom: 14px;
	display: inline-flex; align-items: center; gap: .45rem;
	background: #fff; color: #1c1c1c; border: 1px solid #1c1c1c;
	border-radius: 8px; padding: .5em .9em; font-size: 14px; font-weight: 600; cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.htv-hero__all:hover { background: #f5f5f5; }

.htv-single__layout { grid-template-columns: 1fr 380px; }
.htv-single__section--facts { padding-bottom: 1.5rem; border-bottom: 1px solid var(--htv-color-border, #eee); }
.htv-single__type { font-size: var(--htv-font-big, 19px); margin: 0 0 1rem; }

.htv-bookcard {
	background: #fff; border: 1px solid var(--htv-color-border, #e0e0e0);
	border-radius: 16px; padding: 1.5rem; box-shadow: 0 6px 28px rgba(0,0,0,.12);
}
.htv-bookcard__head { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: 1.15rem; flex-wrap: wrap; }
.htv-bookcard__price { color: var(--htv-color-text, #666); }
.htv-bookcard__price strong { font-size: 1.55rem; color: #1c1c1c; }
.htv-bookcard__rating { font-size: var(--htv-font-small, 14px); font-weight: 600; white-space: nowrap; color: #1c1c1c; }
.htv-bookcard__rating small { font-weight: 400; color: var(--htv-color-text, #777); }

.htv-bookcard__box { border: 1px solid var(--htv-color-border, #b0b0b0); border-radius: 12px; }
.htv-bookcard__dates { display: grid; grid-template-columns: 1fr 1fr; position: relative; border-bottom: 1px solid var(--htv-color-border, #ddd); }
.htv-bookcard__dates .htv-bookcard__cell:first-child { border-right: 1px solid var(--htv-color-border, #ddd); }
.htv-bookcard__cell { display: flex; flex-direction: column; gap: .1rem; padding: .6rem .9rem; cursor: pointer; transition: background .12s ease; }
.htv-bookcard__cell:first-child { border-top-left-radius: 12px; }
.htv-bookcard__cell:hover, .htv-bookcard__gtoggle:hover { background: var(--htv-color-box, #f6f8f9); }
.htv-bookcard__cell-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #1c1c1c; }
.htv-bookcard__cell-input { border: 0; padding: 0; font-size: var(--htv-font-medium, 15px); background: transparent; width: 100%; color: #1c1c1c; cursor: pointer; }
.htv-bookcard__cell-input:focus { outline: none; }
.htv-bookcard__cell-input::placeholder { color: #8a8a8a; }

.htv-bookcard__gcell { position: relative; }
.htv-bookcard__gtoggle {
	-webkit-appearance: none; appearance: none;
	display: flex; flex-direction: column; gap: .1rem; width: 100%; text-align: left;
	padding: .6rem .9rem; background: transparent; border: 0; cursor: pointer;
	border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
}
.htv-bookcard__gsummary { font-size: var(--htv-font-medium, 15px); color: #1c1c1c; }
.htv-bookcard__gcell .htv-guestpop { top: calc(100% + 8px); left: 0; right: 0; min-width: 0; }

.htv-bookcard__cta { width: 100%; margin-top: 1rem; padding: .95em 1.4em; font-size: 1.05rem; border-radius: 10px; }
.htv-bookcard__note { text-align: center; font-size: 13px; color: var(--htv-color-text, #888); margin: .85rem 0 0; }

@media (max-width: 900px) {
	.htv-single__layout { grid-template-columns: 1fr; }
	.htv-single__sidebar { position: static; order: 2; margin: 0; }
}
@media (max-width: 720px) {
	.htv-hero {
		display: flex;
		grid-template-columns: none;
		grid-template-rows: none;
		aspect-ratio: 4 / 3;
		border-radius: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 0;
		scrollbar-width: none;
	}
	.htv-hero::-webkit-scrollbar { display: none; }
	.htv-hero__item,
	.htv-hero__item--lead,
	.htv-hero__item--extra {
		display: block;
		flex: 0 0 100%;
		width: 100%;
		grid-column: auto;
		grid-row: auto;
		aspect-ratio: auto;
		scroll-snap-align: center;
	}
	.htv-hero__more { display: none; }
	.htv-hero__all { display: none; }

	.htv-hero__counter {
		position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
		z-index: 3; background: rgba(0,0,0,.6); color: #fff;
		font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px;
		pointer-events: none;
	}
}
.htv-hero__counter { display: none; }
@media (max-width: 720px) { .htv-hero__counter { display: block; } }

.htv-reviews__header { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.5rem; }
.htv-reviews__score { font-size: 1.5rem; font-weight: 700; color: #1c1c1c; }
.htv-reviews__count { font-size: var(--htv-font-medium, 16px); color: var(--htv-color-text, #555); }

.htv-reviews__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 1.25rem;
}
.htv-review {
	margin: 0; display: flex; flex-direction: column; gap: .7rem;
	background: #fff; border: 1px solid var(--htv-color-border, #ebebeb); border-radius: 16px;
	padding: 1.4rem 1.5rem;
	transition: box-shadow .15s ease;
}
.htv-review:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.htv-review--hidden { display: none; }
.htv-review__head { display: flex; align-items: center; gap: .8rem; }
.htv-review__avatar {
	flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--htv-color-brand, #2c5572); color: var(--htv-color-brand-text, #fff);
	font-weight: 700; font-size: 1.2rem;
}
.htv-review__who { display: flex; flex-direction: column; line-height: 1.3; }
.htv-review__name { font-weight: 600; color: #1c1c1c; font-size: var(--htv-font-medium, 16px); }
.htv-review__sub { font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #777); }
.htv-review__stars { color: #f5a623; letter-spacing: 2px; font-size: 14px; }
.htv-review__star-empty { color: #dcdcdc; }
.htv-review__text {
	margin: 0; padding: 0; border: 0; font-style: normal; quotes: none;
	font-size: var(--htv-font-medium, 16px); line-height: 1.65; color: #222;
}
.htv-review__text::before, .htv-review__text::after { content: none; }
.htv-review__stay { margin: 0; font-size: 13px; color: var(--htv-color-text, #999); }
.htv-reviews__toggle { margin-top: 1.75rem; }

@media (max-width: 600px) {
	.htv-reviews__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.htv-lightbox__close,
.htv-lightbox__nav {
	-webkit-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 3rem;
	height: 3rem;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: background .15s ease;
	backdrop-filter: blur(4px);
}
.htv-lightbox__close:hover,
.htv-lightbox__nav:hover { background: rgba(255, 255, 255, .32); }
.htv-lightbox__close:focus,
.htv-lightbox__nav:focus { outline: 2px solid rgba(255,255,255,.6); outline-offset: 2px; }
.htv-lightbox__close svg,
.htv-lightbox__nav svg { display: block; }

.htv-lightbox__stage { position: relative; display: flex; align-items: center; justify-content: center; max-width: 95%; max-height: 90%; }
.htv-lightbox__counter {
	position: absolute; bottom: -2.2rem; left: 50%; transform: translateX(-50%);
	color: #fff; font-size: 14px; letter-spacing: .04em; opacity: .85;
}

.htv-reviews__categories {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: .6rem 2rem; margin: 0 0 1.75rem;
}
.htv-catrating { display: grid; grid-template-columns: 1fr 90px auto; align-items: center; gap: .75rem; }
.htv-catrating__label { font-size: var(--htv-font-small, 14px); }
.htv-catrating__bar { height: 6px; background: var(--htv-color-box, #eee); border-radius: 999px; overflow: hidden; }
.htv-catrating__bar span { display: block; height: 100%; background: var(--htv-color-brand, #2c5572); border-radius: 999px; }
.htv-catrating__value { font-size: var(--htv-font-small, 14px); font-weight: 700; min-width: 2.2em; text-align: right; }

.htv-location { display: grid; gap: 1.25rem; }
.htv-location__map { width: 100%; height: 380px; border-radius: 14px; overflow: hidden; z-index: 0; }
.htv-location__map .htv-map__pin { background: none; border: 0; filter: drop-shadow(0 3px 4px rgba(0,0,0,.35)); }
.htv-location__distances {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .5rem 1.5rem;
}
.htv-location__dist { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid var(--htv-color-border, #eee); font-size: var(--htv-font-small, 14px); }
.htv-location__dist-value { font-weight: 600; white-space: nowrap; }

.htv-pricelist { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: .75rem; }
.htv-priceitem {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: .9rem 1.1rem; border: 1px solid var(--htv-color-border, #e6e6e6); border-radius: 14px;
	background: #fff; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.htv-priceitem:hover { border-color: var(--htv-color-brand, #2c5572); box-shadow: 0 6px 18px rgba(0,0,0,.07); transform: translateY(-1px); }
.htv-priceitem__info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.htv-priceitem__season { font-weight: 700; color: #1c1c1c; }
.htv-priceitem__range { font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #777); }
.htv-priceitem__price { text-align: right; white-space: nowrap; line-height: 1.2; }
.htv-priceitem__price strong { display: block; font-size: 1.25rem; color: var(--htv-color-brand, #2c5572); }
.htv-priceitem__price small { font-size: 12px; color: var(--htv-color-text, #999); }

.htv-stepper { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.htv-stepper__label { font-size: var(--htv-font-medium, 15px); }
.htv-stepper__controls { display: flex; align-items: center; gap: .5rem; }
.htv-stepper__btn {
	-webkit-appearance: none !important; appearance: none !important;
	box-sizing: border-box !important; flex: 0 0 auto !important;
	width: 34px !important; height: 34px !important; min-width: 34px !important; padding: 0 !important; margin: 0 !important;
	border: 1px solid var(--htv-color-border, #ccc) !important; border-radius: 50% !important;
	background: #fff !important; color: var(--htv-color-brand, #2c5572) !important; font-size: 1.2rem; line-height: 1;
	cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .15s, background .15s;
}
.htv-stepper__btn:hover { border-color: var(--htv-color-brand, #2c5572) !important; background: var(--htv-color-box, #f2f6f8) !important; }
.htv-stepper__btn:disabled { opacity: .4; cursor: not-allowed; }
.htv-stepper__input { width: 2.5rem; text-align: center; border: 0; background: transparent; font-size: var(--htv-font-medium, 16px); color: inherit; -moz-appearance: textfield; }
.htv-stepper__input::-webkit-outer-spin-button, .htv-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.htv-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .55rem;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	transition: transform .18s ease;
}
.htv-card:hover { transform: none; box-shadow: none; }

.htv-card__link { position: absolute; inset: 0; z-index: 1; }
.htv-card__link::after { content: ""; position: absolute; inset: 0; }

.htv-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 14px;
	overflow: hidden;
	background: var(--htv-color-box, #eee);
}
.htv-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.htv-card:hover .htv-card__img { transform: scale(1.05); }

.htv-card__badge {
	position: absolute; top: .7rem; left: .7rem; z-index: 2;
	background: rgba(255,255,255,.92); color: #1c1c1c;
	font-size: 12px; font-weight: 600; padding: .3em .7em; border-radius: 999px;
	box-shadow: 0 1px 4px rgba(0,0,0,.12); backdrop-filter: blur(3px);
}

.htv-card__body { display: flex; flex-direction: column; gap: .15rem; padding: 0; }
.htv-card__row { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.htv-card__title {
	font-size: var(--htv-font-medium, 16px); font-weight: 600; color: #1c1c1c; margin: 0;
	line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.htv-card__rating { font-size: var(--htv-font-small, 14px); font-weight: 600; color: #1c1c1c; white-space: nowrap; }
.htv-card__location { margin: 0; font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #717171); }
.htv-card__facts { margin: 0; font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #717171); }
.htv-card__price { margin: .35rem 0 0; font-size: var(--htv-font-medium, 16px); color: #1c1c1c; }
.htv-card__price strong { font-size: 1.05rem; }

.htv-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.75rem 1.5rem; }

.htv-searchbar { font-family: inherit; color: var(--htv-color-text, #222); }
.htv-searchbar__pill {
	display: flex;
	align-items: stretch;
	background: #fff;
	border: 1px solid var(--htv-color-border, #ddd);
	border-radius: 999px;
	box-shadow: 0 3px 14px rgba(0,0,0,.10);
	padding: .35rem .35rem .35rem .5rem;
	max-width: 920px;
	margin: 0 auto;
}
.htv-searchbar__dates { display: flex; align-items: stretch; position: relative; }
.htv-searchbar__seg {
	display: flex; flex-direction: column; justify-content: center; gap: 2px;
	padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer; transition: background .15s ease;
	min-width: 0;
}
.htv-searchbar__seg:hover { background: var(--htv-color-box, #f2f4f6); }
.htv-searchbar__seg--dest { flex: 1.4 1 0; }
.htv-searchbar__seg--guests { flex: .8 1 0; }
.htv-searchbar__label { font-size: 12px; font-weight: 700; color: #1c1c1c; letter-spacing: .01em; }
.htv-searchbar__select,
.htv-searchbar__input {
	border: 0; background: transparent; padding: 0; margin: 0; width: 100%;
	font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #555);
	-webkit-appearance: none; appearance: none; cursor: pointer; line-height: 1.3;
	text-overflow: ellipsis;
}
.htv-searchbar__select:focus, .htv-searchbar__input:focus { outline: none; }
.htv-searchbar__input::placeholder { color: #9a9a9a; }
.htv-searchbar__divider { width: 1px; background: var(--htv-color-border, #e4e4e4); margin: .5rem 0; align-self: stretch; transition: opacity .15s ease; }
.htv-searchbar__seg:hover + .htv-searchbar__divider,
.htv-searchbar__divider:has( + .htv-searchbar__seg:hover ),
.htv-searchbar__divider:has( + .htv-searchbar__dates:hover ),
.htv-searchbar__dates:hover + .htv-searchbar__divider { opacity: 0; }

.htv-searchbar__submit {
	flex: 0 0 auto; display: inline-flex; align-items: center; gap: .5rem;
	margin-left: auto; align-self: center;
	background: var(--htv-color-brand, #2c5572); color: var(--htv-color-brand-text, #fff);
	border: 0; border-radius: 999px; cursor: pointer;
	height: 48px; padding: 0 1.25rem; font-size: var(--htv-font-medium, 16px); font-weight: 600;
	transition: filter .15s ease;
}
.htv-searchbar__submit:hover { filter: brightness(1.08); }
.htv-searchbar__submit svg { display: block; }

.htv-searchbar__filters { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; align-items: center; margin-top: 1.25rem; }

.htv-chip, .htv-chip-select {
	box-sizing: border-box;
	display: inline-flex; align-items: center; gap: .45rem;
	height: 42px; padding: 0 1rem; margin: 0;
	border: 1px solid var(--htv-color-border, #ddd) !important; border-radius: 999px !important;
	background: #fff !important; cursor: pointer;
	font-size: var(--htv-font-small, 14px); line-height: 1; color: #1c1c1c;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
	-webkit-tap-highlight-color: transparent;
}
.htv-chip:hover, .htv-chip-select:hover { border-color: #1c1c1c !important; box-shadow: 0 1px 4px rgba(0,0,0,.08); }

.htv-chip-select { position: relative; padding-right: 2.2rem; }
.htv-chip-select > span { font-weight: 600; color: var(--htv-color-text, #555); }
.htv-chip-select select {
	-webkit-appearance: none !important; appearance: none !important;
	border: 0 !important; background: transparent !important; box-shadow: none !important; outline: none !important;
	padding: 0 !important; margin: 0 !important; height: auto !important;
	font-size: var(--htv-font-small, 14px); font-weight: 600; color: #1c1c1c; cursor: pointer;
}
.htv-chip-select::after {
	content: ""; position: absolute; right: 1rem; top: 50%; width: 8px; height: 8px;
	border-right: 2px solid var(--htv-color-text, #777); border-bottom: 2px solid var(--htv-color-text, #777);
	transform: translateY(-65%) rotate(45deg); pointer-events: none;
}

.htv-chip { user-select: none; }
.htv-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.htv-chip:has( input:checked ) {
	background: var(--htv-color-brand, #2c5572) !important;
	border-color: var(--htv-color-brand, #2c5572) !important;
	color: var(--htv-color-brand-text, #fff);
	font-weight: 600;
}
.htv-chip:has( input:focus-visible ) { box-shadow: 0 0 0 3px color-mix(in srgb, var(--htv-color-brand, #2c5572) 30%, transparent); }
@supports not (selector(:has(*))) {
	.htv-chip input { position: static; opacity: 1; width: auto; height: auto; accent-color: var(--htv-color-brand, #2c5572); }
}

@media (max-width: 720px) {
	.htv-searchbar__pill { flex-direction: column; align-items: stretch; border-radius: 20px; padding: .5rem; gap: .25rem; }
	.htv-searchbar__dates { flex-direction: column; }
	.htv-searchbar__seg { border-radius: 14px; padding: .7rem 1rem; }
	.htv-searchbar__divider { width: auto; height: 1px; margin: 0 1rem; }
	.htv-searchbar__submit { width: 100%; justify-content: center; height: 52px; margin: .3rem 0 0; }
}

.htv-searchbar .htv-searchbar__input,
.htv-searchbar .htv-searchbar__select {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	height: auto !important;
	min-height: 0 !important;
	color: var(--htv-color-text, #555) !important;
}
.htv-searchbar .htv-searchbar__input:focus,
.htv-searchbar .htv-searchbar__select:focus { box-shadow: none !important; outline: none !important; }

.htv-searchbar__seg--guests { position: relative; }
.htv-searchbar__guestbtn {
	-webkit-appearance: none; appearance: none;
	border: 0 !important; background: transparent !important; box-shadow: none !important;
	padding: 0 !important; margin: 0 !important; text-align: left; cursor: pointer;
	font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #555); line-height: 1.3;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%;
}
.htv-guestpop {
	position: absolute; z-index: 9999; top: calc(100% + 14px); right: 0;
	background: #fff; border: 1px solid var(--htv-color-border, #ddd); border-radius: 16px;
	box-shadow: 0 16px 48px rgba(0,0,0,.18); padding: .5rem 1.1rem; min-width: 300px;
}
.htv-guestpop__row {
	display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	padding: .9rem 0; border-bottom: 1px solid var(--htv-color-border, #eee);
}
.htv-guestpop__row:last-child { border-bottom: 0; }
.htv-guestpop__text { display: flex; flex-direction: column; }
.htv-guestpop__text strong { font-size: var(--htv-font-medium, 15px); color: #1c1c1c; font-weight: 600; }
.htv-guestpop__text small { font-size: 13px; color: var(--htv-color-text, #777); }

@media (max-width: 720px) {
	.htv-guestpop { right: auto; left: 0; min-width: 0; width: 100%; }
}

.htv-stepper__input, .htv-guestpop .htv-stepper__input {
	border: 0 !important; background: transparent !important; box-shadow: none !important;
	outline: none !important; border-radius: 0 !important; text-align: center;
	width: 2.2rem !important; padding: 0 !important; -moz-appearance: textfield;
}
.htv-stepper__input::-webkit-outer-spin-button, .htv-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.htv-stickybar { display: none; }
@media (max-width: 900px) {
	.htv-stickybar {
		display: flex; align-items: center; justify-content: space-between; gap: 1rem;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998;
		background: #fff; border-top: 1px solid var(--htv-color-border, #e0e0e0);
		padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
		box-shadow: 0 -4px 20px rgba(0,0,0,.12);
	}
	.htv-stickybar__info { display: flex; flex-direction: column; line-height: 1.25; }
	.htv-stickybar__price strong { font-size: 1.15rem; color: #1c1c1c; }
	.htv-stickybar__price { color: var(--htv-color-text, #555); font-size: var(--htv-font-small, 14px); }
	.htv-stickybar__rating { font-size: 13px; font-weight: 600; color: #1c1c1c; }
	.htv-stickybar__cta { flex: 0 0 auto; }
	.htv-single { padding-bottom: 84px; }
}

.htv-resultspage__inner { max-width: 1500px; margin: 0 auto; padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem); }
.htv-resultspage__intro { margin-bottom: 1.5rem; }
.htv-resultspage__intro > h1:first-child { margin-top: 0; }

.htv-searchbar .htv-searchbar__select,
.htv-searchbar .htv-searchbar__input,
.htv-searchbar .htv-searchbar__guestbtn { color: #1c1c1c !important; font-weight: 500; }
.htv-searchbar .htv-searchbar__input::placeholder { color: #6b6b6b !important; opacity: 1; }

.htv-searchbar__seg, .htv-searchbar__seg * { cursor: pointer; }
.htv-searchbar__seg:hover { background: #f0f3f6; }
.htv-searchbar__seg:hover .htv-searchbar__label { color: #1c1c1c; }
.htv-searchbar__seg:hover .htv-searchbar__select,
.htv-searchbar__seg:hover .htv-searchbar__input,
.htv-searchbar__seg:hover .htv-searchbar__guestbtn { color: #1c1c1c !important; }
.htv-searchbar__seg:hover .htv-searchbar__input::placeholder { color: #5a5a5a !important; }

.htv-card { height: 100%; }
.htv-card__body { flex: 1 1 auto; }
.htv-card__price { margin-top: auto; padding-top: .4rem; }

.htv-tours { display: grid; gap: 1.5rem; }
.htv-tour { margin: 0; }
.htv-tour__embed { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: var(--htv-color-box, #eee); }
.htv-tour__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.htv-tour__pano { width: 100%; height: 440px; border-radius: 14px; overflow: hidden; background: #111; }
.htv-videos { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.htv-tour__video { border-radius: 14px; overflow: hidden; background: #111; }
.htv-tour__video video { display: block; width: 100%; height: auto; max-height: 80vh; background: #000; }
.htv-tour__title { margin: .5rem 0 0; font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #777); }
@media (max-width: 600px) { .htv-tour__pano { height: 300px; } }

.htv-hero__media {
	position: absolute; left: 14px; bottom: 14px; z-index: 3;
	display: flex; flex-wrap: wrap; gap: .5rem;
}
.htv-hero__tour {
	display: inline-flex; align-items: center; gap: .45rem;
	background: #fff; color: #1c1c1c; border: 1px solid #1c1c1c;
	border-radius: 8px; padding: .5em .9em; font-size: 14px; font-weight: 600; cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.htv-hero__tour:hover,
.htv-hero__tour:focus { background: #f5f5f5; color: #1c1c1c; }
.htv-hero__mediadata { display: none; }

.htv-tourmodal { position: fixed; inset: 0; z-index: 100000; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; padding: 2.5rem 1rem; }
.htv-tourmodal__body { width: min(1200px, 96vw); }
.htv-tourmodal .htv-tours { gap: 1rem; }
.htv-tourmodal .htv-tour__embed { aspect-ratio: 16 / 9; max-height: 86vh; border-radius: 10px; }
.htv-tourmodal .htv-tour__pano { height: min(80vh, 640px); border-radius: 10px; }
.htv-tourmodal .htv-videos { gap: 1rem; margin-top: 1rem; }
.htv-tourmodal .htv-tour__video video { max-height: 82vh; border-radius: 10px; }
.htv-tourmodal .htv-tour__title { color: #eee; text-align: center; }
.htv-tourmodal__close { position: absolute; top: 1rem; right: 1rem; width: 3rem; height: 3rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.htv-tourmodal__close:hover { background: rgba(255,255,255,.3); }
@media (max-width: 600px) { .htv-hero__media { left: 10px; bottom: 10px; } .htv-hero__tour { padding: .45em .7em; font-size: 13px; } }

.htv-single, .htv-resultspage { flex: 1 1 100%; width: 100%; max-width: 100%; margin: 0 auto; }
.htv-single__inner, .htv-resultspage__inner { margin-left: auto; margin-right: auto; }

.htv-bookcard .htv-bookcard__cell-input {
	border: 0 !important; background: transparent !important; box-shadow: none !important;
	outline: none !important; border-radius: 0 !important; padding: 0 !important;
	height: auto !important; min-height: 0 !important;
}
.htv-bookcard .htv-bookcard__cell-input:focus { box-shadow: none !important; outline: none !important; }

@media (min-width: 721px) {
	.htv-bookcard .htv-dp { left: auto; right: 0; }
}

.htv-bookcard__gtoggle,
.htv-bookcard__gtoggle:hover,
.htv-bookcard__gtoggle:focus,
.htv-bookcard__gtoggle:active {
	background: transparent !important;
	color: #1c1c1c !important;
	box-shadow: none !important;
	outline: none !important;
	border: 0 !important;
}
.htv-bookcard__gtoggle:hover { background: var(--htv-color-box, #f6f8f9) !important; }
.htv-bookcard__gcell.is-open .htv-bookcard__gtoggle { background: var(--htv-color-box, #f6f8f9) !important; }

.htv-bookcard__result:empty { display: none; }
.htv-quote { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--htv-color-border, #eee); font-size: var(--htv-font-small, 14px); }
.htv-quote__loading { color: var(--htv-color-text, #777); text-align: center; padding: .5rem 0; }
.htv-quote__error { color: var(--htv-cal-blocked, #c83641); margin: .25rem 0; }
.htv-quote__lines { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.htv-quote__line { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.htv-quote__name { color: #1c1c1c; }
.htv-quote__name small { color: var(--htv-color-text, #888); }
.htv-quote__val { white-space: nowrap; }
.htv-quote__val s { color: var(--htv-color-text, #aaa); margin-right: .35rem; }
.htv-quote__badge { display: inline-block; margin-left: .35rem; padding: 1px 7px; border-radius: 999px; font-size: 11px; font-weight: 600; background: color-mix(in srgb, var(--htv-cal-available, #3aa967) 16%, transparent); color: color-mix(in srgb, var(--htv-cal-available, #3aa967) 80%, #000); }
.htv-quote__savings { color: var(--htv-cal-available, #3aa967); font-weight: 600; margin: .5rem 0 0; }
.htv-quote__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--htv-color-border, #eee); font-size: var(--htv-font-medium, 16px); }
.htv-quote__total strong { font-size: 1.25rem; color: #1c1c1c; }
.htv-quote__schedule { margin-top: .7rem; display: flex; flex-direction: column; gap: .3rem; color: var(--htv-color-text, #555); }
.htv-quote__schedule > div { display: flex; justify-content: space-between; gap: 1rem; }
.htv-quote__onsite { margin-top: .8rem; padding-top: .7rem; border-top: 1px dashed var(--htv-color-border, #ddd); display: flex; flex-direction: column; gap: .3rem; color: var(--htv-color-text, #666); }
.htv-quote__onsite-title { font-weight: 600; color: #1c1c1c; }
.htv-quote__onsite > div { display: flex; justify-content: space-between; gap: 1rem; }
.htv-elementor-search__title { margin: 0 0 1rem; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.2; color: #1c1c1c; }
.htv-elementor-search .htv-searchform, .htv-elementor-search form { display: inline-block; width: 100%; text-align: left; }

.htv-quote__extras { margin-top: .8rem; padding-top: .7rem; border-top: 1px dashed var(--htv-color-border, #ddd); }
.htv-quote__extras-summary { display: flex; align-items: center; justify-content: space-between; gap: .8rem; cursor: pointer; list-style: none; padding: .2rem 0; user-select: none; }
.htv-quote__extras-summary::-webkit-details-marker { display: none; }
.htv-quote__extras-title { font-weight: 600; color: #1c1c1c; }
.htv-quote__extras-meta { display: inline-flex; align-items: center; gap: .5rem; color: var(--htv-color-text, #666); font-size: 13px; }
.htv-quote__extras.has-selection .htv-quote__extras-count { color: var(--htv-cal-available, #3aa967); font-weight: 600; }
.htv-quote__extras-chevron { transition: transform .18s ease; color: var(--htv-color-text, #888); flex: 0 0 auto; }
.htv-quote__extras[open] .htv-quote__extras-chevron { transform: rotate(180deg); }
.htv-quote__extras-list { display: flex; flex-direction: column; gap: .55rem; margin-top: .6rem; max-height: 240px; overflow-y: auto; padding-right: .2rem; -webkit-overflow-scrolling: touch; }
.htv-quote__extras--static { display: flex; flex-direction: column; gap: .5rem; }
.htv-quote__extra { display: flex; justify-content: space-between; align-items: center; gap: .8rem; }
.htv-quote__extra-name { display: flex; flex-direction: column; color: var(--htv-color-text, #444); line-height: 1.3; }
.htv-quote__extra-name small { color: var(--htv-color-text, #888); font-size: 12px; }
.htv-quote__extra--static { color: var(--htv-color-text, #555); }
.htv-stepper__controls--sm { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .35rem; }
.htv-stepper__controls--sm .htv-stepper__btn { width: 1.7rem; height: 1.7rem; border-radius: 50%; border: 1px solid var(--htv-color-border, #ccc); background: #fff; color: #1c1c1c; font-size: 16px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; padding: 0; }
.htv-stepper__controls--sm .htv-stepper__btn:hover { border-color: #1c1c1c; }
.htv-stepper__controls--sm .htv-stepper__input { width: 1.6rem; text-align: center; border: 0; background: transparent; font-size: 15px; color: #1c1c1c; -moz-appearance: textfield; padding: 0; }
.htv-stepper__controls--sm .htv-stepper__input::-webkit-outer-spin-button,
.htv-stepper__controls--sm .htv-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.htv-quote__actions { display: flex; flex-direction: column; gap: .55rem; margin-top: 1rem; }
.htv-quote__book { width: 100%; margin: 0; }
.htv-quote__book:disabled { opacity: .5; cursor: not-allowed; }
.htv-quote__hint { text-align: center; font-size: 12px; color: var(--htv-color-text, #999); margin: .5rem 0 0; }

.htv-quote__prompt { margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid var(--htv-color-border, #eee); font-size: var(--htv-font-small, 14px); color: var(--htv-color-text, #777); text-align: center; }

.htv-bookform-source { display: none; }
.htv-bookmodal { position: fixed; inset: 0; z-index: 100001; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; padding: 1.5rem; backdrop-filter: blur(2px); }
.htv-bookmodal__panel { position: relative; background: #fff; border-radius: 20px; width: min(940px, 100%); max-height: 92vh; overflow-y: auto; box-shadow: 0 24px 70px rgba(0,0,0,.32); }
.htv-bookmodal__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 2.6rem; height: 2.6rem; border: 0; border-radius: 50%; background: #fff; color: #1c1c1c !important; box-shadow: 0 1px 6px rgba(0,0,0,.15); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.htv-bookmodal__close span { display: block; font-size: 30px; line-height: 1; font-weight: 300; transform: translateY(-2px); }
.htv-bookmodal__close:hover { background: var(--htv-color-box, #f2f2f2); }
.htv-bookmodal__grid { display: grid; grid-template-columns: 1.5fr 1fr; }
.htv-bookmodal__main { padding: 2rem; }
.htv-bookmodal__title { margin: 0 0 1.5rem; font-size: 1.5rem; line-height: 1.2; }

.htv-bookform__row { display: grid; gap: 1rem; }
.htv-bookform__row--2 { grid-template-columns: 1fr 1fr; }
.htv-bookform__row--street { grid-template-columns: 1fr 90px; }
.htv-bookform__row--city { grid-template-columns: 110px 1fr 80px; }
.htv-bookform, .htv-bookform__row + .htv-bookform__field, .htv-bookform__field { margin-top: 1rem; }
.htv-bookform > .htv-bookform__row:first-child, .htv-bookform > .htv-bookform__field:first-of-type { margin-top: 0; }
.htv-bookform__field { display: flex; flex-direction: column; gap: .35rem; }
.htv-bookform__row .htv-bookform__field { margin-top: 0; }
.htv-bookform__field > span { font-size: 13px; font-weight: 600; color: #444; }
.htv-bookform__field input, .htv-bookform__field select, .htv-bookform__field textarea {
	width: 100%; padding: .75em .85em; border: 1px solid var(--htv-color-border, #ccc); border-radius: 10px;
	font-size: var(--htv-font-medium, 15px); background: #fff; color: #1c1c1c; box-sizing: border-box; font-family: inherit;
}
.htv-bookform__field input:focus, .htv-bookform__field select:focus, .htv-bookform__field textarea:focus { outline: none; border-color: var(--htv-color-brand, #2c5572); box-shadow: 0 0 0 3px color-mix(in srgb, var(--htv-color-brand, #2c5572) 18%, transparent); }
.htv-bookform__pets { margin: .3rem 0 1rem; padding: .9rem 1rem; border: 1px solid var(--htv-color-border, #e2e2e2); border-radius: 12px; background: var(--htv-color-box, #f7f9fa); }
.htv-bookform__pets-title { display: block; font-weight: 600; color: #1c1c1c; margin-bottom: .6rem; }
.htv-bookform__pets-hint { margin: .4rem 0 0; font-size: 12px; color: var(--htv-color-text, #888); }
.htv-bookform__terms { display: flex; align-items: flex-start; gap: .6rem; margin: 1.25rem 0; font-size: var(--htv-font-small, 14px); color: #444; cursor: pointer; }
.htv-bookform__terms input[type="checkbox"] {
	-webkit-appearance: none !important; appearance: none !important; flex: 0 0 22px;
	width: 22px !important; height: 22px !important; min-width: 22px; margin: 0 !important; padding: 0 !important;
	border: 2px solid var(--htv-color-border, #b3b3b3) !important; border-radius: 6px !important;
	background: #fff !important; box-shadow: none !important; cursor: pointer; position: relative;
	transition: background .12s ease, border-color .12s ease; box-sizing: border-box;
}
.htv-bookform__terms input[type="checkbox"]:hover { border-color: var(--htv-color-brand, #2c5572) !important; }
.htv-bookform__terms input[type="checkbox"]:checked { border-color: var(--htv-color-brand, #2c5572) !important; }
.htv-bookform__terms input[type="checkbox"]:checked::before {
	content: ""; position: absolute; inset: 0; background: var(--htv-color-brand, #2c5572); border-radius: 4px;
}
.htv-bookform__terms input[type="checkbox"]:checked::after {
	content: ""; position: absolute; left: 6px; top: 2px; width: 6px; height: 11px; z-index: 1;
	border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); box-sizing: border-box;
}
.htv-bookform__terms input[type="checkbox"]:focus-visible { outline: 2px solid var(--htv-color-brand, #2c5572); outline-offset: 2px; }
.htv-bookform__terms a { color: var(--htv-color-brand, #2c5572); text-decoration: underline; font-weight: 600; }
.htv-bookform__terms a:hover { text-decoration: none; }
.htv-bookform__submit:disabled { opacity: .5; cursor: not-allowed; }
.htv-bookform__submit { width: 100%; padding: 1em 1.4em; font-size: 1.05rem; border-radius: 12px; }
.htv-bookform__hint { text-align: center; font-size: 13px; color: var(--htv-color-text, #888); margin: .8rem 0 0; }
.htv-bookform__error { margin: 0 0 1rem; padding: .7rem 1rem; border-radius: 10px; background: color-mix(in srgb, var(--htv-cal-blocked, #c83641) 12%, #fff); color: var(--htv-cal-blocked, #c83641); }

.htv-bookmodal__aside { padding: 2rem; background: var(--htv-color-box, #f7f8f9); border-left: 1px solid var(--htv-color-border, #eee); border-radius: 0 20px 20px 0; }
.htv-bsummary { position: sticky; top: 0; }
.htv-bsummary__media { aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
.htv-bsummary__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.htv-bsummary__head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.htv-bsummary__title { font-weight: 700; color: #1c1c1c; font-size: var(--htv-font-medium, 16px); }
.htv-bsummary__rating { font-size: var(--htv-font-small, 14px); font-weight: 600; white-space: nowrap; }
.htv-bsummary__meta { margin: .35rem 0 1rem; color: var(--htv-color-text, #666); font-size: var(--htv-font-small, 14px); }
.htv-bsummary__price .htv-quote { margin-top: 0; padding-top: 1rem; border-top: 1px solid var(--htv-color-border, #e2e2e2); }

.htv-confirm { text-align: center; padding: 1.5rem 0; }
.htv-confirm__icon { color: var(--htv-cal-available, #3aa967); display: flex; justify-content: center; margin-bottom: .75rem; }
.htv-confirm__title { margin: 0 0 .5rem; font-size: 1.4rem; }
.htv-confirm__nr { margin: 0 0 .5rem; color: var(--htv-color-text, #555); }
.htv-confirm__text { margin: 0 auto 1.25rem; max-width: 46ch; color: #333; line-height: 1.6; }
.htv-confirm__schedule { max-width: 360px; margin: 0 auto; display: flex; flex-direction: column; gap: .35rem; text-align: left; }
.htv-confirm__schedule > div { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px solid var(--htv-color-border, #eee); font-size: var(--htv-font-small, 14px); }

@media (max-width: 720px) {
	.htv-bookmodal { padding: 0; align-items: stretch; }
	.htv-bookmodal__panel { border-radius: 0; width: 100%; max-height: 100vh; }
	.htv-bookmodal__grid { grid-template-columns: 1fr; }
	.htv-bookmodal__aside { order: -1; border-left: 0; border-bottom: 1px solid var(--htv-color-border, #eee); border-radius: 0; padding: 1.5rem; }
	.htv-bsummary__media { aspect-ratio: 16 / 7; margin-bottom: .85rem; }
	.htv-bookmodal__main { padding: 1.5rem; }
}
@media (max-width: 460px) {
	.htv-bookform__row--2, .htv-bookform__row--city { grid-template-columns: 1fr; }
}

.htv-bookform input,
.htv-bookform select,
.htv-bookform textarea {
	border-radius: 10px !important;
	border: 1px solid var(--htv-color-border, #ccc) !important;
	background: #fff !important;
	padding: .75em .85em !important;
	font-size: var(--htv-font-medium, 15px) !important;
	line-height: 1.3 !important;
	box-sizing: border-box !important;
	-webkit-appearance: none;
	appearance: none;
}
.htv-bookform textarea { min-height: 90px; }
.htv-bookform__field--title, .htv-bookform select { position: relative; }
.htv-bookform select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23777' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right .85em center !important;
	padding-right: 2.2em !important;
}
