/* ============================================================
   SINGLE TOUR PAGE — Viator-style layout
   ============================================================ */

.lt-single-tour {
	font-family: "GoogleSansFlex-VariableFont", sans-serif;
	color: #000;
	background: #fff;
	overflow: visible;
	width: 100%;
}

.lt-single-tour__wrap {
	width: min(var(--lt-container-width, 1300px), calc(100% - 2 * var(--lt-container-gutter, 0px)));
	max-width: var(--lt-container-width, 1300px);
	margin-inline: auto;
	padding: 1.5rem 0 4rem;
	overflow: visible;
}

.lt-single-tour__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 1.25rem;
	font-size: 0.82rem;
	color: #7a7a7a;
}

.lt-single-tour__breadcrumbs a {
	color: #7a7a7a;
	text-decoration: none;
}

.lt-single-tour__breadcrumbs a:hover {
	color: #327ad0;
}

.lt-single-tour__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.lt-single-tour__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.6rem, 3vw, 2.15rem);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.4px;
}

.lt-single-tour__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.92rem;
	color: #444;
}

.lt-single-tour__rating-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.lt-single-tour__rating-star {
	color: #ffc107;
	font-size: 1rem;
}

.lt-single-tour__rating-count {
	color: #7a7a7a;
}

.lt-single-tour__meta-dot {
	color: #bbb;
}

.lt-single-tour__share,
.lt-single-tour__share:focus,
.lt-single-tour__share:active,
.lt-single-tour__share:focus-visible {
	border: 1px solid #ddd !important;
	background: #fff !important;
	color: #1a1a1a !important;
	border-radius: 999px;
	padding: 0.45rem 1rem;
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	outline: none !important;
	box-shadow: none !important;
}

.lt-single-tour__share:hover {
	border-color: #327ad0 !important;
	background: #fff !important;
	color: #327ad0 !important;
}

/* Gallery */
.lt-single-tour__gallery {
	display: grid;
	grid-template-columns: 1fr 1.55fr;
	grid-template-rows: 1fr 1fr;
	gap: 0.5rem;
	height: clamp(260px, 38vw, 420px);
	margin-bottom: 2rem;
	border-radius: 16px;
	overflow: hidden;
}

.lt-single-tour__gallery-item {
	position: relative;
	overflow: hidden;
}

.lt-single-tour__gallery-item--1 { grid-row: 1; grid-column: 1; }
.lt-single-tour__gallery-item--2 { grid-row: 2; grid-column: 1; }
.lt-single-tour__gallery-item--3 { display: none; }
.lt-single-tour__gallery-item--4 { display: none; }

.lt-single-tour__gallery-main {
	grid-row: 1 / -1;
	grid-column: 2;
}

.lt-single-tour__gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lt-single-tour__gallery-btn,
.lt-single-tour__gallery-btn:hover,
.lt-single-tour__gallery-btn:focus,
.lt-single-tour__gallery-btn:active,
.lt-single-tour__gallery-btn:focus-visible {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	border: 0 !important;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95) !important;
	color: #1a1a1a !important;
	padding: 0.55rem 1rem;
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
	outline: none !important;
	text-decoration: none;
}

.lt-single-tour__gallery-btn:hover {
	background: #fff !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
}

/* Layout */
.lt-single-tour__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 2.5rem;
}

.lt-single-tour__content {
	min-width: 0;
}

.lt-single-tour__section {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #ebebeb;
}

.lt-single-tour__section:last-child {
	border-bottom: 0;
}

.lt-single-tour__section h2 {
	margin: 0 0 1rem;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.28px;
}

.lt-single-tour__section p {
	margin: 0 0 0.75rem;
	line-height: 1.65;
	color: #333;
}

.lt-single-tour__section--cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.lt-single-tour__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 2rem;
	padding: 0 0 1.5rem;
	list-style: none;
	border-bottom: 1px solid #ebebeb;
}

.lt-single-tour__facts li {
	display: inline-flex;
	align-items: center;
	font-size: 0.82rem;
	font-weight: 500;
	color: #444;
	background: #f2f2f2;
	border-radius: 999px;
	padding: 0.3rem 0.85rem;
	white-space: nowrap;
}

