/**
 * Tour Booking — frontend styles.
 * Tone: white bg, light-grey borders, black bold titles, green sub-headings,
 * green price-table header, green-bordered summary, accent-green "due now".
 * Brand primary: #015d38 (green).
 */

.myct-tour {
	--myct-primary: #015d38;
	--myct-accent: #02814f;
	--myct-border: #e2e2e2;
	--myct-grey: #f7f7f7;
	--myct-text: #1a1a1a;
	max-width: 1240px;
	margin: 0 auto;
	padding: 24px 16px 60px;
	color: var(--myct-text);
	font-size: 15px;
	line-height: 1.55;
}

/* ---------- Layout 8:4 ---------- */
.myct-tour-grid {
	display: grid;
	grid-template-columns: 8fr 4fr;
	gap: 28px;
	align-items: start;
}
.myct-col-right {
	position: sticky;
	top: 24px;
}
/* Allow grid items to shrink below content width so inner tables can scroll. */
.myct-col-left,
.myct-col-right {
	min-width: 0;
}

@media (max-width: 991px) {
	.myct-tour-grid {
		grid-template-columns: 1fr;
	}
	.myct-col-right {
		position: static;
	}
}

/* ---------- Sections ---------- */
.myct-section {
	background: #fff;
	border: 1px solid var(--myct-border);
	border-radius: 6px;
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.myct-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin: 0 0 16px;
}
.myct-title-red,
.myct-subsection-title {
	color: var(--myct-primary);
}
.myct-subsection-title {
	font-size: 15px;
	font-weight: 700;
	margin: 18px 0 10px;
}
.myct-subsection:first-of-type .myct-subsection-title {
	margin-top: 0;
}
.myct-required {
	color: var(--myct-primary);
}

/* ---------- Header ---------- */
.myct-tour-banner img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	display: block;
	margin-bottom: 16px;
}

/* ---------- Banner slider (from product gallery) ---------- */
.myct-tour-slider {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 16px;
}
.myct-slider-viewport {
	overflow: hidden;
}
.myct-slider-track {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
}
.myct-slide {
	flex: 0 0 100%;
	min-width: 100%;
}
.myct-slider-track .myct-slide-img,
.myct-tour-slider .myct-slide img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
	border-radius: 0;
}
.myct-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(1, 93, 56, 0.78);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.25s ease, background 0.2s ease;
	z-index: 2;
}
.myct-tour-slider:hover .myct-slider-arrow,
.myct-slider-arrow:focus-visible {
	opacity: 1;
}
.myct-slider-arrow:hover {
	background: #015d38;
}
.myct-slider-prev {
	left: 12px;
}
.myct-slider-next {
	right: 12px;
}
@media (max-width: 600px) {
	.myct-slider-arrow {
		width: 36px;
		height: 36px;
		opacity: 1;
	}
}
.myct-tour-title {
	font-size: 26px;
	font-weight: 800;
	color: #000;
	margin: 0 0 10px;
}
.myct-tour-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	color: #444;
}

/* ---------- Departure cards (horizontal slider) ---------- */
.myct-departure-slider {
	position: relative;
}
.myct-departure-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	padding: 2px 2px 8px;
	scrollbar-width: thin;
	scrollbar-color: #cdd8d2 transparent;
}
.myct-departure-list::-webkit-scrollbar {
	height: 6px;
}
.myct-departure-list::-webkit-scrollbar-thumb {
	background: #cdd8d2;
	border-radius: 3px;
}
.myct-departure-list::-webkit-scrollbar-track {
	background: transparent;
}
.myct-departure-card {
	display: flex;
	flex-direction: column;
	gap: 3px;
	flex: 0 0 auto;
	min-width: 150px;
	scroll-snap-align: start;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid var(--myct-border);
	border-radius: 6px;
	cursor: pointer;
	text-align: left;
	transition: border-color .15s, box-shadow .15s;
}

/* Slider arrows */
.myct-dep-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--myct-border);
	border-radius: 50%;
	background: #fff;
	color: var(--myct-primary);
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
	z-index: 3;
	transition: background .2s, color .2s;
}
.myct-dep-arrow:hover {
	background: var(--myct-primary);
	color: #fff;
}
.myct-dep-arrow[hidden] {
	display: none;
}
.myct-dep-prev {
	left: -6px;
}
.myct-dep-next {
	right: -6px;
}
@media (max-width: 600px) {
	/* On touch screens rely on native swipe; hide the arrows. */
	.myct-dep-arrow {
		display: none;
	}
}
.myct-departure-card:hover {
	border-color: var(--myct-accent);
}
/* Selected / clicked / focused departure card: green fill + white text so it
   stands out and stays readable (the button picks up a green background on
   focus/click — make every label white to match). */
.myct-departure-card.is-active,
.myct-departure-card:focus,
.myct-departure-card:active {
	background: var(--myct-primary);
	border-color: var(--myct-primary);
	box-shadow: none;
	outline: none;
	color: #fff;
}
.myct-departure-card.is-active .myct-dep-date,
.myct-departure-card.is-active .myct-dep-from,
.myct-departure-card.is-active .myct-dep-status,
.myct-departure-card:focus .myct-dep-date,
.myct-departure-card:focus .myct-dep-from,
.myct-departure-card:focus .myct-dep-status,
.myct-departure-card:active .myct-dep-date,
.myct-departure-card:active .myct-dep-from,
.myct-departure-card:active .myct-dep-status {
	color: #fff;
}
.myct-departure-card.is-active .myct-dep-airport,
.myct-departure-card:focus .myct-dep-airport,
.myct-departure-card:active .myct-dep-airport {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
}
.myct-departure-card.is-disabled {
	opacity: .5;
	cursor: not-allowed;
	background: var(--myct-grey);
}
.myct-dep-date {
	font-weight: 700;
	font-size: 15px;
}
.myct-dep-from {
	color: var(--myct-accent);
	font-size: 13px;
	font-weight: 600;
}
.myct-dep-airport {
	display: inline-block;
	font-size: 11px;
	background: var(--myct-grey);
	border-radius: 3px;
	padding: 1px 6px;
	width: fit-content;
}
.myct-dep-status {
	font-size: 11px;
	color: var(--myct-primary);
	text-transform: uppercase;
	font-weight: 700;
}

