@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
	--lt-emerald: #059669;
	--lt-emerald-hover: #047857;
	--lt-charcoal: #0f172a;
	--lt-charcoal-hover: #1e293b;
	--lt-gold: #d97706;
	--lt-gold-hover: #b45309;
	--lt-bg-light: #f8fafc;
	--lt-border-light: #e2e8f0;
	--lt-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
	--lt-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
	--lt-shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
	--lt-radius-sm: 6px;
	--lt-radius-md: 10px;
	--lt-radius-lg: 16px;
	--lt-font-headings: 'Outfit', sans-serif;
	--lt-font-body: 'Inter', sans-serif;
}

.lt-tours-container,
.lt-tour-detail-wrapper,
.lt-booking-wizard-wrapper,
.lt-inquiry-form-wrapper {
	box-sizing: border-box;
	width: 100%;
	font-family: var(--lt-font-body);
}

/* Base Headings styling */
.lt-tours-container h1, .lt-tours-container h2, .lt-tours-container h3, .lt-tours-container h4,
.lt-tour-detail-wrapper h1, .lt-tour-detail-wrapper h2, .lt-tour-detail-wrapper h3, .lt-tour-detail-wrapper h4,
.lt-booking-wizard-wrapper h1, .lt-booking-wizard-wrapper h2, .lt-booking-wizard-wrapper h3, .lt-booking-wizard-wrapper h4,
.lt-inquiry-form-wrapper h1, .lt-inquiry-form-wrapper h2, .lt-inquiry-form-wrapper h3, .lt-inquiry-form-wrapper h4 {
	font-family: var(--lt-font-headings);
	color: var(--lt-charcoal);
	font-weight: 700;
}

.lt-tours-filter-bar {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) minmax(180px, 1fr);
	gap: 12px;
	margin: 0 0 20px;
}

.lt-grid-layout {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.lt-tour-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid #f1f1f1;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lt-tour-card:hover {
	/* hover effects intentionally disabled – see .lt-gowilds-tour-card override */
	transform: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.lt-tour-card__thumb-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #f3f4f6;
}

.lt-tour-card__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.3s ease;
}

.lt-tour-card__thumb--placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}

.lt-tour-card:hover .lt-tour-card__thumb {
	transform: scale(1.05);
	filter: brightness(0.95);
}

.lt-tour-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
}

.lt-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
}

.lt-stars-gold {
	color: #ffb400;
	letter-spacing: 2px;
}

.lt-stars-grey {
	color: #e5e7eb;
	letter-spacing: 2px;
}

.lt-rating-val {
	font-weight: 600;
	color: var(--lt-charcoal);
}

.lt-review-count {
	color: #6b7280;
}

.lt-tour-card__title {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.35;
	font-family: var(--lt-font-headings);
	font-weight: 700;
}

.lt-tour-card__title a {
	color: var(--lt-charcoal);
	text-decoration: none;
	transition: color 0.15s ease;
}

.lt-tour-card__title a:hover {
	color: var(--lt-emerald);
}

.lt-tour-card__location,
.lt-tour-card__price,
.lt-tour-card__duration {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #4b5563;
	font-size: 0.92rem;
}

.lt-tour-card__location svg,
.lt-tour-card__price svg,
.lt-tour-card__duration svg {
	color: var(--lt-emerald);
	flex-shrink: 0;
}

.lt-tour-card__price {
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--lt-charcoal);
	margin-top: 2px;
}

.lt-tour-card__footer {
	display: flex;
	align-items: center;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px dashed var(--lt-border-light);
}

.lt-status-badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 3px 10px;
	border-radius: 999px;
	background: #eef2ff;
	color: #3730a3;
	font-size: 0.78rem;
	font-weight: 600;
	font-family: var(--lt-font-headings);
}

.lt-input,
.lt-select,
.lt-textarea {
	box-sizing: border-box;
	width: 100%;
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid var(--lt-border-light);
	border-radius: var(--lt-radius-sm);
	background: #fff;
	color: var(--lt-charcoal);
	font: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lt-input:focus,
.lt-select:focus,
.lt-textarea:focus {
	outline: none;
	border-color: var(--lt-emerald);
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.lt-textarea {
	min-height: 110px;
	resize: vertical;
}

.lt-form-grid,
.lt-occupants-inputs,
.lt-inc-exc-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.lt-form-group {
	margin-bottom: 14px;
}

.lt-form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--lt-charcoal);
}

.lt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 18px;
	border: 1px solid var(--lt-charcoal);
	border-radius: var(--lt-radius-sm);
	background: var(--lt-charcoal);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lt-btn:hover {
	background: var(--lt-charcoal-hover);
	border-color: var(--lt-charcoal-hover);
	transform: translateY(-1px);
}

.lt-btn-secondary {
	border-color: var(--lt-border-light);
	background: #fff;
	color: var(--lt-charcoal);
}

.lt-btn-secondary:hover {
	background: var(--lt-bg-light);
	border-color: #cbd5e1;
	color: var(--lt-charcoal-hover);
}

.lt-btn-submit {
	background: var(--lt-emerald);
	border-color: var(--lt-emerald);
}

.lt-btn-submit:hover {
	background: var(--lt-emerald-hover);
	border-color: var(--lt-emerald-hover);
}


.lt-wizard-steps-indicator {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.lt-step-indicator {
	padding: 8px 10px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #4b5563;
	font-size: 0.9rem;
	font-weight: 700;
}

.lt-step-indicator.active {
	background: #111827;
	color: #fff;
}

.lt-wizard-step,
.lt-tab-panel,
.hidden {
	display: none;
}

.lt-wizard-step.active,
.lt-tab-panel.active {
	display: block;
}

.lt-wizard-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	margin-top: 18px;
}

.lt-price-summary-panel {
	margin: 20px 0;
	padding: 20px;
	border: 1px dashed var(--lt-border-light);
	border-radius: var(--lt-radius-md);
	background: #f8fafc;
	box-shadow: var(--lt-shadow-sm);
}

.lt-price-summary-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	font-size: 0.95rem;
	color: #4b5563;
}

.lt-price-summary-row:not(:last-child) {
	border-bottom: 1px dashed var(--lt-border-light);
}

.lt-price-total {
	margin-top: 10px;
	padding-top: 12px;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--lt-charcoal);
}

.lt-price-total #lt-summary-total {
	color: var(--lt-emerald);
	font-weight: 800;
	font-size: 1.35rem;
}

.lt-tour-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.lt-tab-btn {
	padding: 9px 13px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
}

.lt-tab-btn.active {
	background: #111827;
	border-color: #111827;
	color: #fff;
}

.lt-addon-item,
.lt-policy-section,
.lt-inclusions-box,
.lt-exclusions-box {
	padding: 12px;
	border: 1px solid var(--lt-border-light);
	border-radius: var(--lt-radius-md);
	background: #fff;
}

.lt-inclusions-box ul,
.lt-exclusions-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lt-inclusions-box ul li,
.lt-exclusions-box ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #4b5563;
}

.lt-inclusions-box ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	background-color: var(--lt-emerald);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
	mask-size: contain;
	-webkit-mask-size: contain;
}

.lt-exclusions-box ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	background-color: #ef4444; /* Red accent */
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
	mask-size: contain;
	-webkit-mask-size: contain;
}

