/* ========================================================================== 
   DRIVELUX TOUR PROGRAM
   Clean modular stylesheet

   01. Variables and base reset
   02. Route navigation
   03. Tour stop layout
   04. Intro column
   05. Main image and gallery
   06. Experience choices
   07. Selected route panel
   08. Lightbox
   09. Tablet and mobile
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Variables and base reset
   -------------------------------------------------------------------------- */

.dl-tour-program {
	--dltp-background: #fffdfb;
	--dltp-surface: #ffffff;
	--dltp-surface-soft: #fbf7f1;
	--dltp-text: #1c2738;
	--dltp-heading: #090806;
	--dltp-muted: #697487;
	--dltp-gold: #bc8a47;
	--dltp-gold-dark: #94652e;
	--dltp-gold-soft: #ead8bf;
	--dltp-border: #ece6dd;
	--dltp-border-strong: #ded3c5;
	--dltp-shadow: 0 22px 65px rgba(22, 35, 54, 0.14);
	--dltp-radius: 5px;
	--dltp-max-width: 1320px;
	--dltp-title-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--dltp-body-font: inherit;

	position: relative;
	isolation: auto;
	width: 100%;
	background: var(--dltp-background);
	color: var(--dltp-text);
	font-family: var(--dltp-body-font);
}

.dl-tour-program *,
.dl-tour-program *::before,
.dl-tour-program *::after {
	box-sizing: border-box;
}

.dl-tour-program img {
	display: block;
	max-width: 100%;
}

.dl-tour-program a {
	-webkit-tap-highlight-color: transparent;
}

/*
 * Hard button reset.
 * Elementor and theme button rules often add a colored background, border,
 * padding and text color to every <button>. All component buttons are styled
 * again in their own modules below.
 */