/* ---------- Things to know ---------- */
.myct-ttk-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
@media (max-width: 600px) {
	.myct-ttk-grid { grid-template-columns: 1fr; }
}
.myct-ttk-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: inherit;
	text-decoration: none;
}
.myct-ttk-icon img { width: 28px; height: 28px; object-fit: contain; }
.myct-ttk-icon i { font-size: 20px; color: var(--myct-accent); width: 28px; text-align: center; }
.myct-ttk-label { display: block; font-weight: 700; font-size: 14px; }
.myct-ttk-value { display: block; font-size: 13px; color: #555; }
a.myct-ttk-item:hover .myct-ttk-label { color: var(--myct-primary); }

/* LAND preset "Things to know" — fixed icons, red highlight (matches design) */
.myct-ttk-land .myct-section-title { color: #d6322f; }
.myct-ttk-highlight {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: #d6322f;
	font-weight: 700;
	font-size: 15px;
}
.myct-ttk-highlight i { color: #d6322f; font-size: 18px; width: 22px; text-align: center; }
.myct-ttk-land .myct-ttk-icon i { color: #333; font-size: 18px; }
.myct-ttk-land .myct-ttk-text { font-size: 14px; color: #333; line-height: 1.5; }
.myct-ttk-land .myct-ttk-text strong { font-weight: 700; }

/* FULL preset "Things to know" — grid + popups (matches design) */
.myct-ttk-full .myct-section-title { color: #d6322f; }
.myct-ftk-grid { gap: 14px 24px; }
.myct-ftk-item .myct-ttk-text { font-size: 14px; line-height: 1.5; }
.myct-ftk-dark .myct-ttk-icon i,
.myct-ftk-dark .myct-ttk-text { color: #333; }
.myct-ftk-blue .myct-ttk-icon i { color: #015d38; }
.myct-ftk-blue .myct-ttk-text,
.myct-ftk-link { color: #015d38; }
.myct-ftk-item .myct-ttk-text a,
.myct-ftk-link { color: #015d38; text-decoration: none; cursor: pointer; }
.myct-ftk-item .myct-ttk-text a:hover,
.myct-ftk-link:hover { text-decoration: underline; }

.myct-ftk-conf-list { list-style: none; margin: 0; padding: 0; }
.myct-ftk-conf-list li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: #333; }
.myct-ftk-conf-list li:last-child { border-bottom: 0; }
.myct-ftk-conf-label { color: #555; }
.myct-ftk-conf-value { font-weight: 600; }
.myct-ftk-more-content { font-size: 14px; line-height: 1.65; color: #333; }
.myct-ftk-more-content strong { color: #111; }
.myct-ftk-more-content ul { margin: 8px 0 8px 18px; }

/* ---------- Flight info ---------- */
.myct-flight-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}
@media (max-width: 782px) {
	.myct-flight-grid { grid-template-columns: 1fr; }
}
.myct-flight-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--myct-border);
	border-radius: 10px;
	padding: 16px 18px 18px;
	background: #fff;
}
.myct-flight-head {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	margin-bottom: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.04);
	color: var(--myct-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.4;
}
.myct-flight-icon { font-size: 12px; }
.myct-flight-title { white-space: nowrap; }
.myct-flight-route {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
	color: #111;
	margin-bottom: 10px;
}
.myct-flight-city { min-width: 0; }
.myct-flight-arrow {
	color: var(--myct-accent);
	font-weight: 700;
	margin: 0;
}
.myct-flight-airline {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 14px;
}
.myct-flight-meta { display: block; }
.myct-flight-meta-label { color: #6b6b6b; }
.myct-flight-meta-value { color: var(--myct-accent); font-weight: 600; }

/* Huy hiệu thời lượng bay nằm giữa đường nối / Duration badge on the connector line. */
.myct-flight-duration {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 0 10px;
}
.myct-flight-duration::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--myct-border);
}
.myct-flight-duration-badge {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
	padding: 5px 12px;
	border: 1px solid var(--myct-border);
	border-radius: 8px;
	background: #f7fafc;
	text-align: center;
	line-height: 1.3;
}
.myct-flight-duration-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #8a8a8a;
}
.myct-flight-duration-value {
	font-size: 12px;
	font-weight: 700;
	color: #333;
	white-space: nowrap;
}

/* Cột giờ đi / giờ đến, luôn thẳng hàng / Departure & arrival columns, always aligned. */
.myct-flight-times {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: auto;
	align-items: start;
}
.myct-flight-time {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.myct-flight-time--arr { text-align: right; align-items: flex-end; }
.myct-flight-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #999;
}
.myct-flight-dt {
	font-size: 14px;
	font-weight: 700;
	color: #111;
	line-height: 1.35;
}
.myct-flight-ap { font-size: 12px; color: #777; }
.myct-flight-tba { color: #888; font-style: italic; }
@media (max-width: 400px) {
	.myct-flight-times { grid-template-columns: 1fr; }
	.myct-flight-time--arr { text-align: left; align-items: flex-start; }
}

/* ---------- Price table ---------- */
.myct-price-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 6px;
}
.myct-price-table th {
	background: var(--myct-accent);
	color: #fff;
	font-weight: 700;
	text-align: left;
	padding: 10px 12px;
	font-size: 13px;
}
.myct-price-table td {
	border: 1px solid var(--myct-border);
	padding: 9px 12px;
	font-size: 14px;
}
.myct-price-table tbody tr:nth-child(odd) td { background: #ffffff; }
.myct-price-table tbody tr:nth-child(even) td { background: #eef6f1; }
.myct-price-table tbody tr:hover td { background: #e0efe7; }

/* ---------- Form fields ---------- */
.myct-field { margin-bottom: 16px; }
.myct-label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}
.myct-input,
.myct-select,
.myct-textarea {
	width: 100%;
	height: 44px;
	border: 1px solid var(--myct-border);
	border-radius: 5px;
	padding: 0 12px;
	font-size: 14px;
	color: var(--myct-text);
	background: #fff;
	box-sizing: border-box;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.myct-textarea { height: auto; min-height: 80px; padding: 10px 12px; }

/* Custom select: hide native arrow, draw our own chevron. */
.myct-tour .myct-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 40px;
	line-height: 42px;       /* vertically centre the text within the 44px box */
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
}
.myct-tour .myct-select::-ms-expand { display: none; }
/* Grey out the placeholder "Select" while no value is chosen; real options stay dark. */
.myct-tour .myct-select:invalid { color: #9a9a9a; }
.myct-tour .myct-select option { color: var(--myct-text); }
.myct-tour .myct-select option[value=""] { color: #9a9a9a; }

.myct-tour .myct-input:hover,
.myct-tour .myct-select:hover,
.myct-tour .myct-textarea:hover { border-color: #c9c9c9; }

/* Kill the black browser/parent-theme border + focus outline; use our own styling. */
.myct-tour .myct-input,
.myct-tour .myct-select,
.myct-tour .myct-textarea {
	outline: none !important;
	border: 1px solid var(--myct-border) !important;
	box-shadow: none;
}
.myct-tour .myct-input:focus,
.myct-tour .myct-select:focus,
.myct-tour .myct-textarea:focus,
.myct-tour .myct-input:focus-visible,
.myct-tour .myct-select:focus-visible,
.myct-tour .myct-textarea:focus-visible {
	outline: none !important;
	border: 1px solid var(--myct-accent) !important;
	box-shadow: 0 0 0 3px rgba(245,130,31,.15);
}

/* Hard override for the No-of-Pax select: ID specificity beats any parent rule,
   and every focus-related black border/outline source is neutralised. */
.myct-tour select#myct-no-of-pax,
.myct-tour select#myct-no-of-pax:focus,
.myct-tour select#myct-no-of-pax:focus-visible,
.myct-tour select#myct-no-of-pax:active,
.myct-tour select#myct-no-of-pax:hover {
	outline: 0 none transparent !important;
	outline-offset: 0 !important;
	-webkit-tap-highlight-color: transparent;
	border-width: 1px !important;
	border-style: solid !important;
}
.myct-tour select#myct-no-of-pax { border-color: var(--myct-border) !important; }
.myct-tour select#myct-no-of-pax:focus,
.myct-tour select#myct-no-of-pax:focus-visible {
	border-color: var(--myct-accent) !important;
	box-shadow: 0 0 0 3px rgba(245,130,31,.15) !important;
}

/* Materialize select shim: kill the black border it draws on its proxy input. */
.select-wrapper input.select-dropdown {
	position: relative;
	cursor: pointer;
	background-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-shadow: none !important;
	border: none;
}

/* ---------- Passenger cards ---------- */
.myct-passenger-card {
	border: 1px solid var(--myct-border);
	border-radius: 6px;
	padding: 16px;
	margin-bottom: 16px;
}
.myct-passenger-card .myct-pax-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.myct-pax-title { font-weight: 700; color: var(--myct-primary); }
.myct-pax-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
@media (max-width: 600px) {
	.myct-pax-grid { grid-template-columns: 1fr; }
}
.myct-pax-grid .myct-field.full { grid-column: 1 / -1; }
.myct-pax-grid .myct-field { margin-bottom: 0; }

/* Date of birth — Day / Month / Year dropdowns. */
.myct-dob {
	display: flex;
	gap: 8px;
	width: 100%;
}
.myct-dob .myct-select {
	flex: 1 1 0;
	min-width: 0;          /* allow the selects to shrink instead of overflowing */
	padding-right: 28px;   /* tighter than the default 40px so text fits when narrow */
	background-position: right 9px center;
}

/* ---------- Buttons ---------- */
.myct-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	border-radius: 5px;
	padding: 12px 22px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: opacity .15s;
}
.myct-btn:hover { opacity: .9; }
.myct-btn-primary { background: var(--myct-primary); color: #fff; width: 100%; justify-content: center; font-size: 17px; padding: 15px; }

/* Book Now button inside the summary sidebar. */
#myct-book-now-summary { margin-top: 18px; }

/* Outline button: white bg / orange text & border, locked across all states so the
   parent theme's button focus/active colours can't override it (was turning teal). */
.myct-tour .myct-btn-outline,
.myct-tour .myct-btn-outline:hover,
.myct-tour .myct-btn-outline:focus,
.myct-tour .myct-btn-outline:focus-visible,
.myct-tour .myct-btn-outline:active {
	background: #fff !important;
	border: 1px solid var(--myct-accent) !important;
	color: var(--myct-accent) !important;
	outline: none !important;
	box-shadow: none !important;
	text-shadow: none !important;
}
/* Filled hover/focus feedback: orange bg, white text — clearly readable. */
.myct-tour .myct-btn-outline:hover,
.myct-tour .myct-btn-outline:focus,
.myct-tour .myct-btn-outline:active {
	background: var(--myct-accent) !important;
	color: #fff !important;
	opacity: 1;
}
.myct-tour .myct-btn-outline:focus-visible {
	box-shadow: 0 0 0 3px rgba(245,130,31,.25) !important;
}
.myct-add-infant { margin-top: 4px; }
.myct-pax-remove { background: none; border: none; color: var(--myct-primary); cursor: pointer; font-size: 13px; }

/* ---------- Travel insurance ---------- */
.myct-ti-text { font-size: 14px; color: #444; }
.myct-ti-options { display: flex; gap: 24px; margin-top: 10px; }
.myct-radio { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }

/* ---------- Submit / messages ---------- */
.myct-submit-row { margin-top: 8px; }
.myct-form-messages { margin: 12px 0; }
.myct-form-messages .myct-error,
.myct-field-error {
	color: var(--myct-primary);
	font-size: 13px;
}
.myct-form-messages .myct-error {
	background: #e8f3ee;
	border: 1px solid #b7d8c8;
	border-radius: 5px;
	padding: 10px 12px;
	margin-bottom: 6px;
}
.myct-input.has-error,
.myct-select.has-error { border-color: var(--myct-primary); }

/* ---------- Flatpickr (LAND departure calendar) — brand theme ---------- */
/* The friendly display input (altInput) wears the .myct-input look; add a calendar cue. */
.myct-tour .myct-fp-input {
	cursor: pointer;
	/* flatpickr's altInput is readonly — some themes grey out readonly text. Force
	   a strong, readable colour so the chosen date stands out. */
	color: var(--myct-text) !important;
	-webkit-text-fill-color: var(--myct-text);
	opacity: 1;
	font-weight: 600;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2302814f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 38px;
}
/* Keep the placeholder ("Select date") lighter so only the chosen value is bold-black. */
.myct-tour .myct-fp-input::placeholder {
	color: #999;
	-webkit-text-fill-color: #999;
	font-weight: 400;
}
.flatpickr-calendar {
	border-radius: 8px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: var(--myct-primary);
	border-color: var(--myct-primary);
}
.flatpickr-day.today {
	border-color: var(--myct-accent);
}
.flatpickr-day.today:hover {
	background: var(--myct-accent);
	border-color: var(--myct-accent);
	color: #fff;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
	background: #eafaf2;
	border-color: #eafaf2;
}
span.flatpickr-weekday {
	color: var(--myct-accent);
	font-weight: 700;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
	fill: var(--myct-primary);
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
	background: #eafaf2;
}

/* ---------- Summary ---------- */
.myct-summary {
	background: #fff;
	border: 1px solid var(--myct-border);
	border-left: 4px solid var(--myct-primary);
	border-radius: 6px;
	padding: 20px;
}
.myct-summary-title {
	font-size: 18px;
	font-weight: 800;
	color: #000;
	margin: 0 0 16px;
}
.myct-summary-block { margin-bottom: 12px; }
.myct-summary-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #888;
	margin-bottom: 2px;
}
.myct-summary-value { font-weight: 600; }
/* ---------- Early-bird promo banner (Ưu đãi đặt sớm) ---------- */
.myct-eb-banner {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	border: 1px solid var(--myct-accent);
	background: linear-gradient(135deg, #eafaf2 0%, #f4fbf7 100%);
	border-radius: 8px;
	padding: 14px 18px;
	margin-bottom: 20px;
}
.myct-eb-icon { color: var(--myct-accent); font-size: 26px; line-height: 1; margin-top: 2px; }
.myct-eb-body { flex: 1 1 0; min-width: 0; }
.myct-eb-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: .3px;
	text-transform: uppercase;
	color: var(--myct-primary);
}
.myct-eb-tiers { list-style: none; margin: 0; padding: 0; }
.myct-eb-tier {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	padding: 4px 0;
	border-bottom: 1px dashed rgba(1, 93, 56, .15);
}
.myct-eb-tier:last-child { border-bottom: none; }
.myct-eb-tier-when { color: #333; }
.myct-eb-tier-save { font-weight: 700; color: var(--myct-accent); white-space: nowrap; }

.myct-summary-fare {
	border-top: 1px dashed var(--myct-border);
	border-bottom: 1px dashed var(--myct-border);
	padding: 12px 0;
	margin: 12px 0;
}
.myct-fare-line {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	padding: 3px 0;
}
.myct-fare-line.is-adjustment { color: var(--myct-primary); }
.myct-fare-empty { color: #999; font-size: 13px; }
.myct-summary-grand {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 10px 0;
}
.myct-grand-value { font-size: 22px; font-weight: 800; color: #000; }
.myct-summary-due {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	background: #eef6f1;
	border-radius: 5px;
	padding: 10px 12px;
}
.myct-due-value { font-size: 20px; font-weight: 800; color: var(--myct-accent); }
.myct-final-notice {
	color: var(--myct-primary);
	font-size: 13px;
	margin: 12px 0 0;
}

.myct-summary-errors { margin-top: 12px; }
.myct-summary-errors .myct-error {
	color: #b3261e;
	background: #fdecea;
	border: 1px solid #f5c2bd;
	border-radius: 5px;
	padding: 8px 10px;
	font-size: 13px;
	margin-bottom: 6px;
}

.myct-summary.is-loading { opacity: .55; }

/* Mobile: summary sticks to bottom for quick reference */
@media (max-width: 991px) {
	.myct-summary { margin-top: 8px; }
}

/* ---------- Mobile sticky booking bar (live price + scroll-to-Summary) ---------- */
.myct-mobile-bar { display: none; }
@media (max-width: 991px) {
	.myct-mobile-bar {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9000;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 10px 16px;
		padding-bottom: calc( 10px + env( safe-area-inset-bottom, 0px ) );
		background: #fff;
		border-top: 1px solid var(--myct-border);
		box-shadow: 0 -4px 16px rgba( 0, 0, 0, .10 );
	}
	.myct-mobile-bar__price {
		display: flex;
		flex-direction: column;
		line-height: 1.2;
		min-width: 0;
	}
	.myct-mobile-bar__label {
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: .3px;
		color: #666;
	}
	.myct-mobile-bar__value {
		font-size: 18px;
		font-weight: 800;
		color: var(--myct-primary);
	}
	.myct-mobile-bar .myct-mobile-bar__btn {
		width: auto;
		flex: 0 0 auto;
		padding: 12px 24px;
		font-size: 15px;
		white-space: nowrap;
	}
	/* Reserve space so the fixed bar never covers the last content / footer button. */
	.myct-tour { padding-bottom: 84px; }

	/* The in-form "Reserve Now" button is redundant on mobile — the sticky bar
	   (and the Summary's own Book button it scrolls to) cover the CTA. Hide it to
	   avoid two identical buttons. Validation errors still auto-scroll into view. */
	.myct-submit-row { display: none; }
}

/* ---------- Submitting overlay (Book Now feedback) ---------- */
.myct-loading-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 24px;
	text-align: center;
	background: rgba(255, 255, 255, .82);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease;
}
.myct-loading-overlay.is-active {
	opacity: 1;
	visibility: visible;
}
.myct-loading-spinner {
	width: 56px;
	height: 56px;
	border: 5px solid rgba(1, 93, 56, .18);
	border-top-color: #015d38;
	border-radius: 50%;
	animation: myct-spin .8s linear infinite;
}
@keyframes myct-spin {
	to { transform: rotate(360deg); }
}
.myct-loading-title {
	font-size: 18px;
	font-weight: 800;
	color: #015d38;
	margin: 0;
}
.myct-loading-text {
	font-size: 14px;
	color: #555;
	margin: 0;
	max-width: 360px;
}
.myct-loading-dots::after {
	content: '';
	animation: myct-dots 1.4s steps(4, end) infinite;
}
@keyframes myct-dots {
	0%   { content: ''; }
	25%  { content: '.'; }
	50%  { content: '..'; }
	75%  { content: '...'; }
}

/* ---------- Itinerary (day-by-day accordion) ---------- */
.myct-itinerary-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.myct-itinerary .myct-itinerary-title {
	margin: 0;
}
.myct-itinerary-download-link,
.myct-itinerary-customize {
	color: #015d38;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.myct-itinerary-download-link:hover,
.myct-itinerary-customize:hover {
	text-decoration: underline;
}
.myct-itinerary-download-link i {
	margin-right: 6px;
}

.myct-itin-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.myct-itin-day {
	background: #f2f2f2;
	border-radius: 6px;
	overflow: hidden;
}
.myct-itin-day__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 15px 18px;
	background: transparent;
	border: 0;
	text-align: left;
	font: inherit;
	cursor: pointer;
}
.myct-itin-day__head--static {
	cursor: default;
}
.myct-itin-day__title {
	font-weight: 700;
	font-size: 15px;
	color: #2b2b2b;
}
.myct-itin-day__chevron {
	flex: 0 0 auto;
	color: #888;
	font-size: 13px;
	transition: transform .25s ease;
}
.myct-itin-day.is-open .myct-itin-day__chevron {
	transform: rotate(90deg);
}
.myct-itin-day__body {
	display: none;
	padding: 0 18px 16px;
	font-size: 14px;
	color: #444;
}
.myct-itin-day.is-open .myct-itin-day__body {
	display: block;
}

.myct-itinerary-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 16px;
}
.myct-itinerary-note {
	color: #777;
	font-size: 13px;
	font-style: italic;
}

@media (max-width: 575px) {
	.myct-itin-day__head { padding: 13px 14px; }
	.myct-itin-day__title { font-size: 14px; }
}

/* ============================================================= *
 * LAND "hotel × pax-group" price matrix
 * ============================================================= */
.myct-mx-table-wrap {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 8px;
	border: 1px solid #e2e6ea;
}

.myct-mx-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14px;
	min-width: 720px;
}

/* FULL TOUR price table only has 3 columns — let it fit without forced scroll. */
.myct-mx-table--full {
	min-width: 0;
}

.myct-mx-table th,
.myct-mx-table td {
	padding: 14px 18px;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #eef1f4;
}

/* Vertical separators between columns. */
.myct-mx-table th:not(:last-child),
.myct-mx-table td:not(:last-child) {
	border-right: 1px solid #e3ebe6;
}
.myct-mx-table thead th.myct-mx-accent:not(:last-child) {
	border-right-color: rgba( 255, 255, 255, 0.25 );
}
.myct-mx-table tbody td.myct-mx-accent-cell:not(:last-child) {
	border-right-color: rgba( 1, 93, 56, 0.16 );
}

.myct-mx-table thead th {
	background: #eef1f4;
	color: #1f2937;
	font-weight: 700;
	border-bottom: none;
}

.myct-mx-table thead th.myct-mx-accent {
	background: #015d38;
	color: #fff;
}

.myct-mx-table .myct-mx-col-cat {
	text-align: left;
	font-weight: 600;
	color: #1f2937;
	min-width: 180px;
}

.myct-mx-table tbody tr:nth-child( even ) td {
	background: #eef6f1;
}

.myct-mx-table tbody tr:hover td {
	background: #e0efe7;
}

.myct-mx-table tbody td.myct-mx-accent-cell {
	background: rgba( 1, 93, 56, 0.10 );
}

.myct-mx-table tbody tr:nth-child( even ) td.myct-mx-accent-cell {
	background: rgba( 1, 93, 56, 0.20 );
}

.myct-mx-table tbody tr:hover td.myct-mx-accent-cell {
	background: rgba( 1, 93, 56, 0.26 );
}

.myct-mx-price {
	font-weight: 700;
	color: #013723;
	white-space: nowrap;
}

.myct-mx-col-period {
	white-space: nowrap;
}

.myct-mx-col-period.myct-mx-accent-cell {
	color: #013723;
	font-weight: 600;
}

.myct-mx-view {
	color: #2271b1;
	text-decoration: underline;
	cursor: pointer;
}

/* Highlight the selected hotel-class rows. */
.myct-mx-row.is-active-cat td {
	background: #fff3e6;
}

.myct-mx-row.is-active-cat td.myct-mx-accent-cell {
	background: rgba( 1, 93, 56, 0.32 );
}

.myct-mx-row.is-active-cat td.myct-mx-col-cat {
	box-shadow: inset 3px 0 0 #015d38;
}

/* Travel-details note. */
.myct-mx-note {
	margin: 16px 0 18px;
	color: #1f4e96;
	font-weight: 600;
	line-height: 1.5;
}

/* Form fields grid (Category / Departure / Pax / Single / Sales). */
.myct-mx-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 24px;
}

@media (max-width: 575px) {
	.myct-mx-fields {
		grid-template-columns: 1fr;
	}
}

/* Surcharge modal. */
.myct-mx-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.myct-mx-modal[hidden] {
	display: none;
}

.myct-mx-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba( 17, 24, 39, 0.55 );
}

.myct-mx-modal__box {
	position: relative;
	z-index: 1;
	width: min( 560px, 92vw );
	max-height: 84vh;
	overflow: auto;
	background: #fff;
	border-radius: 12px;
	padding: 22px 24px;
	box-shadow: 0 18px 50px rgba( 0, 0, 0, 0.35 );
}

.myct-mx-modal__close {
	position: absolute;
	top: 10px;
	right: 14px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
}

.myct-mx-modal__title {
	margin: 0 0 14px;
	font-size: 18px;
	color: #013723;
}

.myct-mx-modal__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.myct-mx-modal__table th,
.myct-mx-modal__table td {
	padding: 9px 12px;
	border-bottom: 1px solid #eef1f4;
	text-align: left;
}

.myct-mx-modal__table thead th {
	background: #015d38;
	color: #fff;
}

.myct-mx-modal__note {
	font-size: 14px;
	line-height: 1.6;
	color: #1f2937;
}

.myct-mx-modal__note p {
	margin: 0 0 10px;
}

/* ============================================================= *
 * FULL TOUR — room-based selection (Number of Rooms)
 * ============================================================= */
.myct-rooms-help {
	font-size: 13px;
	color: #555;
	margin: 0 0 14px;
}
.myct-room-card {
	border: 1px solid var(--myct-border);
	border-radius: 6px;
	padding: 14px 16px;
	margin-bottom: 14px;
	background: #fff;
}
.myct-room-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.myct-room-title {
	font-weight: 700;
	font-size: 15px;
	color: #000;
}
.myct-room-remove {
	background: none;
	border: none;
	color: #b42318;
	font-size: 13px;
	cursor: pointer;
	padding: 2px 4px;
}
.myct-room-remove:hover {
	text-decoration: underline;
}
button#myct-mbar-book:focus {
    background: #015d38;
}
.myct-room-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	border-top: 1px solid #f0f0f0;
}
.myct-room-cat {
	display: flex;
	flex-direction: column;
}
.myct-room-cat-label {
	font-weight: 600;
}
.myct-room-cat-hint {
	font-size: 12px;
	color: #888;
}

/* Stepper (− value +) */
.myct-stepper {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--myct-border);
	border-radius: 6px;
	overflow: hidden;
}
.myct-step-btn {
	width: 34px;
	height: 34px;
	border: none;
	background: var(--myct-grey);
	color: var(--myct-primary);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}
.myct-step-btn:hover {
	background: #ececec;
}
.myct-step-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.myct-step-val {
	min-width: 40px;
	text-align: center;
	font-weight: 600;
}
.myct-add-room {
	margin-top: 4px;
}

/* Passenger cards grouped by room */
.myct-room-group {
	margin-bottom: 18px;
}
.myct-room-group-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--myct-primary);
	margin: 0 0 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--myct-grey);
}

/* ============================================================= *
 * Seat-hold countdown timer
 * ============================================================= */
.myct-hold-timer {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--myct-primary);
	color: #fff;
	border-radius: 6px;
	padding: 10px 14px;
	margin-bottom: 16px;
	font-size: 13px;
}
.myct-hold-timer strong {
	font-size: 16px;
	letter-spacing: 0.5px;
}
.myct-hold-timer.is-expired {
	background: #b42318;
}

/* ============================================================= *
 * Summary — remaining balance
 * ============================================================= */
.myct-summary-remaining {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
	font-size: 14px;
	color: #555;
}

/* Currency-per-pax unit shown once in matrix price column headers */
.myct-mx-unit {
	display: block;
	font-weight: 400;
	font-size: 11px;
	opacity: 0.85;
	white-space: nowrap;
}
.myct-eb-banner {
    margin-top: 20px;
}
/* ============================================================= *
 * Seat-hold expired — locked form + blocking modal
 * ============================================================= */
.myct-form-locked {
	opacity: 0.55;
	pointer-events: none;
	user-select: none;
}

.myct-expired-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(17, 24, 39, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}
.myct-expired-modal.is-active {
	opacity: 1;
	visibility: visible;
}
.myct-expired-box {
	background: #fff;
	border-radius: 10px;
	max-width: 420px;
	width: 100%;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.myct-expired-icon i {
	font-size: 40px;
	color: #b42318;
}
.myct-expired-title {
	font-size: 19px;
	font-weight: 800;
	color: #111;
	margin: 14px 0 8px;
}
.myct-expired-text {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 0 0 20px;
}
button#myct-mbar-book:focus {
    background: #015d38;
}
/* Modal lives outside .myct-tour, so the --myct-primary variable isn't in scope:
   set explicit brand colours so the button never renders white-on-white. */
.myct-expired-box .myct-btn,
#myct-expired-reload {
	width: 100%;
	background: #015d38 !important;
	color: #fff !important;
	border: none !important;
}
.myct-expired-box .myct-btn:hover,
#myct-expired-reload:hover {
	background: #02814f !important;
	color: #fff !important;
}

/* ==========================================================================
   PRE-WEDDING + HONEYMOON — package tiers ("Details Package")
   The cards are the price display AND the booking control. No label-wrapped
   radio: one hidden input holds the value and a real button drives it, so
   clicking never moves focus up the card and never scrolls the page.
   ========================================================================== */

/* ---- Step heading, shared by the package and date steps ---- */
.myct-step {
	display: flex;
	align-items: center;
	gap: 10px;
}
.myct-step__num {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--myct-primary);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 26px;
	text-align: center;
}