.lt-itinerary-timeline {
	position: relative;
	padding-left: 24px;
	margin-left: 10px;
	border-left: 2px solid var(--lt-border-light);
	margin-top: 15px;
}

.lt-itinerary-day {
	position: relative;
	margin-bottom: 16px;
	border: 1px solid var(--lt-border-light);
	border-radius: var(--lt-radius-md);
	background: #fff;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lt-itinerary-day:hover {
	border-color: var(--lt-emerald);
	box-shadow: var(--lt-shadow-sm);
}

/* Bullet marker on the connector line */
.lt-itinerary-day::before {
	content: '';
	position: absolute;
	left: -31px;
	top: 20px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--lt-emerald);
	border: 2px solid #fff;
	z-index: 2;
}

.lt-day-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	cursor: pointer;
	user-select: none;
}

.lt-day-badge {
	background: var(--lt-emerald);
	color: #fff;
	padding: 4px 10px;
	border-radius: var(--lt-radius-sm);
	font-family: var(--lt-font-headings);
	font-weight: 700;
	font-size: 0.85rem;
	white-space: nowrap;
}

.lt-day-title {
	margin: 0 !important;
	flex: 1;
	font-family: var(--lt-font-headings);
	font-size: 1.05rem;
	color: var(--lt-charcoal);
	font-weight: 700;
}

.lt-accordion-arrow {
	transition: transform 0.25s ease;
	color: #94a3b8;
	font-size: 1rem;
}

.lt-itinerary-day.active .lt-accordion-arrow {
	transform: rotate(180deg);
}

.lt-day-content {
	display: none;
	padding: 16px;
	border-top: 1px solid var(--lt-border-light);
	background: var(--lt-bg-light);
}

.lt-itinerary-day.active .lt-day-content {
	display: block;
}

.lt-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.lt-gallery-grid--count-1 {
	grid-template-columns: 1fr;
}

.lt-gallery-grid--count-2 {
	grid-template-columns: repeat(2, 1fr);
}

.lt-gallery-grid--count-3 {
	grid-template-columns: repeat(3, 1fr);
}

.lt-gallery-grid--count-4 {
	grid-template-columns: repeat(4, 1fr);
}

.lt-gallery-item img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lt-radius-md);
	transition: transform 0.25s ease, filter 0.25s ease;
}

.lt-gallery-item img:hover {
	transform: scale(1.03);
	filter: brightness(0.95);
}

/* Collage Gallery Layout */
.lt-gallery-collage {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 160px);
	gap: 10px;
	margin-bottom: 24px;
}

.lt-gallery-collage__main {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.lt-gallery-collage__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--lt-radius-md);
	background: #f1f5f9;
}

.lt-gallery-collage__item a {
	display: block;
	width: 100%;
	height: 100%;
}

.lt-gallery-collage__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease;
}

.lt-gallery-collage__item:hover img {
	transform: scale(1.04);
	filter: brightness(0.92);
}

.lt-gallery-collage__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.65);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--lt-font-headings);
	font-weight: 700;
	font-size: 1.4rem;
	transition: background-color 0.2s ease;
	backdrop-filter: blur(2px);
}

.lt-gallery-collage__item:hover .lt-gallery-collage__overlay {
	background-color: rgba(15, 23, 42, 0.75);
}

/* Lightbox overlay styling */
.lt-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	backdrop-filter: blur(8px);
}

.lt-lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 85%;
}

.lt-lightbox-img {
	display: block;
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: var(--lt-radius-md);
	box-shadow: var(--lt-shadow-lg);
	border: 3px solid rgba(255, 255, 255, 0.1);
}

.lt-lightbox-close {
	position: absolute;
	top: -45px;
	right: 0;
	color: #f1f5f9;
	font-size: 2.2rem;
	cursor: pointer;
	font-weight: 300;
	line-height: 1;
	transition: color 0.15s ease;
	padding: 5px;
}

.lt-lightbox-close:hover {
	color: var(--lt-emerald);
}

body.lt-lightbox-open {
	overflow: hidden;
}

.lt-message-success {
	color: #047857;
}

.lt-message-error {
	color: #b91c1c;
}

.lt-elementor-tour-grid {
	display: grid;
}

.lt-elementor-placeholder {
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	color: #475569;
	font-weight: 600;
}

.lt-single-tour-heading {
	margin: 0 0 12px;
}

.lt-single-tour-summary {
	margin-bottom: 18px;
	color: #4b5563;
}

.lt-single-tour-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.lt-single-tour-meta .lt-status-badge {
	gap: 4px;
}

.lt-tour-section {
	margin-bottom: 24px;
}

.lt-tour-section-title {
	margin: 0 0 14px;
}

@media (max-width: 900px) {
	.lt-grid-layout,
	.lt-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lt-tours-filter-bar {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.lt-grid-layout,
	.lt-gallery-grid,
	.lt-form-grid,
	.lt-occupants-inputs,
	.lt-inc-exc-grid,
	.lt-tours-filter-bar {
		grid-template-columns: 1fr;
	}

	.lt-itinerary-day {
		grid-template-columns: 1fr;
	}
}

/* Responsive layout grid for desktop two-column view */
@media (min-width: 900px) {
	.lt-tour-page-layout {
		display: grid;
		grid-template-columns: minmax(0, 2fr) minmax(320px, 1.1fr);
		gap: 30px;
		align-items: start;
	}

	.lt-booking-wizard-wrapper {
		position: sticky;
		top: 30px;
		z-index: 100;
		box-shadow: var(--lt-shadow-md);
		border: 1px solid var(--lt-border-light);
		border-radius: var(--lt-radius-lg);
		background: #fff;
		padding: 24px;
	}
}

/* Mobile responsive fixes & bottom slide-up drawer */
@media (max-width: 899px) {
	.lt-booking-wizard-wrapper {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		max-height: 85vh;
		background: #fff;
		border-radius: var(--lt-radius-lg) var(--lt-radius-lg) 0 0;
		box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.15);
		z-index: 99999;
		transform: translateY(105%);
		transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
		overflow-y: auto;
		padding: 24px 20px 20px 20px;
		box-sizing: border-box;
	}

	.lt-booking-wizard-wrapper.lt-mobile-open {
		transform: translateY(0);
	}

	.lt-booking-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(15, 23, 42, 0.5);
		z-index: 99998;
		display: none;
		backdrop-filter: blur(4px);
	}

	.lt-booking-close-drawer {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 1.4rem;
		cursor: pointer;
		font-weight: bold;
		color: #94a3b8;
		width: 32px;
		height: 32px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--lt-bg-light);
		border-radius: 50%;
		transition: background-color 0.15s ease, color 0.15s ease;
	}

	.lt-booking-close-drawer:hover {
		background: #e2e8f0;
		color: var(--lt-charcoal);
	}

	.lt-mobile-cta-bar {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 72px;
		background: #fff;
		border-top: 1px solid var(--lt-border-light);
		box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 20px;
		z-index: 9999;
		box-sizing: border-box;
	}

	.lt-mobile-cta-price {
		font-family: var(--lt-font-headings);
		font-size: 1.15rem;
		font-weight: 800;
		color: var(--lt-charcoal);
	}

	.lt-mobile-cta-price span {
		color: var(--lt-emerald);
	}

	.lt-mobile-cta-trigger {
		min-height: 44px;
		padding: 0 24px;
		font-size: 1rem;
	}
}

