/* ============================================================
   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: #104146;
}

.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: #104146 !important;
	background: #fff !important;
	color: #104146 !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: #104146;
	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: #104146;
}

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

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

/* Reviews */
.lt-single-tour__reviews-summary {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 2rem;
	margin-bottom: 1.5rem;
	padding: 1.25rem;
	background: #f7f7f7;
	border-radius: 12px;
}

.lt-single-tour__reviews-score {
	text-align: center;
}

.lt-single-tour__reviews-score-star {
	display: block;
	color: #ffc107;
	font-size: 1.5rem;
}

.lt-single-tour__reviews-score strong {
	font-size: 2rem;
}

.lt-single-tour__reviews-score p {
	margin: 0.35rem 0 0;
	font-size: 0.82rem;
	color: #7a7a7a;
}

.lt-single-tour__reviews-bar {
	display: grid;
	grid-template-columns: 16px 1fr;
	gap: 0.65rem;
	align-items: center;
	margin-bottom: 0.35rem;
	font-size: 0.82rem;
}

.lt-single-tour__reviews-track {
	height: 8px;
	background: #e5e5e5;
	border-radius: 999px;
	overflow: hidden;
}

.lt-single-tour__reviews-track span {
	display: block;
	height: 100%;
	background: #104146;
	border-radius: 999px;
}

.lt-single-tour__review {
	padding: 1.25rem 0;
	border-bottom: 1px solid #ebebeb;
}

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

.lt-single-tour__review-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.35rem;
}

.lt-single-tour__review-stars {
	color: #ffc107;
	font-size: 0.85rem;
}

.lt-single-tour__review h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
}

.lt-single-tour__review-body p {
	margin: 0;
	color: #444;
	line-height: 1.65;
}

/* 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: #104146;
	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: #104146;
	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 {
	min-height: 1.2em;
	margin: 0.5rem 0 0;
	font-size: 0.78rem;
	color: #7a7a7a;
	text-align: center;
	font-weight: 400;
}

.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: #104146;
	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;
	}

	.lt-single-tour__reviews-summary {
		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: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0.85rem;
}

.lt-single-tour__date-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.75rem 0.9rem;
}

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

.lt-single-tour__date-label {
	display: block;
	margin-bottom: 0.15rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.3;
	cursor: default;
}

.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: #104146;
	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;
}

/* ── 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;
	align-items: center;
	justify-content: space-between;
	gap: 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__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: #104146;
	background: rgba(101, 157, 70, 0.06);
	color: #104146;
}

.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: #104146;
	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: #104146;
	white-space: nowrap;
}

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

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

.lt-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.92);
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

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

/* 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.55), transparent);
	z-index: 2;
}

.lt-lightbox__counter {
	color: rgba(255, 255, 255, 0.85);
	font-family: "GoogleSansFlex-VariableFont", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
}

.lt-lightbox__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease;
}

.lt-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.28);
}

/* Main image */
.lt-lightbox__img-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 4.5rem 5rem;
	box-sizing: border-box;
}

.lt-lightbox__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
	transition: opacity 0.18s ease;
}

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

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

.lt-lightbox__arrow:hover {
	background: rgba(255, 255, 255, 0.28);
}

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

.lt-lightbox__arrow--hidden {
	visibility: hidden;
	pointer-events: none;
}

/* Thumbnail strip */
.lt-lightbox__thumbs {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	gap: 0.4rem;
	justify-content: center;
	padding: 0.75rem 1rem 1rem;
	background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
	overflow-x: auto;
	scrollbar-width: none;
}

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

.lt-lightbox__thumb {
	flex-shrink: 0;
	width: 56px;
	height: 42px;
	border-radius: 5px;
	overflow: hidden;
	opacity: 0.55;
	cursor: pointer;
	border: 2px solid transparent;
	transition: opacity 0.15s ease, border-color 0.15s ease;
}

.lt-lightbox__thumb:hover { opacity: 0.85; }

.lt-lightbox__thumb--active {
	opacity: 1;
	border-color: #104146;
}

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

@media (max-width: 640px) {
	.lt-lightbox__img-wrap {
		padding: 3.5rem 1rem 5.5rem;
	}

	.lt-lightbox__arrow {
		width: 38px;
		height: 38px;
		font-size: 1.1rem;
	}

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

/* ── 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.9rem !important;
	font-weight: 500 !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: #104146 !important;
	fill: #104146 !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 #104146 !important;
	color: #104146 !important;
	font-weight: 700 !important;
}

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

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
	background: #104146 !important;
	color: #fff !important;
	border-color: #104146 !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: #104146;
	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; }
}