.dl-tour-program button,
.elementor .dl-tour-program button {
	appearance: none !important;
	-webkit-appearance: none !important;
	width: auto;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0;
	outline: 0;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: inherit !important;
	font: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	text-align: inherit;
	text-decoration: none !important;
	text-transform: none !important;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.dl-tour-program [hidden] {
	display: none !important;
}

body.dltp-builder-active {
	padding-bottom: 0;
}

body.dltp-builder-active .dl-tour-program {
	padding-bottom: 130px;
}

body.dltp-lightbox-open {
	overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   02. Route navigation
   Clean journey rail: no oversized active pill, one continuous route line.
   -------------------------------------------------------------------------- */

.dl-tour-route {
	position: sticky;
	top: var(--dltp-sticky-offset, 0px);
	z-index: 30;
	width: 100%;
	padding: 15px max(24px, calc((100vw - var(--dltp-max-width)) / 2 + 38px));
	border-top: 1px solid var(--dltp-border);
	border-bottom: 1px solid var(--dltp-border);
	background: rgba(255, 253, 251, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.dl-tour-route__list {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: min(100%, 1080px);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.dl-tour-route__item {
	position: relative;
	display: flex;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	padding: 0;
}

/* Continuous connector between the centers of neighbouring route points. */
.dl-tour-route__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 8px;
	left: calc(50% + 13px);
	right: calc(-50% + 13px);
	height: 1px;
	background: var(--dltp-border-strong);
	pointer-events: none;
}

.dl-tour-route__item:not(:last-child):has(.dl-tour-route__link.is-active)::after {
	background: linear-gradient(90deg, var(--dltp-gold), var(--dltp-border-strong));
}

.dl-tour-program a.dl-tour-route__link {
	position: relative;
	z-index: 1;
	display: inline-flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: min(100%, 210px);
	min-width: 0;
	min-height: 48px;
	padding: 0 12px 5px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #686d76 !important;
	font-family: inherit;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	text-transform: none !important;
	transition: color 180ms ease;
}

.dl-tour-program a.dl-tour-route__link:hover,
.dl-tour-program a.dl-tour-route__link:focus-visible,
.dl-tour-program a.dl-tour-route__link.is-active {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--dltp-heading) !important;
}

.dl-tour-program a.dl-tour-route__link:focus-visible {
	outline: 1px solid var(--dltp-gold-soft);
	outline-offset: 6px;
	border-radius: 8px !important;
}

.dl-tour-route__dot {
	position: relative;
	z-index: 2;
	flex: 0 0 17px;
	width: 17px;
	height: 17px;
	border: 1px solid #8e8d86;
	border-radius: 50%;
	background: var(--dltp-background);
	box-shadow: 0 0 0 5px var(--dltp-background);
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		transform 180ms ease;
}

.dl-tour-route__link:hover .dl-tour-route__dot,
.dl-tour-route__link:focus-visible .dl-tour-route__dot {
	border-color: var(--dltp-gold);
	transform: scale(1.06);
}

.dl-tour-route__link.is-active .dl-tour-route__dot {
	border-color: var(--dltp-gold);
	background: var(--dltp-background);
}

.dl-tour-route__link.is-active .dl-tour-route__dot::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: inherit;
	background: var(--dltp-gold);
	box-shadow: 0 0 0 3px rgba(188, 138, 71, 0.11);
}

.dl-tour-route__title {
	position: relative;
	display: block;
	max-width: 100%;
	padding-bottom: 6px;
	font-size: 10.5px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.055em;
	text-transform: uppercase;
	white-space: normal;
}

.dl-tour-route__link.is-active .dl-tour-route__title {
	color: var(--dltp-heading);
}

.dl-tour-route__link.is-active .dl-tour-route__title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 28px;
	height: 1px;
	background: var(--dltp-gold);
	transform: translateX(-50%);
}

/* --------------------------------------------------------------------------
   03. Tour stop layout
   -------------------------------------------------------------------------- */

.dl-tour-program__stops {
	width: min(100%, var(--dltp-max-width));
	margin-inline: auto;
}

.dl-tour-stop {
	display: grid;
	grid-template-columns:
		minmax(235px, 270px)
		minmax(370px, 420px)
		minmax(400px, 0.9fr);
	grid-template-areas: "intro choices media";
	gap: clamp(30px, 2.7vw, 46px);
	align-items: start;
	padding: clamp(54px, 5.6vw, 82px) clamp(24px, 3vw, 42px);
	scroll-margin-top: 96px;
}

.dl-tour-stop + .dl-tour-stop {
	border-top: 1px solid var(--dltp-border);
}

.dl-tour-stop__intro {
	position: relative;
	isolation: isolate;
	grid-area: intro;
	min-width: 0;
	padding-top: 15px;
}

.dl-tour-stop__intro > :not(.dl-tour-stop__watermark) {
	position: relative;
	z-index: 1;
}

.dl-tour-stop__media {
	grid-area: media;
	min-width: 0;
}

.dl-tour-stop__choices {
	grid-area: choices;
	min-width: 0;
	padding-top: 9px;
}

/* --------------------------------------------------------------------------
   04. Intro column
   -------------------------------------------------------------------------- */

.dl-tour-stop__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	margin: 0 0 24px;
	padding: 6px 15px;
	border: 1px solid var(--dltp-gold-soft);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	color: var(--dltp-gold-dark);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.dl-tour-stop__watermark {
	position: absolute;
	z-index: 0;
	top: 52px;
	right: -4px;
	display: block;
	color: rgba(185, 136, 71, 0.075);
	font-family: var(--dltp-title-font);
	font-size: clamp(112px, 9vw, 154px);
	font-weight: 500;
	font-variant-numeric: lining-nums tabular-nums;
	line-height: 0.72;
	letter-spacing: -0.065em;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.dl-tour-stop__title {
	display: block;
	margin: 0;
	color: var(--dltp-heading);
	font-family: var(--dltp-title-font);
	font-size: clamp(40px, 3vw, 52px);
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: -0.034em;
	text-wrap: balance;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.dl-tour-stop__subtitle {
	margin-top: 18px;
	color: var(--dltp-gold-dark);
	font-family: var(--dltp-title-font);
	font-size: clamp(18px, 1.35vw, 22px);
	font-weight: 500;
	line-height: 1.45;
}

.dl-tour-stop__description {
	margin-top: 31px;
	color: var(--dltp-text);
	font-size: 13px;
	line-height: 1.78;
}

.dl-tour-stop__description > :first-child {
	margin-top: 0;
}

.dl-tour-stop__description > :last-child {
	margin-bottom: 0;
}

.dl-tour-stop__location {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 34px;
	color: var(--dltp-gold-dark);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.dl-tour-stop__location svg {
	flex: 0 0 15px;
	width: 15px;
	height: 15px;
	fill: currentColor;
}

/* --------------------------------------------------------------------------
   05. Main image and gallery
   -------------------------------------------------------------------------- */

.dl-tour-program button.dl-tour-main-image,
.elementor .dl-tour-program button.dl-tour-main-image {
	position: relative;
	display: block !important;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1.42 / 1;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: var(--dltp-radius) !important;
	outline: 0;
	background: #eee9e2 !important;
	box-shadow: none !important;
	cursor: zoom-in;
}

.dl-tour-main-image--placeholder {
	width: 100%;
	aspect-ratio: 1.42 / 1;
	border-radius: var(--dltp-radius);
	background: linear-gradient(135deg, #eee9e2, #f8f5f0);
}

.dl-tour-main-image img,
.elementor .dl-tour-main-image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	object-fit: cover !important;
	transition: transform 500ms cubic-bezier(.2, .65, .25, 1);
}

.dl-tour-main-image:hover img,
.dl-tour-main-image:focus-visible img {
	transform: scale(1.025);
}

.dl-tour-main-image:focus-visible,
.dl-tour-gallery__item:focus-visible {
	outline: 2px solid var(--dltp-gold) !important;
	outline-offset: 3px;
}

.dl-tour-main-image__zoom {
	position: absolute;
	right: 15px;
	bottom: 15px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 50%;
	background: rgba(15, 29, 50, 0.45);
	color: #fff;
	box-shadow: 0 8px 24px rgba(7, 13, 23, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transform: translateY(7px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.dl-tour-main-image:hover .dl-tour-main-image__zoom,
.dl-tour-main-image:focus-visible .dl-tour-main-image__zoom {
	opacity: 1;
	transform: translateY(0);
}

.dl-tour-main-image__zoom svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dl-tour-gallery {
	margin-top: 14px;
}

.dl-tour-gallery__label {
	margin: 0 0 9px;
	color: #766a59;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.dl-tour-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 9px;
}

.dl-tour-program button.dl-tour-gallery__item,
.elementor .dl-tour-program button.dl-tour-gallery__item {
	position: relative;
	display: block !important;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1.22 / 1;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: 5px !important;
	background: #ece7df !important;
	box-shadow: none !important;
	cursor: zoom-in;
}

.dl-tour-gallery__item img,
.elementor .dl-tour-gallery__item img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	object-fit: cover !important;
	transition: transform 300ms ease, filter 300ms ease;
}

.dl-tour-gallery__item:hover img,
.dl-tour-gallery__item:focus-visible img {
	transform: scale(1.045);
}

.dl-tour-gallery__item--more img {
	filter: brightness(0.68);
}

.dl-tour-gallery__more {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: clamp(23px, 2vw, 34px);
	font-weight: 500;
	line-height: 1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

/* --------------------------------------------------------------------------
   06. Experience choices
   -------------------------------------------------------------------------- */

.dl-tour-choices__title {
	margin: 0 0 13px;
	color: var(--dltp-gold-dark);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.065em;
	text-transform: uppercase;
}

.dl-tour-choices__list {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dl-tour-choice {
	margin: 0;
	padding: 0;
}

.dl-tour-choice__label {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 11px;
	align-items: start;
	min-height: 40px;
	padding: 9px 9px;
	border: 1px solid transparent;
	border-radius: 7px;
	background: transparent;
	color: #3e4959;
	cursor: pointer;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease;
}

.dl-tour-choice__label:hover {
	background: rgba(188, 138, 71, 0.055);
}

.dl-tour-choice__input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.dl-tour-choice__control {
	position: relative;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border: 1.35px solid #b9b8b0;
	border-radius: 50%;
	background: #fff;
	color: #fff;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.dl-tour-choice__control svg {
	width: 11px;
	height: 11px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0;
	transform: scale(0.65);
	transition: opacity 160ms ease, transform 160ms ease;
}

.dl-tour-choice__text {
	font-size: 14px;
	line-height: 1.3;
}

.dl-tour-choice__input:focus-visible + .dl-tour-choice__control {
	outline: 2px solid rgba(188, 138, 71, 0.42);
	outline-offset: 3px;
}

.dl-tour-choice__input:checked ~ .dl-tour-choice__text {
	color: var(--dltp-heading);
}

.dl-tour-choice__label:has(.dl-tour-choice__input:checked) {
	border-color: #eee2d3;
	background: var(--dltp-surface-soft);
}

.dl-tour-choice__input:checked + .dl-tour-choice__control {
	border-color: var(--dltp-gold);
	background: var(--dltp-gold);
	transform: scale(1.02);
}

.dl-tour-choice__input:checked + .dl-tour-choice__control svg {
	opacity: 1;
	transform: scale(1);
}

/* One-time interaction hint when an experience list enters the viewport. */
.dl-tour-stop__choices.is-choice-hint-running .dl-tour-choices__title {
	animation: dltp-choice-title-hint 620ms ease both;
}

.dl-tour-choice__label.is-choice-hint {
	animation: dltp-choice-row-hint 760ms cubic-bezier(.22, .7, .2, 1) both;
}

.dl-tour-choice__label.is-choice-hint .dl-tour-choice__control {
	animation: dltp-choice-control-hint 760ms cubic-bezier(.22, .7, .2, 1) both;
}

.dl-tour-choice__label.is-choice-hint .dl-tour-choice__control::after {
	content: "";
	position: absolute;
	inset: -6px;
	border: 1px solid rgba(188, 138, 71, 0.5);
	border-radius: 50%;
	pointer-events: none;
	animation: dltp-choice-ring-hint 760ms ease-out both;
}

@keyframes dltp-choice-title-hint {
	0%, 100% {
		color: var(--dltp-gold-dark);
	}
	45% {
		color: var(--dltp-gold);
	}
}

@keyframes dltp-choice-row-hint {
	0%, 100% {
		background: transparent;
		border-color: transparent;
		transform: translateX(0);
	}
	36% {
		background: rgba(188, 138, 71, 0.085);
		border-color: rgba(188, 138, 71, 0.24);
		transform: translateX(4px);
	}
	68% {
		background: rgba(188, 138, 71, 0.04);
		border-color: rgba(188, 138, 71, 0.12);
		transform: translateX(0);
	}
}

@keyframes dltp-choice-control-hint {
	0%, 100% {
		border-color: #b9b8b0;
		background: #fff;
		transform: scale(1);
	}
	36% {
		border-color: var(--dltp-gold);
		background: rgba(188, 138, 71, 0.12);
		transform: scale(1.14);
	}
	68% {
		border-color: var(--dltp-gold-soft);
		background: #fff;
		transform: scale(1);
	}
}

@keyframes dltp-choice-ring-hint {
	0% {
		opacity: 0;
		transform: scale(0.62);
	}
	34% {
		opacity: 0.75;
	}
	100% {
		opacity: 0;
		transform: scale(1.35);
	}
}

/* --------------------------------------------------------------------------
   07. Selected route panel
   -------------------------------------------------------------------------- */

.dl-tour-builder {
	position: fixed;
	z-index: 100000;
	left: 50%;
	bottom: 18px;
	width: min(calc(100% - 32px), 1180px);
	overflow: hidden;
	border: 1px solid rgba(188, 138, 71, 0.27);
	border-radius: 18px;
	background: rgba(255, 253, 250, 0.97);
	box-shadow: var(--dltp-shadow);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	transform: translateX(-50%);
	animation: dltp-builder-in 260ms ease both;
	transition:
		opacity 220ms ease,
		visibility 220ms ease,
		transform 220ms ease;
}

.dl-tour-builder.is-docked-to-form {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 18px);
	animation: none;
}

@keyframes dltp-builder-in {
	from {
		opacity: 0;
		transform: translate(-50%, 18px);
	}
	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

.dl-tour-builder__bar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(280px, auto);
	gap: 16px;
	align-items: center;
	padding: 14px 16px;
}

.dl-tour-builder__summary-line {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
}

.dl-tour-builder__icon {
	display: grid;
	place-items: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--dltp-heading);
	color: #fff;
}

.dl-tour-builder__icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dl-tour-builder__content {
	min-width: 0;
}

.dl-tour-builder__eyebrow {
	margin-bottom: 3px;
	color: var(--dltp-gold-dark);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.dl-tour-builder__count-line {
	display: flex;
	align-items: baseline;
	gap: 6px;
	color: var(--dltp-heading);
	font-size: 13px;
	line-height: 1.2;
}

.dl-tour-builder__count-line strong {
	font-size: 19px;
	line-height: 1;
}

.dl-tour-builder__locations {
	display: flex;
	gap: 6px;
	max-width: 100%;
	margin-top: 6px;
	overflow: hidden;
}

.dl-tour-builder__location {
	flex: 0 0 auto;
	padding: 4px 9px;
	border: 1px solid var(--dltp-border);
	border-radius: 999px;
	background: #fff;
	color: #5e6672;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.dl-tour-builder__tools {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dl-tour-program button.dl-tour-builder__details-button,
.dl-tour-program button.dl-tour-builder__clear,
.elementor .dl-tour-program button.dl-tour-builder__details-button,
.elementor .dl-tour-program button.dl-tour-builder__clear {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: auto !important;
	min-width: 0 !important;
	height: 42px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 15px !important;
	border: 1px solid var(--dltp-border-strong) !important;
	border-radius: 999px !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #4f5a68 !important;
	font-family: inherit !important;
	font-size: 11px !important;
	font-weight: 650 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-align: center !important;
	text-transform: none !important;
	white-space: nowrap;
	transition:
		border-color 170ms ease,
		background-color 170ms ease,
		color 170ms ease,
		transform 170ms ease;
}

.dl-tour-program button.dl-tour-builder__clear,
.elementor .dl-tour-program button.dl-tour-builder__clear {
	border-color: rgba(188, 138, 71, 0.3) !important;
	background: var(--dltp-surface-soft) !important;
	color: var(--dltp-gold-dark) !important;
}

.dl-tour-program button.dl-tour-builder__details-button:hover,
.dl-tour-program button.dl-tour-builder__details-button:focus-visible,
.dl-tour-program button.dl-tour-builder__clear:hover,
.dl-tour-program button.dl-tour-builder__clear:focus-visible,
.elementor .dl-tour-program button.dl-tour-builder__details-button:hover,
.elementor .dl-tour-program button.dl-tour-builder__clear:hover {
	border-color: var(--dltp-gold-soft) !important;
	background: #fff !important;
	color: var(--dltp-heading) !important;
	transform: translateY(-1px);
}

.dl-tour-builder__details-button svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	transition: transform 180ms ease;
}

.dl-tour-builder__details-button[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.dl-tour-program a.dl-tour-builder__submit,
.elementor .dl-tour-program a.dl-tour-builder__submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: auto;
	min-width: 280px;
	min-height: 48px;
	margin: 0 !important;
	padding: 11px 18px !important;
	border: 1px solid var(--dltp-heading) !important;
	border-radius: 999px !important;
	background: var(--dltp-heading) !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: inherit;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: left;
	text-decoration: none !important;
	text-transform: none !important;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

.dl-tour-program a.dl-tour-builder__submit:hover,
.dl-tour-program a.dl-tour-builder__submit:focus-visible,
.elementor .dl-tour-program a.dl-tour-builder__submit:hover {
	border-color: #1b3154 !important;
	background: #1b3154 !important;
	box-shadow: 0 10px 24px rgba(16, 33, 62, 0.16) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.dl-tour-builder__details {
	max-height: min(42vh, 420px);
	overflow-y: auto;
	padding: 4px 20px 18px;
	border-top: 1px solid var(--dltp-border);
}

.dl-tour-builder__details-title {
	margin: 15px 0 11px;
	color: var(--dltp-heading);
	font-family: var(--dltp-title-font);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
}

.dl-tour-builder__selected {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
}

.dl-tour-builder__group {
	padding: 12px 14px;
	border: 1px solid var(--dltp-border);
	border-radius: 9px;
	background: #fff;
}

.dl-tour-builder__group h4 {
	margin: 0 0 7px;
	color: var(--dltp-heading);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.dl-tour-builder__group ul {
	margin: 0;
	padding-left: 17px;
	color: #5a6471;
	font-size: 11px;
	line-height: 1.55;
}

/* --------------------------------------------------------------------------
   08. Lightbox

   Selectors intentionally start with body and use !important where Elementor
   normally interferes with buttons, images, dimensions and backgrounds.
   -------------------------------------------------------------------------- */

body .dl-tour-lightbox {
	position: fixed !important;
	z-index: 2147483000 !important;
	inset: 0 !important;
	display: grid !important;
	place-items: center !important;
	width: 100vw !important;
	height: 100vh !important;
	min-width: 100vw !important;
	min-height: 100vh !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
	background: transparent !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transform: none !important;
	transition: opacity 180ms ease, visibility 180ms ease !important;
}

body .dl-tour-lightbox.is-open {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

body .dl-tour-lightbox__backdrop {
	position: absolute !important;
	z-index: 0 !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: rgba(5, 10, 18, 0.94) !important;
	backdrop-filter: blur(9px) !important;
	-webkit-backdrop-filter: blur(9px) !important;
}

body .dl-tour-lightbox__dialog {
	position: relative !important;
	z-index: 1 !important;
	display: grid !important;
	grid-template-columns: 58px minmax(0, 1fr) 58px !important;
	grid-template-rows: minmax(0, 1fr) auto !important;
	align-items: center !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 28px 34px 22px !important;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
}

body .dl-tour-lightbox__image-wrap {
	grid-column: 2 !important;
	grid-row: 1 !important;
	display: grid !important;
	place-items: center !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 12px 18px !important;
	overflow: hidden !important;
	border: 0 !important;
	background: transparent !important;
}

body .dl-tour-lightbox img.dl-tour-lightbox__image,
body .elementor .dl-tour-lightbox img.dl-tour-lightbox__image {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: calc(100vh - 104px) !important;
	margin: auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 6px !important;
	background: transparent !important;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42) !important;
	object-fit: contain !important;
	transform: none !important;
}

body .dl-tour-lightbox button.dl-tour-lightbox__close,
body .dl-tour-lightbox button.dl-tour-lightbox__arrow,
body .elementor .dl-tour-lightbox button.dl-tour-lightbox__close,
body .elementor .dl-tour-lightbox button.dl-tour-lightbox__arrow {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.09) !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: Arial, sans-serif !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-align: center !important;
	text-indent: 0 !important;
	text-transform: none !important;
	cursor: pointer !important;
	transform: none !important;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease !important;
}

body .dl-tour-lightbox button.dl-tour-lightbox__close:hover,
body .dl-tour-lightbox button.dl-tour-lightbox__arrow:hover,
body .dl-tour-lightbox button.dl-tour-lightbox__close:focus-visible,
body .dl-tour-lightbox button.dl-tour-lightbox__arrow:focus-visible {
	border-color: rgba(255, 255, 255, 0.62) !important;
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
	transform: scale(1.04) !important;
}

body .dl-tour-lightbox button.dl-tour-lightbox__close {
	position: absolute !important;
	top: 24px !important;
	right: 28px !important;
	z-index: 3 !important;
	font-size: 27px !important;
}

body .dl-tour-lightbox button.dl-tour-lightbox__arrow {
	position: relative !important;
	z-index: 2 !important;
	font-size: 35px !important;
}

body .dl-tour-lightbox button.dl-tour-lightbox__arrow--prev {
	grid-column: 1 !important;
	grid-row: 1 !important;
	justify-self: center !important;
}

body .dl-tour-lightbox button.dl-tour-lightbox__arrow--next {
	grid-column: 3 !important;
	grid-row: 1 !important;
	justify-self: center !important;
}

body .dl-tour-lightbox__counter {
	grid-column: 2 !important;
	grid-row: 2 !important;
	justify-self: center !important;
	margin: 0 !important;
	padding: 8px 0 0 !important;
	color: rgba(255, 255, 255, 0.86) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.08em !important;
}

/* --------------------------------------------------------------------------
   09. Tablet and mobile
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
	.dl-tour-stop {
		grid-template-columns:
			minmax(215px, 240px)
			minmax(390px, 1fr)
			minmax(280px, 310px);
		gap: 30px;
		padding-inline: 28px;
	}

	.dl-tour-stop__watermark {
		top: 48px;
		right: 0;
		font-size: clamp(104px, 10vw, 136px);
	}

	.dl-tour-stop__title {
		font-size: clamp(37px, 3.5vw, 47px);
	}

	.dl-tour-route__title {
		font-size: 10px;
	}

	.dl-tour-builder__bar {
		grid-template-columns: minmax(0, 1fr) auto minmax(250px, auto);
		gap: 12px;
	}

	.dl-tour-program a.dl-tour-builder__submit,
	.elementor .dl-tour-program a.dl-tour-builder__submit {
		min-width: 250px;
	}
}

@media (max-width: 1040px) {
	.dl-tour-builder__bar {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.dl-tour-program a.dl-tour-builder__submit,
	.elementor .dl-tour-program a.dl-tour-builder__submit {
		grid-column: 1 / -1;
		justify-content: center;
		width: 100%;
		min-width: 0;
	}

	body.dltp-builder-active {
		padding-bottom: 0;
	}

	body.dltp-builder-active .dl-tour-program {
		padding-bottom: 186px;
	}
}

@media (max-width: 980px) {
	.dl-tour-route {
		overflow-x: auto;
		padding: 14px 18px;
		scrollbar-width: none;
	}

	.dl-tour-route::-webkit-scrollbar {
		display: none;
	}

	.dl-tour-route__list {
		justify-content: flex-start;
		width: max-content;
		min-width: 100%;
	}

	.dl-tour-route__item {
		flex: 0 0 180px;
	}

	.dl-tour-route__item:not(:last-child)::after {
		left: calc(50% + 12px);
		right: calc(-50% + 12px);
	}

	.dl-tour-stop {
		grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.45fr);
		grid-template-areas:
			"intro media"
			"choices choices";
		gap: 34px;
		padding: 52px 28px;
	}

	.dl-tour-stop__intro {
		padding-top: 8px;
	}

	.dl-tour-stop__choices {
		padding-top: 0;
	}

	.dl-tour-choices__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 5px 12px;
	}

	body .dl-tour-lightbox__dialog {
		grid-template-columns: 48px minmax(0, 1fr) 48px !important;
		padding-inline: 18px !important;
	}
}

@media (max-width: 767px) {
	body.dltp-builder-active {
		padding-bottom: 0;
	}

	body.dltp-builder-active .dl-tour-program {
		padding-bottom: 220px;
	}

	.dl-tour-route {
		position: relative;
		top: auto;
		padding-block: 13px;
	}

	.dl-tour-route__item {
		flex-basis: 154px;
	}

	.dl-tour-program a.dl-tour-route__link {
		width: 100%;
		min-height: 45px;
		padding-inline: 8px !important;
	}

	.dl-tour-route__title {
		font-size: 9.5px;
		letter-spacing: 0.045em;
	}

	.dl-tour-route__dot {
		flex-basis: 16px;
		width: 16px;
		height: 16px;
	}

	.dl-tour-stop {
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"media"
			"choices";
		gap: 28px;
		padding: 44px 20px;
		scroll-margin-top: 18px;
	}

	.dl-tour-stop__intro,
	.dl-tour-stop__choices {
		padding-top: 0;
	}

	.dl-tour-stop__badge {
		margin-bottom: 19px;
	}

	.dl-tour-stop__watermark {
		top: 34px;
		right: 2px;
		font-size: clamp(96px, 30vw, 126px);
		color: rgba(185, 136, 71, 0.065);
	}

	.dl-tour-stop__title {
		font-size: clamp(38px, 12vw, 48px);
		line-height: 0.98;
	}

	.dl-tour-stop__subtitle {
		font-size: 20px;
	}

	.dl-tour-stop__description {
		margin-top: 22px;
		font-size: 13px;
		line-height: 1.72;
	}

	.dl-tour-stop__location {
		margin-top: 24px;
	}

	.dl-tour-program button.dl-tour-main-image,
	.elementor .dl-tour-program button.dl-tour-main-image,
	.dl-tour-main-image--placeholder {
		aspect-ratio: 1.24 / 1;
	}

	.dl-tour-gallery__grid {
		gap: 7px;
	}

	.dl-tour-program button.dl-tour-gallery__item,
	.elementor .dl-tour-program button.dl-tour-gallery__item {
		border-radius: 4px !important;
	}

	.dl-tour-choices__list {
		grid-template-columns: 1fr;
	}

	.dl-tour-builder {
		bottom: 9px;
		width: calc(100% - 18px);
		border-radius: 14px;
	}

	.dl-tour-builder__bar {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		padding: 12px;
	}

	.dl-tour-builder__icon {
		display: none;
	}

	.dl-tour-builder__tools {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}

	.dl-tour-program button.dl-tour-builder__details-button,
	.dl-tour-program button.dl-tour-builder__clear,
	.elementor .dl-tour-program button.dl-tour-builder__details-button,
	.elementor .dl-tour-program button.dl-tour-builder__clear {
		height: 36px !important;
		min-height: 36px !important;
		padding-inline: 11px !important;
		font-size: 10px !important;
	}

	.dl-tour-program a.dl-tour-builder__submit,
	.elementor .dl-tour-program a.dl-tour-builder__submit {
		grid-column: 1 / -1;
		width: 100%;
		min-height: 45px;
		justify-content: center;
	}

	.dl-tour-builder__locations {
		max-width: 58vw;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.dl-tour-builder__locations::-webkit-scrollbar {
		display: none;
	}

	.dl-tour-builder__details {
		max-height: 40vh;
		padding-inline: 14px;
	}

	body .dl-tour-lightbox__dialog {
		grid-template-columns: 38px minmax(0, 1fr) 38px !important;
		padding: 14px 8px 16px !important;
	}

	body .dl-tour-lightbox__image-wrap {
		padding: 8px !important;
	}

	body .dl-tour-lightbox img.dl-tour-lightbox__image {
		max-height: calc(100vh - 82px) !important;
		border-radius: 4px !important;
	}

	body .dl-tour-lightbox button.dl-tour-lightbox__arrow,
	body .elementor .dl-tour-lightbox button.dl-tour-lightbox__arrow {
		width: 34px !important;
		height: 34px !important;
		min-width: 34px !important;
		min-height: 34px !important;
		font-size: 27px !important;
	}

	body .dl-tour-lightbox button.dl-tour-lightbox__close,
	body .elementor .dl-tour-lightbox button.dl-tour-lightbox__close {
		top: 14px !important;
		right: 14px !important;
		width: 38px !important;
		height: 38px !important;
		min-width: 38px !important;
		min-height: 38px !important;
		font-size: 24px !important;
	}
}

@media (max-width: 460px) {
	.dl-tour-route__item {
		flex-basis: 138px;
	}

	.dl-tour-route__item:not(:last-child)::after {
		left: calc(50% + 11px);
		right: calc(-50% + 11px);
	}

	.dl-tour-program a.dl-tour-route__link {
		padding-inline: 6px !important;
	}

	.dl-tour-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dl-tour-program button.dl-tour-gallery__item,
	.elementor .dl-tour-program button.dl-tour-gallery__item {
		aspect-ratio: 1.35 / 1;
	}

	.dl-tour-builder__eyebrow {
		display: none;
	}

	.dl-tour-builder__count-line strong {
		font-size: 17px;
	}

	.dl-tour-builder__count-line {
		font-size: 11px;
	}

	.dl-tour-builder__location {
		font-size: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dl-tour-program *,
	.dl-tour-program *::before,
	.dl-tour-program *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