.myct-packages-help {
	margin: 0 0 14px;
	color: #666;
	font-size: 14px;
}

.myct-package-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	border-radius: 6px;
}
.myct-package-grid.is-invalid {
	outline: 2px solid #c0392b;
	outline-offset: 6px;
}

.myct-package-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--myct-border);
	border-radius: 6px;
	background: #fff;
	padding: 0 0 14px;
	cursor: pointer;
	overflow: hidden;
	transition: border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.myct-package-card:hover {
	border-color: var(--myct-accent);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

/* Once a choice exists, the others recede so the selection reads at a glance. */
.myct-package-grid.has-selection .myct-package-card {
	opacity: .62;
}
.myct-package-grid.has-selection .myct-package-card:hover {
	opacity: .85;
}
.myct-package-card.is-selected,
.myct-package-grid.has-selection .myct-package-card.is-selected {
	opacity: 1;
	border-color: var(--myct-primary);
	box-shadow: 0 0 0 2px var(--myct-primary) inset, 0 6px 18px rgba(1, 93, 56, .14);
}

/* ---- Selected tick ---- */
.myct-package-tick {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--myct-primary);
	color: #fff;
	font-size: 13px;
	line-height: 28px;
	text-align: center;
	opacity: 0;
	transform: scale(.6);
	transition: opacity .18s ease, transform .18s ease;
}
.myct-package-card.is-selected .myct-package-tick {
	opacity: 1;
	transform: scale(1);
}