@media (min-width: 900px) {
	.lt-mobile-cta-bar,
	.lt-booking-close-drawer {
		display: none !important;
	}
}


/* WooCommerce My Account Order Details - Tour Booking Styles */
.woocommerce-order-details tr.lt-tour-order-item td.product-name a {
    color: #059669; /* Emerald Theme color */
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-order-details tr.lt-tour-order-item td.product-name a:hover {
    color: #047857;
    text-decoration: underline;
}

.woocommerce-order-details tr.lt-tour-order-item td.product-name .wc-item-meta {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.9em;
    border-left: 2px solid #059669;
    padding-left: 12px;
}

.woocommerce-order-details tr.lt-tour-order-item td.product-name .wc-item-meta li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.woocommerce-order-details tr.lt-tour-order-item td.product-name .wc-item-meta strong.wc-item-meta-label {
    color: #047857;
    font-weight: 600;
}

/* Custom Interactive Quantity Selector Styles */
.lt-quantity-control {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--lt-border-light);
	border-radius: var(--lt-radius-sm);
	padding: 2px;
	background: #fff;
	box-shadow: var(--lt-shadow-sm);
}

.lt-qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid var(--lt-border-light);
	background: #f8fafc;
	color: var(--lt-charcoal);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
	user-select: none;
	padding: 0;
	line-height: 1;
}

.lt-qty-btn:hover:not(:disabled) {
	background: var(--lt-emerald);
	border-color: var(--lt-emerald);
	color: #fff;
}

.lt-qty-btn:disabled,
.lt-qty-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	background: #f1f5f9;
}

.lt-qty-input {
	width: 36px;
	height: 24px;
	min-height: 24px !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 4px !important;
	text-align: center;
	font-weight: 500;
	font-size: 0.85rem;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--lt-charcoal);
}

.lt-qty-input::-webkit-outer-spin-button,
.lt-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.lt-qty-input[type=number] {
	-moz-appearance: textfield;
}

/* Custom Checkbox Styles for Add-ons */
.lt-addon-item label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	width: 100%;
}

.lt-addon-item input[type="checkbox"] {
	width: 14px;
	height: 14px;
	border: 1px solid #94a3b8;
	border-radius: 2px;
	background: #fff;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

.lt-addon-item input[type="checkbox"]:checked::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Tours Archive Two-Column Sidebar Layout */
.lt-tours-archive-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 30px;
	margin: 30px 0;
	align-items: start;
}

@media (min-width: 900px) {
	.lt-tours-archive-wrapper {
		grid-template-columns: 300px minmax(0, 1fr);
	}
}

.lt-archive-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Sidebar Filter Widget Panel */
.lt-filter-widget {
	padding: 24px;
	border: 1px solid var(--lt-border-light);
	border-radius: var(--lt-radius-lg);
	background: #fff;
	box-shadow: var(--lt-shadow-sm);
}

.lt-widget-title {
	font-family: var(--lt-font-headings);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--lt-charcoal);
	margin: 0 0 16px 0 !important;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--lt-bg-light);
}

.lt-filter-date-range {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lt-price-slider-wrap {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Range Input Slider Styling */
.lt-range-input {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: var(--lt-border-light);
	outline: none;
	margin: 8px 0;
}

.lt-range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--lt-emerald);
	cursor: pointer;
	border: 2px solid #fff;
	box-shadow: 0 2px 4px rgba(15, 23, 42, 0.15);
	transition: background-color 0.15s ease, transform 0.1s ease;
}

.lt-range-input::-webkit-slider-thumb:hover {
	background: var(--lt-emerald-hover);
	transform: scale(1.1);
}

.lt-range-input::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--lt-emerald);
	cursor: pointer;
	border: 2px solid #fff;
	box-shadow: 0 2px 4px rgba(15, 23, 42, 0.15);
	transition: background-color 0.15s ease, transform 0.1s ease;
}

.lt-range-input::-moz-range-thumb:hover {
	background: var(--lt-emerald-hover);
	transform: scale(1.1);
}

.lt-price-slider-value {
	font-family: var(--lt-font-headings);
	font-weight: 700;
	font-size: 1rem;
	color: var(--lt-emerald);
	margin-top: 4px;
}

/* Destinations List Grid Layout */
.lt-destinations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
	margin: 30px 0;
}

.lt-destination-card {
	position: relative;
	border-radius: var(--lt-radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--lt-shadow-sm);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: #f1f5f9;
}

.lt-destination-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--lt-shadow-lg);
}

.lt-destination-card__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none !important;
}

.lt-destination-card__image-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.lt-destination-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.lt-destination-card:hover .lt-destination-card__image {
	transform: scale(1.05);
}

.lt-destination-card__image-wrap--placeholder {
	background: linear-gradient(135deg, #e0f2fe, #bae6fd);
	width: 100%;
	height: 100%;
}

.lt-destination-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 80%, rgba(15, 23, 42, 0) 100%);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: background-color 0.2s ease;
}

.lt-destination-card__title {
	margin: 0 0 4px 0 !important;
	color: #fff !important;
	font-family: var(--lt-font-headings);
	font-size: 1.35rem;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(15, 23, 42, 0.3);
}