.lt-single-tour__facts li a {
	color: #327ad0;
	text-decoration: none;
}

.lt-single-tour__facts li:not(:last-child)::after {
	content: none;
}

.lt-single-tour__list {
	margin: 0;
	padding-left: 1.1rem;
	color: #333;
	line-height: 1.7;
}

.lt-single-tour__list--included li::marker {
	color: #327ad0;
}

.lt-single-tour__prose {
	color: #333;
	line-height: 1.7;
}

.lt-single-tour__note {
	color: #7a7a7a;
	font-size: 0.9rem;
}

/* ── Reviews section ─────────────────────────────────────────────────── */
.lt-reviews__header {
	margin-bottom: 1.25rem;
}

.lt-reviews__header h2 {
	margin: 0 0 0.35rem;
}

.lt-reviews__subtitle {
	margin: 0;
	color: #6b6b6b;
	font-size: 0.95rem;
}

.lt-reviews__summary {
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 1.75rem;
	align-items: center;
	margin-bottom: 1.75rem;
	padding: 1.4rem 1.5rem;
	background: linear-gradient(180deg, #f8faf6 0%, #f3f6f1 100%);
	border: 1px solid #e4ebe0;
	border-radius: 16px;
}

.lt-reviews__score {
	text-align: center;
}

.lt-reviews__score-value {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #1a1a1a;
}

.lt-reviews__score-count {
	margin: 0.45rem 0 0;
	font-size: 0.85rem;
	color: #6b6b6b;
}

.lt-stars {
	display: inline-flex;
	gap: 0.08rem;
	margin-top: 0.35rem;
	line-height: 1;
}

.lt-stars__star {
	font-size: 1rem;
	color: #d8d8d8;
}

.lt-stars__star--full,
.lt-stars__star--half {
	color: #e6b422;
}

.lt-reviews__bars {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.lt-reviews__bar {
	display: grid;
	grid-template-columns: 42px 1fr 28px;
	gap: 0.65rem;
	align-items: center;
	font-size: 0.8rem;
	color: #555;
}

.lt-reviews__bar-track {
	height: 8px;
	background: #e5e8e2;
	border-radius: 999px;
	overflow: hidden;
}

.lt-reviews__bar-fill {
	display: block;
	height: 100%;
	background: #327ad0;
	border-radius: 999px;
	min-width: 0;
	transition: width 0.25s ease;
}

.lt-reviews__bar-count {
	text-align: right;
	color: #888;
	font-variant-numeric: tabular-nums;
}

.lt-reviews__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lt-reviews__card {
	padding: 1.35rem 0;
	border-bottom: 1px solid #ececec;
}

.lt-reviews__card:last-child {
	border-bottom: 0;
}

.lt-reviews__card-top {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 0.7rem;
}

.lt-reviews__avatar {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #327ad0;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lt-reviews__meta {
	flex: 1;
	min-width: 0;
}

.lt-reviews__meta-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem 0.65rem;
}

.lt-reviews__meta-row--sub {
	margin-top: 0.2rem;
}

.lt-reviews__author {
	font-size: 0.98rem;
	color: #1a1a1a;
}

.lt-reviews__source {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #327ad0;
	background: rgba(101, 157, 70, 0.12);
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
}

.lt-reviews__date {
	font-size: 0.8rem;
	color: #8a8a8a;
}

.lt-reviews__title {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	font-weight: 650;
	color: #1a1a1a;
	line-height: 1.3;
}

.lt-reviews__body {
	color: #3d3d3d;
	line-height: 1.65;
	font-size: 0.95rem;
}

.lt-reviews__body p {
	margin: 0 0 0.6rem;
}

.lt-reviews__body p:last-child {
	margin-bottom: 0;
}

.lt-reviews__photos {
	display: flex;
	gap: 0.45rem;
	margin-top: 0.85rem;
	flex-wrap: wrap;
}

.lt-reviews__photo {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 8px;
	overflow: hidden;
}

.lt-reviews__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lt-reviews__link {
	display: inline-block;
	margin-top: 0.7rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #327ad0;
	text-decoration: none;
}

.lt-reviews__link:hover {
	text-decoration: underline;
}

.lt-reviews__more {
	display: block;
	width: 100%;
	margin-top: 0.75rem;
	padding: 0.85rem 1.25rem;
	border: 1.5px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	color: #1a1a1a;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.lt-reviews__more:hover {
	border-color: #327ad0;
	background: #f7faf5;
}

.lt-reviews__empty {
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: #f8f8f8;
	border-radius: 16px;
	border: 1px dashed #ddd;
}

.lt-reviews__empty-icon {
	font-size: 1.75rem;
	color: #e6b422;
	margin-bottom: 0.5rem;
}

.lt-reviews__empty-title {
	margin: 0 0 0.35rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a1a;
}

.lt-reviews__empty-text {
	margin: 0;
	color: #777;
	font-size: 0.92rem;
}

a.lt-single-tour__rating-pill {
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
}

a.lt-single-tour__rating-pill:hover {
	background: rgba(101, 157, 70, 0.12);
}

@media (max-width: 640px) {
	.lt-reviews__summary {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		text-align: center;
	}

	.lt-reviews__bars {
		text-align: left;
	}
}

/* Sticky booking sidebar */
.lt-single-tour__sidebar {
	position: sticky;
	top: calc(1.5rem + var(--wp-admin--admin-bar--height, 0px));
	align-self: start;
	height: fit-content;
	z-index: 20;
}

.lt-single-tour__booking {
	background: #fff;
	border: 1px solid #ebebeb;
	border-radius: 16px;
	padding: 1.25rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.lt-single-tour__booking-badge {
	display: inline-block;
	margin-bottom: 0.75rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #327ad0;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
}

.lt-single-tour__booking-price {
	margin-bottom: 0.35rem;
}

.lt-single-tour__booking-from {
	display: block;
	font-size: 0.82rem;
	color: #7a7a7a;
}

.lt-single-tour__booking-regular {
	margin-right: 0.35rem;
	color: #7a7a7a;
	text-decoration: line-through;
	font-size: 0.95rem;
}

.lt-single-tour__booking-amount {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.3px;
}

.lt-single-tour__booking-note {
	display: block;
	font-size: 0.78rem;
	color: #7a7a7a;
}

.lt-single-tour__booking-guarantee {
	margin: 0 0 1rem;
	font-size: 0.82rem;
	color: #327ad0;
	font-weight: 600;
}

.lt-single-tour__required {
	margin-left: 0.15rem;
	color: #7a7a7a;
	font-size: 0.85em;
	line-height: 1;
}

.lt-single-tour__booking-hint {
	margin: 0.5rem 0 0;
	font-size: 0.78rem;
	font-weight: 400;
	color: #7a7a7a;
	text-align: center;
}

.lt-single-tour__booking-hint:empty {
	display: none;
	margin: 0;
}

.lt-single-tour__booking-form label {
	display: block;
	margin-bottom: 0.85rem;
}

.lt-single-tour__booking-form label span {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: #333;
}

.lt-single-tour__booking-form input,
.lt-single-tour__booking-form select {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: inherit;
	font-size: 0.9rem;
}

.lt-single-tour__booking-btn {
	width: 100%;
	margin-top: 0.25rem;
	padding: 0.9rem 1rem;
	border: 0;
	border-radius: 999px;
	background: #327ad0;
	color: #fff !important;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease-out;
}

.lt-single-tour__booking-btn:hover {
	background: #55863b;
}

.lt-single-tour__booking-trust {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.78rem;
	color: #7a7a7a;
	line-height: 1.6;
}

.lt-single-tour__related {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #ebebeb;
}

.lt-single-tour__related h2 {
	margin: 0 0 1.25rem;
	font-size: 1.5rem;
	font-weight: 700;
}

@media (max-width: 960px) {
	.lt-single-tour__layout {
		grid-template-columns: 1fr;
	}

	.lt-single-tour__sidebar {
		position: static;
		order: -1;
	}

	.lt-single-tour__booking {
		position: static;
	}

	.lt-single-tour__gallery {
		grid-template-columns: 1fr;
		grid-template-rows: 220px 120px;
		height: auto;
	}

	.lt-single-tour__gallery-main {
		grid-row: 1;
		grid-column: 1;
	}

	.lt-single-tour__gallery-item--1 {
		grid-row: 2;
		grid-column: 1;
	}

	.lt-single-tour__gallery-item--2 {
		display: none;
	}

	.lt-single-tour__section--cols {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.lt-single-tour__header {
		flex-direction: column;
	}
}

/* Match Elementor header container width + side gutters at every breakpoint */
body.single-tour {
	--lt-container-width: 1300px;
	--lt-container-gutter: max(15px, 2.6vw, calc((100vw - var(--lt-container-width)) / 2));
}

body.single-tour .site-main,
body.single-tour #content.lt-single-tour {
	max-width: none !important;
	width: 100% !important;
	margin-inline: auto !important;
	padding-inline: 0 !important;
	overflow: visible;
}

/* Ensure sticky works — no overflow clipping from theme wrappers */
body.single-tour #content,
body.single-tour .site-main,
body.single-tour .lt-single-tour {
	overflow: visible;
}

/* ── Date picker row ─────────────────────────────────────────────────────── */
.lt-single-tour__date-row {
	border: 1.5px solid #e0e0e0;
	border-radius: 12px;
	margin-bottom: 0.85rem;
	cursor: pointer;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	position: relative;
}

.lt-single-tour__date-row:hover {
	border-color: #c0c0c0;
}

.lt-single-tour__date-inner {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.8rem 1rem;
}

/* Calendar icon column */
.lt-single-tour__date-icon-wrap {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(101, 157, 70, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #327ad0;
}

.lt-single-tour__date-info {
	flex: 1;
	min-width: 0;
}

/* Small label above the value */
.lt-single-tour__date-label {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	margin-bottom: 0.1rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.3;
	cursor: pointer;
	text-transform: none;
	letter-spacing: normal;
}

/* Hide the svg from the label — we moved it to the icon wrap */
.lt-single-tour__date-label svg {
	display: none;
}

.lt-single-tour__date-input,
.lt-single-tour__date-input:link,
.lt-single-tour__date-input:visited,
.lt-single-tour__date-input:hover,
.lt-single-tour__date-input:focus,
.lt-single-tour__date-input:active,
.lt-single-tour__date-input:focus-visible,
.lt-single-tour__date-input:focus-within {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	font-family: inherit;
	font-size: 0.82rem;
	color: #7a7a7a !important;
	cursor: pointer;
	box-sizing: border-box;
	transition: color 0.15s ease;
}


.lt-single-tour__date-input:focus,
.lt-single-tour__date-input:not(:placeholder-shown) {
	color: #1a1a1a !important;
}

.lt-single-tour__date-row:focus-within {
	border-color: #327ad0;
	box-shadow: 0 0 0 3px rgba(101, 157, 70, 0.12);
}

.lt-single-tour__date-icon {
	flex-shrink: 0;
	color: #aaa;
	line-height: 1;
	pointer-events: none;
}

/* ── Pax picker ──────────────────────────────────────────────────────────── */
.lt-single-tour__pax-picker {
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0.85rem;
}

.lt-pax-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem 0.75rem;
	padding: 0.75rem 0.9rem;
	border-bottom: 1px solid #ebebeb;
}

.lt-pax-row:last-child {
	border-bottom: none;
}

.lt-pax-row__info {
	flex: 1;
	min-width: 0;
}

.lt-pax-row__label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.3;
}

.lt-pax-row__price {
	display: block;
	margin-top: 0.1rem;
	font-size: 0.82rem;
	color: #7a7a7a;
}

.lt-pax-row__note {
	display: block !important;
	flex: 1 1 100% !important;
	width: 100% !important;
	margin: 0.1rem 0 0 !important;
	padding: 0 !important;
	font-size: 0.68rem !important;
	color: #bbb !important;
	font-style: italic !important;
	line-height: 1.35 !important;
}

.lt-pax-row__counter {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}

.lt-pax-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1.5px solid #d0d0d0;
	border-radius: 50%;
	background: #fff;
	font-size: 1.1rem;
	font-family: inherit;
	line-height: 1;
	color: #1a1a1a;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.lt-pax-btn:not(:disabled):hover,
.lt-pax-btn:not(:disabled):focus {
	border-color: #327ad0;
	background: rgba(101, 157, 70, 0.06);
	color: #327ad0;
}

.lt-pax-btn:disabled,
.lt-pax-btn:disabled:hover,
.lt-pax-btn:disabled:focus,
.lt-pax-btn:disabled:active {
	opacity: 0.3;
	cursor: default;
	border-color: #d0d0d0 !important;
	background: #fff !important;
	color: #1a1a1a !important;
	box-shadow: none !important;
}

.lt-pax-qty {
	min-width: 1.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
}

.lt-single-tour__pax-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.65rem 0.9rem;
	background: #f7f7f7;
	border-top: 1px solid #ebebeb;
	font-size: 0.88rem;
	color: #7a7a7a;
}

