/* ==========================================================================
   Tourastic — main stylesheet
   Sections: Base · Layout · Buttons · Header · Search · Footer · Cards ·
             Sections · Hero · Forms · Utilities · Responsive
   (Tour / Activity / Booking / WooCommerce specifics are appended lower down.)
   ========================================================================== */

/* ------------------------------------------------------------------ Base -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--tt-font);
	font-size: var(--tt-fs-base);
	line-height: var(--tt-lh);
	color: var(--tt-body);
	background: var(--tt-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 { font-family: var(--tt-font-display); color: var(--tt-ink); line-height: var(--tt-lh-tight); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
a { color: var(--tt-blue); text-decoration: none; transition: color var(--tt-fast); }
a:hover { color: var(--tt-blue-600); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem; padding: 0 0 0 1.2em; }
button { font-family: inherit; }
:focus-visible { outline: none; box-shadow: var(--tt-ring); border-radius: var(--tt-r-sm); }

.tt-skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--tt-navy); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--tt-r-sm) 0;
}
.tt-skip-link:focus { left: 0; color: #fff; }
.tt-sr-only, .tt-searchmodal[hidden] { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.tt-searchmodal[hidden] { display: none; }

/* ---------------------------------------------------------------- Layout -- */
.tt-container { width: 100%; max-width: var(--tt-container); margin: 0 auto; padding: 0 var(--tt-gutter); }
.tt-section { padding: var(--tt-s10) 0; }
.tt-section--tight { padding: var(--tt-s8) 0; }
.tt-site-main { min-height: 40vh; }
.tt-grid { display: grid; gap: var(--tt-s6); }
.tt-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tt-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------- Buttons -- */
.tt-btn {
	--btn-bg: var(--tt-blue); --btn-fg: #fff;
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	padding: 12px 22px; border: 0; border-radius: var(--tt-r-pill);
	background: var(--btn-bg); color: var(--btn-fg);
	font-weight: 700; font-size: var(--tt-fs-sm); line-height: 1.1; cursor: pointer;
	transition: transform var(--tt-fast), box-shadow var(--tt-fast), background var(--tt-fast), filter var(--tt-fast);
	text-align: center; white-space: nowrap;
}
.tt-btn:hover { color: var(--btn-fg); transform: translateY(-1px); box-shadow: var(--tt-shadow); filter: saturate(1.05); }
.tt-btn:active { transform: translateY(0); }
.tt-btn--accent { --btn-bg: var(--tt-accent); }
.tt-btn--accent:hover { --btn-bg: var(--tt-accent-600); }
.tt-btn--navy { --btn-bg: var(--tt-navy); }
.tt-btn--ghost { --btn-bg: transparent; --btn-fg: var(--tt-blue); border: 1.5px solid var(--tt-line); }
.tt-btn--ghost:hover { --btn-fg: var(--tt-blue); border-color: var(--tt-blue); background: var(--tt-blue-050); box-shadow: none; }
.tt-btn--light { --btn-bg: #fff; --btn-fg: var(--tt-navy); box-shadow: var(--tt-shadow-sm); }
.tt-btn--block { width: 100%; }
.tt-btn--lg { padding: 15px 28px; font-size: var(--tt-fs-base); }
.tt-btn--sm { padding: 8px 16px; font-size: var(--tt-fs-xs); }
.tt-btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

.tt-eyebrow {
	display: inline-block; font-size: var(--tt-fs-xs); font-weight: 800; letter-spacing: .12em;
	text-transform: uppercase; color: var(--tt-accent); margin-bottom: 8px;
}

/* Star ratings */
.tt-stars { display: inline-flex; gap: 1px; vertical-align: middle; }
.tt-star { color: var(--tt-line); font-size: .95em; line-height: 1; }
.tt-star.is-full { color: var(--tt-amber); }
.tt-star.is-half { position: relative; color: var(--tt-line); }
.tt-star.is-half::before { content: "★"; position: absolute; left: 0; width: 50%; overflow: hidden; color: var(--tt-amber); }
.tt-rating-num { font-weight: 800; color: var(--tt-ink); margin-left: 4px; font-size: .95em; }
.tt-rating-count { color: var(--tt-muted); font-size: var(--tt-fs-xs); }

/* --------------------------------------------------------------- Header -- */
.tt-header { position: sticky; top: 0; z-index: 200; background: #fff; }
.tt-header.is-stuck { box-shadow: 0 6px 24px rgba(16,32,64,.08); }

.tt-topbar { background: var(--tt-navy); color: #cdd8ea; font-size: var(--tt-fs-xs); }
.tt-topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.tt-topbar__left, .tt-topbar__right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.tt-topbar a, .tt-topbar__item { color: #cdd8ea; display: inline-flex; align-items: center; gap: 6px; }
.tt-topbar a:hover { color: #fff; }
.tt-topbar__menu { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.tt-topbar .tt-ic { opacity: .8; }

.tt-navbar { border-bottom: 1px solid var(--tt-line); }
.tt-navbar__inner { display: flex; align-items: center; gap: 20px; min-height: var(--tt-header-h); }
.tt-navbar__brand { display: flex; align-items: center; gap: 12px; }
.tt-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; color: var(--tt-navy); font-size: 1.35rem; }
.tt-logo img { max-height: 46px; width: auto; }
/* Safety net: the uploaded logo carries its own width/height attributes, and a
   broken or oversized one lays out at that size unless it is capped here too.
   Covers the_custom_logo() anywhere it is printed without a .tt-logo wrapper. */
.custom-logo { max-height: 56px; width: auto; max-width: 100%; }
.tt-logo__mark { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
	background: linear-gradient(135deg, var(--tt-blue), var(--tt-accent)); color: #fff; font-size: 1.1rem; transform: rotate(-8deg); }
.tt-logo__word { letter-spacing: -.02em; }
.tt-logo--light, .tt-logo--light .tt-logo__word { color: #fff; }

.tt-primary-nav { margin-left: auto; }
.tt-menu { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.tt-menu > li { position: relative; }
.tt-menu > li > a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: var(--tt-r-sm);
	color: var(--tt-ink); font-weight: 600; font-size: var(--tt-fs-sm); }
.tt-menu > li > a:hover, .tt-menu > li.current-menu-item > a { color: var(--tt-blue); background: var(--tt-blue-050); }
.tt-menu .menu-item-has-children > a::after { content: "▾"; font-size: .7em; opacity: .6; }

/* Dropdowns */
.tt-menu ul.sub-menu {
	list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0; min-width: 220px;
	background: #fff; border: 1px solid var(--tt-line); border-radius: var(--tt-r); box-shadow: var(--tt-shadow-md);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--tt-fast); z-index: 50;
}
.tt-menu li:hover > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.tt-menu ul.sub-menu li a { display: block; padding: 9px 12px; border-radius: var(--tt-r-sm); color: var(--tt-body); font-size: var(--tt-fs-sm); font-weight: 600; }
.tt-menu ul.sub-menu li a:hover { background: var(--tt-blue-050); color: var(--tt-blue); }

.tt-navbar__actions { display: flex; align-items: center; gap: 8px; }
.tt-iconbtn {
	position: relative; display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid var(--tt-line); background: #fff; color: var(--tt-ink); cursor: pointer; font-size: 1rem;
	transition: all var(--tt-fast);
}
.tt-iconbtn:hover { border-color: var(--tt-blue); color: var(--tt-blue); background: var(--tt-blue-050); }
.tt-cart-count {
	position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
	background: var(--tt-accent); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center;
}
.tt-cart-count.is-empty { display: none; }
.tt-navbar__cta { margin-left: 4px; }

.tt-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--tt-line);
	border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.tt-burger span { width: 20px; height: 2px; background: var(--tt-ink); border-radius: 2px; transition: all var(--tt-fast); }
.tt-nav-overlay { position: fixed; inset: 0; background: rgba(11,37,69,.5); z-index: 190; }

/* --------------------------------------------------------------- Search -- */
.tt-search { background: #fff; border-radius: var(--tt-r-lg); box-shadow: var(--tt-shadow-lg); padding: 10px; }
.tt-search__tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.tt-search__tab {
	display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 0; border-radius: var(--tt-r-pill);
	background: transparent; color: var(--tt-muted); font-weight: 700; font-size: var(--tt-fs-sm); cursor: pointer;
	transition: all var(--tt-fast);
}
.tt-search__tab.is-active { background: var(--tt-navy); color: #fff; }
.tt-search__tab:not(.is-active):hover { background: var(--tt-blue-050); color: var(--tt-blue); }
.tt-search__panel { display: none; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 8px; align-items: end; }
.tt-search__panel.is-active { display: grid; }
.tt-search__field { display: flex; flex-direction: column; gap: 5px; padding: 8px 12px; border-radius: var(--tt-r);
	background: var(--tt-surface-2); border: 1px solid var(--tt-line-2); }
.tt-search__field label { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--tt-muted); }
.tt-search__field input, .tt-search__field select {
	border: 0; background: transparent; font-size: var(--tt-fs-base); font-weight: 600; color: var(--tt-ink);
	padding: 2px 0; width: 100%; font-family: inherit;
}
.tt-search__field input:focus, .tt-search__field select:focus { outline: none; }
.tt-search__submit { height: 100%; min-height: 60px; padding-inline: 26px; }
.tt-search--compact .tt-search__submit { min-height: 52px; }

/* Search modal */
.tt-searchmodal { position: fixed; inset: 0; z-index: 300; }
.tt-searchmodal__backdrop { position: absolute; inset: 0; background: rgba(11,37,69,.55); backdrop-filter: blur(2px); }
.tt-searchmodal__panel { position: relative; background: #fff; padding: 26px 0 34px; box-shadow: var(--tt-shadow-lg);
	animation: tt-slidedown .25s var(--tt-ease); }
@keyframes tt-slidedown { from { transform: translateY(-16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.tt-searchmodal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tt-searchmodal__head h2 { margin: 0; font-size: var(--tt-fs-xl); }
.tt-searchmodal .tt-search { box-shadow: none; border: 1px solid var(--tt-line); }

/* ---------------------------------------------------------- Section head -- */
.tt-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: var(--tt-s7); }
.tt-section-head--center { flex-direction: column; align-items: center; text-align: center; }
.tt-section-title { font-size: var(--tt-fs-2xl); margin: 0; }
.tt-section-sub { color: var(--tt-muted); margin: 8px 0 0; max-width: 60ch; }
.tt-section-link { font-weight: 700; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }

/* ---------------------------------------------------------------- Cards -- */
.tt-card {
	position: relative; display: flex; flex-direction: column; background: var(--tt-surface);
	border: 1px solid var(--tt-line-2); border-radius: var(--tt-r); overflow: hidden;
	transition: transform var(--tt-fast), box-shadow var(--tt-fast), border-color var(--tt-fast);
}
.tt-card:hover { transform: translateY(-4px); box-shadow: var(--tt-shadow-md); border-color: transparent; }
.tt-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--tt-surface-2); }
.tt-media__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tt-slow); }
.tt-card:hover .tt-media__img { transform: scale(1.06); }
.tt-media__img--placeholder { display: grid; place-items: center; font-size: 3rem;
	background: linear-gradient(135deg, #dfeafe, #ffe6d8); }
.tt-badge {
	position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px;
	padding: 5px 11px; border-radius: var(--tt-r-pill); font-size: var(--tt-fs-xs); font-weight: 800;
	background: #fff; color: var(--tt-navy); box-shadow: var(--tt-shadow-sm);
}
.tt-badge--accent { background: var(--tt-accent); color: #fff; }
.tt-badge--sale { background: var(--tt-success); color: #fff; }
.tt-wish {
	position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border-radius: 50%;
	border: 0; background: rgba(255,255,255,.92); color: var(--tt-muted); cursor: pointer; display: grid; place-items: center;
	box-shadow: var(--tt-shadow-sm); font-size: 1rem; transition: all var(--tt-fast);
}
.tt-wish:hover { color: var(--tt-accent); transform: scale(1.08); }
.tt-card__body { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; flex: 1; }
.tt-card__eyebrow { display: flex; align-items: center; gap: 8px; font-size: var(--tt-fs-xs); color: var(--tt-muted); font-weight: 600; }
.tt-card__loc { display: inline-flex; align-items: center; gap: 4px; }
.tt-card__title { font-size: var(--tt-fs-md); margin: 0; line-height: 1.3; }
.tt-card__title a { color: var(--tt-ink); }
.tt-card__title a:hover { color: var(--tt-blue); }
.tt-card__meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--tt-muted); font-size: var(--tt-fs-sm); margin-top: 2px; }
.tt-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.tt-card__rating { display: flex; align-items: center; gap: 6px; }
.tt-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto;
	padding-top: 12px; border-top: 1px dashed var(--tt-line); }
.tt-price { display: flex; flex-direction: column; line-height: 1.1; }
.tt-price__label { font-size: 11px; color: var(--tt-muted); font-weight: 600; }
.tt-price__amount { font-size: var(--tt-fs-lg); font-weight: 900; color: var(--tt-ink); }
.tt-price__amount .woocommerce-Price-amount { font-weight: 900; }
.tt-price__del { font-size: var(--tt-fs-sm); color: var(--tt-faint); text-decoration: line-through; }
.tt-price__unit { font-size: 11px; color: var(--tt-muted); }
.tt-card__cta { flex-shrink: 0; }

/* Destination tile */
.tt-desttile { position: relative; display: block; border-radius: var(--tt-r); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--tt-shadow-sm); }
.tt-desttile img, .tt-desttile__ph { width: 100%; height: 100%; object-fit: cover; }
.tt-desttile__ph { display: grid; place-items: center; font-size: 3rem; background: linear-gradient(135deg, #cfe0ff, #ffd9c4); }
.tt-desttile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,37,69,.8), transparent 55%); }
.tt-desttile__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px; color: #fff; }
.tt-desttile__cap h3 { color: #fff; margin: 0; font-size: var(--tt-fs-md); }
.tt-desttile__cap span { font-size: var(--tt-fs-sm); opacity: .9; }
.tt-desttile:hover img { transform: scale(1.05); }
.tt-desttile img { transition: transform var(--tt-slow); }

/* ---------------------------------------------------------------- Footer -- */
.tt-footer { background: var(--tt-navy); color: #b9c6da; margin-top: var(--tt-s10); }
.tt-footer__main { padding: var(--tt-s10) 0 var(--tt-s8); }
.tt-footer__grid { display: grid; grid-template-columns: 1.4fr 1.6fr 1.4fr; gap: var(--tt-s8); }
/* A grid track's automatic minimum is its content's min-content width, and a
   replaced element contributes its full intrinsic width there no matter what
   max-width says. One oversized image (or an unbreakable URL) would otherwise
   widen the track and push the whole page sideways. */
.tt-footer__grid > * { min-width: 0; }
.tt-footer__blurb { margin: 16px 0; max-width: 42ch; overflow-wrap: anywhere; }
.tt-footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.tt-footer__contact a { color: #e6edf7; }
.tt-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; min-width: 0; }
.tt-footer__cols > * { min-width: 0; }
.tt-footer__title { color: #fff; font-size: var(--tt-fs-base); margin: 0 0 14px; }
.tt-footer__menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tt-footer__menu a { color: #b9c6da; font-size: var(--tt-fs-sm); }
.tt-footer__menu a:hover { color: #fff; padding-left: 3px; }
.tt-newsletter { display: flex; gap: 8px; margin: 14px 0; }
.tt-newsletter input { flex: 1; min-width: 0; border: 1px solid #2a4368; background: #0d2a4d;
	color: #fff; border-radius: var(--tt-r-pill); padding: 12px 16px; font-family: inherit; }
.tt-newsletter input::placeholder { color: #6f86a4; }
.tt-social { display: flex; gap: 10px; }
.tt-social__link { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #10305a;
	color: #cdd8ea; font-weight: 700; }
.tt-social__link:hover { background: var(--tt-accent); color: #fff; }
.tt-footer__bottom { border-top: 1px solid #1c355a; }
.tt-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; flex-wrap: wrap; }
.tt-footer__copy { margin: 0; font-size: var(--tt-fs-sm); }
.tt-footer__trust { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; font-size: var(--tt-fs-sm); flex-wrap: wrap; }
.tt-footer__trust li { display: inline-flex; align-items: center; gap: 6px; }
.tt-footer__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: var(--tt-fs-sm); }
.tt-footer__legal a { color: #b9c6da; }
.tt-footer__legal a:hover { color: #fff; }

/* Back to top */
.tt-totop { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 46px; height: 46px; border-radius: 50%;
	border: 0; background: var(--tt-accent); color: #fff; font-size: 1.2rem; cursor: pointer; box-shadow: var(--tt-shadow-md); }
.tt-totop:hover { background: var(--tt-accent-600); }

/* Breadcrumbs */
.tt-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; font-size: var(--tt-fs-sm); color: var(--tt-muted); }
.tt-crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--tt-faint); }
.tt-crumbs a { color: var(--tt-muted); }
.tt-crumbs a:hover { color: var(--tt-blue); }
.tt-crumbs [aria-current="page"] { color: var(--tt-ink); font-weight: 600; }

/* Pills / chips */
.tt-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--tt-r-pill);
	background: var(--tt-blue-050); color: var(--tt-blue); font-size: var(--tt-fs-xs); font-weight: 700; }

/* Body state locks */
body.tt-nav-open, body.tt-modal-open { overflow: hidden; }

/* --------------------------------------------------------------- Hero -- */
.tt-hero { position: relative; color: #fff; padding: var(--tt-s10) 0 calc(var(--tt-s11) + 20px); overflow: hidden; background: var(--tt-grad-navy); }
.tt-hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.tt-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.tt-hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(115deg, rgba(9,16,35, calc(var(--tt-hero-overlay, .55) + .18)) 0%, rgba(13,27,62, var(--tt-hero-overlay, .55)) 55%, rgba(31,87,230, calc(var(--tt-hero-overlay, .55) * .55)) 100%); }
.tt-hero__inner { position: relative; z-index: 2; }
.tt-hero__eyebrow { color: #ffd9b0; }
.tt-hero__title { color: #fff; font-size: clamp(2rem, 4.5vw, var(--tt-fs-3xl)); max-width: 20ch; margin: 0 0 12px; }
.tt-hero__sub { color: #e3ecf8; font-size: var(--tt-fs-md); max-width: 52ch; margin: 0 0 26px; }
.tt-hero__search { max-width: 1000px; }
.tt-hero__stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 26px; }
.tt-hero__stat b { display: block; font-size: var(--tt-fs-xl); color: #fff; }
.tt-hero__stat span { font-size: var(--tt-fs-sm); color: #cdd9ea; }

/* --------------------------------------------------------------- Utils -- */
.tt-mt-0 { margin-top: 0; }
.tt-text-center { text-align: center; }
.tt-empty { text-align: center; padding: var(--tt-s10) var(--tt-gutter); color: var(--tt-muted); }
.tt-empty__emoji { font-size: 3rem; margin-bottom: 10px; }
.tt-pagination { display: flex; justify-content: center; gap: 6px; margin-top: var(--tt-s8); flex-wrap: wrap; }
.tt-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px;
	border-radius: var(--tt-r-sm); border: 1px solid var(--tt-line); background: #fff; color: var(--tt-ink); font-weight: 700; }
.tt-pagination .page-numbers.current { background: var(--tt-navy); color: #fff; border-color: var(--tt-navy); }
.tt-pagination a.page-numbers:hover { border-color: var(--tt-blue); color: var(--tt-blue); }

/* Card rail (horizontal scroller) */
.tt-rail { position: relative; }
.tt-rail__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: var(--tt-s6);
	overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.tt-rail__track > * { scroll-snap-align: start; }
.tt-rail__nav { display: flex; gap: 8px; }

/* ----------------------------------------------------------- Responsive -- */
@media (max-width: 1024px) {
	.tt-primary-nav {
		position: fixed; top: 0; left: 0; bottom: 0; width: min(84vw, 340px); background: #fff; z-index: 195;
		transform: translateX(-100%); transition: transform var(--tt-slow); padding: 80px 18px 24px; overflow-y: auto;
		box-shadow: var(--tt-shadow-lg); margin: 0;
	}
	body.tt-nav-open .tt-primary-nav { transform: translateX(0); }
	.tt-menu { flex-direction: column; align-items: stretch; gap: 2px; }
	.tt-menu > li > a { padding: 12px 14px; justify-content: space-between; }
	.tt-menu ul.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
		border: 0; border-left: 2px solid var(--tt-line); border-radius: 0; margin: 2px 0 6px 14px; display: none; }
	.tt-menu li.is-open > ul.sub-menu { display: block; }
	.tt-burger { display: flex; }
	.tt-navbar__cta { display: none; }
	.tt-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.tt-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.tt-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.tt-search__panel.is-active { grid-template-columns: 1fr 1fr; }
	.tt-search__submit { grid-column: 1 / -1; }
	.tt-section { padding: var(--tt-s8) 0; }
	.tt-section-title { font-size: var(--tt-fs-xl); }
}

@media (max-width: 560px) {
	:root { --tt-gutter: 16px; }
	.tt-grid--2, .tt-grid--3, .tt-grid--4 { grid-template-columns: 1fr; }
	.tt-search__panel.is-active { grid-template-columns: 1fr; }
	.tt-topbar__left .tt-topbar__item + .tt-topbar__item { display: none; }
	.tt-footer__grid { grid-template-columns: 1fr; }
	.tt-footer__cols { grid-template-columns: 1fr 1fr; }
	.tt-section-head { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Home sections
   ========================================================================== */
.tt-home-activities--tint, .tt-how.tt-home-activities--tint { background: var(--tt-surface); }
.tt-home-activities--tint { background: linear-gradient(180deg, #fff, var(--tt-bg)); }
.tt-home-tours { background: var(--tt-bg); }

/* Chip small */
.tt-chip--sm { padding: 3px 9px; font-size: 11px; background: var(--tt-surface-2); color: var(--tt-body); }

/* Why-us feature */
.tt-feature { background: var(--tt-surface); border: 1px solid var(--tt-line-2); border-radius: var(--tt-r); padding: 26px 22px;
	transition: transform var(--tt-fast), box-shadow var(--tt-fast); }
.tt-feature:hover { transform: translateY(-4px); box-shadow: var(--tt-shadow); }
.tt-feature__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
	background: var(--tt-blue-050); font-size: 1.7rem; margin-bottom: 14px; }
.tt-feature__title { font-size: var(--tt-fs-md); margin: 0 0 6px; }
.tt-feature__text { color: var(--tt-muted); margin: 0; font-size: var(--tt-fs-sm); }

/* How it works steps */
.tt-steps { counter-reset: step; }
.tt-step { position: relative; text-align: center; padding: 30px 22px; background: var(--tt-surface);
	border: 1px solid var(--tt-line-2); border-radius: var(--tt-r); }
.tt-step__num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px;
	border-radius: 50%; background: var(--tt-navy); color: #fff; display: grid; place-items: center; font-weight: 800; box-shadow: var(--tt-shadow-sm); }
.tt-step__icon { font-size: 2.4rem; display: block; margin: 10px 0 8px; }
.tt-step__title { font-size: var(--tt-fs-md); margin: 0 0 6px; }
.tt-step p { color: var(--tt-muted); margin: 0; font-size: var(--tt-fs-sm); }

/* Testimonials */
.tt-quote { margin: 0; background: var(--tt-surface); border: 1px solid var(--tt-line-2); border-radius: var(--tt-r); padding: 24px; box-shadow: var(--tt-shadow-sm); }
.tt-quote__stars { margin-bottom: 10px; }
.tt-quote blockquote { margin: 0 0 16px; font-size: var(--tt-fs-md); color: var(--tt-ink); line-height: 1.5; }
.tt-quote figcaption { display: flex; align-items: center; gap: 12px; font-size: var(--tt-fs-sm); color: var(--tt-muted); }
.tt-quote__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800;
	color: #fff; background: linear-gradient(135deg, var(--tt-blue), var(--tt-accent)); }
.tt-quote figcaption strong { color: var(--tt-ink); }

/* Closing CTA */
.tt-cta { margin: var(--tt-s10) 0 0; }
.tt-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
	background: radial-gradient(120% 160% at 0% 0%, var(--tt-blue), var(--tt-navy)); color: #fff; border-radius: var(--tt-r-lg);
	padding: 44px; }
.tt-cta__text h2 { color: #fff; font-size: var(--tt-fs-2xl); margin: 4px 0 8px; }
.tt-cta__text p { color: #dce6f5; margin: 0; max-width: 52ch; }
.tt-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Page head (archives / blog) */
.tt-pagehead { margin-bottom: var(--tt-s7); }
.tt-pagehead__title { font-size: var(--tt-fs-2xl); margin: 10px 0 6px; }
.tt-pagehead__desc { color: var(--tt-muted); max-width: 70ch; }

/* Post cards */
.tt-postcard .tt-card__excerpt { color: var(--tt-muted); font-size: var(--tt-fs-sm); margin: 0; }

/* Prose */
.tt-prose { max-width: 760px; margin-inline: auto; color: var(--tt-body); }
.tt-prose h2, .tt-prose h3 { margin-top: 1.6em; }
.tt-prose img { border-radius: var(--tt-r); }

@media (max-width: 560px) {
	.tt-cta__inner { padding: 28px; }
	.tt-cta__text h2 { font-size: var(--tt-fs-xl); }
}

/* ==========================================================================
   Detail pages (tour + activity) — shared
   ========================================================================== */
.tt-dhero { position: relative; color: #fff; padding: var(--tt-s9) 0 var(--tt-s10); background: var(--tt-navy);
	background-image: var(--tt-dhero); background-size: cover; background-position: center; }
.tt-dhero.no-image { background: linear-gradient(120deg, var(--tt-navy), var(--tt-blue)); }
.tt-dhero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,20,40,.9), rgba(6,20,40,.35)); }
.tt-dhero__inner { position: relative; z-index: 2; }
.tt-dhero .tt-crumbs ol, .tt-dhero .tt-crumbs a, .tt-dhero .tt-crumbs li { color: #cdd9ea; }
.tt-dhero .tt-crumbs [aria-current="page"] { color: #fff; }
.tt-dhero__eyebrow { color: #ffd9b0; margin-top: 10px; }
.tt-dhero__title { color: #fff; font-size: clamp(1.8rem, 3.6vw, var(--tt-fs-2xl)); max-width: 22ch; margin: 4px 0 14px; }
.tt-dhero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; font-size: var(--tt-fs-sm); }
.tt-dhero__facts li { display: inline-flex; align-items: center; gap: 6px; color: #e6edf7; }
.tt-dhero__facts .tt-rating-num, .tt-dhero__facts .tt-rating-count { color: #fff; }

/* Detail layout */
.tt-dlayout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: var(--tt-s8); padding: var(--tt-s8) 0; align-items: start; }
.tt-dmain { min-width: 0; }
.tt-dsidebar__sticky { position: sticky; top: calc(var(--tt-header-h) + 16px); }

/* Quick facts */
.tt-quickfacts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: var(--tt-s7); }
.tt-quickfacts__item { background: var(--tt-surface); border: 1px solid var(--tt-line-2); border-radius: var(--tt-r); padding: 16px; display: flex; flex-direction: column; gap: 3px; }
.tt-quickfacts__icon { font-size: 1.3rem; }
.tt-quickfacts__label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--tt-muted); font-weight: 700; }
.tt-quickfacts__value { font-weight: 700; color: var(--tt-ink); }

/* Detail tabs */
.tt-dtabs__nav { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 2px solid var(--tt-line); margin-bottom: var(--tt-s6); }
.tt-dtabs__tab { border: 0; background: transparent; padding: 12px 16px; font-weight: 700; font-size: var(--tt-fs-sm); color: var(--tt-muted);
	cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.tt-dtabs__tab.is-active { color: var(--tt-blue); border-bottom-color: var(--tt-blue); }
.tt-dtabs__panel { display: none; animation: tt-fade .25s var(--tt-ease); }
.tt-dtabs__panel.is-active { display: block; }
@keyframes tt-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.tt-block-title { font-size: var(--tt-fs-lg); margin: 24px 0 12px; }
.tt-block-title:first-child { margin-top: 0; }
.tt-prose--flush { max-width: none; margin: 0; }

/* Checklists */
.tt-checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tt-checklist--2col { grid-template-columns: 1fr 1fr; }
.tt-checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--tt-body); }
.tt-check { color: var(--tt-success); font-weight: 900; }
.tt-cross { color: var(--tt-danger); font-weight: 900; }
.tt-incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Itinerary */
.tt-itinerary { list-style: none; padding: 0; margin: 0; counter-reset: day; }
.tt-itinerary__item { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 0 0 22px; position: relative; }
.tt-itinerary__item::before { content: ""; position: absolute; left: 45px; top: 30px; bottom: 0; width: 2px; background: var(--tt-line); }
.tt-itinerary__item:last-child::before { display: none; }
.tt-itinerary__day { align-self: start; background: var(--tt-blue-050); color: var(--tt-blue); font-weight: 800; font-size: var(--tt-fs-xs);
	border-radius: var(--tt-r-pill); padding: 8px 10px; text-align: center; position: relative; z-index: 1; }
.tt-itinerary__body h4 { margin: 4px 0 4px; font-size: var(--tt-fs-md); }
.tt-itinerary__body p { margin: 0; color: var(--tt-muted); }

/* Gallery grid */
.tt-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tt-gallery-grid__item { border-radius: var(--tt-r-sm); overflow: hidden; aspect-ratio: 4/3; }
.tt-gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tt-slow); }
.tt-gallery-grid__item:hover img { transform: scale(1.06); }
.tt-map { border-radius: var(--tt-r); overflow: hidden; border: 1px solid var(--tt-line); }
.tt-map iframe { display: block; }

/* ==========================================================================
   Booking widget
   ========================================================================== */
.tt-book { background: var(--tt-surface); border: 1px solid var(--tt-line); border-radius: var(--tt-r-lg); box-shadow: var(--tt-shadow-md); padding: 22px; }
.tt-book__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; padding-bottom: 16px; border-bottom: 1px solid var(--tt-line-2); margin-bottom: 16px; }
.tt-book__from { color: var(--tt-muted); font-size: var(--tt-fs-sm); font-weight: 600; }
.tt-book__amount { font-size: var(--tt-fs-2xl); font-weight: 900; color: var(--tt-ink); }
.tt-book__amount del { font-size: var(--tt-fs-md); color: var(--tt-faint); font-weight: 600; margin-right: 6px; }
.tt-book__unit { color: var(--tt-muted); font-size: var(--tt-fs-sm); width: 100%; }
.tt-book__form { display: grid; gap: 14px; }
.tt-book__field { display: grid; gap: 6px; }
.tt-book__label { font-size: var(--tt-fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--tt-muted); }
.tt-book__field input, .tt-book__field select { border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm); padding: 12px 14px;
	font-size: var(--tt-fs-base); font-family: inherit; color: var(--tt-ink); background: #fff; width: 100%; }
.tt-book__field input:focus, .tt-book__field select:focus { border-color: var(--tt-blue); outline: none; box-shadow: var(--tt-ring); }

.tt-book__travelers { display: grid; gap: 10px; }
.tt-stepper { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1.5px solid var(--tt-line);
	border-radius: var(--tt-r-sm); padding: 8px 12px; }
.tt-stepper__label { display: flex; flex-direction: column; font-weight: 700; color: var(--tt-ink); font-size: var(--tt-fs-sm); }
.tt-stepper__label small { font-weight: 500; color: var(--tt-muted); font-size: 11px; }
.tt-stepper__ctrl { display: flex; align-items: center; gap: 6px; }
.tt-stepper__btn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--tt-line); background: #fff; color: var(--tt-ink);
	font-size: 1.1rem; cursor: pointer; display: grid; place-items: center; transition: all var(--tt-fast); }
.tt-stepper__btn:hover { border-color: var(--tt-blue); color: var(--tt-blue); }
.tt-stepper input { width: 40px; text-align: center; border: 0; font-weight: 800; font-size: var(--tt-fs-base); color: var(--tt-ink); background: transparent; -moz-appearance: textfield; }
.tt-stepper input::-webkit-outer-spin-button, .tt-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Advance / reserve-now payment choice */
.tt-book__pay { display: grid; gap: 8px; padding-top: 6px; border-top: 1px dashed var(--tt-line); }
.tt-book__pay .tt-book__addons-head { display: flex; align-items: center; gap: 6px; }
.tt-payopt { position: relative; cursor: pointer; margin: 0; display: block; }
.tt-payopt input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.tt-payopt__box { display: flex; flex-direction: column; gap: 2px; border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm);
	padding: 10px 12px; background: #fff; transition: all var(--tt-fast); }
.tt-payopt:hover .tt-payopt__box { border-color: var(--tt-blue); background: var(--tt-blue-050); }
.tt-payopt input:focus-visible + .tt-payopt__box { border-color: var(--tt-blue); box-shadow: var(--tt-ring); }
.tt-payopt input:checked + .tt-payopt__box { border-color: var(--tt-accent); background: var(--tt-accent-050); box-shadow: inset 0 0 0 1px var(--tt-accent); }
.tt-payopt__t { font-weight: 800; color: var(--tt-ink); font-size: var(--tt-fs-sm); display: flex; align-items: center; gap: 6px; }
.tt-payopt__s { font-size: var(--tt-fs-xs); color: var(--tt-muted); font-weight: 600; }
.tt-payopt--adv .tt-payopt__t { color: var(--tt-accent-600); }
.tt-payopt.is-disabled { opacity: .5; }
.tt-payopt.is-disabled .tt-payopt__box { cursor: not-allowed; }

/* Included-free activities (booking widget) */
.tt-book__included { display: grid; gap: 8px; padding-top: 6px; border-top: 1px dashed var(--tt-line); }
.tt-book__included .tt-book__addons-head { display: flex; align-items: center; gap: 6px; color: var(--tt-accent-600); }
.tt-incl { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--tt-accent); border-radius: var(--tt-r-sm); padding: 10px 12px; background: var(--tt-accent-050); }
.tt-incl__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.tt-incl__name { font-weight: 700; color: var(--tt-ink); font-size: var(--tt-fs-sm); }
.tt-incl__meta { font-size: 11px; color: var(--tt-muted); }
.tt-incl__price { font-weight: 800; color: var(--tt-accent-600); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.tt-incl__price del { font-weight: 500; color: var(--tt-muted); }

/* Included-free rows on the tour detail Activities tab (compound selector beats the base .tt-addonrow) */
.tt-addonrow.tt-addonrow--free { background: var(--tt-accent-050); border-color: var(--tt-accent); }
.tt-addonrow__price--free { display: inline-flex; align-items: center; gap: 8px; color: var(--tt-accent-600); }
.tt-addonrow__price--free del { color: var(--tt-muted); font-weight: 500; }
.tt-tag-free { background: var(--tt-grad-brand); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .02em;
	padding: 3px 9px; border-radius: 999px; text-transform: uppercase; white-space: nowrap; }

/* Add-ons */
.tt-book__addons { display: grid; gap: 8px; padding-top: 6px; border-top: 1px dashed var(--tt-line); }
.tt-book__addons-head { font-weight: 800; font-size: var(--tt-fs-sm); color: var(--tt-ink); }
.tt-addon { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm); padding: 10px 12px; cursor: pointer; transition: all var(--tt-fast); }
.tt-addon:hover { border-color: var(--tt-blue); background: var(--tt-blue-050); }
.tt-addon:has(input:checked) { border-color: var(--tt-accent); background: var(--tt-accent-050); }
.tt-addon input { width: 18px; height: 18px; accent-color: var(--tt-accent); }
.tt-addon__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.tt-addon__name { font-weight: 700; color: var(--tt-ink); font-size: var(--tt-fs-sm); }
.tt-addon__meta { font-size: 11px; color: var(--tt-muted); }
.tt-addon__price { font-weight: 800; color: var(--tt-accent-600); white-space: nowrap; }
.tt-addon__price small { font-weight: 500; color: var(--tt-muted); }

.tt-book__total { display: flex; align-items: center; justify-content: space-between; padding: 14px 0 4px; border-top: 1px solid var(--tt-line-2); font-size: var(--tt-fs-md); }
.tt-book__total strong { font-size: var(--tt-fs-xl); color: var(--tt-ink); }
.tt-book__actions { display: grid; gap: 8px; }
.tt-book__msg { margin: 0; font-size: var(--tt-fs-sm); padding: 10px 12px; border-radius: var(--tt-r-sm); }
.tt-book__msg.is-error { background: #fdecec; color: var(--tt-danger); }
.tt-book__msg.is-success { background: var(--tt-success-050); color: var(--tt-success); }
.tt-book__facts { list-style: none; padding: 14px 0 0; margin: 14px 0 0; border-top: 1px solid var(--tt-line-2); display: grid; gap: 8px; font-size: var(--tt-fs-sm); color: var(--tt-muted); }
.tt-book__facts li { display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   Listings (archive / taxonomy)
   ========================================================================== */
.tt-listhead { background: linear-gradient(120deg, var(--tt-navy), var(--tt-blue)); color: #fff; padding: var(--tt-s8) 0; }
.tt-listhead .tt-crumbs ol, .tt-listhead .tt-crumbs a, .tt-listhead .tt-crumbs li { color: #cdd9ea; }
.tt-listhead .tt-crumbs [aria-current="page"] { color: #fff; }
.tt-listhead__title { color: #fff; font-size: var(--tt-fs-2xl); margin: 10px 0 6px; }
.tt-listhead__sub { color: #dbe6f5; margin: 0; max-width: 70ch; }

.tt-listlayout { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: var(--tt-s7); }
.tt-listbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: var(--tt-s6); flex-wrap: wrap; }
.tt-listbar__count { font-weight: 700; color: var(--tt-ink); }
.tt-sort { display: flex; align-items: center; gap: 8px; font-size: var(--tt-fs-sm); }
.tt-sort label { color: var(--tt-muted); }
.tt-sort select { border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm); padding: 8px 12px; font-family: inherit; font-weight: 600; color: var(--tt-ink); background: #fff; }

.tt-filters { background: var(--tt-surface); border: 1px solid var(--tt-line-2); border-radius: var(--tt-r); padding: 18px; position: sticky; top: calc(var(--tt-header-h) + 16px); }
.tt-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tt-filters__head h3 { margin: 0; font-size: var(--tt-fs-md); }
.tt-filters__clear { font-size: var(--tt-fs-xs); color: var(--tt-muted); }
.tt-filters__group { padding: 14px 0; border-top: 1px solid var(--tt-line-2); }
.tt-filters__label { display: block; font-weight: 700; font-size: var(--tt-fs-sm); margin-bottom: 8px; color: var(--tt-ink); }
.tt-filters input[type="search"], .tt-filters input[type="number"], .tt-filters select { width: 100%; border: 1.5px solid var(--tt-line);
	border-radius: var(--tt-r-sm); padding: 10px 12px; font-family: inherit; color: var(--tt-ink); background: #fff; }
.tt-filters__range { display: flex; align-items: center; gap: 8px; }
.tt-filters__range span { color: var(--tt-faint); }
.tt-filters__radio { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: var(--tt-fs-sm); color: var(--tt-body); cursor: pointer; }
.tt-filters__radio input { accent-color: var(--tt-blue); }
.tt-filters-toggle { display: none; margin-bottom: 12px; }

/* Mobile sticky booking bar */
.tt-mbook { display: none; }

@media (max-width: 1024px) {
	.tt-dlayout { grid-template-columns: 1fr; }
	.tt-dsidebar__sticky { position: static; }
	.tt-listlayout { grid-template-columns: 1fr; }
	.tt-filters-toggle { display: inline-flex; }
	.tt-filters-wrap { display: none; }
	.tt-filters-wrap.is-open { display: block; }
	.tt-filters { position: static; }
}
@media (max-width: 720px) {
	.tt-quickfacts { grid-template-columns: repeat(2, 1fr); }
	.tt-incl-grid { grid-template-columns: 1fr; gap: 24px; }
	.tt-checklist--2col { grid-template-columns: 1fr; }
	.tt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.tt-itinerary__item { grid-template-columns: 70px 1fr; gap: 12px; }
	.tt-itinerary__item::before { left: 34px; }
}

/* Activity archive bar */
.tt-listhead--activities { background: linear-gradient(120deg, #12325e, var(--tt-accent)); }
.tt-actbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: var(--tt-s6); flex-wrap: wrap; }
.tt-actsearch { display: flex; gap: 8px; flex-wrap: wrap; }
.tt-actsearch input[type="search"], .tt-actsearch select { border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm); padding: 10px 14px; font-family: inherit; color: var(--tt-ink); background: #fff; }
.tt-actsearch input[type="search"] { min-width: 220px; }

@media (max-width: 560px) {
	.tt-actbar { flex-direction: column; align-items: stretch; }
	.tt-actsearch { flex-direction: column; }
	.tt-actsearch input[type="search"] { min-width: 0; }
}

/* Page / post / search / 404 chrome */
.tt-listhead--page { background: linear-gradient(120deg, var(--tt-navy), #163a67); }
.tt-page-feat { margin: 0 0 24px; border-radius: var(--tt-r); overflow: hidden; }
.tt-page-feat img { width: 100%; height: auto; display: block; }
.tt-tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.tt-tags a { display: inline-block; padding: 5px 12px; border-radius: var(--tt-r-pill); background: var(--tt-blue-050); color: var(--tt-blue); font-size: var(--tt-fs-xs); font-weight: 700; }
.tt-pagelinks { margin-top: 20px; font-weight: 700; }
.tt-404 { max-width: 640px; margin-inline: auto; }
.tt-404__search { justify-content: center; margin: 20px 0; }
.tt-404__links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.tt-postgrid { margin-top: 8px; }

/* ==========================================================================
   Mobile sticky booking bar (shows the book widget CTA on small screens)
   ========================================================================== */
@media (max-width: 1024px) {
	.tt-single .tt-dsidebar { position: static; }
}
@media (max-width: 640px) {
	.tt-book { box-shadow: var(--tt-shadow); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Redesign refinements — premium, branded, spacious
   (loaded last so these win the cascade)
   ========================================================================== */

/* Inline icons */
.tt-icon { display: inline-block; vertical-align: -.15em; flex: 0 0 auto; }
.tt-topbar__item .tt-icon, .tt-card__meta .tt-icon, .tt-card__loc .tt-icon,
.tt-footer__contact .tt-icon, .tt-footer__trust .tt-icon, .tt-dhero__facts .tt-icon,
.tt-book__facts .tt-icon, .tt-search__tab .tt-icon { color: currentColor; opacity: .9; }
.tt-card__loc .tt-icon, .tt-card__meta .tt-icon { color: var(--tt-blue); opacity: 1; }
.tt-book__facts .tt-icon { color: var(--tt-blue); }

/* Branded SVG artwork placeholders */
.tt-media__img--art, .tt-artwork { display: block; width: 100%; height: 100%; }
.tt-media__img--art { position: absolute; inset: 0; }
.tt-desttile__ph { display: block; width: 100%; height: 100%; }
.tt-desttile__ph .tt-artwork { height: 100%; }

/* Logo mark — clean mono gradient, holds an SVG glyph */
.tt-logo__mark { background: var(--tt-grad-blue); transform: none; box-shadow: 0 6px 16px -6px rgba(47,107,255,.6); }
.tt-logo__mark .tt-icon { color: #fff; }
.tt-logo { font-family: var(--tt-font-display); font-weight: 800; letter-spacing: -.03em; }

/* Buttons — a touch more presence */
.tt-btn { font-weight: 700; letter-spacing: .01em; padding: 13px 24px; }
.tt-btn--lg { padding: 16px 30px; }
.tt-btn--accent { box-shadow: 0 8px 20px -8px rgba(255,90,60,.55); }

/* Eyebrow + section headings */
.tt-eyebrow { letter-spacing: .16em; }
.tt-section-title { letter-spacing: -.025em; }
.tt-section-sub { font-size: var(--tt-fs-md); line-height: 1.6; }

/* Header polish */
.tt-header.is-stuck { box-shadow: 0 8px 30px -12px rgba(16,24,40,.18); }
.tt-topbar__item--muted { color: #93a7c9; }
.tt-navbar__inner { min-height: var(--tt-header-h); }
.tt-iconbtn { width: 44px; height: 44px; }

/* Search widget — larger, calmer */
.tt-search { padding: 12px; border-radius: var(--tt-r-lg); }
.tt-search__field { padding: 10px 16px; }
.tt-search__tab { padding: 12px 20px; }
.tt-search__submit { min-height: 66px; border-radius: var(--tt-r); }

/* Cards — softer, more premium */
.tt-card { border-color: var(--tt-line); box-shadow: var(--tt-shadow-sm); }
.tt-card:hover { box-shadow: var(--tt-shadow-md); transform: translateY(-6px); }
.tt-card__body { padding: 20px 20px 20px; gap: 10px; }
.tt-badge { padding: 6px 12px; box-shadow: var(--tt-shadow); backdrop-filter: saturate(1.2); }
.tt-price__amount { font-family: var(--tt-font-display); }

/* Hero — texture + presence */
.tt-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background-image: radial-gradient(rgba(255,255,255,.06) 1.3px, transparent 1.4px); background-size: 26px 26px; }
.tt-hero { padding-top: var(--tt-s11); }
.tt-hero__title { letter-spacing: -.03em; line-height: 1.05; }
.tt-hero__sub { font-size: var(--tt-fs-lg); line-height: 1.5; color: #dbe6f7; }
.tt-hero__search { margin-top: var(--tt-s7); }
.tt-hero__stat b { font-family: var(--tt-font-display); font-size: var(--tt-fs-xl); }

/* Feature cards */
.tt-feature { padding: 30px 26px; border-radius: var(--tt-r-lg); }
.tt-feature__icon { color: var(--tt-blue); background: var(--tt-blue-050); width: 60px; height: 60px; border-radius: 18px; }
.tt-feature:hover .tt-feature__icon { background: var(--tt-blue); color: #fff; }

/* Steps */
.tt-step { padding: 34px 26px; border-radius: var(--tt-r-lg); }
.tt-step__icon { color: var(--tt-blue); font-size: inherit; margin: 14px 0 10px; display: inline-flex; }
.tt-step__num { background: var(--tt-grad-blue); }

/* Testimonials */
.tt-quote { border-radius: var(--tt-r-lg); padding: 28px; }
.tt-quote blockquote { font-family: var(--tt-font-display); font-weight: 500; letter-spacing: -.01em; }

/* Social icons */
.tt-social__link { color: #cdd8ea; }
.tt-social__link .tt-icon { color: currentColor; }

/* Booking widget */
.tt-book { border-radius: var(--tt-r-lg); padding: 24px; }
.tt-book__amount { font-family: var(--tt-font-display); }
.tt-stepper { padding: 10px 14px; border-radius: var(--tt-r); }

/* Footer */
.tt-footer__title { font-family: var(--tt-font-display); }
.tt-footer__trust .tt-icon, .tt-footer__contact .tt-icon { color: var(--tt-accent); opacity: 1; }

/* CTA with photo background */
.tt-cta__inner { position: relative; overflow: hidden; }
.tt-cta__media { position: absolute; inset: 0; z-index: 0;
	background-image: linear-gradient(115deg, rgba(13,27,62,.92), rgba(31,87,230,.72)), var(--tt-cta-bg);
	background-size: cover; background-position: center; }
.tt-cta__text, .tt-cta__actions { position: relative; z-index: 2; }

/* Destination tiles a touch taller/cleaner */
.tt-desttile { aspect-ratio: 4 / 5; box-shadow: var(--tt-shadow); }
.tt-desttile::after { background: linear-gradient(to top, rgba(9,16,35,.82), rgba(9,16,35,.05) 60%); }
.tt-desttile__cap h3 { font-family: var(--tt-font-display); font-size: var(--tt-fs-lg); }

/* Detail hero always dark enough for white text over a photo */
.tt-dhero { background-size: cover; background-position: center; }
.tt-dhero__overlay { background: linear-gradient(to top, rgba(9,16,35,.92), rgba(9,16,35,.45)); }

/* Section rhythm — more air */
.tt-section { padding: var(--tt-s11) 0; }
.tt-section-head { margin-bottom: var(--tt-s8); }

@media (max-width: 860px) {
	.tt-section { padding: var(--tt-s9) 0; }
	.tt-hero { padding-top: var(--tt-s9); }
}

/* Centered hero (MakeMyTrip-style) + highlighted headline word */
.tt-hero__inner--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.tt-hero__inner--center .tt-hero__title { max-width: 18ch; margin-inline: auto; }
.tt-hero__inner--center .tt-hero__sub { margin-inline: auto; }
.tt-hero__inner--center .tt-hero__search { width: 100%; max-width: 1040px; margin-inline: auto; }
.tt-hero__inner--center .tt-hero__stats { justify-content: center; }
.tt-hl { background: linear-gradient(180deg, transparent 62%, rgba(255,90,60,.30) 62%); color: var(--tt-accent);
	padding: 0 .06em; border-radius: 2px; }

/* Tighter, more "designed" type */
.tt-hero__title { font-size: clamp(2.1rem, 4vw, 3.1rem); letter-spacing: -.035em; }
.tt-section-title { letter-spacing: -.03em; }
h1, h2, h3, h4, h5 { letter-spacing: -.03em; }

/* Booking widget — compact & professional */
.tt-book { padding: 18px; border-radius: var(--tt-r); }
.tt-book__price { padding-bottom: 12px; margin-bottom: 12px; }
.tt-book__amount { font-size: var(--tt-fs-xl); }
.tt-book__form { gap: 11px; }
.tt-book__field input, .tt-book__field select { padding: 10px 12px; font-size: var(--tt-fs-sm); }
.tt-book__label { font-size: 11px; }
.tt-book__travelers { gap: 8px; }
.tt-stepper { padding: 7px 12px; }
.tt-stepper__btn { width: 30px; height: 30px; }
.tt-stepper__label { font-size: var(--tt-fs-xs); }
.tt-addon { padding: 9px 11px; }
.tt-addon__name { font-size: var(--tt-fs-xs); }
.tt-book__total { padding: 12px 0 2px; font-size: var(--tt-fs-sm); }
.tt-book__total strong { font-size: var(--tt-fs-lg); }
.tt-book__facts { gap: 7px; padding-top: 12px; margin-top: 12px; font-size: var(--tt-fs-xs); }
.tt-book__actions .tt-btn--lg { padding: 13px 24px; font-size: var(--tt-fs-sm); }

/* Activity archive — compact, spacious, professional */
.tt-listhead--activities { background: linear-gradient(120deg, var(--tt-navy), #1f3f74); padding: var(--tt-s7) 0; }
.tt-actbar { background: var(--tt-surface); border: 1px solid var(--tt-line); border-radius: var(--tt-r);
	padding: 14px 18px; box-shadow: var(--tt-shadow-sm); margin-bottom: var(--tt-s7); }
.tt-actsearch input[type="search"], .tt-actsearch select { padding: 11px 14px; border-radius: var(--tt-r-sm); font-size: var(--tt-fs-sm); }
.tt-actsearch input[type="search"] { min-width: 260px; }
.tt-listgrid { gap: 22px; }
.tt-card--activity .tt-card__body { padding: 16px 18px; gap: 8px; }
.tt-card--activity .tt-card__title { font-size: var(--tt-fs-base); }

/* ==========================================================================
   v2 — Hybrid redesign: clean base + bold OTA booking hero, compact type,
   restrained colour. (Appended last → wins the cascade.)
   ========================================================================== */
body { font-size: var(--tt-fs-base); line-height: var(--tt-lh); }
.tt-rot-90 { transform: rotate(90deg); }
.tt-rot-270 { transform: rotate(-90deg); }

/* ---- Header: slim, light, clean ---- */
.tt-topbar { background: #fff; border-bottom: 1px solid var(--tt-line); color: var(--tt-muted); }
.tt-topbar a, .tt-topbar__item { color: var(--tt-muted); font-weight: 500; }
.tt-topbar a:hover { color: var(--tt-ink); }
.tt-topbar__inner { min-height: 34px; }
.tt-topbar__item--muted { color: var(--tt-faint); }
.tt-navbar__inner { min-height: var(--tt-header-h); gap: 16px; }
.tt-logo { font-size: 1.1rem; }
.tt-logo__mark { width: 32px; height: 32px; border-radius: 9px; box-shadow: none; }
.tt-menu > li > a { font-size: 13px; padding: 8px 11px; font-weight: 600; color: var(--tt-body); }
.tt-menu > li > a:hover, .tt-menu > li.current-menu-item > a { background: transparent; color: var(--tt-blue); }
.tt-iconbtn { width: 38px; height: 38px; border-color: var(--tt-line); }
.tt-navbar__cta { padding: 9px 16px; font-size: 13px; }
.tt-cart-count { background: var(--tt-accent); }

/* ---- Buttons: restrained ---- */
.tt-btn { font-weight: 600; font-size: 13px; padding: 11px 18px; box-shadow: none !important; }
.tt-btn:hover { box-shadow: var(--tt-shadow-sm) !important; transform: translateY(-1px); }
.tt-btn--lg { padding: 14px 22px; font-size: var(--tt-fs-base); }
.tt-btn--sm { padding: 8px 14px; font-size: 12px; }

/* ---- Hero: the booking widget is the highlight, overlapping below ---- */
.tt-hero { overflow: visible; padding: var(--tt-s10) 0 0; }
.tt-hero__bg { transform: none; }
.tt-hero::before { display: none; }
.tt-hero__inner--center { align-items: center; }
.tt-hero__eyebrow { order: 1; }
.tt-hero__title { order: 2; font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -.035em; margin-bottom: 10px; }
.tt-hero__sub { order: 3; font-size: var(--tt-fs-md); color: #e4ecf8; margin-bottom: 6px; max-width: 46ch; }
.tt-hero__stats { order: 4; margin: 18px 0 26px; gap: 34px; }
.tt-hero__stat b { font-size: var(--tt-fs-lg); }
.tt-hero__stat span { font-size: 12px; }
.tt-hero__search { order: 5; width: 100%; max-width: 1060px; position: relative; z-index: 5;
	margin-bottom: calc(-1 * var(--tt-s9)); }
.tt-hero .tt-search { box-shadow: var(--tt-shadow-lg); border: 1px solid rgba(255,255,255,.6); padding: 14px; }
.tt-search__submit { min-height: 62px; }
.tt-hero + .tt-section, .tt-hero + section { padding-top: calc(var(--tt-s9) + 44px); }

/* ---- Sections: restrained (drop tints/gradients), compact ---- */
.tt-home-activities--tint, .tt-home-tours, .tt-how { background: #fff; }
.tt-section-head { margin-bottom: var(--tt-s7); align-items: center; }
.tt-eyebrow { font-size: 11px; letter-spacing: .14em; }
.tt-section-title { font-size: var(--tt-fs-2xl); }
.tt-section-sub { font-size: var(--tt-fs-base); color: var(--tt-muted); }
.tt-section-link { font-size: 13px; color: var(--tt-blue); }

/* ---- Cards: image-forward, compact, hairline ---- */
.tt-card { border: 1px solid var(--tt-line); box-shadow: none; border-radius: var(--tt-r); }
.tt-card:hover { transform: translateY(-4px); box-shadow: var(--tt-shadow-md); border-color: var(--tt-line); }
.tt-media { aspect-ratio: 4 / 3; }
.tt-card__body { padding: 13px 14px 14px; gap: 6px; }
.tt-card__eyebrow { font-size: 12px; }
.tt-card__title { font-size: var(--tt-fs-md); line-height: 1.35; }
.tt-card__meta { font-size: 12px; gap: 10px; margin-top: 0; }
.tt-card__foot { padding-top: 10px; border-top: 1px solid var(--tt-line-2); }
.tt-price__label { font-size: 10px; }
.tt-price__amount { font-size: var(--tt-fs-lg); }
.tt-price__unit { font-size: 10px; }
.tt-badge { font-size: 11px; padding: 5px 10px; box-shadow: var(--tt-shadow-sm); }
.tt-wish { width: 32px; height: 32px; }

/* ---- Card rail (with side buttons) ---- */
.tt-rail { position: relative; }
/* padding-bottom stays 8px: the shorthand here would drop the gap the
   scrollbar sits in, so the bar overlaps the cards. */
.tt-rail__track { grid-auto-columns: minmax(266px, 1fr); gap: 18px; padding: 4px 4px 8px; margin: -4px -4px 0; }
.tt-rail__btn { position: absolute; top: 40%; z-index: 4; width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid var(--tt-line); background: #fff; color: var(--tt-ink); cursor: pointer; display: grid; place-items: center;
	box-shadow: var(--tt-shadow); transition: all var(--tt-fast); }
.tt-rail__btn:hover { color: var(--tt-blue); border-color: var(--tt-blue); }
.tt-rail__btn--prev { left: -18px; }
.tt-rail__btn--next { right: -18px; }
@media (max-width: 640px) { .tt-rail__btn { display: none; } }

/* ---- Feature/step: lighter ---- */
.tt-feature { padding: 22px 20px; border-radius: var(--tt-r); box-shadow: none; border: 1px solid var(--tt-line); }
.tt-feature__icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 12px; }
.tt-feature__title { font-size: var(--tt-fs-md); }
.tt-feature__text { font-size: 13px; }
.tt-step { padding: 26px 20px; border-radius: var(--tt-r); }
.tt-step p { font-size: 13px; }

/* ---- Testimonials ---- */
.tt-quote { padding: 22px; border-radius: var(--tt-r); box-shadow: none; border: 1px solid var(--tt-line); }
.tt-quote blockquote { font-size: var(--tt-fs-md); }

/* ---- Footer: denser, smaller ---- */
.tt-footer { margin-top: var(--tt-s10); }
.tt-footer__main { padding: var(--tt-s9) 0 var(--tt-s7); }
.tt-footer__title { font-size: 13px; letter-spacing: .02em; }
.tt-footer__menu a, .tt-footer__contact, .tt-footer__blurb { font-size: 13px; }
.tt-footer__trust, .tt-footer__copy { font-size: 12px; }
.tt-social__link { width: 34px; height: 34px; }

/* ---- Detail / listing compact ---- */
.tt-listhead__title { font-size: var(--tt-fs-2xl); }
.tt-dhero__title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.tt-quickfacts__item { padding: 13px; }
.tt-quickfacts__value { font-size: 13px; }
.tt-dtabs__tab { font-size: 13px; }

/* ---- Calendar date picker ---- */
.tt-cal { position: relative; }
.tt-cal__toggle { width: 100%; display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--tt-line);
	border-radius: var(--tt-r-sm); padding: 11px 12px; background: #fff; cursor: pointer; font-family: inherit;
	color: var(--tt-ink); font-size: var(--tt-fs-sm); transition: border-color var(--tt-fast), box-shadow var(--tt-fast); }
.tt-cal__toggle:hover { border-color: var(--tt-blue); }
.tt-cal.is-open .tt-cal__toggle { border-color: var(--tt-blue); box-shadow: var(--tt-ring); }
.tt-cal.has-error .tt-cal__toggle { border-color: var(--tt-danger); }
.tt-cal__toggle > .tt-icon:first-child { color: var(--tt-blue); }
.tt-cal__value { flex: 1; text-align: left; font-weight: 600; }
.tt-cal__pop { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30; background: #fff;
	border: 1px solid var(--tt-line); border-radius: var(--tt-r); box-shadow: var(--tt-shadow-lg); padding: 12px; }
.tt-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.tt-cal__title { font-weight: 700; font-family: var(--tt-font-display); font-size: 14px; }
.tt-cal__nav { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--tt-line); background: #fff;
	cursor: pointer; font-size: 17px; line-height: 1; color: var(--tt-ink); }
.tt-cal__nav:hover { border-color: var(--tt-blue); color: var(--tt-blue); }
.tt-cal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.tt-cal__dow span { text-align: center; font-size: 11px; color: var(--tt-faint); font-weight: 700; padding: 3px 0; }
.tt-cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.tt-cal__day { aspect-ratio: 1; border: 0; background: transparent; border-radius: 8px; cursor: pointer;
	font-size: 13px; color: var(--tt-ink); font-family: inherit; display: grid; place-items: center; }
.tt-cal__day.is-empty { visibility: hidden; cursor: default; }
.tt-cal__day:hover:not(.is-disabled) { background: var(--tt-blue-050); color: var(--tt-blue); }
.tt-cal__day.is-disabled, .tt-cal__day[disabled] { color: var(--tt-faint); opacity: .4; cursor: default; }
.tt-cal__day.is-available { background: var(--tt-accent-050); color: var(--tt-accent-600); font-weight: 700; }
.tt-cal__day.is-available:hover { background: var(--tt-accent); color: #fff; }
.tt-cal__day.is-selected { background: var(--tt-accent) !important; color: #fff !important; }
.tt-cal__hint { margin: 8px 0 0; font-size: 11px; color: var(--tt-muted); display: flex; align-items: center; gap: 6px; }
.tt-cal__dot { width: 10px; height: 10px; border-radius: 3px; background: var(--tt-accent-050); border: 1px solid var(--tt-accent); flex: 0 0 auto; }

/* Seasonal dates: an underline rather than a fill, so a date can be both an
   available departure and inside a festival season without the two clashing. */
.tt-cal__day.is-season { box-shadow: inset 0 -3px 0 #f59e0b; }
.tt-cal__day.is-season.is-selected { box-shadow: none; }
.tt-cal__dot--season { background: #fef3c7; border-color: #f59e0b; }

/* ---- Why-us: editorial split ---- */
.tt-why__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--tt-s9); align-items: center; }
.tt-why__intro .tt-section-title { margin: 6px 0 12px; }
.tt-why__lead { color: var(--tt-muted); font-size: var(--tt-fs-md); max-width: 42ch; margin: 0 0 22px; }
.tt-why__media { border-radius: var(--tt-r-lg); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--tt-shadow-md); }
.tt-why__media img { width: 100%; height: 100%; object-fit: cover; }
.tt-why__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.tt-why__item { display: flex; gap: 14px; }
.tt-why__icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
	background: var(--tt-blue-050); color: var(--tt-blue); }
.tt-why__title { font-size: var(--tt-fs-md); margin: 2px 0 5px; }
.tt-why__text { font-size: 13px; color: var(--tt-muted); margin: 0; line-height: 1.55; }

/* ---- How it works: connected steps ---- */
.tt-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tt-s7); }
.tt-steps::before { content: ""; position: absolute; top: 28px; left: 18%; right: 18%; height: 0;
	border-top: 2px dashed var(--tt-line); z-index: 0; }
.tt-step { position: relative; z-index: 1; text-align: center; padding: 0 12px; background: transparent; border: 0; }
.tt-step__top { position: relative; width: 56px; height: 56px; margin: 0 auto 16px; }
.tt-step__icon { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 1px solid var(--tt-line);
	color: var(--tt-blue); display: grid; place-items: center; box-shadow: var(--tt-shadow-sm); }
.tt-step__num { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%;
	background: var(--tt-accent); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.tt-step__title { font-size: var(--tt-fs-md); margin: 0 0 6px; }
.tt-step p { font-size: 13px; color: var(--tt-muted); margin: 0 auto; max-width: 28ch; }

@media (max-width: 900px) {
	.tt-why__grid { grid-template-columns: 1fr; gap: var(--tt-s7); }
}
@media (max-width: 640px) {
	.tt-why__list { grid-template-columns: 1fr; gap: 18px; }
	.tt-steps { grid-template-columns: 1fr; gap: 26px; }
	.tt-steps::before { display: none; }
}

/* ==========================================================================
   About page
   ========================================================================== */
.tt-about__story { display: grid; grid-template-columns: .95fr 1.05fr; gap: var(--tt-s9); align-items: center; }
.tt-about__media { border-radius: var(--tt-r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--tt-shadow-md); }
.tt-about__media img { width: 100%; height: 100%; object-fit: cover; }
.tt-about__body .tt-section-title { margin: 6px 0 14px; }
.tt-about__body p { color: var(--tt-body); margin: 0 0 14px; }
.tt-about__body .tt-btn { margin-top: 8px; }
.tt-about__stats { background: var(--tt-navy); color: #fff; padding: var(--tt-s8) 0; }
.tt-about__statsgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.tt-about__stat b { display: block; font-family: var(--tt-font-display); font-size: var(--tt-fs-2xl); color: #fff; line-height: 1; }
.tt-about__stat span { font-size: 13px; color: #b9c6da; margin-top: 6px; display: block; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.tt-contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--tt-s9); align-items: start; }
.tt-contact__lead { color: var(--tt-muted); font-size: var(--tt-fs-md); margin: 8px 0 22px; max-width: 44ch; }
.tt-contact__quick { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.tt-contact__quick li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.tt-contact__ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
	background: var(--tt-blue-050); color: var(--tt-blue); }
.tt-contact__offices { display: grid; gap: 16px; margin-bottom: 22px; }
.tt-contact__office { display: flex; gap: 12px; }
.tt-contact__office h3 { font-size: var(--tt-fs-base); margin: 0 0 3px; }
.tt-contact__office p { margin: 0; color: var(--tt-muted); font-size: 13px; }
.tt-contact__social { display: flex; gap: 10px; }
.tt-contact__social .tt-social__link { background: var(--tt-surface-2); color: var(--tt-body); border: 1px solid var(--tt-line); }
.tt-contact__social .tt-social__link:hover { background: var(--tt-accent); color: #fff; border-color: var(--tt-accent); }

.tt-contact__formwrap { background: var(--tt-surface); border: 1px solid var(--tt-line); border-radius: var(--tt-r-lg);
	padding: 26px; box-shadow: var(--tt-shadow); }
.tt-contact__form { display: grid; gap: 14px; }
.tt-field { display: grid; gap: 6px; }
.tt-field > span { font-size: 12px; font-weight: 700; color: var(--tt-ink); }
.tt-field input, .tt-field textarea { border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm); padding: 11px 13px;
	font-family: inherit; font-size: var(--tt-fs-sm); color: var(--tt-ink); background: #fff; width: 100%; }
.tt-field input:focus, .tt-field textarea:focus { outline: none; border-color: var(--tt-blue); box-shadow: var(--tt-ring); }
.tt-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tt-notice { border-radius: var(--tt-r-sm); padding: 12px 14px; font-size: 13px; margin-bottom: 14px; }
.tt-notice--success { background: var(--tt-success-050); color: var(--tt-success); }
.tt-notice--error { background: #fdecec; color: var(--tt-danger); }
.tt-contact__map { margin-top: var(--tt-s6); }
.tt-contact__map iframe { display: block; }

@media (max-width: 900px) {
	.tt-about__story, .tt-contact { grid-template-columns: 1fr; gap: var(--tt-s7); }
	.tt-about__statsgrid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
	.tt-field-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   v3 — Search bar: one connected segmented bar with an inline submit
   (used by the hero and the header search modal)
   ========================================================================== */
.tt-search__tabs { padding: 0 2px; margin-bottom: 10px; }
.tt-search__panel.is-active {
	display: flex; align-items: stretch; gap: 0;
	background: var(--tt-surface-2); border: 1px solid var(--tt-line);
	border-radius: var(--tt-r); overflow: hidden;
}
.tt-search__field {
	flex: 1 1 150px; min-width: 0; display: flex; flex-direction: column; justify-content: center;
	gap: 2px; padding: 9px 16px; background: transparent; border: 0; border-radius: 0;
	transition: background var(--tt-fast);
}
.tt-search__field:first-of-type { flex: 1.7 1 210px; }
.tt-search__field + .tt-search__field { border-left: 1px solid var(--tt-line); }
.tt-search__field:hover, .tt-search__field:focus-within { background: #fff; }
.tt-search__field label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--tt-muted); font-weight: 800; }
.tt-search__field input, .tt-search__field select {
	border: 0; background: transparent; padding: 2px 0; width: 100%; box-shadow: none;
	font-size: var(--tt-fs-md); font-weight: 600; color: var(--tt-ink); font-family: inherit;
}
.tt-search__field input:focus, .tt-search__field select:focus { outline: none; box-shadow: none; }
.tt-search__field input::placeholder { color: var(--tt-faint); font-weight: 500; }
.tt-search__submit {
	flex: 0 0 auto; align-self: stretch; min-height: 0; height: auto;
	border-radius: 0; padding: 0 30px; font-size: var(--tt-fs-base); font-weight: 700; gap: 8px;
	box-shadow: none !important;
}
.tt-search__submit:hover { transform: none; }

@media (max-width: 820px) {
	.tt-search__panel.is-active { flex-direction: column; }
	.tt-search__field { flex: 1 1 auto; }
	.tt-search__field:first-of-type { flex: 1 1 auto; }
	.tt-search__field + .tt-search__field { border-left: 0; border-top: 1px solid var(--tt-line); }
	.tt-search__submit { padding: 15px; }
}

/* ==========================================================================
   v4 — Minimal & conversion-focused (grayscale + teal). Appended last.
   ========================================================================== */

/* Flatter buttons; teal primary; WhatsApp green; neutral ghost */
.tt-btn { box-shadow: none !important; }
.tt-btn:hover { transform: none; box-shadow: none !important; filter: none; }
.tt-btn--accent { background: var(--tt-accent); }
.tt-btn--accent:hover { background: var(--tt-accent-600); }
.tt-btn--ghost { border-color: var(--tt-line); color: var(--tt-ink); }
.tt-btn--ghost:hover { border-color: var(--tt-ink); background: transparent; color: var(--tt-ink); }
.tt-btn--wa { background: #25d366; color: #fff; }
.tt-btn--wa:hover { background: #1ebe5b; color: #fff; }
.tt-btn--outline { background: transparent; color: var(--tt-ink); border: 1.5px solid var(--tt-line); }
.tt-btn--outline:hover { border-color: var(--tt-ink); color: var(--tt-ink); }

/* Header: rating strip + WhatsApp/Call */
.tt-topbar { background: #fff; }
.tt-rating-strip { display: inline-flex; align-items: center; gap: 6px; color: var(--tt-muted); }
.tt-rating-strip strong { color: var(--tt-ink); }
.tt-rating-strip .tt-stars { transform: translateY(1px); }
.tt-hcta { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--tt-r-pill);
	font-weight: 700; font-size: 13px; }
.tt-hcta--wa { background: #25d366; color: #fff; }
.tt-hcta--wa:hover { background: #1ebe5b; color: #fff; }
.tt-hcta--call { border: 1.5px solid var(--tt-line); color: var(--tt-ink); }
.tt-hcta--call:hover { border-color: var(--tt-ink); }
.tt-navbar__cta { background: var(--tt-accent); }

/* Hero: lighter, slimmer */
.tt-hero { padding: var(--tt-s9) 0 0; }
.tt-hero::after { background: linear-gradient(115deg, rgba(11,37,69, calc(var(--tt-hero-overlay,.5) + .12)) 0%, rgba(11,37,69, var(--tt-hero-overlay,.5)) 58%, rgba(20,98,217,.34) 100%); }
.tt-hero__title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.tt-hero__sub { font-size: var(--tt-fs-md); }
.tt-hero__stats { gap: 26px; margin: 16px 0 22px; }

/* Trust bar */
.tt-trustbar { border-bottom: 1px solid var(--tt-line); background: #fff; }
.tt-trustbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px; padding: 16px 0; }
.tt-trustbar__item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--tt-body); }
.tt-trustbar__item .tt-icon { color: var(--tt-accent); }

/* Cards: minimal, hairline, no wishlist, trust line */
.tt-card { box-shadow: none; }
.tt-card:hover { transform: translateY(-2px); box-shadow: var(--tt-shadow-md); }
.tt-wish { display: none; }
.tt-badge { background: rgba(255,255,255,.94); color: var(--tt-ink); border: 1px solid var(--tt-line); box-shadow: none; font-weight: 700; }
.tt-badge--accent { background: var(--tt-ink); color: #fff; border-color: var(--tt-ink); }
.tt-badge--sale { background: var(--tt-accent); color: #fff; border-color: var(--tt-accent); }
/* Card CTA: only the ghost variant reads as a bare text link. Filled variants
   (e.g. the activity card's accent "Book") must keep their pill + white label —
   scoping this to --ghost stops a later .tt-btn--accent from repainting the
   background green while the text stays green too. */
.tt-card__cta.tt-btn--ghost { background: transparent; color: var(--tt-accent); border: 0; padding: 0; font-weight: 700; }
.tt-card__cta.tt-btn--ghost:hover { color: var(--tt-accent-600); background: transparent; }
.tt-card__cta.tt-btn--ghost::after { content: " →"; }
.tt-card__trust { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 2px; }
.tt-card__trust span { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--tt-muted); }
.tt-card__trust .tt-icon { color: var(--tt-accent); width: 13px; height: 13px; }
.tt-card__foot { border-top: 1px solid var(--tt-line-2); }

/* Booking box: minimal + WhatsApp + trust */
.tt-book { box-shadow: var(--tt-shadow); }
.tt-book__wa { margin-top: 8px; }
.tt-book__trustlines { display: grid; gap: 7px; padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--tt-line-2); }
.tt-book__trustlines li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--tt-muted); }
.tt-book__trustlines .tt-icon { color: var(--tt-accent); }

/* Sticky mobile book bar */
.tt-mbook { position: fixed; left: 0; right: 0; bottom: 0; z-index: 140; display: none;
	background: #fff; border-top: 1px solid var(--tt-line); box-shadow: 0 -6px 20px -8px rgba(16,24,40,.16);
	padding: 10px 16px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); align-items: center; gap: 12px; }
.tt-mbook__price { display: flex; flex-direction: column; line-height: 1.1; }
.tt-mbook__price small { font-size: 10px; color: var(--tt-muted); }
.tt-mbook__price b { font-size: var(--tt-fs-lg); color: var(--tt-ink); font-family: var(--tt-font-display); }
.tt-mbook__actions { margin-left: auto; display: flex; gap: 8px; }
.tt-mbook__actions .tt-btn { padding: 11px 18px; }
@media (max-width: 900px) {
	body.single-tourastic_tour .tt-mbook, body.single-tva_activity .tt-mbook { display: flex; }
	body.single-tourastic_tour, body.single-tva_activity { padding-bottom: 72px; }
}

/* Sections: airy, flat */
.tt-cta__inner { border-radius: var(--tt-r-lg); }
.tt-step__num { background: var(--tt-accent); }
.tt-quote { box-shadow: none; }
.tt-feature { box-shadow: none; }
.tt-feature:hover { box-shadow: var(--tt-shadow-md); }

/* Browse by category — image tiles */
.tt-cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tt-cat { position: relative; display: block; border-radius: var(--tt-r); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--tt-shadow-sm); }
.tt-cat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--tt-slow); }
.tt-cat__img--ph { display: block; }
.tt-cat:hover .tt-cat__img { transform: scale(1.06); }
.tt-cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.85), rgba(15,23,42,.06) 62%); }
.tt-cat__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px; color: #fff; display: flex; flex-direction: column; gap: 2px; }
.tt-cat__name { font-family: var(--tt-font-display); font-weight: 800; font-size: var(--tt-fs-md); color: #fff; }
.tt-cat__count { font-size: 12.5px; color: rgba(255,255,255,.9); display: inline-flex; align-items: center; gap: 5px; }
.tt-cat:hover .tt-cat__count { color: #fff; }

/* Reviews rating badge */
.tt-reviews-badge { display: inline-flex; align-items: center; gap: 16px; margin: 0 auto var(--tt-s7);
	background: var(--tt-surface); border: 1px solid var(--tt-line); border-radius: var(--tt-r-pill); padding: 12px 22px;
	justify-content: center; }
.tt-testi .tt-reviews-badge { display: flex; width: fit-content; }
.tt-reviews-badge__num { font-family: var(--tt-font-display); font-size: var(--tt-fs-2xl); font-weight: 800; color: var(--tt-ink); line-height: 1; }
.tt-reviews-badge__body { display: flex; flex-direction: column; gap: 2px; }
.tt-reviews-badge__body small { color: var(--tt-muted); font-size: 12px; }

/* Travel guide */
.tt-guide { background: var(--tt-surface-2); }
.tt-guide__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--tt-s9); align-items: center; }
.tt-guide__lead { color: var(--tt-muted); font-size: var(--tt-fs-md); margin: 8px 0 20px; max-width: 44ch; }
.tt-guide__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.tt-guide__item { display: flex; gap: 14px; background: var(--tt-surface); border: 1px solid var(--tt-line); border-radius: var(--tt-r); padding: 16px 18px; }
.tt-guide__icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--tt-accent-050); color: var(--tt-accent); }
.tt-guide__item h3 { font-size: var(--tt-fs-base); margin: 0 0 4px; }
.tt-guide__item p { font-size: 13px; color: var(--tt-muted); margin: 0; }

@media (max-width: 900px) {
	.tt-cats__grid { grid-template-columns: repeat(2, 1fr); }
	.tt-guide__grid { grid-template-columns: 1fr; gap: var(--tt-s7); }
}
@media (max-width: 480px) {
	.tt-cats__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.tt-reviews-badge { flex-wrap: wrap; text-align: center; border-radius: var(--tt-r); }
}

/* FAQ / good to know */
.tt-faq__list { max-width: 840px; margin: 0 auto; display: grid; gap: 10px; }
.tt-faq__item { background: var(--tt-surface); border: 1px solid var(--tt-line); border-radius: var(--tt-r); overflow: hidden; }
.tt-faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 16px 18px; font-weight: 700; color: var(--tt-ink); font-size: var(--tt-fs-base); }
.tt-faq__item summary::-webkit-details-marker { display: none; }
.tt-faq__chevron { color: var(--tt-muted); transition: transform var(--tt-fast); flex: 0 0 auto; }
.tt-faq__item[open] .tt-faq__chevron { transform: rotate(180deg); color: var(--tt-accent); }
.tt-faq__item p { margin: 0; padding: 0 18px 16px; color: var(--tt-muted); font-size: var(--tt-fs-sm); }

/* Destination intro + best time */
.tt-destintro { background: var(--tt-surface-2); }
.tt-destintro__grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: var(--tt-s8); align-items: start; }
.tt-destintro__body .tt-section-title { margin: 6px 0 12px; }
.tt-destintro__body p { color: var(--tt-body); margin: 0; }
.tt-besttime { background: var(--tt-surface); border: 1px solid var(--tt-line); border-radius: var(--tt-r); padding: 18px 20px; }
.tt-besttime h3 { display: flex; align-items: center; gap: 8px; font-size: var(--tt-fs-md); margin: 0 0 12px; }
.tt-besttime h3 .tt-icon { color: var(--tt-accent); }
.tt-besttime ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tt-besttime li { display: flex; flex-direction: column; gap: 1px; padding-bottom: 10px; border-bottom: 1px solid var(--tt-line-2); }
.tt-besttime li:last-child { border-bottom: 0; padding-bottom: 0; }
.tt-besttime strong { color: var(--tt-accent); font-size: 13px; }
.tt-besttime span { color: var(--tt-muted); font-size: 12.5px; }

@media (max-width: 860px) {
	.tt-destintro__grid { grid-template-columns: 1fr; gap: var(--tt-s6); }
}

/* ==========================================================================
   Mobile bottom tab bar (native-app style) + PWA install banner
   ========================================================================== */
:root { --tt-tabbar-h: 58px; }

.tt-tabbar {
	display: none; /* shown on small screens only */
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
	grid-auto-flow: column; grid-auto-columns: 1fr; align-items: stretch;
	background: rgba(255, 255, 255, .96); backdrop-filter: saturate(1.4) blur(10px);
	border-top: 1px solid var(--tt-line);
	box-shadow: 0 -6px 24px -12px rgba(13, 27, 62, .28);
	padding-bottom: env(safe-area-inset-bottom, 0px);
}
.tt-tabbar__item {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
	min-height: var(--tt-tabbar-h); padding: 8px 4px; border: 0; background: none; cursor: pointer;
	color: var(--tt-muted); font-family: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent;
	transition: color var(--tt-fast);
}
.tt-tabbar__item:hover { color: var(--tt-blue); }
.tt-tabbar__item.is-active { color: var(--tt-blue); font-weight: 700; }
.tt-tabbar__item.is-active .tt-icon { transform: translateY(-1px); }
.tt-tabbar__item .tt-icon { width: 22px; height: 22px; }
.tt-tabbar__label { font-size: 11px; line-height: 1; letter-spacing: .01em; }
.tt-tabbar__icon { position: relative; display: inline-grid; place-items: center; }
.tt-tabbar__icon .tt-cart-count {
	position: absolute; top: -7px; right: -10px; min-width: 16px; height: 16px; padding: 0 4px;
	display: grid; place-items: center; border-radius: var(--tt-r-pill);
	background: var(--tt-accent); color: #fff; font-size: 10px; font-weight: 800; line-height: 1;
}
.tt-tabbar__icon .tt-cart-count.is-empty { display: none; }

/* PWA install banner */
.tt-install {
	position: fixed; left: 50%; transform: translateX(-50%); bottom: 22px; z-index: 210;
	width: min(560px, calc(100% - 32px));
	display: flex; align-items: center; gap: 12px;
	background: var(--tt-surface); border: 1px solid var(--tt-line);
	border-radius: var(--tt-r-lg); box-shadow: var(--tt-shadow-lg); padding: 14px 16px;
}
.tt-install[hidden] { display: none; }
.tt-install__icon { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto;
	border-radius: 12px; background: var(--tt-blue-050); color: var(--tt-blue); }
/* When the real logo is available it fills the tile — no tinted plate behind it. */
.tt-install__icon--img { background: #fff; border: 1px solid var(--tt-line); overflow: hidden; padding: 4px; }
.tt-install__icon--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.tt-install__text { flex: 1 1 auto; font-size: var(--tt-fs-sm); color: var(--tt-ink); font-weight: 600; }
.tt-install__go { flex: 0 0 auto; padding: 10px 18px; }
.tt-install__close { flex: 0 0 auto; border: 0; background: none; color: var(--tt-faint); cursor: pointer; padding: 4px;
	display: inline-grid; place-items: center; border-radius: 8px; }
.tt-install__close:hover { color: var(--tt-ink); background: var(--tt-surface-2); }

/* Show the tab bar on phones / small tablets and make room for it. */
@media (max-width: 767px) {
	.tt-tabbar { display: grid; }
	.tt-page { padding-bottom: calc(var(--tt-tabbar-h) + env(safe-area-inset-bottom, 0px)); }
	/* Lift floating UI above the bar. */
	.tt-totop { bottom: calc(var(--tt-tabbar-h) + env(safe-area-inset-bottom, 0px) + 14px); }
	.tt-install { bottom: calc(var(--tt-tabbar-h) + env(safe-area-inset-bottom, 0px) + 14px); }
	/* The header burger is redundant with the tab bar's Menu; keep the drawer,
	   drop the duplicate top-left toggle for a cleaner mobile header. */
	.tt-navbar .tt-burger { display: none; }
}

/* The install banner is a mobile-only affordance (matches the tab bar). */
@media (min-width: 768px) {
	.tt-install { display: none !important; }
}

/* When installed as a standalone app, hide the browser-only install prompt. */
@media (display-mode: standalone) {
	.tt-install { display: none !important; }
}

/* ==========================================================================
   Responsive safety nets
   ========================================================================== */
img, video, svg { max-width: 100%; }
.tt-prose img, .tt-prose video, .tt-prose iframe { height: auto; }
/* Wide content (tables, pre) scrolls inside itself instead of the page. */
.tt-prose table { display: block; width: 100%; overflow-x: auto; }
.tt-prose pre { overflow-x: auto; }

/* ==========================================================================
   v5 — Mobile-first (tripdust-style): floating WhatsApp, app-like swipe rails,
   bottom-stacked CTAs, cleaner mobile header, bigger touch targets.
   ========================================================================== */

/* Floating WhatsApp button (global; lifts above the mobile bars) */
.tt-wafab { position: fixed; right: 18px; bottom: 22px; z-index: 150; width: 54px; height: 54px; border-radius: 50%;
	background: #25d366; color: #fff; display: grid; place-items: center;
	box-shadow: 0 10px 26px -8px rgba(37,211,102,.55); transition: transform var(--tt-fast); }
.tt-wafab:hover { color: #fff; transform: scale(1.06); }
.tt-wafab .tt-icon { width: 26px; height: 26px; }
.tt-totop { bottom: 86px; } /* sit above the WhatsApp FAB on desktop */

@media (max-width: 900px) {
	/* Detail pages already have WhatsApp in the sticky book bar — no duplicate FAB. */
	body.single-tourastic_tour .tt-wafab, body.single-tva_activity .tt-wafab { display: none; }
}

@media (max-width: 767px) {
	/* Clean, app-like header: just the logo (search / cart / menu live in the tab bar). */
	.tt-topbar { display: none; }
	.tt-navbar__actions { display: none; }
	.tt-navbar__inner { justify-content: center; }
	.tt-navbar__brand { margin: 0 auto; }
	.tt-totop { display: none; }

	/* Floating WhatsApp above the tab bar. */
	.tt-wafab { bottom: calc(var(--tt-tabbar-h) + env(safe-area-inset-bottom, 0px) + 14px); right: 14px; width: 50px; height: 50px; }

	/* Sticky book bar sits directly above the tab bar; give content room. */
	.tt-mbook { bottom: calc(var(--tt-tabbar-h) + env(safe-area-inset-bottom, 0px)); }
	body.single-tourastic_tour .tt-page, body.single-tva_activity .tt-page {
		padding-bottom: calc(var(--tt-tabbar-h) + 72px + env(safe-area-inset-bottom, 0px)); }

	/* Bigger touch targets. */
	.tt-btn { min-height: 46px; }
	.tt-btn--sm { min-height: 38px; }

	/* App-like, edge-to-edge horizontal swipe rails for the home sections. */
	.tt-home-activities .tt-grid,
	.tt-cats__grid,
	.tt-destgrid {
		display: grid !important; grid-auto-flow: column; grid-template-columns: none !important; grid-auto-columns: 78%;
		gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
		margin: 0 calc(-1 * var(--tt-gutter)); padding: 2px var(--tt-gutter) 10px; scrollbar-width: none;
	}
	.tt-home-activities .tt-grid::-webkit-scrollbar,
	.tt-cats__grid::-webkit-scrollbar, .tt-destgrid::-webkit-scrollbar { display: none; }
	.tt-home-activities .tt-grid > *, .tt-cats__grid > *, .tt-destgrid > * { scroll-snap-align: start; }
	.tt-rail__track { grid-auto-columns: 80%; }
	.tt-rail__btn { display: none; }

	/* Tighter section rhythm on phones. */
	.tt-section { padding: 34px 0; }
	.tt-section-head { margin-bottom: 16px; }
	.tt-section-title { font-size: 1.35rem; }

	/* Hero: compact, thumb-friendly. */
	.tt-hero { padding-top: 34px; }
	.tt-hero__title { font-size: 1.55rem; }
	.tt-hero__stats { gap: 18px; margin: 14px 0 18px; }
	.tt-search { padding: 8px; }
	.tt-search__submit { min-height: 52px; }

	/* Cards: readable, tappable. */
	.tt-cat { aspect-ratio: 5 / 4; }
	.tt-card__title { font-size: var(--tt-fs-md); }
	.tt-trustbar__inner { gap: 8px 18px; padding: 12px 0; }
}

/* ==========================================================================
   MakeMyTrip-style quick-nav icon strip
   ========================================================================== */
.tt-quicknav { background: #fff; border-bottom: 1px solid var(--tt-line); position: relative; z-index: 6; }
.tt-hero + .tt-quicknav { padding-top: calc(var(--tt-s9) + 24px); } /* clear the overlapping hero search */
.tt-quicknav__row { display: flex; justify-content: center; gap: 6px; padding: 14px 0; overflow-x: auto; scrollbar-width: none; }
.tt-quicknav__row::-webkit-scrollbar { display: none; }
.tt-quicknav__item { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 78px; padding: 8px 10px;
	border-radius: var(--tt-r); color: var(--tt-body); text-align: center; flex: 0 0 auto; transition: background var(--tt-fast); }
.tt-quicknav__item:hover { background: var(--tt-surface-2); color: var(--tt-blue); }
.tt-quicknav__icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
	background: var(--tt-blue-050); color: var(--tt-blue); }
.tt-quicknav__item--wa .tt-quicknav__icon { background: #e7f9ee; color: #1ebe5b; }
.tt-quicknav__label { font-size: 12px; font-weight: 600; }
@media (max-width: 767px) {
	.tt-quicknav__row { justify-content: flex-start; padding: 12px 0; gap: 2px; }
	.tt-quicknav__item { min-width: 70px; padding: 6px 8px; }
	.tt-quicknav__icon { width: 44px; height: 44px; border-radius: 14px; }
}

/* ==========================================================================
   Capture-style revamp: brand gradient, hero collage, destinations, popup,
   WhatsApp fab, custom cursor. (Appended last.)
   ========================================================================== */

/* Brand gradient button */
.tt-btn--brand { background: var(--tt-grad-brand); color: #fff; border: 0; }
.tt-btn--brand:hover { color: #fff; filter: brightness(1.06); }
.tt-btn--accent { background: var(--tt-accent); }
.tt-btn--accent:hover { background: var(--tt-accent-600); }

/* ---- Hero collage ---- */
.tt-herox { position: relative; padding: var(--tt-s10) 0 var(--tt-s9); overflow: hidden;
	background: radial-gradient(120% 90% at 50% -10%, var(--tt-blue-050) 0%, var(--tt-accent-050) 40%, #fff 72%); }
.tt-herox__inner { display: grid; grid-template-columns: 1fr minmax(320px, 540px) 1fr; gap: 24px; align-items: center; }
.tt-herox__center { text-align: center; }
.tt-herox__eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
	color: var(--tt-accent-600); background: var(--tt-accent-050); padding: 6px 14px; border-radius: 999px; }
.tt-herox__title { font-family: var(--tt-font-display); font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: -.035em; line-height: 1.08; margin: 16px 0 12px; }
.tt-herox__sub { color: var(--tt-muted); font-size: var(--tt-fs-md); max-width: 44ch; margin: 0 auto 22px; }
.tt-herox__search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--tt-line);
	border-radius: 999px; padding: 6px 6px 6px 18px; box-shadow: var(--tt-shadow-md); max-width: 520px; margin: 0 auto; }
.tt-herox__search .tt-icon { color: var(--tt-muted); flex: 0 0 auto; }
.tt-herox__search input { flex: 1; border: 0; background: transparent; font-size: 14px; padding: 11px 4px; color: var(--tt-ink); min-width: 0; }
.tt-herox__search input:focus { outline: none; }
.tt-herox__cta { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.tt-herox__stats { list-style: none; display: flex; justify-content: center; gap: 32px; margin: 26px 0 0; padding: 0; }
.tt-herox__stats b { display: block; font-family: var(--tt-font-display); font-size: var(--tt-fs-lg); color: var(--tt-ink); }
.tt-herox__stats span { font-size: 12px; color: var(--tt-muted); }
.tt-herox__side { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tt-herox__img { border-radius: var(--tt-r); overflow: hidden; box-shadow: var(--tt-shadow-md); aspect-ratio: 3 / 4; }
.tt-herox__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--tt-slow); }
.tt-herox__img:hover img { transform: scale(1.05); }
.tt-herox__side .tt-herox__img:nth-child(3n+2) { margin-top: 26px; }
.tt-herox__side .tt-herox__img:nth-child(3n+3) { margin-top: 12px; }
@media (max-width: 1024px) {
	.tt-herox__inner { grid-template-columns: 1fr; }
	.tt-herox__side { display: none; }
	.tt-herox { padding: var(--tt-s9) 0 var(--tt-s8); }
}

/* ---- Explore Destinations ---- */
.tt-explore__title { font-family: var(--tt-font-display); font-size: var(--tt-fs-2xl); letter-spacing: -.03em; margin: 0 0 18px; }
.tt-explore__filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.tt-chipbtn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--tt-line);
	background: #fff; color: var(--tt-body); font-weight: 700; font-size: 13px; cursor: pointer; transition: all var(--tt-fast); font-family: inherit; }
.tt-chipbtn:hover { border-color: var(--tt-accent); }
.tt-chipbtn.is-active { background: var(--tt-accent-050); border-color: var(--tt-accent); color: var(--tt-accent-600); }
.tt-explore__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(94px, 1fr)); gap: 24px 14px; }
.tt-dest { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.tt-dest__img { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: var(--tt-shadow-md);
	position: relative; background: var(--tt-surface-2); transition: transform var(--tt-fast); }
.tt-dest:hover .tt-dest__img { transform: translateY(-4px) scale(1.04); }
.tt-dest__img img, .tt-dest__img .tt-artwork { width: 100%; height: 100%; object-fit: cover; }
.tt-dest__name { font-size: 13px; font-weight: 700; color: var(--tt-ink); line-height: 1.25; }
@media (max-width: 560px) {
	.tt-explore__grid { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 18px 10px; }
	.tt-dest__name { font-size: 12px; }
}

/* ---- Lead popup ---- */
.tt-lead { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 20px; }
.tt-lead[hidden] { display: none; }
.tt-lead__backdrop { position: absolute; inset: 0; background: rgba(12,34,51,.6); backdrop-filter: blur(3px); }
.tt-lead__box { position: relative; z-index: 2; background: #fff; border-radius: var(--tt-r-lg); box-shadow: var(--tt-shadow-lg);
	width: 100%; max-width: 420px; padding: 28px; animation: tt-pop .25s var(--tt-ease); }
@keyframes tt-pop { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.tt-lead__x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--tt-line);
	background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--tt-muted); }
.tt-lead__x:hover { color: var(--tt-ink); border-color: var(--tt-ink); }
.tt-lead__title { font-family: var(--tt-font-display); font-size: var(--tt-fs-lg); margin: 0 0 6px; }
.tt-lead__sub { color: var(--tt-muted); font-size: 13px; margin: 0 0 18px; }
.tt-lead__form { display: grid; gap: 12px; }
.tt-lead__form input, .tt-lead__form select { border: 1.5px solid var(--tt-line); border-radius: 999px; padding: 13px 18px;
	font-family: inherit; font-size: 14px; color: var(--tt-ink); background: #fff; width: 100%; }
.tt-lead__form input:focus, .tt-lead__form select:focus { outline: none; border-color: var(--tt-accent); box-shadow: var(--tt-ring); }
.tt-lead__phone { display: flex; align-items: center; gap: 6px; border: 1.5px solid var(--tt-line); border-radius: 999px; padding: 0 8px 0 18px; }
.tt-lead__phone span { color: var(--tt-muted); font-weight: 700; font-size: 14px; }
.tt-lead__phone input { border: 0 !important; box-shadow: none !important; padding-left: 4px; }
.tt-lead__msg { color: var(--tt-sale); font-size: 13px; margin: 0; }
.tt-lead__done { text-align: center; padding: 14px 0; }
.tt-lead__check { width: 64px; height: 64px; border-radius: 50%; background: var(--tt-accent-050); color: var(--tt-accent);
	display: grid; place-items: center; margin: 0 auto 14px; }
.tt-lead__done h3 { font-family: var(--tt-font-display); margin: 0 0 6px; }
.tt-lead__done p { color: var(--tt-muted); margin: 0 0 16px; }

/* ---- WhatsApp floating button (gradient-ready circle) ---- */
.tt-wafab { position: fixed; right: 18px; bottom: 88px; z-index: 150; width: 56px; height: 56px; border-radius: 50%;
	background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px -6px rgba(37,211,102,.6);
	transition: transform var(--tt-fast); }
.tt-wafab:hover { color: #fff; transform: scale(1.08); }
@media (min-width: 1025px) { .tt-wafab { bottom: 24px; } }

/* ---- Promo / announcement bar ---- */
.tt-announce { background: var(--tt-grad-brand); color: #fff; text-align: center; position: relative; overflow: hidden; }
.tt-announce__inner { padding: 8px var(--tt-gutter); }
.tt-announce__text { font-size: 13px; font-weight: 700; letter-spacing: .01em; }
.tt-announce::after { content: ""; position: absolute; top: 0; bottom: 0; width: 40px; left: -60px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-20deg);
	animation: tt-shine 4.5s ease-in-out infinite; }
@keyframes tt-shine { 0% { left: -60px; } 55%, 100% { left: 120%; } }
@media (max-width: 560px) { .tt-announce__text { font-size: 12px; } }

/* ---- Tours / Activities type tabs (destination pages) + WhatsApp chooser ---- */
.tt-typetabs { display: flex; gap: 20px; margin-bottom: 18px; border-bottom: 1px solid var(--tt-line); }
.tt-typetab { border: 0; background: transparent; padding: 10px 2px; font-family: inherit; font-weight: 700; font-size: 14px;
	color: var(--tt-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tt-typetab:hover { color: var(--tt-ink); }
.tt-typetab.is-active { color: var(--tt-accent); border-bottom-color: var(--tt-accent); }

.tt-wachoose { margin-top: 10px; }
.tt-wachoose > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tt-wachoose > summary::-webkit-details-marker { display: none; }
.tt-wachoose__q { font-weight: 700; color: var(--tt-ink); }
.tt-wachoose__btn { display: inline-flex; align-items: center; gap: 7px; background: #25d366; color: #fff; border-radius: 999px; padding: 9px 18px; font-weight: 700; font-size: 13px; }
.tt-wachoose[open] .tt-wachoose__btn { background: #1ebe5b; }
.tt-wachoose__menu { margin-top: 10px; border: 1px solid var(--tt-line); border-radius: var(--tt-r); padding: 6px; display: grid; gap: 2px; }
.tt-wachoose__head { font-size: 12px; color: var(--tt-muted); margin: 4px 8px; }
.tt-wachoose__item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--tt-r-sm); color: var(--tt-ink); font-weight: 600; }
.tt-wachoose__item:hover { background: #e7f9ee; color: var(--tt-ink); }
.tt-wachoose__item .tt-icon { color: #25d366; flex: 0 0 auto; }
.tt-wachoose__item small { display: block; color: var(--tt-muted); font-weight: 500; font-size: 11px; }

/* ---- Tour add-on activities list (Add-on Activities tab) ---- */
.tt-addonlist { display: grid; gap: 10px; margin-top: 14px; }
.tt-addonrow { display: flex; align-items: center; gap: 14px; padding: 10px 12px; border: 1px solid var(--tt-line);
	border-radius: var(--tt-r); background: var(--tt-surface); transition: border-color var(--tt-fast), transform var(--tt-fast); }
.tt-addonrow:hover { border-color: var(--tt-accent); transform: translateY(-2px); }
.tt-addonrow__img { flex: 0 0 auto; width: 64px; height: 64px; border-radius: var(--tt-r-sm); overflow: hidden; }
.tt-addonrow__img img, .tt-addonrow__img .tt-artwork { width: 64px; height: 64px; object-fit: cover; }
.tt-addonrow__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.tt-addonrow__body strong { color: var(--tt-ink); font-size: var(--tt-fs-base); }
.tt-addonrow__body small { color: var(--tt-muted); font-size: 12px; }
.tt-addonrow__price { flex: 0 0 auto; font-weight: 800; color: var(--tt-accent-600); white-space: nowrap; }
.tt-addonrow__price small { display: block; font-weight: 500; color: var(--tt-muted); font-size: 11px; text-align: right; }

/* ---- Booking: activity packages ---------------------------------------- */
.tt-pkgs { gap: 8px; }
.tt-pkg { position: relative; cursor: pointer; margin: 0; display: block; }
.tt-pkg input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.tt-pkg__box { display: flex; flex-direction: column; gap: 6px; border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm);
	padding: 12px 14px; transition: all var(--tt-fast); }
.tt-pkg:hover .tt-pkg__box { border-color: var(--tt-blue); background: var(--tt-blue-050); }
.tt-pkg input:focus-visible + .tt-pkg__box { border-color: var(--tt-blue); box-shadow: var(--tt-ring); }
.tt-pkg input:checked + .tt-pkg__box { border-color: var(--tt-accent); background: var(--tt-accent-050); box-shadow: inset 0 0 0 1px var(--tt-accent); }
.tt-pkg__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tt-pkg__name { font-weight: 800; color: var(--tt-ink); font-size: var(--tt-fs-sm); line-height: 1.35; }
.tt-pkg__price { font-weight: 800; color: var(--tt-accent-600); white-space: nowrap; }
.tt-pkg__price small { font-weight: 500; color: var(--tt-muted); }
.tt-pkg__meta { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 11px; color: var(--tt-muted); font-weight: 600; }
.tt-pkg__meta span { display: inline-flex; align-items: center; gap: 4px; }
.tt-pkg__incl { display: grid; gap: 3px; font-size: 11px; color: var(--tt-muted); }
.tt-pkg__incl span { display: flex; align-items: flex-start; gap: 5px; }
.tt-pkg__incl .tt-icon { color: var(--tt-accent-600); flex: none; margin-top: 1px; }

/* ---- Booking: room mix ------------------------------------------------- */
.tt-rooms { gap: 8px; }
.tt-roomrow { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm); padding: 10px 12px; }
.tt-roomrow__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.tt-roomrow__name { font-weight: 700; color: var(--tt-ink); font-size: var(--tt-fs-sm); }
.tt-roomrow__meta { font-size: 11px; color: var(--tt-muted); }
.tt-rooms__note { margin: 2px 0 0; font-size: var(--tt-fs-xs); font-weight: 700; color: var(--tt-accent-600); }
.tt-rooms__note:empty { display: none; }
.tt-rooms__warn { margin: 2px 0 0; font-size: var(--tt-fs-xs); font-weight: 700; color: #b91c1c; line-height: 1.45; }
.tt-rooms__warn[hidden] { display: none; }

/* ---- Booking: optional add-ons ---------------------------------------- */
.tt-extras { gap: 8px; }
.tt-extra--vehicle { border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm); padding: 10px 12px; display: grid; gap: 8px; }
.tt-extra__head { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin: 0; }
.tt-extra__head input { width: 18px; height: 18px; accent-color: var(--tt-accent); flex: none; margin-top: 1px; }
.tt-extra__body { display: flex; flex-direction: column; min-width: 0; }
.tt-extra__name { font-weight: 700; color: var(--tt-ink); font-size: var(--tt-fs-sm); }
.tt-extra__meta { font-size: 11px; color: var(--tt-muted); }
.tt-extra__tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 8px; padding-left: 28px; }
.tt-extra__tiers[hidden] { display: none; }
.tt-vehicle { position: relative; cursor: pointer; margin: 0; display: block; }
.tt-vehicle[hidden] { display: none; }
.tt-vehicle input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.tt-vehicle__box { display: flex; flex-direction: column; gap: 2px; border: 1.5px solid var(--tt-line); border-radius: var(--tt-r-sm);
	padding: 9px 11px; transition: all var(--tt-fast); height: 100%; }
.tt-vehicle:hover .tt-vehicle__box { border-color: var(--tt-blue); background: var(--tt-blue-050); }
.tt-vehicle input:focus-visible + .tt-vehicle__box { border-color: var(--tt-blue); box-shadow: var(--tt-ring); }
.tt-vehicle input:checked + .tt-vehicle__box { border-color: var(--tt-accent); background: var(--tt-accent-050); box-shadow: inset 0 0 0 1px var(--tt-accent); }
.tt-vehicle__t { font-weight: 800; color: var(--tt-ink); font-size: var(--tt-fs-xs); }
.tt-vehicle__s { font-size: 11px; color: var(--tt-muted); font-weight: 600; }
.tt-extra__none { grid-column: 1 / -1; margin: 0; font-size: var(--tt-fs-xs); font-weight: 700; color: #b91c1c; }
.tt-extra__none[hidden] { display: none; }
.tt-extra__head input:disabled { cursor: not-allowed; }
.tt-extra--vehicle:has(input[data-extra-toggle]:disabled) { opacity: .55; }

/* Cut-off + minimum-age notes */
.tt-book__cutoff,
.tt-book__note { display: flex; align-items: center; gap: 6px; margin: 2px 0 0; font-size: var(--tt-fs-xs); font-weight: 600; color: var(--tt-muted); }
.tt-book__cutoff .tt-icon,
.tt-book__note .tt-icon { flex: none; }

/* These containers set their own display, which would otherwise beat [hidden]. */
.tt-book__actions[hidden] { display: none; }

/* "Christmas & New Year rates apply to this date." */
.tt-book__season { margin: 6px 0 0; font-size: var(--tt-fs-xs); font-weight: 700; color: #b45309; }
.tt-book__season[hidden] { display: none; }

.tt-book__cutoff.is-warn { color: var(--tt-accent-600); font-weight: 700; align-items: flex-start; line-height: 1.4; }
.tt-book__cutoff.is-warn .tt-icon { margin-top: 2px; }

/* Free inclusions on an activity, listed above the paid extras */
.tt-freeincl .tt-incl__name { display: flex; align-items: center; gap: 6px; }
.tt-freeincl .tt-incl__name .tt-icon { color: var(--tt-accent-600); flex: none; }
.tt-freeincl .tt-incl__price { color: var(--tt-accent-600); font-weight: 800; white-space: nowrap; }

/* ---- Notes block (standalone section under the tabs) ------------------- */
.tt-notes {
	margin: 28px 0 0;
	padding: 16px 18px;
	background: var(--tt-blue-050);
	border: 1px solid var(--tt-line);
	border-left: 3px solid var(--tt-blue);
	border-radius: var(--tt-r-sm);
}
.tt-notes__title {
	display: flex; align-items: center; gap: 8px;
	margin: 0 0 10px;
	font-size: var(--tt-fs-md); font-weight: 800; color: var(--tt-ink);
}
.tt-notes__title .tt-icon { color: var(--tt-blue); flex: none; }
.tt-notes__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.tt-notes__list li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: var(--tt-fs-sm); color: var(--tt-body); line-height: 1.55;
}
.tt-notes__dot {
	flex: none; width: 6px; height: 6px; margin-top: 8px;
	border-radius: 50%; background: var(--tt-blue);
}
.tt-notes__body p { margin: 0 0 10px; font-size: var(--tt-fs-sm); color: var(--tt-body); line-height: 1.6; }
.tt-notes__body p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
	.tt-notes { padding: 14px; }
}