.myct-package-media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--myct-grey);
}
.myct-package-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.myct-package-body {
	display: block;
	padding: 14px 16px 0;
	flex: 1 1 auto;
}

.myct-package-name {
	display: block;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--myct-accent);
}

.myct-package-price {
	display: block;
	margin-top: 4px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--myct-text);
}

.myct-package-for {
	display: block;
	font-size: 13px;
	color: #555;
}

.myct-package-upto {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	color: #777;
	letter-spacing: .02em;
}

.myct-package-note {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: var(--myct-primary);
	font-weight: 600;
}

.myct-package-includes {
	margin: 12px 0 0;
	padding: 12px 0 0;
	border-top: 1px solid var(--myct-border);
	list-style: none;
	font-size: 13.5px;
	color: #444;
}
.myct-package-includes li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 5px;
}
.myct-package-includes li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--myct-accent);
}

/* Collapsed state: keep only the first few lines so the three cards stay a
   readable height; the rest appear behind the Show more button. */
.myct-package-includes.is-collapsed li.is-extra {
	display: none;
}

.myct-package-more {
	display: block;
	margin: 8px 16px 0;
	padding: 0;
	background: none;
	border: 0;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--myct-accent);
	text-decoration: underline;
	cursor: pointer;
}
.myct-package-more:hover {
	color: var(--myct-primary);
}
.myct-package-more:focus-visible {
	outline: 2px solid var(--myct-accent);
	outline-offset: 2px;
}