.lt-destination-card__count {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Gowilds archive match for the public tours collection page */
.lt-gowilds-archive {
	display: block;
	width: 100%;
	margin: 48px auto 96px;
	padding: 0 15px;
}

.lt-gowilds-search-panel {
	display: grid;
	grid-template-columns: minmax(160px, 1.15fr) minmax(170px, 1.15fr) minmax(150px, 1fr) minmax(150px, 1fr) minmax(165px, 1.05fr) 132px;
	align-items: stretch;
	margin: 0 0 74px;
	position: relative;
	z-index: 5;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

.lt-gowilds-filter-field {
	position: relative;
	min-height: 74px;
	padding: 19px 46px 15px 24px;
	border-right: 1px solid #edf0f5;
	background: #fff;
}

.lt-gowilds-filter-label {
	display: block;
	margin-bottom: 2px;
	color: #8a909d;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.lt-gowilds-filter-control {
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 28px;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #1f2933;
	font-family: var(--lt-font-headings);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	outline: none !important;
	box-shadow: none !important;
	appearance: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lt-gowilds-filter-control::placeholder {
	color: #1f2933;
	opacity: 1;
}

.lt-gowilds-filter-icon {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #63ab45;
	font-size: 24px;
	line-height: 1;
	pointer-events: none;
}

.lt-gowilds-range {
	position: absolute;
	inset: auto 48px 13px 24px;
	width: calc(100% - 72px);
	height: 4px;
	opacity: 0;
}

.lt-gowilds-filter-field .lt-price-slider-value {
	display: block;
	margin: 0;
	color: #1f2933;
	font-family: var(--lt-font-headings);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.lt-gowilds-search-button {
	align-self: stretch;
	min-height: 74px;
	border: 0;
	border-radius: 0 3px 3px 0;
	background: #63ab45;
	color: #fff;
	cursor: pointer;
	font-family: var(--lt-font-headings);
	font-size: 15px;
	font-weight: 700;
	transition: background-color 0.2s ease;
}

.lt-gowilds-search-button:hover {
	background: #4f9638;
}

.lt-hidden-filter {
	display: none !important;
}

.lt-gowilds-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 24px;
}

.lt-gowilds-tour-card {
	overflow: visible;
	border: 0;
	border-radius: 8px;
	background: transparent;
	box-shadow: none;
}

.lt-gowilds-tour-card:hover {
	transform: translateY(-4px);
	box-shadow: none;
}

.lt-gowilds-tour-card .lt-tour-card__thumb-wrap {
	aspect-ratio: 1.45 / 1;
	border-radius: 8px 8px 0 0;
	background: #d7f0ff;
	box-shadow: none;
	overflow: visible;
}

.lt-gowilds-tour-card .lt-tour-card__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
}

.lt-gowilds-tour-card .lt-tour-card__body {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: -2px;
	padding: 24px 24px 18px;
	border-radius: 0 0 8px 8px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
}

.lt-gowilds-tour-card .lt-card-media-actions {
	position: absolute;
	right: 28px;
	bottom: -17px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 76px;
	height: 34px;
	padding: 0 12px;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.14);
	color: #6b7280;
	font-size: 16px;
	line-height: 1;
}

.lt-gowilds-tour-card .lt-card-media-actions span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lt-gowilds-tour-card .lt-card-media-actions em {
	position: absolute;
	top: -9px;
	right: -9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #63ab45;
	color: #fff;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
}

.lt-gowilds-tour-card .lt-card-rating {
	margin: 0 0 8px;
	color: #8a909d;
	font-size: 13px;
	font-weight: 500;
}

.lt-gowilds-tour-card .lt-stars-gold {
	color: #ff9f1a;
	letter-spacing: 1px;
}

.lt-gowilds-tour-card .lt-stars-grey {
	color: #e5e7eb;
	letter-spacing: 1px;
}

.lt-gowilds-tour-card .lt-review-count {
	color: #7c8492;
	font-size: 13px;
}

.lt-gowilds-tour-card .lt-tour-card__title {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.32;
}

.lt-gowilds-tour-card .lt-tour-card__title a {
	color: #1f2933;
}

.lt-gowilds-tour-card .lt-tour-card__title a:hover {
	color: #63ab45;
}

.lt-gowilds-tour-card .lt-tour-card__location,
.lt-gowilds-tour-card .lt-tour-card__price,
.lt-gowilds-tour-card .lt-tour-card__duration {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 11px;
	color: #8a909d;
	font-size: 14px;
	font-weight: 500;
}

.lt-gowilds-tour-card .lt-tour-card__location svg,
.lt-gowilds-tour-card .lt-tour-card__price svg,
.lt-gowilds-tour-card .lt-tour-card__duration svg {
	color: #63ab45;
	width: 15px;
	height: 15px;
}

.lt-gowilds-tour-card .lt-tour-card__price span {
	color: #8a909d;
}

.lt-gowilds-tour-card .lt-price-amount {
	color: #ff8a00;
	font-weight: 700;
}

.lt-gowilds-tour-card .lt-tour-card__footer {
	margin: 19px 0 0;
	padding: 15px 0 0;
	border-top: 1px solid #edf0f5;
}

.lt-gowilds-tour-card .lt-tour-card__duration {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.lt-gowilds-search-panel {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin-top: -42px;
	}

	.lt-gowilds-search-button {
		border-radius: 0 0 3px 3px;
	}
}

@media (max-width: 900px) {
	.lt-gowilds-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.lt-gowilds-archive {
		margin-bottom: 56px;
		padding: 0 18px;
	}

	.lt-gowilds-search-panel,
	.lt-gowilds-grid {
		grid-template-columns: 1fr;
	}

	.lt-gowilds-search-panel {
		margin: 28px 0 42px;
	}

	.lt-gowilds-filter-field {
		border-right: 0;
		border-bottom: 1px solid #edf0f5;
	}
}

/* Hide theme-generated title on the Elementor tours collection page. */
body.page-id-23 .entry-title,
body.page-id-23 .page-title,
body.page-id-23 .post-title,
body.page-id-23 .gva-page-title,
body.page-id-23 .custom-breadcrumb .heading-title {
	display: none !important;
}

/* Gowilds-inspired single tour product layout */
.lt-gowilds-single-tour {
	width: 100%;
	color: #1d2524;
	font-family: var(--lt-font-body);
}

.lt-gowilds-single-tour *,
.lt-gowilds-single-tour *:before,
.lt-gowilds-single-tour *:after {
	box-sizing: border-box;
}

.lt-single-tour-container {
	width: min(100%, 1320px);
	margin: 0 auto;
	padding: 0 24px;
}

.lt-single-hero-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #0f172a;
	overflow: hidden;
}

.lt-single-hero-gallery--count-1 {
	grid-template-columns: 1fr;
}

.lt-single-hero-gallery--count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lt-single-hero-gallery--count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lt-single-hero-gallery__item {
	display: block;
	height: 335px;
	min-width: 0;
	overflow: hidden;
}

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

.lt-single-summary-band {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #f7f9fb;
	border-bottom: 1px solid #e4eaf2;
}

.lt-single-summary-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
	min-height: 170px;
	padding-top: 36px;
	padding-bottom: 36px;
}

.lt-single-summary-title {
	min-width: 0;
}

.lt-single-tour-heading {
	margin: 0 0 12px;
	font-family: var(--lt-font-headings);
	font-size: clamp(26px, 2.8vw, 38px);
	line-height: 1.2;
	font-weight: 700;
	color: #1d2524;
	letter-spacing: -0.2px;
}

.lt-single-summary-location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 4px;
	color: #5fb246;
	font-size: 15px;
	font-weight: 500;
}

.lt-single-summary-facts {
	display: flex;
	align-items: center;
	gap: 36px;
}

.lt-single-summary-fact {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 150px;
}

.lt-single-hero-icon,
.lt-trip-info-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #5fb246;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.lt-single-hero-icon--clock:before,
.lt-trip-info-icon--clock:before {
	content: "◷";
}

.lt-single-hero-icon--users:before {
	content: "●●";
	font-size: 14px;
	letter-spacing: 1px;
}

.lt-trip-info-icon--map:before {
	content: "□";
}

.lt-trip-info-icon--calendar:before {
	content: "▦";
}

.lt-trip-info-icon--tag:before {
	content: "◇";
}

.lt-trip-info-icon--pin:before,
.lt-icon-pin:before {
	content: "●";
}

.lt-single-summary-fact__text {
	display: grid;
	gap: 2px;
	color: #8b93a1;
	font-size: 13px;
	line-height: 1.25;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lt-single-summary-fact__text strong {
	display: block;
	color: #1d2524;
	font-size: 16px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

.lt-single-review-line {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	color: #7b8492;
	font-size: 15px;
	font-weight: 600;
}

.lt-single-stars {
	display: inline-flex;
	gap: 2px;
	color: #d6dce4;
	font-size: 18px;
	line-height: 1;
}

.lt-single-stars .is-filled {
	color: #ff8a00;
}

.lt-single-tour-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 48px;
	padding-top: 56px;
	padding-bottom: 80px;
}

.lt-single-tour-main {
	min-width: 0;
}

.lt-tour-overview-copy {
	margin-bottom: 36px;
	color: #5f6b7a;
	font-size: 17px;
	line-height: 1.8;
	max-width: 72ch;
}

.lt-tour-overview-copy p {
	margin: 0 0 16px;
}

.lt-inc-exc-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	margin: 28px 0;
}