.lt-single-tour__pax-total strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1a1a;
}

/* ── Add-ons ─────────────────────────────────────────────────────────────── */
.lt-addon-list {
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0.85rem;
}

.lt-addon-list__heading {
	margin: 0;
	padding: 0.55rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #7a7a7a;
	background: #f7f7f7;
	border-bottom: 1px solid #e0e0e0;
}

.lt-addon-row {
	border-bottom: 1px solid #ebebeb;
	transition: background 0.15s ease;
}

.lt-addon-row:last-child {
	border-bottom: none;
}

.lt-addon-row--selected {
	background: #f4f9f1;
}

/* Mirror the pax-row layout: checkbox | info | price */
.lt-addon-row__label {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.75rem 0.9rem;
	cursor: pointer;
	width: 100%;
}

.lt-addon-check {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	accent-color: #327ad0;
	cursor: pointer;
}

.lt-addon-row__info {
	flex: 1;
	min-width: 0;
}

.lt-addon-row__name {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.3;
}

.lt-addon-row__desc {
	display: block;
	margin-top: 0.1rem;
	font-size: 0.78rem;
	color: #7a7a7a;
	line-height: 1.35;
	/* Cap to 1 line with ellipsis */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Price pinned to the right, like lt-pax-row__price */
.lt-addon-row__price {
	flex-shrink: 0;
	text-align: right;
	font-size: 0.82rem;
	font-weight: 600;
	color: #327ad0;
	white-space: nowrap;
}

.lt-addon-row__price span {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	color: #7a7a7a;
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */

/* ── Lightbox ─────────────────────────────────────────────────────────── */
.lt-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(10, 10, 10, 0.96);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	-webkit-font-smoothing: antialiased;
}

.lt-lightbox--open {
	display: flex;
}

/* Reset all buttons inside lightbox */
.lt-lightbox button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	outline: none !important;
	border: none !important;
	box-shadow: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	line-height: 1;
}

