/* Desert Buggys — tour page v2: booking widget, calendar, travellers
   dropdown, hero slider, bottom sheet. Loaded only on tour pages/archive. */

/* ------------------------------------------------------------------ *
 * Tour page shell + responsive fixes
 * ------------------------------------------------------------------ */

.db-tour-v2 .db-tour-container {
	overflow-x: clip;
}

.db-tour-v2 .db-tour-sidebar {
	top: 16px;
}

.db-tour-head {
	margin: 10px 0 18px;
}

.db-tour-head h1 {
	margin: 0 0 10px;
	font-family: var(--db-font-heading);
	font-size: clamp(1.5rem, 2.9vw, 2.15rem);
	line-height: 1.14;
	color: var(--db-ink);
	overflow-wrap: break-word;
}

.db-tour-head-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	font-size: 0.9rem;
	color: var(--db-muted);
}

.db-tour-head-meta > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.db-tour-head-meta .db-icon {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.db-tour-head-rating strong {
	color: var(--db-ink);
}

.db-tour-head-rating .db-tour-stars .db-icon {
	width: 14px;
	height: 14px;
	fill: var(--db-amber);
	stroke: var(--db-amber);
}

.db-tour-v2 .db-tour-overview h1,
.db-tour-v2 .db-tour-overview h2 {
	overflow-wrap: break-word;
}

/* ------------------------------------------------------------------ *
 * Hero slider
 * ------------------------------------------------------------------ */

.db-slider {
	position: relative;
	overflow: hidden;
	border-radius: calc(var(--db-radius) * 2);
	background: var(--db-night);
	box-shadow: var(--db-shadow);
	margin-bottom: clamp(20px, 3vw, 30px);
	/* Fixed, reliable height derived from the block container (not from flex
	   items, which could collapse to 0 and hide the images). */
	aspect-ratio: 16 / 10;
	width: 100%;
}

.db-slider-track {
	display: flex;
	height: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

.db-slider-track::-webkit-scrollbar {
	display: none;
}

.db-slider-track:focus-visible {
	outline: 3px solid var(--db-amber);
	outline-offset: -3px;
}

.db-slider-slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	height: 100%;
	margin: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	background: var(--db-night);
}

.db-slider-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* One consistent slider shape across every device: a clean 16:10 gallery.
   Slightly taller on phones (full-width) so the image still fills nicely. */
@media (max-width: 600px) {
	.db-slider {
		aspect-ratio: 3 / 2;
	}
}

.db-slider-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
}

.db-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 253, 248, 0.92);
	color: var(--db-ink);
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.db-slider-arrow:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.05);
}

.db-slider-arrow .db-icon {
	width: 20px;
	height: 20px;
}

.db-slider-prev {
	left: 12px;
}

.db-slider-prev .db-icon {
	transform: rotate(180deg);
}

.db-slider-next {
	right: 12px;
}