.lt-inclusions-box,
.lt-exclusions-box {
	min-height: 180px;
	padding: 30px 34px;
	background: #fff;
	border: 1px solid #e5ebf2;
	border-radius: 8px;
	box-shadow: none;
}

.lt-inclusions-box h3,
.lt-exclusions-box h3 {
	margin: 0 0 20px;
	font-family: var(--lt-font-headings);
	font-size: 26px;
	line-height: 1.2;
	font-weight: 800;
	color: #1d2524;
}

.lt-list-check,
.lt-list-cross,
.lt-inclusions-box ul,
.lt-exclusions-box ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #747d8b;
	font-size: 15px;
	line-height: 1.55;
}

.lt-list-check li,
.lt-list-cross li,
.lt-inclusions-box li,
.lt-exclusions-box li {
	position: relative;
	padding-left: 28px;
}

.lt-list-check li:before,
.lt-inclusions-box li:before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #00a86b;
	font-weight: 800;
}

.lt-list-cross li:before,
.lt-exclusions-box li:before {
	content: "×";
	position: absolute;
	left: 0;
	top: 0;
	color: #ff4b4b;
	font-weight: 800;
}

.lt-trip-info-box {
	margin: 34px 0 44px;
	padding: 26px 30px;
	background: #eef7f2;
	border: 1px solid #dfeee6;
	border-radius: 4px;
}

.lt-trip-info-box h3 {
	margin: 0 0 20px;
	font-family: var(--lt-font-headings);
	font-size: 18px;
	font-weight: 800;
	color: #1d2524;
}

.lt-trip-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 28px;
}

.lt-trip-info-item {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	min-width: 0;
}

.lt-trip-info-icon {
	width: 28px;
	height: 28px;
	background: #fff;
	color: #5fb246;
	border-radius: 4px;
	font-size: 15px;
}

.lt-trip-info-item small {
	display: block;
	margin-bottom: 2px;
	color: #7f8994;
	font-size: 12px;
	line-height: 1.2;
}

.lt-trip-info-item strong {
	display: block;
	color: #1d2524;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 700;
}

.lt-tour-detail-wrapper {
	margin-top: 36px;
}

.lt-tour-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 0 34px;
	padding: 0;
	border-bottom: 1px solid #dfe6ee;
}

.lt-tour-tabs-nav .lt-tab-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 28px 14px 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #1d2524;
	font-family: var(--lt-font-headings);
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
}

.lt-tour-tabs-nav .lt-tab-btn.active {
	background: transparent !important;
	color: #1d2524 !important;
}

.lt-tour-tabs-nav .lt-tab-btn.active:after {
	content: "";
	position: absolute;
	left: 0;
	right: 28px;
	bottom: -1px;
	height: 2px;
	background: #ff8a00;
}

.lt-tour-section-title {
	margin: 0 0 24px;
	font-family: var(--lt-font-headings);
	font-size: 24px;
	line-height: 1.25;
	font-weight: 700;
	color: #1d2524;
}

.lt-itinerary-timeline--gowilds {
	position: relative;
	display: grid;
	gap: 0;
	margin-left: 22px;
	padding-left: 30px;
	border-left: 1px dashed #cbd8c8;
}

.lt-itinerary-timeline--gowilds .lt-itinerary-day {
	position: relative;
	margin: 0 0 18px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.lt-itinerary-node {
	position: absolute;
	left: -42px;
	top: 18px;
	width: 25px;
	height: 25px;
	border-radius: 999px;
	background: #5fb246;
	box-shadow: 0 0 0 8px #fff;
}

.lt-itinerary-node:before {
	content: "";
	position: absolute;
	inset: 7px;
	border-radius: inherit;
	background: #fff;
}

.lt-day-header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 62px;
	padding: 13px 18px;
	background: #fff;
	border: 1px solid #e5ebf2;
	border-radius: 8px;
	cursor: pointer;
}

.lt-day-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	min-height: 40px;
	padding: 8px 12px;
	background: #0f172a;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.lt-day-title {
	margin: 0;
	color: #1d2524;
	font-family: var(--lt-font-headings);
	font-size: 18px;
	line-height: 1.35;
	font-weight: 800;
}

.lt-accordion-arrow {
	color: #a5afba;
	font-size: 16px;
	line-height: 1;
}

.lt-itinerary-day.active .lt-accordion-arrow {
	transform: rotate(180deg);
}

.lt-day-content {
	margin: 0 0 0;
	padding: 22px 22px 24px 82px;
	background: #f7fbf8;
	border: 1px solid #e5ebf2;
	border-top: 0;
	border-radius: 0 0 8px 8px;
	color: #747d8b;
	font-size: 15px;
	line-height: 1.75;
}

.lt-day-content p {
	margin: 0 0 12px;
}

.lt-single-tour-sidebar {
	min-width: 0;
	position: sticky;
	top: 30px;
	align-self: start;
}

.lt-single-sidebar-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
	overflow: hidden;
}

.lt-single-sidebar-card__divider {
	height: 1px;
	margin: 0 26px;
	background: #e5ebf2;
}

.lt-single-price-card {
	position: static;
	z-index: auto;
	padding: 24px 26px 22px;
	margin-bottom: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.lt-single-price-card__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 4px;
	padding-bottom: 22px;
	margin-bottom: 18px;
	border-bottom: 1px solid #e5ebf2;
}

.lt-single-price-card__top span,
.lt-single-price-card__mini small {
	color: #7b8492;
	font-size: 13px;
	font-weight: 700;
}

.lt-single-price-card__price {
	color: #5fb246;
	font-family: var(--lt-font-headings);
	font-size: 26px;
	line-height: 1.15;
	font-weight: 800;
}

.lt-single-price-card__mini {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 22px;
}

.lt-single-price-card__mini span {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.lt-single-price-card__mini strong {
	color: #1d2524;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 800;
}

.lt-single-check-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 18px;
	background: #5fb246;
	border-radius: 999px;
	color: #fff !important;
	font-family: var(--lt-font-headings);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	text-align: center;
}

.lt-booking-sidebar-card {
	padding: 24px 26px 26px;
	overflow: hidden;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.lt-booking-sidebar-card .lt-booking-wizard-wrapper {
	padding: 0;
	width: 100%;
	font-size: 14px;
	background: transparent;
	border: 0;
	box-shadow: none;
	position: static;
	top: auto;
	border-radius: 0;
}

.lt-booking-sidebar-card .lt-wizard-steps-indicator,
.lt-booking-sidebar-card .lt-booking-step-indicators {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 10px;
	margin: 0 0 28px;
	padding: 0;
}

.lt-booking-sidebar-card .lt-step-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #f1f3f6;
	color: #586274;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 800;
	white-space: nowrap;
}

.lt-booking-sidebar-card .lt-step-indicator.active {
	background: #0f172a;
	color: #fff;
}

.lt-booking-sidebar-card .lt-booking-wizard-form {
	display: grid;
	gap: 0;
}