.lt-lightbox button:focus-visible {
	outline: 2px solid rgba(255,255,255,0.5) !important;
	outline-offset: 2px;
}

/* Toolbar */
.lt-lightbox__toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
	z-index: 3;
}

.lt-lightbox__counter {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.lt-lightbox__close {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
	font-size: 1.1rem !important;
	transition: background 0.18s ease !important;
}

.lt-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.25) !important;
}

/* Main image area */
.lt-lightbox__img-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex: 1 1 auto;
	padding: 4.5rem 5.5rem 1rem;
	box-sizing: border-box;
	min-height: 0;
	overflow: hidden;
}

/* Stage: fixed uniform frame — all images fill the same box */
.lt-lightbox__stage {
	position: relative;
	width: 100%;
	height: 62vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;
}

.lt-lightbox__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 10px;
	display: block;
}

.lt-lightbox__img--loading {
	opacity: 0;
}

/* ── Slide transition ─────────────────────────────────────────────── */
/* Incoming image slides in from right (forward nav) */
.lt-lightbox__img--slide-from-right {
	animation: lt-slide-from-right 0.32s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Incoming image slides in from left (back nav) */
.lt-lightbox__img--slide-from-left {
	animation: lt-slide-from-left 0.32s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Current image slides out to left (forward nav) */
.lt-lightbox__img--slide-out-right {
	animation: lt-slide-out-left 0.32s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Current image slides out to right (back nav) */
.lt-lightbox__img--slide-out-left {
	animation: lt-slide-out-right 0.32s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes lt-slide-from-right {
	from { opacity: 0; transform: translateX(80px); }
	to   { opacity: 1; transform: translateX(0);    }
}
@keyframes lt-slide-from-left {
	from { opacity: 0; transform: translateX(-80px); }
	to   { opacity: 1; transform: translateX(0);     }
}
@keyframes lt-slide-out-left {
	from { opacity: 1; transform: translateX(0);     }
	to   { opacity: 0; transform: translateX(-80px); }
}
@keyframes lt-slide-out-right {
	from { opacity: 1; transform: translateX(0);    }
	to   { opacity: 0; transform: translateX(80px); }
}

/* Prev / Next arrows */
.lt-lightbox__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 48px !important;
	height: 48px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
	font-size: 1.8rem !important;
	z-index: 3;
	transition: background 0.18s ease, transform 0.18s ease !important;
}

.lt-lightbox__arrow:hover {
	background: rgba(255, 255, 255, 0.25) !important;
	transform: translateY(-50%) scale(1.08) !important;
}

.lt-lightbox__arrow--prev { left: 1rem; }
.lt-lightbox__arrow--next { right: 1rem; }

.lt-lightbox__arrow--hidden {
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Thumbnail strip */
.lt-lightbox__thumbs {
	flex-shrink: 0;
	display: flex;
	gap: 6px;
	justify-content: center;
	padding: 0.75rem 1.25rem 1.1rem;
	width: 100%;
	box-sizing: border-box;
	overflow-x: auto;
	scrollbar-width: none;
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.lt-lightbox__thumbs::-webkit-scrollbar { display: none; }

.lt-lightbox__thumb {
	flex-shrink: 0;
	width: 64px;
	height: 46px;
	border-radius: 6px;
	overflow: hidden;
	opacity: 0.45;
	cursor: pointer;
	border: 2px solid transparent !important;
	transition: opacity 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.lt-lightbox__thumb:hover {
	opacity: 0.8;
	transform: scale(1.05);
}

.lt-lightbox__thumb--active {
	opacity: 1 !important;
	border-color: #327ad0 !important;
}

.lt-lightbox__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 640px) {
	.lt-lightbox__img-wrap {
		padding: 4rem 0.5rem 0.5rem;
	}

	.lt-lightbox__stage {
		height: 52vh;
	}

	.lt-lightbox__arrow {
		width: 40px !important;
		height: 40px !important;
		font-size: 1.4rem !important;
	}

	.lt-lightbox__arrow--prev { left: 0.4rem; }
	.lt-lightbox__arrow--next { right: 0.4rem; }

	.lt-lightbox__thumb {
		width: 50px;
		height: 36px;
	}
}

/* ── Flatpickr calendar theme ────────────────────────────────────────────── */

/* Flatpickr hides the original input itself — just ensure the altInput matches our styling */

/* The altInput (visible date field) gets .lt-single-tour__date-input via onReady;
   additionally target it directly for overrides that might conflict with theme defaults */
.lt-single-tour__date-info .flatpickr-input[readonly] {
	display: block !important;
	width: 100%;
	margin: 0;
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	font-family: inherit !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	color: #1a1a1a !important;
	cursor: pointer !important;
	caret-color: transparent;
	height: auto !important;
}

.lt-single-tour__date-info .flatpickr-input[readonly]::placeholder {
	color: #aaa !important;
	font-weight: 400 !important;
}

/* Calendar popup */
.flatpickr-calendar {
	font-family: inherit !important;
	border-radius: 14px !important;
	border: 1px solid #e8e8e8 !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
	padding: 12px !important;
	width: 310px !important;
}


.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
	display: none !important;
}

/* Month header */
.flatpickr-months {
	padding: 0 0 8px 0;
	align-items: center;
}

.flatpickr-month {
	height: 36px !important;
	color: #1a1a1a !important;
	fill: #1a1a1a !important;
}

.flatpickr-current-month {
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #1a1a1a !important;
	padding-top: 6px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
	font-weight: 600;
	color: #1a1a1a;
	background: transparent;
	border: none;
	font-family: inherit;
}

.flatpickr-current-month input.cur-year {
	font-weight: 600 !important;
	color: #1a1a1a !important;
	font-family: inherit !important;
}

/* Prev / next arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
	padding: 7px !important;
	color: #555 !important;
	fill: #555 !important;
	border-radius: 8px !important;
	transition: background 0.15s ease, color 0.15s ease !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
	background: #f0f7eb !important;
	color: #327ad0 !important;
	fill: #327ad0 !important;
}

/* Weekday labels */
.flatpickr-weekdays {
	background: transparent !important;
}

.flatpickr-weekday {
	color: #999 !important;
	font-size: 0.78rem !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: transparent !important;
}

/* Day cells */
.flatpickr-day {
	border-radius: 8px !important;
	font-size: 0.88rem !important;
	font-weight: 500 !important;
	height: 36px !important;
	line-height: 36px !important;
	max-width: 36px !important;
	color: #1a1a1a !important;
	transition: background 0.12s ease, color 0.12s ease !important;
	border: none !important;
}

.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
	background: #f0f7eb !important;
	color: #2d5f18 !important;
}

.flatpickr-day.today {
	border: 2px solid #327ad0 !important;
	color: #327ad0 !important;
	font-weight: 700 !important;
}

.flatpickr-day.today:hover {
	background: #f0f7eb !important;
	color: #327ad0 !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
	background: #327ad0 !important;
	color: #fff !important;
	border-color: #327ad0 !important;
	font-weight: 700 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
	color: #ccc !important;
	background: transparent !important;
	cursor: default !important;
}

/* Days container spacing */
.dayContainer {
	padding: 4px 0 !important;
	gap: 2px !important;
}

.flatpickr-days {
	width: 100% !important;
}

.flatpickr-innerContainer {
	width: 100% !important;
}

.dayContainer,
.flatpickr-weeks {
	width: 100% !important;
	min-width: 100% !important;
	max-width: 100% !important;
}

/* Responsive — keep calendar within viewport on mobile */
@media (max-width: 480px) {
	.flatpickr-calendar {
		width: calc(100vw - 2rem) !important;
		max-width: 310px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
	}
}

/* ── Per-day availability indicators ───────────────────────────────────── */

/* Available day — small green dot below the number */
.flatpickr-day.lt-fp-day--available:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay) {
	position: relative;
}
.flatpickr-day.lt-fp-day--available:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay)::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #327ad0;
	pointer-events: none;
}
.flatpickr-day.lt-fp-day--available.selected::after {
	background: #fff;
}