.db-slider-count {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 3;
	padding: 4px 11px;
	border-radius: 999px;
	background: rgba(23, 18, 14, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: var(--db-weight-semibold);
	letter-spacing: 0.03em;
}

.db-slider-dots {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 7px;
}

.db-slider-dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.db-slider-dots button[aria-selected="true"] {
	background: #fff;
	transform: scale(1.35);
}

.db-slider-video {
	position: absolute;
	left: 14px;
	bottom: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(23, 18, 14, 0.72);
	color: #fff;
	font-size: 13px;
	font-weight: var(--db-weight-semibold);
	text-decoration: none;
}

.db-slider-video:hover {
	background: var(--db-rust);
	color: #fff;
}

.db-slider-video .db-icon {
	width: 14px;
	height: 14px;
}

/* ------------------------------------------------------------------ *
 * Booking card
 * ------------------------------------------------------------------ */

.db-bk-card {
	position: relative;
}

.db-bk-sheet-close {
	display: none;
}

.db-bk-price-row {
	display: grid;
	line-height: 1.25;
	margin-bottom: 14px;
}

.db-bk-from {
	font-size: 11px;
	font-weight: var(--db-weight-semibold);
	color: var(--db-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.db-bk-price {
	font-size: clamp(1.55rem, 2.4vw, 1.85rem);
	font-weight: var(--db-weight-heavy);
	color: var(--db-ink);
}

.db-bk-price-note {
	font-size: 12.5px;
	color: var(--db-muted);
}

/* Selector pills */
.db-bk-selectors {
	display: grid;
	gap: 10px;
}

/* Each field owns its own popover, so the calendar drops under the date
   field and the travellers panel under the quantity field. */
.db-bk-field-wrap {
	position: relative;
}

.db-bk-pill-trigger {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--db-line-strong);
	border-radius: 12px;
	background: var(--db-card);
	font-family: var(--db-font-body);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.db-bk-pill-trigger:hover {
	border-color: var(--db-ink);
}

.db-bk-pill-trigger[aria-expanded="true"] {
	border-color: var(--db-rust);
	box-shadow: 0 0 0 3px rgba(201, 90, 43, 0.15);
}

.db-bk-pill-trigger.is-error {
	border-color: var(--db-rust-dark);
	box-shadow: 0 0 0 3px rgba(144, 57, 20, 0.18);
}

.db-bk-pill-trigger > .db-icon {
	width: 20px;
	height: 20px;
	color: var(--db-rust);
	flex-shrink: 0;
}

.db-bk-pill-copy {
	display: grid;
	gap: 1px;
	min-width: 0;
	flex-grow: 1;
	line-height: 1.25;
}

.db-bk-pill-copy small {
	font-size: 11px;
	font-weight: var(--db-weight-semibold);
	color: var(--db-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.db-bk-pill-copy strong {
	font-size: 15px;
	font-weight: var(--db-weight-semibold);
	color: var(--db-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.db-bk-pill-chevron {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--db-muted);
}

.db-bk-pill-chevron .db-icon {
	width: 16px;
	height: 16px;
	transform: rotate(90deg);
	transition: transform 0.15s ease;
}

.db-bk-pill-trigger[aria-expanded="true"] .db-bk-pill-chevron .db-icon {
	transform: rotate(-90deg);
}

/* Popovers */
.db-bk-popover {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 30;
	padding: 16px;
	border: 1px solid var(--db-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(43, 28, 15, 0.22);
}

/* Calendar */
.db-bk-cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.db-bk-cal-head strong {
	font-size: 15px;
	color: var(--db-ink);
}

.db-bk-cal-nav {
	width: 34px;
	height: 34px;
	border: 1px solid var(--db-line-strong);
	border-radius: 10px;
	background: var(--db-card);
	font-size: 19px;
	line-height: 1;
	color: var(--db-ink);
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.db-bk-cal-nav:hover:not(:disabled) {
	background: var(--db-sand-2);
}

.db-bk-cal-nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.db-bk-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}

.db-bk-cal-wd {
	padding: 5px 0;
	text-align: center;
	font-size: 11px;
	font-weight: var(--db-weight-bold);
	color: var(--db-muted);
	text-transform: uppercase;
}

.db-bk-cal-day {
	aspect-ratio: 1;
	border: 0;
	border-radius: 50%;
	background: transparent;
	font-family: var(--db-font-body);
	font-size: 13.5px;
	font-weight: var(--db-weight-medium);
	color: var(--db-ink);
	cursor: pointer;
	transition: background-color 0.12s ease;
}

.db-bk-cal-day:hover:not(:disabled) {
	background: var(--db-sand-2);
}

.db-bk-cal-day.is-today {
	box-shadow: inset 0 0 0 1.5px var(--db-line-strong);
}

.db-bk-cal-day.is-selected {
	background: var(--db-rust);
	color: #fff;
	font-weight: var(--db-weight-bold);
	box-shadow: none;
}

.db-bk-cal-day:disabled {
	color: rgba(97, 86, 74, 0.35);
	cursor: default;
}

/* Travellers popover */
.db-bk-travelers-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--db-line);
}

.db-bk-travelers-copy {
	display: grid;
	gap: 2px;
	line-height: 1.3;
}

.db-bk-travelers-copy strong {
	font-size: 15px;
	color: var(--db-ink);
}

.db-bk-travelers-copy small {
	font-size: 12.5px;
	color: var(--db-muted);
}

.db-bk-stepper {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.db-bk-stepper button {
	width: 38px;
	height: 38px;
	border: 1.5px solid var(--db-line-strong);
	border-radius: 50%;
	background: var(--db-card);
	font-size: 19px;
	line-height: 1;
	font-weight: var(--db-weight-bold);
	color: var(--db-ink);
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.db-bk-stepper button:hover {
	border-color: var(--db-rust);
	background: var(--db-sand-2);
}

.db-bk-stepper output {
	min-width: 26px;
	text-align: center;
	font-size: 17px;
	font-weight: var(--db-weight-bold);
	color: var(--db-ink);
}

.db-bk-apply {
	width: 100%;
}

/* Total */
.db-bk-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 14px 0 0;
	padding: 11px 14px;
	background: var(--db-sand-2);
	border-radius: 12px;
	font-size: 14px;
	color: var(--db-muted);
}

.db-bk-total strong {
	font-size: 21px;
	font-weight: var(--db-weight-heavy);
	color: var(--db-ink);
}

/* ------------------------------------------------------------------ *
 * Buttons — consistent sizing and spacing
 * ------------------------------------------------------------------ */

.db-bk-actions {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.db-bk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 50px;
	padding: 0 18px;
	border: 0;
	border-radius: 12px;
	font-family: var(--db-font-body);
	font-size: 15px;
	font-weight: var(--db-weight-bold);
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.db-bk-btn .db-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.db-bk-btn-primary {
	background: var(--db-rust);
	color: #fff;
}

.db-bk-btn-primary:hover {
	background: var(--db-rust-dark);
	color: #fff;
}

.db-bk-btn-outline {
	background: transparent;
	color: var(--db-ink);
	box-shadow: inset 0 0 0 2px var(--db-line-strong);
}

.db-bk-btn-outline:hover {
	box-shadow: inset 0 0 0 2px var(--db-rust);
	color: var(--db-rust-dark);
}

.db-bk-btn-whatsapp {
	background: var(--db-oasis);
	color: #fff;
}

.db-bk-btn-whatsapp:hover {
	background: #24584a;
	color: #fff;
}

.db-bk-btn-paypal {
	background: var(--db-night);
	color: #fff;
}

.db-bk-btn-paypal:hover {
	background: #000;
	color: #fff;
}

.db-bk-btn:disabled {
	opacity: 0.6;
	cursor: wait;
}

.db-bk-btn:focus-visible {
	outline: 2px solid var(--db-ink);
	outline-offset: 2px;
}

/* ------------------------------------------------------------------ *
 * Inline form
 * ------------------------------------------------------------------ */

.db-bk-form {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--db-line);
}

.db-bk-form-grid {
	display: grid;
	gap: 11px;
}

.db-bk-form-grid label {
	display: grid;
	gap: 5px;
}

.db-bk-label {
	font-size: 12px;
	font-weight: var(--db-weight-semibold);
	color: var(--db-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.db-bk-form input,
.db-bk-form textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1.5px solid var(--db-line-strong);
	border-radius: 10px;
	background: var(--db-card);
	font-family: var(--db-font-body);
	font-size: 15px;
	color: var(--db-ink);
}

.db-bk-form input:focus,
.db-bk-form textarea:focus {
	outline: none;
	border-color: var(--db-rust);
	box-shadow: 0 0 0 3px rgba(201, 90, 43, 0.15);
}

.db-bk-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.db-bk-submit-row {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

.db-bk-feedback {
	margin: 12px 0 0;
	padding: 11px 13px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.45;
}

.db-bk-feedback.is-success {
	background: rgba(47, 111, 94, 0.12);
	color: var(--db-oasis);
}

.db-bk-feedback.is-error {
	background: rgba(201, 90, 43, 0.12);
	color: var(--db-rust-dark);
}

.db-bk-feedback.is-info {
	background: var(--db-sand-2);
	color: var(--db-muted);
}

.db-bk-secure {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 12px 0 0;
	font-size: 12px;
	color: var(--db-muted);
}

.db-bk-secure .db-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* ------------------------------------------------------------------ *
 * Status notice
 * ------------------------------------------------------------------ */

.db-bk-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: var(--db-max);
	margin: 14px auto 0;
	padding: 14px 18px;
	border-radius: 12px;
	font-family: var(--db-font-body);
	font-size: 15px;
	font-weight: var(--db-weight-medium);
}

.db-bk-notice .db-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.db-bk-notice-success {
	background: rgba(47, 111, 94, 0.14);
	color: var(--db-oasis);
}

.db-bk-notice-error {
	background: rgba(144, 57, 20, 0.12);
	color: var(--db-rust-dark);
}

.db-bk-notice-warning {
	background: var(--db-sand-2);
	color: var(--db-ink);
}

/* ------------------------------------------------------------------ *
 * Mobile: sticky bar + bottom sheet
 * ------------------------------------------------------------------ */

.db-bk-sticky {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 80;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	background: var(--db-card);
	border-top: 1px solid var(--db-line-strong);
	box-shadow: 0 -8px 30px rgba(43, 28, 15, 0.16);
}

.db-bk-sticky-price {
	display: grid;
	line-height: 1.2;
	flex-shrink: 0;
}

.db-bk-sticky-price span {
	font-size: 11px;
	color: var(--db-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.db-bk-sticky-price strong {
	font-size: 19px;
	font-weight: var(--db-weight-heavy);
	color: var(--db-ink);
}

.db-bk-sticky .db-bk-btn {
	width: auto;
	min-height: 46px;
	padding: 0 22px;
	flex-grow: 1;
	max-width: 260px;
}

.db-bk-backdrop {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(23, 18, 14, 0.5);
	backdrop-filter: blur(2px);
}

.db-bk-sheet {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 95;
	max-height: 88dvh;
	border-radius: 20px 20px 0 0;
	background: var(--db-paper);
	box-shadow: 0 -18px 60px rgba(23, 18, 14, 0.3);
	transform: translateY(105%);
	transition: transform 0.28s cubic-bezier(0.32, 0.72, 0.22, 1);
	display: flex;
	flex-direction: column;
	visibility: hidden;
}

.db-bk-sheet.is-open {
	transform: translateY(0);
	visibility: visible;
}

.db-bk-sheet-handle {
	flex-shrink: 0;
	width: 44px;
	height: 4px;
	margin: 10px auto 2px;
	border-radius: 999px;
	background: var(--db-line-strong);
}

.db-bk-sheet-body {
	overflow-y: auto;
	padding: 8px 16px calc(20px + env(safe-area-inset-bottom));
	overscroll-behavior: contain;
}

.db-bk-sheet-body .db-bk-card {
	box-shadow: none;
	border: 0;
	background: transparent;
	padding: 6px 0 0;
}

body.db-bk-locked {
	overflow: hidden;
}

/* Sheet close button (only visible inside the sheet) */
.db-bk-sheet-body .db-bk-sheet-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--db-sand-2);
	color: var(--db-ink);
	cursor: pointer;
}

/* Hide the theme's mobile quickbar on tour views (booking bar replaces it) */
body.db-tour-view .db-mobile-quickbar {
	display: none !important;
}

/* ------------------------------------------------------------------ *
 * Tours archive grid
 * ------------------------------------------------------------------ */

.db-tours-archive {
	padding: 34px 0 60px;
}

.db-tours-archive .db-tour-container {
	padding-top: 0;
}

.db-tours-archive-head {
	max-width: 640px;
	margin-bottom: 30px;
}

.db-tours-archive-head h1 {
	margin: 6px 0 10px;
	font-family: var(--db-font-heading);
	font-size: clamp(1.9rem, 4.5vw, 2.75rem);
	line-height: 1.08;
	color: var(--db-ink);
}

.db-tours-archive-sub {
	color: var(--db-muted);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.db-tours-grid {
	display: grid;
	/* Auto-fit cards with a generous minimum so they are never cramped or
	   tiny — they enlarge to fill the row and wrap responsively. */
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: 24px;
}

.db-tours-card {
	display: flex;
	flex-direction: column;
	background: var(--db-card);
	border: 1px solid var(--db-line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 26px rgba(43, 28, 15, 0.07);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.db-tours-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--db-shadow);
}

.db-tours-card-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--db-sand-2);
}

.db-tours-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.db-tours-card-media .db-tour-badge {
	position: absolute;
	top: 12px;
	left: 12px;
}

.db-tours-card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 8px;
	padding: 18px 18px 20px;
}

.db-tours-card-body h2,
.db-tours-card-body h3 {
	margin: 0;
	font-family: var(--db-font-heading);
	font-size: 1.22rem;
	line-height: 1.2;
}

.db-tours-card-body h2 a,
.db-tours-card-body h3 a {
	color: var(--db-ink);
	text-decoration: none;
}

.db-tours-card-body h2 a:hover,
.db-tours-card-body h3 a:hover {
	color: var(--db-rust);
}

/* Reusable tours section (shortcode / block on any page) */
.db-tours-section {
	width: min(100%, var(--db-max));
	margin-inline: auto;
	padding: clamp(30px, 5vw, 56px) clamp(16px, 4vw, 48px);
}

.db-tours-section-head {
	max-width: 640px;
	margin: 0 auto clamp(22px, 3vw, 34px);
	text-align: center;
}

.db-tours-section-head h2 {
	margin: 0 0 8px;
	font-family: var(--db-font-heading);
	font-size: clamp(1.6rem, 3.6vw, 2.4rem);
	line-height: 1.12;
	color: var(--db-ink);
}

.db-tours-section-head p {
	margin: 0;
	color: var(--db-muted);
	font-size: clamp(0.98rem, 1.4vw, 1.08rem);
	line-height: 1.6;
}

/* Hub/section grids use the same auto-fit sizing so cards stay a generous,
   consistent size (never tiny) regardless of the requested column count. */
.db-tours-section .db-tours-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.db-tours-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin: 0;
	font-size: 13px;
	color: var(--db-muted);
}

.db-tours-card-meta span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.db-tours-card-meta .db-icon {
	width: 14px;
	height: 14px;
}

.db-tours-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-size: 13px;
}

.db-tours-card-rating .db-icon {
	width: 14px;
	height: 14px;
	fill: var(--db-amber);
	stroke: var(--db-amber);
}

.db-tours-card-price {
	display: grid;
	margin: auto 0 0;
	padding-top: 10px;
	line-height: 1.25;
}

.db-tours-card-price span {
	font-size: 11px;
	color: var(--db-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.db-tours-card-price strong {
	font-size: 1.4rem;
	font-weight: var(--db-weight-heavy);
	color: var(--db-ink);
}

.db-tours-card-price small {
	font-size: 12px;
	color: var(--db-muted);
}

.db-tours-card-cta {
	margin-top: 12px;
}

/* ------------------------------------------------------------------ *
 * Breakpoints
 * ------------------------------------------------------------------ */

@media (max-width: 980px) {
	.db-tours-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Sidebar becomes normal flow; booking card moves into the bottom
	   sheet via JS, snapshot + help cards show inline after content. */
	.db-tour-v2 .db-tour-sidebar {
		position: static;
	}

	.db-bk-sticky[hidden] {
		display: none;
	}

	.db-bk-sticky:not([hidden]) {
		display: flex;
	}

	/* Reserve room so the sticky bar never covers the footer CTA. */
	.db-tour-v2 .db-tour-container {
		padding-bottom: 110px;
	}
}

@media (max-width: 640px) {
	.db-tours-grid {
		grid-template-columns: 1fr;
	}

	.db-tour-v2 .db-tour-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.db-tour-head h1 {
		font-size: clamp(1.42rem, 6.4vw, 1.8rem);
	}

	.db-tour-head-meta {
		gap: 6px 14px;
		font-size: 0.84rem;
	}

	.db-slider {
		border-radius: 14px;
	}

	.db-slider-arrow {
		width: 36px;
		height: 36px;
	}

	.db-tour-v2 .db-tour-section {
		margin-bottom: 30px;
	}

	.db-tour-v2 .db-tour-section h2 {
		font-size: clamp(1.25rem, 5.6vw, 1.5rem);
		overflow-wrap: break-word;
	}

	.db-tour-v2 .db-tour-section p,
	.db-tour-v2 .db-tour-step p {
		font-size: 0.95rem;
		line-height: 1.62;
	}

	.db-bk-popover {
		padding: 13px;
	}

	.db-bk-cal-day {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.db-bk-sheet {
		transition: none;
	}

	.db-slider-track {
		scroll-behavior: auto;
	}

	.db-tours-card,
	.db-tours-card:hover {
		transform: none;
	}
}

/* ------------------------------------------------------------------ *
 * Tour page v2 — mobile safety (<= 600px). Force single-column, wrap
 * everything, no horizontal overflow.
 * ------------------------------------------------------------------ */
@media (max-width: 600px) {
	.db-tour-v2 .db-tour-container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.db-tour-v2 .db-tour-feature-row,
	.db-tour-v2 .db-tour-itinerary,
	.db-tour-v2 .db-tour-info-grid,
	.db-tour-v2 .db-tour-reviews,
	.db-tour-v2 .db-tour-gallery {
		grid-template-columns: 1fr !important;
		gap: 14px;
	}

	.db-tour-v2 .db-tour-step {
		grid-template-columns: 1fr;
	}

	.db-tour-v2 .db-tour-step figure {
		max-height: 190px;
	}

	.db-tour-v2 .db-tour-head-meta {
		font-size: 0.82rem;
		gap: 6px 12px;
	}

	.db-tour-v2 .db-tour-bottom-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		text-align: left;
	}

	.db-tour-v2 .db-tour-mini-meta {
		grid-template-columns: 1fr 1fr;
	}

	/* Snapshot rows stack label/value cleanly. */
	.db-tour-side-card dl > div {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	/* Make sure any stray wide media inside the tour clips to width. */
	.db-tour-v2 img,
	.db-tour-v2 figure {
		max-width: 100%;
	}
}

/* ==================================================================== *
 * Tour page v3 — professional redesign sections.
 * ==================================================================== */

/* Header: badge + quick-fact chips */
.db-tour-v3 .db-tour-head {
	margin: 12px 0 20px;
}

.db-tour-head-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--db-rust);
	color: #fff;
	font-size: 12px;
	font-weight: var(--db-weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.db-tour-head-badge .db-icon {
	width: 13px;
	height: 13px;
	fill: #fff;
	stroke: #fff;
}

.db-tour-v3 .db-tour-head-meta {
	gap: 10px 16px;
}

.db-tour-head-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Sticky in-page nav */
.db-tour-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	display: flex;
	align-items: stretch;
	margin: 0 0 24px;
	background: rgba(248, 241, 230, 0.97);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--db-line);
}

.db-tour-nav-inner {
	display: flex;
	gap: 4px;
	flex: 1 1 auto;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.db-tour-nav-inner::-webkit-scrollbar {
	display: none;
}

.db-tour-nav-inner a {
	flex: 0 0 auto;
	padding: 14px 16px;
	color: var(--db-muted);
	font-size: 14px;
	font-weight: var(--db-weight-semibold);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2.5px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.db-tour-nav-inner a:hover {
	color: var(--db-ink);
}

.db-tour-nav-inner a.is-active {
	color: var(--db-rust);
	border-bottom-color: var(--db-rust);
}

.db-tour-nav-arrow {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	border: 0;
	background: linear-gradient(90deg, rgba(248, 241, 230, 0) 0%, var(--db-paper) 40%);
	color: var(--db-ink);
	cursor: pointer;
}

.db-tour-nav-next {
	background: linear-gradient(270deg, rgba(248, 241, 230, 0) 0%, var(--db-paper) 40%);
}

.db-tour-nav-arrow[hidden] {
	display: none;
}

.db-tour-nav-arrow .db-icon {
	width: 18px;
	height: 18px;
}

.db-tour-nav-prev .db-icon {
	transform: rotate(180deg);
}

/* USP / trust bar */
.db-tour-usps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: clamp(24px, 4vw, 38px);
	padding: 18px;
	border: 1px solid var(--db-line);
	border-radius: 16px;
	background: var(--db-card);
	box-shadow: 0 6px 20px rgba(43, 28, 15, 0.05);
}

.db-tour-usp {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: var(--db-weight-semibold);
	color: var(--db-ink);
	min-width: 0;
}

.db-tour-usp .db-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	color: var(--db-oasis);
}

/* Overview lead */
.db-tour-lead {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	line-height: 1.7;
	color: var(--db-muted);
}

/* Highlights checklist */
.db-tour-highlight-list {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
}

.db-tour-highlight-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--db-ink);
}

.db-tour-highlight-list .db-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 1px;
	padding: 3px;
	border-radius: 50%;
	background: rgba(47, 111, 94, 0.14);
	color: var(--db-oasis);
}

/* Included / not-included */
.db-tour-inex-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 4vw, 44px);
}