.lt-booking-sidebar-card .lt-wizard-step {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.lt-booking-sidebar-card h2,
.lt-booking-sidebar-card h3 {
	margin: 0 0 22px;
	font-size: 23px;
	line-height: 1.2;
}

.lt-booking-sidebar-card label {
	margin-bottom: 8px;
	color: #0f172a;
	font-size: 15px;
	font-weight: 800;
}

.lt-booking-sidebar-card .lt-form-grid,
.lt-booking-sidebar-card .lt-booking-form-grid {
	grid-template-columns: 1fr;
	gap: 16px;
}

.lt-booking-sidebar-card input,
.lt-booking-sidebar-card select,
.lt-booking-sidebar-card textarea {
	width: 100%;
	min-height: 50px;
	border-color: #dfe5ee;
	border-radius: 8px;
	box-shadow: none;
	font-size: 15px;
}

.lt-booking-sidebar-card .lt-price-summary-panel {
	margin: 18px 0 0;
	padding: 20px 22px;
	border: 1px solid #e5ebf2;
	border-radius: 8px;
	background: #fafcfe;
	box-shadow: none;
}

.lt-booking-sidebar-card .lt-booking-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.lt-booking-sidebar-card .lt-btn,
.lt-booking-sidebar-card button {
	width: 100%;
	justify-content: center;
	min-height: 52px;
	border-radius: 6px;
	font-weight: 800;
}

.lt-policy-section {
	margin-bottom: 24px;
}

.lt-policy-section h3 {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 800;
	color: #1d2524;
}

.lt-policy-content {
	color: #747d8b;
	line-height: 1.75;
}

@media (max-width: 1199px) {
	.lt-single-tour-layout {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 28px;
	}

	.lt-single-summary-band__inner {
		gap: 24px;
	}

	.lt-single-summary-facts {
		gap: 24px;
	}
}

@media (max-width: 991px) {
	.lt-single-hero-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lt-single-hero-gallery__item {
		height: 240px;
	}

	.lt-single-summary-band__inner,
	.lt-single-tour-layout {
		grid-template-columns: 1fr;
	}

	.lt-single-summary-band__inner {
		align-items: start;
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.lt-single-tour-layout {
		padding-top: 42px;
	}

	.lt-single-summary-facts {
		justify-content: flex-start;
	}

	.lt-single-tour-sidebar {
		position: static;
	}

	.lt-trip-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lt-single-tour-container {
		padding: 0 16px;
	}

	.lt-single-hero-gallery {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 6px;
	}

	.lt-single-hero-gallery__item {
		flex: 0 0 82%;
		height: 220px;
		scroll-snap-align: start;
	}

	.lt-single-tour-heading {
		font-size: 28px;
	}

	.lt-single-summary-facts,
	.lt-inc-exc-grid,
	.lt-trip-info-grid {
		grid-template-columns: 1fr;
		display: grid;
	}

	.lt-inc-exc-grid {
		gap: 16px;
	}

	.lt-inclusions-box,
	.lt-exclusions-box,
	.lt-trip-info-box,
	.lt-booking-sidebar-card,
	.lt-single-price-card {
		padding: 22px;
	}

	.lt-single-sidebar-card__divider {
		margin: 0 22px;
	}

	.lt-itinerary-timeline--gowilds {
		margin-left: 0;
		padding-left: 0;
		border-left: 0;
	}

	.lt-itinerary-node {
		display: none;
	}

	.lt-day-header {
		grid-template-columns: 1fr auto;
	}

	.lt-day-badge {
		grid-column: 1 / -1;
		justify-content: flex-start;
		width: max-content;
	}

	.lt-day-content {
		padding: 18px;
	}
}

/* Reference refinements: trip info, tabs, and tour plan */
.lt-gowilds-single-tour {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-family: "Nunito Sans", "Inter", Arial, sans-serif;
	font-weight: 400;
}

.lt-gowilds-single-tour h1,
.lt-gowilds-single-tour h2,
.lt-gowilds-single-tour h3,
.lt-gowilds-single-tour h4,
.lt-gowilds-single-tour strong {
	font-family: "Nunito Sans", "Outfit", Arial, sans-serif;
	letter-spacing: 0;
	font-weight: 500;
}

.lt-gowilds-single-tour label,
.lt-gowilds-single-tour b,
.lt-gowilds-single-tour .lt-single-tour-heading,
.lt-gowilds-single-tour .lt-tour-section-title,
.lt-gowilds-single-tour .lt-day-title,
.lt-gowilds-single-tour .lt-tab-btn,
.lt-gowilds-single-tour .lt-inclusions-box h3,
.lt-gowilds-single-tour .lt-exclusions-box h3,
.lt-gowilds-single-tour .lt-trip-info-box h3,
.lt-gowilds-single-tour .lt-trip-info-item small,
.lt-gowilds-single-tour .lt-trip-info-item strong,
.lt-gowilds-single-tour .lt-single-summary-fact__text strong,
.lt-gowilds-single-tour .lt-single-price-card__top span,
.lt-gowilds-single-tour .lt-single-price-card__mini strong,
.lt-gowilds-single-tour .lt-single-check-button,
.lt-gowilds-single-tour .lt-tab-highlight-box h4,
.lt-gowilds-single-tour .lt-itinerary-expand-all {
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-tour-overview-copy {
	color: #6b7685;
	font-size: 17px;
	line-height: 1.85;
	font-weight: 400;
	max-width: 72ch;
}

.lt-gowilds-single-tour .lt-inclusions-box h3,
.lt-gowilds-single-tour .lt-exclusions-box h3 {
	font-size: 24px;
	line-height: 1.2;
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-inclusions-box h3 {
	color: #166534;
}

.lt-gowilds-single-tour .lt-exclusions-box h3 {
	color: #991b1b;
}

.lt-gowilds-single-tour .lt-inclusions-box,
.lt-gowilds-single-tour .lt-exclusions-box {
	padding: 34px 36px;
	border-radius: 8px;
}

.lt-gowilds-single-tour .lt-inclusions-box {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.lt-gowilds-single-tour .lt-exclusions-box {
	background: #fef2f2;
	border-color: #fecaca;
}

.lt-gowilds-single-tour .lt-list-check,
.lt-gowilds-single-tour .lt-list-cross,
.lt-gowilds-single-tour .lt-inclusions-box ul,
.lt-gowilds-single-tour .lt-exclusions-box ul {
	gap: 21px;
	color: #465368;
	font-size: 18px;
	line-height: 1.55;
}

.lt-gowilds-single-tour .lt-trip-info-box {
	margin: 40px 0 48px;
	padding: 0;
	background: transparent;
	border: 0;
}

.lt-gowilds-single-tour .lt-trip-info-box h3 {
	position: static;
	margin: 0 0 24px;
	padding: 0;
	background: transparent;
	border: 0;
	color: #1d2524;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-trip-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.lt-gowilds-single-tour .lt-trip-info-item {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 18px 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
}

.lt-gowilds-single-tour .lt-trip-info-icon {
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 10px;
	color: #5fb246 !important;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.lt-gowilds-single-tour .lt-trip-info-icon:before {
	content: none !important;
}

.lt-gowilds-single-tour .lt-trip-info-icon svg {
	display: block;
	width: 22px;
	height: 22px;
	margin: auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lt-gowilds-single-tour .lt-trip-info-item small {
	margin: 0 0 2px;
	color: #64748b;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lt-gowilds-single-tour .lt-trip-info-item strong {
	color: #1d2524;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-tour-detail-wrapper {
	margin-top: 50px;
}

.lt-gowilds-single-tour .lt-tour-tabs-nav {
	display: flex;
	gap: 0;
	margin: 0 0 40px;
	padding: 0 0 0 32px;
	border-bottom: 1px solid #e5e8ef;
	scroll-margin-top: 100px;
	position: sticky;
	top: 0;
	z-index: 10;
	background: #fff;
}

.lt-gowilds-single-tour .lt-tour-tabs-nav .lt-tab-btn {
	min-height: 66px;
	padding: 0 64px 20px 0;
	background: transparent !important;
	border: 0;
	border-radius: 0;
	color: #777d8d;
	font-family: "Nunito Sans", "Inter", Arial, sans-serif;
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
	box-shadow: none !important;
}

.lt-gowilds-single-tour .lt-tour-tabs-nav .lt-tab-btn.active {
	color: #1d2524 !important;
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-tour-tabs-nav .lt-tab-btn.active:after {
	right: 64px;
	height: 2px;
	background: #5fb246;
}

.lt-gowilds-single-tour.lt-single-tour--tabs .lt-tab-panel {
	display: none;
	scroll-margin-top: 110px;
	margin-bottom: 72px;
}

.lt-gowilds-single-tour.lt-single-tour--tabs .lt-tab-panel.active {
	display: block;
}

.lt-gowilds-single-tour.lt-single-tour--stacked .lt-tab-panel {
	display: block;
	margin-bottom: 72px;
}

.lt-gowilds-single-tour .lt-tab-overview .lt-tour-section-title,
.lt-gowilds-single-tour .lt-tour-plan-header .lt-tour-section-title {
	position: relative;
	margin: 0 0 36px;
	padding-bottom: 22px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-tab-overview .lt-tour-section-title:after,
.lt-gowilds-single-tour .lt-tour-plan-header .lt-tour-section-title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 2px;
	background: #ff8a00;
}

.lt-gowilds-single-tour .lt-tab-highlight-box {
	position: relative;
	margin-top: 42px;
	padding: 36px 40px 28px;
	background: #eef8ec;
	border: 1px solid #d7e8d3;
	border-radius: 8px;
}

.lt-gowilds-single-tour .lt-tab-highlight-box h4 {
	margin: 0 0 20px;
	padding: 0;
	background: transparent;
	border: 0;
	color: #1d2524;
	font-size: 18px;
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-list-orange li:before {
	color: #ff8a00 !important;
}

.lt-gowilds-single-tour .lt-tour-plan-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.lt-gowilds-single-tour .lt-tour-plan-header .lt-tour-section-title {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 500;
}

.lt-gowilds-single-tour .lt-tour-plan-header .lt-tour-section-title:after {
	display: none;
}

.lt-gowilds-single-tour .lt-itinerary-expand-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 6px 14px;
	background: transparent;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

.lt-gowilds-single-tour .lt-itinerary-expand-all:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

.lt-gowilds-single-tour .lt-itinerary-expand-all span {
	display: none;
}

.lt-gowilds-single-tour .lt-itinerary-expand-all[aria-pressed="true"] {
	background: #f0fdf4;
	border-color: #bbf7d0;
	color: #166534;
}

/* Timeline container — remove all timeline graphics */
.lt-gowilds-single-tour .lt-itinerary-timeline--gowilds {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

.lt-gowilds-single-tour .lt-itinerary-timeline--gowilds .lt-itinerary-day {
	margin: 0;
	padding: 0;
	overflow: visible;
}

/* Hide timeline nodes completely */
.lt-gowilds-single-tour .lt-itinerary-node,
.lt-gowilds-single-tour .lt-itinerary-node--large {
	display: none !important;
}

/* Day header — clean row with bottom border */
.lt-gowilds-single-tour .lt-day-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: auto;
	padding: 18px 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #f1f5f9;
	border-radius: 0;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.lt-gowilds-single-tour .lt-day-header:hover {
	background: #fafbfc;
}

/* Hide day badges */
.lt-gowilds-single-tour .lt-day-badge {
	display: none;
}

/* Day title */
.lt-gowilds-single-tour .lt-day-title {
	margin: 0;
	color: #1d2524;
	font-size: 17px;
	line-height: 1.4;
	font-weight: 600;
}

/* Arrow indicator */
.lt-gowilds-single-tour .lt-accordion-arrow {
	width: 20px;
	text-align: center;
	color: #94a3b8;
	font-size: 14px;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.lt-gowilds-single-tour .lt-itinerary-day.active .lt-accordion-arrow {
	transform: rotate(180deg);
}

/* Day content — clean expandable area */
.lt-gowilds-single-tour .lt-day-content {
	margin: 0;
	padding: 0 0 20px 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #f1f5f9;
	border-radius: 0;
	color: #64748b;
	font-size: 16px;
	line-height: 1.75;
}

.lt-gowilds-single-tour .lt-day-content p {
	margin: 0 0 12px;
}

.lt-gowilds-single-tour .lt-day-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.lt-gowilds-single-tour .lt-trip-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 767px) {
	.lt-gowilds-single-tour .lt-inclusions-box,
	.lt-gowilds-single-tour .lt-exclusions-box {
		padding: 28px 26px;
	}

	.lt-gowilds-single-tour .lt-trip-info-box h3 {
		font-size: 20px;
	}

	.lt-gowilds-single-tour .lt-trip-info-grid {
		grid-template-columns: 1fr;
	}

	.lt-gowilds-single-tour .lt-tour-tabs-nav {
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.lt-gowilds-single-tour .lt-tour-tabs-nav .lt-tab-btn {
		flex: 0 0 auto;
		padding-right: 34px;
		font-size: 18px;
	}

	.lt-gowilds-single-tour .lt-tour-tabs-nav .lt-tab-btn.active:after {
		right: 34px;
	}

	.lt-gowilds-single-tour .lt-itinerary-timeline--gowilds {
		padding: 0;
		border: 0;
	}

	.lt-gowilds-single-tour .lt-day-title {
		font-size: 16px;
	}

	.lt-gowilds-single-tour .lt-day-content {
		padding: 20px;
		font-size: 16px;
	}
}

/* Match Elementor content width on the tours collection page. */
body.page-id-23 .single-content-inner.container {
	max-width: 1320px;
}

/* ==========================================================
   Gowilds-themed tour card — reference design
   (no hover lift, no camera icon, orange accents)
   ========================================================== */

.lt-gowilds-tour-card,
.lt-gowilds-tour-card:hover {
	transform: none !important;
	overflow: hidden;
	border: 0;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 24px rgba(17, 24, 39, 0.09);
}

/* Image area */
.lt-gowilds-tour-card .lt-tour-card__thumb-wrap {
	aspect-ratio: 4 / 2.9;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
	background: #d7f0ff;
}

.lt-gowilds-tour-card .lt-tour-card__thumb,
.lt-gowilds-tour-card:hover .lt-tour-card__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
	transform: none !important;
	filter: none !important;
	transition: none !important;
}

/* Card body */
.lt-gowilds-tour-card .lt-tour-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0;
	padding: 20px 22px 18px;
	border-radius: 0;
	margin-top: 0;
	background: #fff;
	box-shadow: none;
	z-index: auto;
	position: static;
}

/* Star ratings */
.lt-gowilds-tour-card .lt-card-rating {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-bottom: 10px;
}

.lt-gowilds-tour-card .lt-star {
	display: inline-block;
	flex-shrink: 0;
}

.lt-gowilds-tour-card .lt-star--full {
	color: #ff9800;
}

.lt-gowilds-tour-card .lt-star--half {
	color: #ff9800;
}

.lt-gowilds-tour-card .lt-star--empty {
	color: #dce0e5;
}

/* Title */
.lt-gowilds-tour-card .lt-tour-card__title {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	color: #1a2236;
}

.lt-gowilds-tour-card .lt-tour-card__title a {
	color: #1a2236;
	text-decoration: none;
}

.lt-gowilds-tour-card .lt-tour-card__title a:hover {
	color: #63ab45;
}

/* Price row */
.lt-gowilds-tour-card .lt-tour-card__price {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 0 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	color: #7a8499;
}

/* Orange person icon */
.lt-gowilds-tour-card .lt-icon-person {
	color: #ff8a00;
	flex-shrink: 0;
}

.lt-gowilds-tour-card .lt-price-from {
	color: #a0aab5;
	font-size: 13px;
	font-weight: 400;
}

.lt-gowilds-tour-card .lt-price-amount {
	color: #ff8a00;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.3px;
}

/* Footer */
.lt-gowilds-tour-card .lt-tour-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #edf0f5;
	margin-top: 16px;
}

.lt-gowilds-tour-card .lt-tour-card__footer-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.lt-gowilds-tour-card .lt-tour-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #7a8499;
	font-size: 13px;
	font-weight: 500;
}

.lt-gowilds-tour-card .lt-tour-card__meta-item svg {
	color: #ff8a00;
	flex-shrink: 0;
}

.lt-gowilds-tour-card .lt-tour-card__explore {
	display: inline-flex;
	align-items: center;
	color: #1a2236;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.lt-gowilds-tour-card .lt-tour-card__explore:hover {
	color: #63ab45;
}


/* Scoped Single Tour Styles */
.lt-single-tour {
	--lt-icon-size: 18px;
}

/* Summary Header Styling */
.lt-tour-summary-header {
	margin-bottom: 30px;
}

.lt-tour-summary-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 15px 0 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--lt-border-light);
}

.lt-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #64748b;
	font-size: 0.95rem;
	font-weight: 500;
}

.lt-meta-icon {
	width: var(--lt-icon-size);
	height: var(--lt-icon-size);
	background-color: var(--lt-emerald);
	display: inline-block;
}

.lt-icon-pin {
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
	mask-size: contain;
}

.lt-icon-clock {
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
	mask-size: contain;
}

.lt-icon-tag {
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'%3E%3C/path%3E%3Cline x1='7' y1='7' x2='7.01' y2='7'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'%3E%3C/path%3E%3Cline x1='7' y1='7' x2='7.01' y2='7'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
	mask-size: contain;
}

.lt-icon-star {
	background-color: #ffb400;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E") no-repeat center;
	mask-size: contain;
}

.lt-single-tour-description {
	color: #4b5563;
	line-height: 1.7;
	font-size: 1.05rem;
}

/* Refining Itinerary Timeline */
.lt-itinerary-timeline {
	border-left-width: 3px;
	border-left-color: #f1f5f9;
}

.lt-itinerary-day::before {
	left: -32.5px;
	top: 22px;
	width: 14px;
	height: 14px;
	background: #fff;
	border: 3px solid var(--lt-emerald);
}

.lt-day-badge {
	border-radius: 4px;
	font-size: 0.8rem;
	padding: 3px 8px;
	background: #f1f5f9;
	color: var(--lt-charcoal);
	border: 1px solid #e2e8f0;
}

.lt-itinerary-day.active .lt-day-badge {
	background: var(--lt-emerald);
	color: #fff;
	border-color: var(--lt-emerald);
}

/* Sidebar Booking Form refinements */
@media (min-width: 900px) {
	.lt-booking-wizard-wrapper {
		background: #fff;
		border: 1px solid var(--lt-border-light);
		border-radius: var(--lt-radius-lg);
		padding: 30px;
		box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
	}
}

/* Booking Model Toggle styling */
.lt-booking-model-toggle {
	display: flex;
	border: 1px solid var(--lt-border-light);
	border-radius: var(--lt-radius-sm);
	padding: 4px;
	background: var(--lt-bg-light);
	margin-bottom: 20px;
	gap: 4px;
}

.lt-toggle-btn {
	flex: 1;
	border: none;
	background: transparent;
	padding: 8px 16px;
	font-family: var(--lt-font-headings);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--lt-charcoal);
	cursor: pointer;
	border-radius: calc(var(--lt-radius-sm) - 2px);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
}

.lt-toggle-btn:hover {
	background: rgba(15, 23, 42, 0.05);
	color: var(--lt-charcoal-hover);
}

.lt-toggle-btn.active {
	background: var(--lt-emerald);
	color: #fff;
	box-shadow: var(--lt-shadow-sm);
}

/* Booking Form and Inquiry Alert Styling */
.lt-booking-error-message,
.lt-inquiry-status-message {
	padding: 12px 16px;
	border-radius: var(--lt-radius-sm);
	font-size: 0.9rem;
	margin-bottom: 15px;
	line-height: 1.5;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.lt-booking-error-message,
.lt-inquiry-status-message.lt-message-error {
	background-color: #fef2f2;
	border-color: #fca5a5;
	color: #991b1b;
}

.lt-inquiry-status-message.lt-message-success {
	background-color: #ecfdf5;
	border-color: #a7f3d0;
	color: #065f46;
}

/* WooCommerce Block Checkout label visibility */
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
	--lt-checkout-label-color: #6b7280;
}

body.woocommerce-checkout .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-components-country-input,
body.woocommerce-checkout .wc-block-components-state-input {
	margin-bottom: 14px;
}

body.woocommerce-checkout .lt-checkout-field-has-label::before {
	content: attr(data-lt-checkout-label);
	display: block;
	margin: 0 0 7px;
	color: #111827;
	font-family: var(--lt-font-body);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox-control label,
body.woocommerce-checkout .wc-block-components-country-input label,
body.woocommerce-checkout .wc-block-components-state-input label {
	display: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-combobox-control input::placeholder {
	color: #7b8492 !important;
	opacity: 1 !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox-control input {
	min-height: 54px;
}

/* Tour Card Badge Styling */
.lt-tour-card__thumb-wrap {
	position: relative;
}
.lt-tour-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 5;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	pointer-events: none;
	letter-spacing: 0.5px;
}
.lt-tour-card__badge--fixed {
	background-color: #5fb246; /* Brand green */
}
.lt-tour-card__badge--custom {
	background-color: #f59e0b; /* Amber/Orange */
}
.lt-tour-card__badge--hybrid {
	background-color: #3b82f6; /* Blue */
}

/* Elementor Tour Grid Filter Toggle Bar */
.lt-tour-filter-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 35px;
	flex-wrap: wrap;
}
.lt-tour-filter-bar .lt-filter-btn {
	padding: 8px 20px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background-color: #f3f4f6;
	color: #4b5563;
	border: 1px solid #e5e7eb;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
}
.lt-tour-filter-bar .lt-filter-btn:hover {
	background-color: #e5e7eb;
	color: #1f2937;
}
.lt-tour-filter-bar .lt-filter-btn.active {
	background-color: #5fb246; /* green matching brand accent */
	color: #fff;
	border-color: #5fb246;
	box-shadow: 0 4px 6px rgba(95, 178, 70, 0.2);
}