/* ---- The choose button ---- */
.myct-package-pick {
	display: block;
	width: calc(100% - 32px);
	margin: 14px 16px 0;
	padding: 11px 12px;
	background: #fff;
	text-align: center;
	font: inherit;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
	border: 1px solid var(--myct-primary);
	border-radius: 4px;
	color: var(--myct-primary);
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.myct-package-card:hover .myct-package-pick {
	background: rgba(1, 93, 56, .06);
}
.myct-package-pick:focus-visible {
	outline: 2px solid var(--myct-accent);
	outline-offset: 2px;
}
.myct-package-card.is-selected .myct-package-pick {
	background: var(--myct-primary);
	border-color: var(--myct-primary);
	color: #fff;
}

/* ---- Confirmation line under the grid ---- */
.myct-package-status {
	margin: 14px 0 0;
	padding: 11px 14px;
	border-left: 3px solid var(--myct-primary);
	border-radius: 0 4px 4px 0;
	background: rgba(1, 93, 56, .07);
	font-size: 14px;
	color: var(--myct-text);
}

/* ---- Date step ---- */
.myct-date-step {
	border-radius: 6px;
	transition: box-shadow .3s ease, background .3s ease;
}
.myct-date-step.is-highlight {
	background: rgba(2, 129, 79, .06);
	box-shadow: 0 0 0 2px var(--myct-accent);
}

@media (max-width: 575px) {
	.myct-package-grid {
		grid-template-columns: 1fr;
	}
	.myct-package-price {
		font-size: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.myct-package-card,
	.myct-package-tick,
	.myct-package-pick,
	.myct-date-step {
		transition: none;
	}
}
/* Optional-field hint next to a label, e.g. "Partner's full name (optional)". */
.myct-optional {
	font-weight: 400;
	font-size: 12px;
	color: #8a8a8a;
	margin-left: 4px;
}

/* ---------- TEAMBUILDING preset "Things to know" ----------
 * Hàng chip Duration / Overnight Stay / Cities / Season nằm ngay dưới tiêu đề,
 * phần còn lại dùng lại lưới .myct-ttk-grid chung.
 */
.myct-ttk-team .myct-section-title { color: #d6322f; }
.myct-ttk-chips {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}
@media (max-width: 600px) {
	.myct-ttk-chips { grid-template-columns: 1fr; }
}
.myct-ttk-chip {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid var(--myct-border);
	border-radius: 8px;
	background: var(--myct-grey);
}
.myct-ttk-chip__icon i {
	font-size: 20px;
	color: var(--myct-accent);
	width: 26px;
	text-align: center;
}
.myct-ttk-chip__text { display: flex; flex-direction: column; min-width: 0; }
.myct-ttk-chip__label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .3px;
	color: #666;
}
.myct-ttk-chip__value { font-size: 15px; font-weight: 700; color: var(--myct-text); }
.myct-ttk-team .myct-ttk-icon i { color: #333; font-size: 18px; }
.myct-ttk-team .myct-ttk-text { font-size: 14px; color: #333; line-height: 1.5; }

/* ---------- Overview ---------- */
.myct-overview-body { font-size: 15px; line-height: 1.65; }
.myct-overview-body h2,
.myct-overview-body h3 {
	font-size: 16px;
	font-weight: 800;
	color: #000;
	margin: 20px 0 8px;
	text-transform: uppercase;
}
.myct-overview-body h2:first-child,
.myct-overview-body h3:first-child { margin-top: 0; }
.myct-overview-body ul { margin: 0 0 12px; padding-left: 20px; list-style: disc; }
.myct-overview-body li { margin-bottom: 6px; }
.myct-overview-body p { margin: 0 0 12px; }
/* Nội dung import từ site cũ mang inline color xám nhạt — ép về màu chữ chuẩn
 * để đọc được trên nền trắng của theme mới. */
.myct-overview-body [style*="color"] { color: inherit !important; }

/* ---------- Enquiry sidebar (tour chỉ hỏi giá) ---------- */
.myct-enquiry-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	margin: 4px 0 2px;
}
.myct-enquiry-from { font-size: 14px; color: #666; }
.myct-enquiry-amount { font-size: 30px; font-weight: 800; color: var(--myct-primary); }
.myct-enquiry-note { font-size: 13px; color: #555; }
.myct-enquiry-supplement { margin: 0 0 12px; font-size: 13px; color: #555; }
.myct-enquiry-lead {
	margin: 12px 0 16px;
	padding-top: 14px;
	border-top: 1px solid var(--myct-border);
	font-size: 14px;
	color: #444;
}
.myct-enquiry-btn { text-decoration: none; }
.myct-enquiry-btn i { margin-right: 8px; }

/* ---------- Request a Quote (form thu lead cho tour hỏi giá) ---------- */
.myct-enquiry-intro { margin: 0 0 18px; color: #555; }
.myct-enq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 18px;
}
@media (max-width: 600px) {
	.myct-enq-grid { grid-template-columns: 1fr; }
}
.myct-enquiry-form input[readonly] {
	background: var(--myct-grey);
	color: #555;
	cursor: default;
}
/* Honeypot: giữ trong luồng DOM cho bot thấy, nhưng người thật thì không. */
.myct-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.myct-enquiry-done {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 18px 20px;
	border: 1px solid var(--myct-primary);
	border-left-width: 4px;
	border-radius: 6px;
	background: #f2fbf7;
	color: var(--myct-primary);
	font-weight: 600;
}
.myct-enquiry-done i { margin-top: 2px; font-size: 18px; }

/* Nút phụ ở khối liên hệ (WhatsApp) — viền, không nền. */
.myct-btn-ghost {
	background: #fff;
	color: var(--myct-primary);
	border: 1px solid var(--myct-primary);
	width: 100%;
	justify-content: center;
	font-size: 16px;
	padding: 13px;
	margin-top: 10px;
}
.myct-btn-ghost:hover { background: #f2fbf7; opacity: 1; }

/* ---------- Ảnh theo từng ngày trong lịch trình ---------- */
.myct-itin-gallery {
	position: relative;
	margin: 14px 0 4px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--myct-grey);
}
.myct-itin-gallery .myct-slider-viewport { overflow: hidden; }
.myct-itin-gallery .myct-slider-track {
	display: flex;
	transition: transform .45s ease;
}
.myct-itin-gallery .myct-slide {
	flex: 0 0 100%;
	min-width: 100%;
}
.myct-itin-gallery .myct-slide img {
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
}
@media (max-width: 600px) {
	.myct-itin-gallery .myct-slide img { height: 210px; }
}
.myct-itin-gallery .myct-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	color: var(--myct-text);
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s;
}
.myct-itin-gallery:hover .myct-slider-arrow,
.myct-itin-gallery .myct-slider-arrow:focus-visible { opacity: 1; }
.myct-itin-gallery .myct-slider-prev { left: 10px; }
.myct-itin-gallery .myct-slider-next { right: 10px; }