.db-tour-inex-col h2 {
	margin-bottom: 14px;
}

.db-tour-inex-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 11px;
}

.db-tour-inex-col li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
}

.db-tour-inex-col .db-icon {
	width: 19px;
	height: 19px;
	flex-shrink: 0;
	margin-top: 1px;
}

.db-tour-inex-yes .db-icon {
	color: var(--db-oasis);
}

.db-tour-inex-no .db-icon {
	color: var(--db-rust);
}

.db-tour-inex-no li span {
	color: var(--db-muted);
}

/* Itinerary timeline */
.db-tour-timeline {
	position: relative;
	margin-top: 10px;
	padding-left: 8px;
}

.db-tour-timeline-step {
	position: relative;
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	padding-bottom: 26px;
}

.db-tour-timeline-step::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 40px;
	bottom: -4px;
	width: 2px;
	background: var(--db-line-strong);
}

.db-tour-timeline-step:last-child::before {
	display: none;
}

.db-tour-timeline-dot {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--db-rust);
	color: #fff;
	font-weight: var(--db-weight-heavy);
	font-size: 15px;
	z-index: 1;
}

.db-tour-timeline-body h3 {
	margin: 6px 0 4px;
	font-size: 1.1rem;
}

.db-tour-timeline-body p {
	margin: 0;
	color: var(--db-muted);
	line-height: 1.6;
}