/* Sold-out day — muted amber tint, strikethrough-ish */
.flatpickr-day.lt-fp-day--soldout {
	color: #c9a03a !important;
	text-decoration: line-through !important;
	opacity: 0.6 !important;
	cursor: not-allowed !important;
}

/* Unavailable day — visually dimmed */
.flatpickr-day.lt-fp-day--unavailable {
	opacity: 0.25 !important;
	cursor: not-allowed !important;
}

/* Loading state — subtle pulse while fetching */
.flatpickr-day.lt-fp-day--loading {
	opacity: 0.4;
	animation: lt-fp-pulse 1.2s ease-in-out infinite;
}

@keyframes lt-fp-pulse {
	0%, 100% { opacity: 0.4; }
	50%       { opacity: 0.2; }
}

/* ── Availability loading indicator ──────────────────────────────────── */
.lt-avail-loading {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-left: 0.6rem;
	font-size: 0.75rem;
	font-weight: 400;
	color: #888;
	vertical-align: middle;
}

.lt-avail-loading__spinner {
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 2px solid #ddd;
	border-top-color: #327ad0;
	border-radius: 50%;
	animation: lt-avail-spin 0.7s linear infinite;
	flex-shrink: 0;
}

@keyframes lt-avail-spin {
	to { transform: rotate(360deg); }
}