.db-tour-step-time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	font-size: 13px;
	font-weight: var(--db-weight-semibold);
	color: var(--db-rust);
}

.db-tour-step-time .db-icon {
	width: 14px;
	height: 14px;
}

/* Know before you go */
.db-tour-know-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 4vw, 44px);
	margin-top: 6px;
}

.db-tour-know-col h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-size: 1.05rem;
}

.db-tour-know-col h3 .db-icon {
	width: 18px;
	height: 18px;
	color: var(--db-oasis);
}

.db-tour-know-col ul {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 9px;
}

.db-tour-know-col li {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--db-muted);
}

/* Meeting + map */
.db-tour-meeting-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(18px, 3vw, 32px);
	align-items: start;
	margin-top: 6px;
}

.db-tour-meeting-copy p {
	color: var(--db-muted);
	line-height: 1.7;
}

.db-tour-meeting-loc {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--db-ink) !important;
	font-weight: var(--db-weight-semibold);
}

.db-tour-meeting-loc .db-icon {
	width: 18px;
	height: 18px;
	color: var(--db-rust);
}

.db-tour-map-embed {
	aspect-ratio: 16 / 10;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--db-line);
}

.db-tour-map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Reviews v3 tweaks */
.db-tour-v3 .db-tour-reviews article {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.db-tour-v3 .db-tour-reviews article strong {
	margin-top: auto;
}

/* Related tours */
.db-tour-related {
	width: min(100%, var(--db-max));
	margin: clamp(30px, 5vw, 56px) auto 0;
}

.db-tour-related > h2 {
	margin: 0 0 20px;
	font-family: var(--db-font-heading);
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	color: var(--db-ink);
}

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

/* FAQ chevron */
.db-tour-faqs summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.db-tour-faqs summary .db-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	transform: rotate(90deg);
	transition: transform 0.15s ease;
	color: var(--db-rust);
}

.db-tour-faqs details[open] summary .db-icon {
	transform: rotate(-90deg);
}

/* Responsive */
@media (max-width: 900px) {
	.db-tour-usps {
		grid-template-columns: 1fr 1fr;
	}

	.db-tour-nav {
		top: 0;
	}
}

@media (max-width: 680px) {
	.db-tour-highlight-list,
	.db-tour-inex-grid,
	.db-tour-know-grid,
	.db-tour-meeting-grid,
	.db-tours-grid-3 {
		grid-template-columns: 1fr;
	}

	.db-tour-usps {
		gap: 12px;
		padding: 14px;
	}

	.db-tour-usp {
		font-size: 13.5px;
	}

	.db-tour-related .db-tours-grid,
	.db-tours-grid-3 {
		grid-template-columns: 1fr;
	}
}
