/* ==========================================================================
   Tour Detail v2 — 2026 redesign
   Prefix: tt2-  |  Uses theme tokens from main.css (--cts-*)
   ========================================================================== */

.tt2-tour-v2 {
	background: var(--cts-bg);
}

.tt2-container {
	max-width: var(--cts-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Hero ---------- */
.tt2-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	isolation: isolate;
}
.tt2-hero-mask {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 25, 20, 0.55) 0%, rgba(10, 25, 20, 0.25) 40%, rgba(10, 25, 20, 0.82) 100%);
	z-index: -1;
}
.tt2-hero-inner {
	max-width: var(--cts-container);
	margin: 0 auto;
	padding: 120px 24px 48px;
	width: 100%;
	color: #fff;
}
.tt2-breadcrumb {
	font-size: 13px;
	opacity: 0.85;
	margin-bottom: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.tt2-breadcrumb a { color: #fff; text-decoration: none; }
.tt2-breadcrumb a:hover { text-decoration: underline; }
.tt2-bc-sep { opacity: 0.5; }

.tt2-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tt2-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
}
.tt2-badge-accent { background: var(--cts-accent); border-color: var(--cts-accent); color: #1a2b26; }

.tt2-hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(30px, 4.4vw, 52px);
	line-height: 1.12;
	margin: 0 0 14px;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.tt2-hero-rating { display: flex; align-items: center; gap: 8px; font-size: 15px; margin-bottom: 18px; }
.tt2-stars { color: var(--cts-accent); letter-spacing: 2px; font-size: 17px; }
.tt2-hero-review-link { color: #fff; opacity: 0.85; }
.tt2-hero-review-link:hover { opacity: 1; }

.tt2-hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 30px; }
.tt2-hero-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	padding: 7px 14px;
	border-radius: 999px;
	backdrop-filter: blur(6px);
}
.tt2-hero-meta-item svg { opacity: 0.9; }

.tt2-hero-cta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.tt2-hero-price { font-size: 15px; display: flex; align-items: baseline; gap: 10px; }
.tt2-hero-price del { opacity: 0.6; }
.tt2-hero-price strong { font-size: 34px; font-weight: 700; color: var(--cts-accent); line-height: 1; }
.tt2-hero-price span { opacity: 0.8; }

/* ---------- Buttons ---------- */
.tt2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: var(--cts-radius-sm);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--cts-transition);
	line-height: 1.2;
}
.tt2-btn-accent { background: var(--cts-accent); color: #1a2b26; }
.tt2-btn-accent:hover { background: var(--cts-accent-hover); transform: translateY(-1px); }
.tt2-btn-dark { background: var(--cts-primary); color: #fff; }
.tt2-btn-dark:hover { background: var(--cts-primary-light); }
.tt2-btn-outline { background: transparent; border-color: var(--cts-primary); color: var(--cts-primary); }
.tt2-btn-outline:hover { background: var(--cts-primary); color: #fff; }
.tt2-btn-lg { padding: 15px 32px; font-size: 16px; }
.tt2-btn-sm { padding: 8px 16px; font-size: 13.5px; }
.tt2-btn-block { width: 100%; }
.tt2-btn-disabled { background: #e5e7eb; color: #9ca3af; pointer-events: none; }

/* ---------- Sticky nav ---------- */
.tt2-nav {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--cts-border);
	box-shadow: var(--cts-shadow-sm);
}
.tt2-nav-inner {
	display: flex;
	align-items: center;
	gap: 4px;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.tt2-nav-inner::-webkit-scrollbar { display: none; }
.tt2-nav-link {
	padding: 16px 16px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--cts-text-light);
	text-decoration: none;
	border-bottom: 2.5px solid transparent;
	transition: var(--cts-transition);
}
.tt2-nav-link:hover { color: var(--cts-primary); }
.tt2-nav-link.is-active { color: var(--cts-primary); border-bottom-color: var(--cts-accent); }
.tt2-nav-cta {
	margin-left: auto;
	margin-left: 12px;
	background: var(--cts-primary);
	color: #fff;
	padding: 9px 18px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--cts-transition);
}
.tt2-nav-cta:hover { background: var(--cts-primary-light); }

/* ---------- Layout ---------- */
.tt2-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 40px;
	padding-top: 44px;
	padding-bottom: 60px;
	align-items: start;
}
.tt2-content { min-width: 0; }

.tt2-section { margin-bottom: 56px; scroll-margin-top: 90px; }
.tt2-h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 28px;
	color: var(--cts-primary);
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--cts-bg-light);
	position: relative;
}
.tt2-h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 56px;
	height: 2px;
	background: var(--cts-accent);
}
.tt2-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.tt2-expand-all {
	background: none;
	border: 1.5px solid var(--cts-border);
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--cts-text-light);
	cursor: pointer;
	margin-bottom: 18px;
	transition: var(--cts-transition);
}
.tt2-expand-all:hover { border-color: var(--cts-primary); color: var(--cts-primary); }

.tt2-intro {
	font-size: 17px;
	line-height: 1.75;
	color: var(--cts-text);
	margin-bottom: 26px;
}

/* ---------- Facts grid ---------- */
.tt2-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.tt2-fact {
	background: #fff;
	border: 1px solid var(--cts-border);
	border-radius: var(--cts-radius);
	padding: 16px;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 12px;
	align-items: center;
	transition: var(--cts-transition);
}
.tt2-fact:hover { box-shadow: var(--cts-shadow); border-color: var(--cts-primary-light); }
.tt2-fact-icon {
	grid-row: 1 / span 2;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--cts-bg-light);
	color: var(--cts-primary-light);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.tt2-fact-label { font-size: 12px; color: var(--cts-text-light); text-transform: uppercase; letter-spacing: 0.4px; font-weight: 600; }
.tt2-fact-value { font-size: 15px; font-weight: 600; color: var(--cts-text); }

/* ---------- Gallery ---------- */
.tt2-gallery { margin-top: 30px; }
.tt2-gallery-main {
	border-radius: var(--cts-radius-lg);
	overflow: hidden;
	aspect-ratio: 16 / 8;
	background: var(--cts-bg-light);
}
.tt2-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tt2-gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 10px;
	margin-top: 10px;
}
.tt2-gallery-thumb {
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	padding: 0;
	cursor: pointer;
	aspect-ratio: 1;
	background: none;
	transition: var(--cts-transition);
}
.tt2-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tt2-gallery-thumb.is-active,
.tt2-gallery-thumb:hover { border-color: var(--cts-accent); }

/* ---------- Highlights ---------- */
.tt2-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.tt2-highlight {
	background: #fff;
	border: 1px solid var(--cts-border);
	border-radius: var(--cts-radius);
	padding: 22px;
	transition: var(--cts-transition);
}
.tt2-highlight:hover { transform: translateY(-3px); box-shadow: var(--cts-shadow-hover); }
.tt2-highlight-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--cts-bg-light);
	color: var(--cts-primary-light);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.tt2-highlight-icon-def svg { width: 22px; height: 22px; }
.tt2-highlight-title { font-size: 16.5px; margin: 0 0 8px; color: var(--cts-primary); }
.tt2-highlight-desc { font-size: 14px; line-height: 1.65; color: var(--cts-text-light); margin: 0; }

/* ---------- Itinerary timeline ---------- */
.tt2-timeline { position: relative; padding-left: 34px; }
.tt2-timeline::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 12px;
	bottom: 12px;
	width: 2px;
	background: linear-gradient(180deg, var(--cts-accent), var(--cts-bg-light));
}
.tt2-day {
	position: relative;
	background: #fff;
	border: 1px solid var(--cts-border);
	border-radius: var(--cts-radius);
	margin-bottom: 18px;
	overflow: hidden;
	transition: var(--cts-transition);
}
.tt2-day:hover { box-shadow: var(--cts-shadow); }
.tt2-day-num {
	position: absolute;
	left: -34px;
	transform: translateX(-100%);
	top: 14px;
	width: 32px;
	height: 32px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--cts-primary);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.tt2-day-head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	cursor: pointer;
	user-select: none;
}
.tt2-day-headtext { flex: 1; min-width: 0; }
.tt2-day-title { font-size: 17px; margin: 0; color: var(--cts-text); font-weight: 600; }
.tt2-day-time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	color: var(--cts-text-light);
	margin-top: 4px;
}
.tt2-day-toggle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--cts-bg-light);
	position: relative;
	flex: none;
	transition: var(--cts-transition);
}
.tt2-day-toggle::before,
.tt2-day-toggle::after {
	content: "";
	position: absolute;
	background: var(--cts-primary);
	border-radius: 2px;
	left: 50%;
	top: 50%;
	transition: var(--cts-transition);
}
.tt2-day-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.tt2-day-toggle::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.tt2-day.is-open .tt2-day-toggle { background: var(--cts-accent); }
.tt2-day.is-open .tt2-day-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.tt2-day-body {
	display: none;
	padding: 0 20px 20px;
	animation: tt2-fade 0.3s ease;
}
.tt2-day.is-open .tt2-day-body { display: block; }
@keyframes tt2-fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.tt2-day-img {
	width: 100%;
	border-radius: 10px;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	margin-bottom: 14px;
}
.tt2-day-desc { font-size: 14.5px; line-height: 1.75; color: var(--cts-text); }
.tt2-day-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tt2-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: var(--cts-text);
	background: var(--cts-bg-light);
	padding: 6px 12px;
	border-radius: 999px;
}
.tt2-chip svg { color: var(--cts-primary-light); flex: none; }

/* ---------- Packages ---------- */
.tt2-packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 18px;
	align-items: stretch;
}
.tt2-package {
	position: relative;
	background: #fff;
	border: 2px solid var(--cts-border);
	border-radius: var(--cts-radius-lg);
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	transition: var(--cts-transition);
}
.tt2-package:hover { box-shadow: var(--cts-shadow-hover); transform: translateY(-3px); }
.tt2-package.is-featured {
	border-color: var(--cts-accent);
	box-shadow: 0 10px 30px rgba(244, 182, 60, 0.22);
}
.tt2-package-tag {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--cts-accent);
	color: #1a2b26;
	font-size: 11.5px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.tt2-package-name { font-size: 19px; margin: 4px 0 10px; color: var(--cts-primary); text-align: center; }
.tt2-package-price {
	text-align: center;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px dashed var(--cts-border);
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
}
.tt2-package-price del { color: var(--cts-text-light); font-size: 14px; }
.tt2-package-price strong { font-size: 30px; font-weight: 700; color: var(--cts-primary); }
.tt2-package-price span { font-size: 13px; color: var(--cts-text-light); }
.tt2-package-desc { font-size: 13.5px; color: var(--cts-text-light); text-align: center; margin: 0 0 14px; }
.tt2-package-list { list-style: none; margin: 0 0 20px; padding: 0; flex: 1; }
.tt2-package-list li {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	font-size: 13.5px;
	line-height: 1.5;
	padding: 6px 0;
	color: var(--cts-text);
}
.tt2-package-list svg { color: var(--cts-primary-light); flex: none; margin-top: 3px; }

/* ---------- Departures ---------- */
.tt2-dep-table-wrap {
	background: #fff;
	border: 1px solid var(--cts-border);
	border-radius: var(--cts-radius);
	overflow: hidden;
}
.tt2-dep-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.tt2-dep-table th {
	text-align: left;
	padding: 14px 18px;
	background: var(--cts-primary);
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.tt2-dep-table td { padding: 14px 18px; border-top: 1px solid var(--cts-border); }
.tt2-dep-table tr:hover td { background: var(--cts-bg); }
.tt2-dep-date { font-weight: 600; color: var(--cts-primary); }
.tt2-dep-price { font-weight: 700; }
.tt2-dep-status {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}
.tt2-dep-status--available { background: var(--cts-bg-light); color: var(--cts-primary-light); }
.tt2-dep-status--guaranteed { background: #e3f4e9; color: #1e7a46; }
.tt2-dep-status--few { background: #fdf1dc; color: #b07818; }
.tt2-dep-status--full { background: #fdeaea; color: #b23b3b; }
.tt2-dep-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 13.5px;
	color: var(--cts-text-light);
}
.tt2-dep-note svg { color: var(--cts-accent); flex: none; }

/* ---------- Includes / Excludes ---------- */
.tt2-incexc { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tt2-inc,
.tt2-exc {
	background: #fff;
	border: 1px solid var(--cts-border);
	border-radius: var(--cts-radius);
	padding: 24px;
}
.tt2-inc h3,
.tt2-exc h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	margin: 0 0 14px;
	color: var(--cts-primary);
}
.tt2-inc-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.tt2-inc-icon--yes { background: #e3f4e9; color: #1e7a46; }
.tt2-inc-icon--no { background: #fdeaea; color: #b23b3b; }
.tt2-inc-content ul,
.tt2-exc-content ul { list-style: none; margin: 0; padding: 0; }
.tt2-inc-content li,
.tt2-exc-content li {
	position: relative;
	padding: 7px 0 7px 26px;
	font-size: 14.5px;
	line-height: 1.6;
	border-bottom: 1px dashed var(--cts-bg-light);
}
.tt2-inc-content li:last-child,
.tt2-exc-content li:last-child { border-bottom: none; }
.tt2-inc-content li::before,
.tt2-exc-content li::before {
	position: absolute;
	left: 2px;
	top: 8px;
	font-weight: 700;
}
.tt2-inc-content li::before { content: "✓"; color: #1e7a46; }
.tt2-exc-content li::before { content: "✕"; color: #b23b3b; }
.tt2-inc-content p,
.tt2-exc-content p { font-size: 14.5px; line-height: 1.7; margin: 0 0 8px; }

.tt2-notes {
	margin-top: 18px;
	background: #fffbeF;
	background: linear-gradient(135deg, #fffdf5, #fff8e6);
	border: 1px solid #f5e3b3;
	border-left: 4px solid var(--cts-accent);
	border-radius: var(--cts-radius);
	padding: 22px 24px;
}
.tt2-notes h3 { font-size: 16px; margin: 0 0 10px; color: var(--cts-primary); }
.tt2-notes-content { font-size: 14px; line-height: 1.7; color: var(--cts-text); }
.tt2-notes-content p { margin: 0 0 8px; }
.tt2-notes-content p:last-child { margin: 0; }

.tt2-about { font-size: 15px; line-height: 1.8; color: var(--cts-text); background: #fff; border: 1px solid var(--cts-border); border-radius: var(--cts-radius); padding: 24px; }
.tt2-about p { margin: 0 0 14px; }
.tt2-about p:last-child { margin: 0; }

/* ---------- FAQ ---------- */
.tt2-faq-item {
	background: #fff;
	border: 1px solid var(--cts-border);
	border-radius: var(--cts-radius);
	margin-bottom: 10px;
	overflow: hidden;
}
.tt2-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 15.5px;
	font-weight: 600;
	color: var(--cts-text);
	text-align: left;
}
.tt2-faq-toggle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--cts-bg-light);
	position: relative;
	flex: none;
	transition: var(--cts-transition);
}
.tt2-faq-toggle::before,
.tt2-faq-toggle::after {
	content: "";
	position: absolute;
	background: var(--cts-primary);
	border-radius: 2px;
	left: 50%;
	top: 50%;
}
.tt2-faq-toggle::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.tt2-faq-toggle::after { width: 2px; height: 10px; transform: translate(-50%, -50%); transition: var(--cts-transition); }
.tt2-faq-item.is-open .tt2-faq-toggle { background: var(--cts-accent); }
.tt2-faq-item.is-open .tt2-faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.tt2-faq-a {
	display: none;
	padding: 0 20px 18px;
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--cts-text-light);
}
.tt2-faq-item.is-open .tt2-faq-a { display: block; animation: tt2-fade 0.3s ease; }
.tt2-faq-a p { margin: 0; }

/* ---------- Reviews ---------- */
.tt2-reviews {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.tt2-review {
	background: #fff;
	border: 1px solid var(--cts-border);
	border-radius: var(--cts-radius);
	padding: 22px;
	margin: 0;
}
.tt2-review-stars { color: var(--cts-accent); letter-spacing: 2px; margin-bottom: 10px; }
.tt2-review blockquote {
	margin: 0 0 16px;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--cts-text);
	font-style: italic;
}
.tt2-review figcaption { display: flex; align-items: center; gap: 12px; }
.tt2-review-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.tt2-review figcaption strong { display: block; font-size: 14.5px; color: var(--cts-text); }
.tt2-review figcaption span { font-size: 12.5px; color: var(--cts-text-light); }

/* ---------- Sidebar ---------- */
.tt2-sidebar {
	position: sticky;
	top: 76px;
}
.tt2-booking-card {
	background: #fff;
	border-radius: var(--cts-radius-lg);
	box-shadow: var(--cts-shadow-hover);
	padding: 24px;
	border: 1px solid var(--cts-border);
}
.tt2-booking-card .cts-booking-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px dashed var(--cts-border);
}
.tt2-booking-card .cts-price-original { color: var(--cts-text-light); text-decoration: line-through; font-size: 15px; }
.tt2-booking-card .cts-price-large { font-size: 32px; font-weight: 700; color: var(--cts-primary); }
.tt2-booking-card .cts-price-unit { font-size: 13px; color: var(--cts-text-light); }
.tt2-booking-card .cts-booking-rating { text-align: center; margin: -6px 0 12px; font-size: 14px; color: var(--cts-text-light); }
.tt2-booking-card .cts-rating-stars { color: #b07818; font-weight: 700; }
.tt2-booking-card .cts-wc-booking-form { display: grid; gap: 12px; }
.tt2-booking-card .cts-wc-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--cts-text-light); margin-bottom: 5px; }
.tt2-booking-card .cts-wc-input,
.tt2-booking-card select {
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid var(--cts-border);
	border-radius: 8px;
	font-size: 14px;
	color: var(--cts-text);
	background: #fff;
}
.tt2-booking-card .cts-wc-input:focus { outline: none; border-color: var(--cts-primary-light); }
.tt2-booking-card .cts-wc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tt2-booking-card .cts-wc-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	background: var(--cts-bg-light);
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--cts-primary);
}
.tt2-booking-card .cts-wc-add-cart,
.tt2-booking-card .cts-btn-book {
	width: 100%;
	padding: 13px;
	border: none;
	border-radius: 8px;
	background: var(--cts-accent);
	color: #1a2b26;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: var(--cts-transition);
}
.tt2-booking-card .cts-wc-add-cart:hover { background: var(--cts-accent-hover); }
.tt2-booking-card .cts-booking-info { display: grid; gap: 6px; margin-bottom: 14px; }
.tt2-booking-card .cts-booking-info-row {
	display: flex;
	justify-content: space-between;
	font-size: 13.5px;
	color: var(--cts-text-light);
}
.tt2-booking-card .cts-booking-info-row strong { color: var(--cts-text); }
.tt2-booking-card > .tt2-btn { margin-top: 10px; }
.tt2-whatsapp svg { color: #25d366; }
.tt2-booking-perks { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px dashed var(--cts-border); display: grid; gap: 10px; }
.tt2-booking-perks li {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--cts-text-light);
}
.tt2-booking-perks svg { color: var(--cts-primary-light); flex: none; margin-top: 1px; }
.tt2-booking-card .cts-booking-note { font-size: 12px; color: var(--cts-text-light); text-align: center; margin: 10px 0 0; }

/* ---------- Bottom CTA ---------- */
.tt2-bottom-cta {
	background: linear-gradient(120deg, var(--cts-primary-dark), var(--cts-primary-light));
	color: #fff;
	padding: 54px 0;
}
.tt2-bottom-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.tt2-bottom-cta h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(22px, 3vw, 32px);
	margin: 0 0 6px;
}
.tt2-bottom-cta p { margin: 0; opacity: 0.85; font-size: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.tt2-facts { grid-template-columns: repeat(3, 1fr); }
	.tt2-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; }
}
@media (max-width: 980px) {
	.tt2-layout { grid-template-columns: 1fr; }
	.tt2-sidebar { position: static; }
	.tt2-highlights { grid-template-columns: repeat(2, 1fr); }
	.tt2-hero { min-height: 480px; }
	.tt2-nav-cta { display: none; }
}
@media (max-width: 640px) {
	.tt2-facts { grid-template-columns: repeat(2, 1fr); }
	.tt2-highlights { grid-template-columns: 1fr; }
	.tt2-reviews { grid-template-columns: 1fr; }
	.tt2-incexc { grid-template-columns: 1fr; }
	.tt2-hero { min-height: 440px; }
	.tt2-hero-inner { padding-top: 90px; }
	.tt2-hero-price strong { font-size: 28px; }
	.tt2-timeline { padding-left: 26px; }
	.tt2-timeline::before { left: 11px; }
	.tt2-day-num { left: -26px; width: 24px; height: 24px; font-size: 9px; }
	.tt2-dep-table-wrap { overflow-x: auto; }
	.tt2-dep-table { min-width: 640px; }
	.tt2-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================================================== */
/* Reference-inspired product layout (2026-09)                                */
/* ========================================================================== */
.cts-tour-v2 {
	--tt-green: #2f6338;
	--tt-green-dark: #214a2a;
	--tt-green-soft: #f3f7ed;
	--tt-line: #dde4d7;
	--tt-ink: #1d261f;
	--tt-muted: #6e786f;
	--tt-gold: #f7b733;
	background: #fff;
	color: var(--tt-ink);
}
.cts-tour-v2 .tt2-container { max-width: 1180px; padding-left: 24px; padding-right: 24px; }
.cts-tour-v2 .tt2-hero { display: none; }

.tt2-product { padding: 18px 0 0; background: #fff; }
.tt2-product-breadcrumb { display: flex; align-items: center; gap: 12px; min-height: 34px; margin-bottom: 14px; color: #778078; font-size: 13px; white-space: nowrap; overflow: hidden; }
.tt2-product-breadcrumb a { color: #526056; text-decoration: none; }
.tt2-product-breadcrumb a:hover { color: var(--tt-green); }
.tt2-product-breadcrumb strong { overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.tt2-product-grid { display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(360px, 1fr); gap: 34px; align-items: stretch; }
.tt2-product-gallery { min-width: 0; }
.tt2-product-main-image { position: relative; height: 364px; overflow: hidden; border-radius: 14px; background: #e8eee7; }
.tt2-product-main-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.tt2-photo-count { position: absolute; top: 14px; right: 14px; padding: 8px 13px; border-radius: 999px; color: #263028; background: rgba(255,255,255,.94); box-shadow: 0 2px 10px rgba(0,0,0,.08); font-size: 12px; font-weight: 600; }
.tt2-product-thumbs { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin-top: 10px; }
.tt2-product-thumb { height: 104px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 10px; background: #edf1eb; cursor: pointer; }
.tt2-product-thumb.is-active { border-color: var(--tt-green); box-shadow: 0 0 0 2px #fff inset; }
.tt2-product-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }

.tt2-product-card { display: flex; flex-direction: column; padding: 25px 26px 20px; border: 1px solid var(--tt-line); border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(27,55,31,.04); }
.tt2-product-kicker { align-self: flex-start; padding: 6px 11px; border-radius: 999px; color: var(--tt-green); background: var(--tt-green-soft); font-size: 12px; font-weight: 700; }
.tt2-product-card h1 { margin: 13px 0 8px; color: #111812; font-family: inherit; font-size: clamp(28px, 2.5vw, 39px); line-height: 1.13; letter-spacing: -.02em; }
.tt2-product-intro { min-height: 44px; margin: 0 0 17px; color: var(--tt-muted); font-size: 14px; line-height: 1.55; }
.tt2-product-intro p { margin: 0; }
.tt2-product-price-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; padding: 15px 0; border-top: 1px solid #edf0eb; border-bottom: 1px solid #edf0eb; }
.tt2-product-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 5px; color: #7c857d; }
.tt2-product-price small { width: 100%; color: #727b73; font-size: 11px; }
.tt2-product-price strong { color: #c94724; font-size: 29px; line-height: 1; }
.tt2-product-price span { font-size: 12px; }
.tt2-product-rating { display: grid; grid-template-columns: auto auto; gap: 2px 9px; color: #4d574e; text-decoration: none; }
.tt2-product-rating span { color: #ffad16; font-size: 15px; letter-spacing: 1px; }
.tt2-product-rating strong { font-size: 13px; }
.tt2-product-rating small { grid-column: 1 / -1; color: #7b847c; font-size: 11px; }
.tt2-product-quickfacts { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin: 13px 0 15px; }
.tt2-product-quickfacts > div { display: grid; justify-items: center; gap: 2px; padding: 2px 7px; border-right: 1px solid #e7ebe5; text-align: center; }
.tt2-product-quickfacts > div:last-child { border-right: 0; }
.tt2-product-quickfacts span { color: var(--tt-green); font-size: 21px; line-height: 1; }
.tt2-product-quickfacts small { color: #8a938a; font-size: 10px; }
.tt2-product-quickfacts strong { color: #3f4841; font-size: 11px; line-height: 1.25; }
.tt2-product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: auto; }
.tt2-product-actions a { display: flex; align-items: center; justify-content: center; min-height: 46px; border-radius: 6px; font-size: 14px; font-weight: 700; text-decoration: none; }
.tt2-product-primary { border: 1px solid var(--tt-gold); color: #24301f; background: var(--tt-gold); }
.tt2-product-primary:hover { background: #ffc54c; }
.tt2-product-secondary { border: 1px solid #90a88d; color: var(--tt-green); background: #fff; }
.tt2-product-promises { display: flex; justify-content: space-between; gap: 8px; margin-top: 14px; color: #778078; font-size: 10px; }

.tt2-summary-strip { display: grid; grid-template-columns: 1.35fr repeat(5, 1fr); align-items: center; margin: 24px 0 18px; padding: 18px 16px; border: 1px solid #cbd8bd; border-radius: 12px; background: linear-gradient(90deg,#f6f9f0,#fbfcf8); }
.tt2-summary-strip h2 { margin: 0; color: var(--tt-green-dark); font-family: inherit; font-size: 21px; }
.tt2-summary-strip > div { display: grid; grid-template-columns: 31px 1fr; grid-template-rows: auto auto; column-gap: 8px; padding: 0 14px; border-left: 1px solid #dce4d5; }
.tt2-summary-strip span { grid-row: 1 / 3; align-self: center; color: var(--tt-green); font-size: 25px; }
.tt2-summary-strip small { color: #899188; font-size: 10px; }
.tt2-summary-strip strong { color: #405044; font-size: 11px; line-height: 1.3; }

.cts-tour-v2 .tt2-nav { top: 0; border-color: #e6ebe4; background: rgba(255,255,255,.96); box-shadow: none; backdrop-filter: blur(8px); }
.cts-tour-v2 .tt2-nav-inner { min-height: 52px; justify-content: flex-start; gap: 38px; }
.cts-tour-v2 .tt2-nav-link { position: relative; padding: 17px 0 14px; color: #4e5a50; font-size: 13px; font-weight: 600; }
.cts-tour-v2 .tt2-nav-link::after { height: 3px; background: var(--tt-green); }
.cts-tour-v2 .tt2-nav-cta { margin-left: auto; border-radius: 5px; color: #fff; background: var(--tt-green); font-size: 12px; }

.cts-tour-v2 .tt2-layout { grid-template-columns: minmax(0, 1fr) 270px; gap: 34px; padding-top: 18px; padding-bottom: 28px; }
.cts-tour-v2 .tt2-content { min-width: 0; }
.cts-tour-v2 .tt2-section { margin: 0 0 22px; padding: 0 0 22px; border-bottom: 1px solid #e8ece7; }
.cts-tour-v2 .tt2-h2 { margin: 0 0 14px; color: #243128; font-family: inherit; font-size: 21px; }
.cts-tour-v2 .tt2-h2::after { display: none; }
.cts-tour-v2 .tt2-intro { margin: 0 0 15px; color: #677169; font-size: 14px; line-height: 1.65; }
.cts-tour-v2 .tt2-facts { grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 10px; }
.cts-tour-v2 .tt2-fact { min-height: 82px; padding: 13px 11px; border: 1px solid #e2e7df; border-radius: 10px; background: #fff; box-shadow: none; }
.cts-tour-v2 .tt2-fact-icon { color: var(--tt-green); background: var(--tt-green-soft); }
.cts-tour-v2 .tt2-fact-label { color: #879087; font-size: 10px; }
.cts-tour-v2 .tt2-fact-value { color: #344037; font-size: 11px; }
.cts-tour-v2 .tt2-gallery { display: none; }

.cts-tour-v2 .tt2-highlights { grid-template-columns: repeat(4,1fr); gap: 10px; }
.cts-tour-v2 .tt2-highlight { min-height: 128px; padding: 16px 13px; border: 1px solid #e0e6dd; border-radius: 12px; background: #fff; box-shadow: none; }
.cts-tour-v2 .tt2-highlight-icon { width: 38px; height: 38px; color: var(--tt-green); background: var(--tt-green-soft); }
.cts-tour-v2 .tt2-highlight-title { margin-top: 10px; color: #344137; font-size: 13px; }
.cts-tour-v2 .tt2-highlight-desc { color: #788179; font-size: 11px; line-height: 1.45; }

.cts-tour-v2 .tt2-timeline { padding-left: 0; }
.cts-tour-v2 .tt2-timeline::before { display: none; }
.cts-tour-v2 .tt2-day { margin: 0 0 10px; overflow: hidden; border: 1px solid #e1e6df; border-radius: 10px; background: #fff; }
.cts-tour-v2 .tt2-day-head { min-height: 68px; padding: 12px 46px 12px 72px; background: #fff; }
.cts-tour-v2 .tt2-day-num { left: 0; top: 0; width: 58px; height: 100%; border-radius: 0; color: #fff; background: #4a744d; transform: none; font-size: 11px; }
.cts-tour-v2 .tt2-day-title { color: #344038; font-size: 14px; }
.cts-tour-v2 .tt2-day-time { color: #879087; font-size: 10px; }
.cts-tour-v2 .tt2-day-toggle { right: 18px; color: var(--tt-green); }
.cts-tour-v2 .tt2-day-body { padding: 0 18px 13px 72px; }
.cts-tour-v2 .tt2-day-desc { color: #677169; font-size: 12px; line-height: 1.5; }
.cts-tour-v2 .tt2-chip { border-color: #d8e1d1; color: #507052; background: #f3f8ef; font-size: 10px; }
.cts-tour-v2 .tt2-day-img { max-height: 180px; border-radius: 8px; }

.cts-tour-v2 .tt2-incexc { gap: 18px; }
.cts-tour-v2 .tt2-inc, .cts-tour-v2 .tt2-exc { padding: 18px; border: 1px solid #e1e6df; border-radius: 11px; background: #fff; }
.cts-tour-v2 .tt2-notes { border-color: #d7e0cc; background: #f5f8f0; }
.cts-tour-v2 .tt2-faq-item { border-color: #e2e7df; border-radius: 8px; }
.cts-tour-v2 .tt2-faq-q { color: #39463c; font-size: 13px; }
.cts-tour-v2 .tt2-reviews { gap: 12px; }
.cts-tour-v2 .tt2-review { border: 1px solid #e1e6df; border-radius: 11px; box-shadow: none; }
.cts-tour-v2 .tt2-review-stars { color: #ffad16; }

.cts-tour-v2 .tt2-sidebar { top: 72px; }
.cts-tour-v2 .tt2-booking-card { padding: 18px; border: 1px solid #dfe5dc; border-radius: 12px; box-shadow: 0 8px 24px rgba(39,71,42,.06); }
.cts-tour-v2 .tt2-booking-title { margin: 0 0 13px; color: var(--tt-green-dark); font-family: inherit; font-size: 18px; font-weight: 700; }
.cts-tour-v2 .tt2-booking-card,
.cts-tour-v2 .tt2-booking-card * { box-sizing: border-box; }
.cts-tour-v2 .tt2-booking-card,
.cts-tour-v2 .cts-wc-booking-card,
.cts-tour-v2 .cts-wc-booking-form,
.cts-tour-v2 .cts-wc-field { width: 100%; min-width: 0; max-width: 100%; }
.cts-tour-v2 .tt2-booking-card .cts-wc-field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); min-width: 0; }
.cts-tour-v2 .tt2-booking-card .cts-wc-counter { display: flex; width: 100%; min-width: 0; }
.cts-tour-v2 .tt2-booking-card .cts-wc-counter-btn { width: 32px; min-width: 32px; padding: 0; }
.cts-tour-v2 .tt2-booking-card .cts-wc-counter-input { flex: 1 1 auto; width: 1px; min-width: 0; padding-left: 2px; padding-right: 2px; }
.cts-tour-v2 .tt2-booking-card .cts-btn-block,
.cts-tour-v2 .tt2-booking-card .tt2-btn-block { display: flex; width: 100%; max-width: 100%; justify-content: center; }
.cts-tour-v2 .tt2-booking-card .cts-wc-add-to-cart { min-height: 46px; margin: 0; padding: 12px 14px; border-radius: 7px; white-space: normal; }
.cts-tour-v2 .tt2-booking-card .cts-wc-view-cart { margin-top: 10px; }
/* The theme already renders an editable WhatsApp action and three perks below
 * the booking form. Hide the shortcode duplicates inside this template only. */
.cts-tour-v2 .tt2-booking-card .cts-wc-booking-card > .cts-wc-whatsapp,
.cts-tour-v2 .tt2-booking-card .cts-wc-booking-card > .cts-booking-note { display: none; }
.cts-tour-v2 .tt2-booking-card > .tt2-whatsapp { margin-top: 14px; }
.cts-tour-v2 .tt2-btn-accent { border-color: var(--tt-gold); color: #263023; background: var(--tt-gold); }
.cts-tour-v2 .tt2-btn-outline { border-color: #9cb39a; color: var(--tt-green); }
.cts-tour-v2 .tt2-booking-perks { color: #687268; font-size: 11px; }
.cts-tour-v2 .tt2-booking-perks svg { color: var(--tt-green); }
.cts-tour-v2 .tt2-bottom-cta { padding: 24px 0; color: #223221; background: #dcebc7; }
.cts-tour-v2 .tt2-bottom-cta h2 { color: #203321; font-family: inherit; font-size: 23px; }

@media (max-width: 1080px) {
	.tt2-product-grid { grid-template-columns: minmax(0,1.4fr) minmax(340px,1fr); gap: 22px; }
	.tt2-product-main-image { height: 330px; }
	.tt2-product-thumb { height: 88px; }
	.tt2-summary-strip { grid-template-columns: 1fr repeat(3,1fr); row-gap: 16px; }
	.tt2-summary-strip > div:nth-of-type(4) { border-left: 0; }
	.cts-tour-v2 .tt2-highlights { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 880px) {
	.tt2-product-grid { grid-template-columns: 1fr; }
	.tt2-product-main-image { height: 420px; }
	.tt2-product-card { min-height: 0; }
	.cts-tour-v2 .tt2-layout { grid-template-columns: 1fr; }
	.cts-tour-v2 .tt2-sidebar { position: static; }
	.cts-tour-v2 .tt2-nav-inner { gap: 24px; overflow-x: auto; }
	.cts-tour-v2 .tt2-nav-link { white-space: nowrap; }
}
@media (max-width: 640px) {
	.cts-tour-v2 .tt2-container { padding-left: 16px; padding-right: 16px; }
	.tt2-product { padding-top: 8px; }
	.tt2-product-breadcrumb { margin-bottom: 8px; }
	.tt2-product-main-image { height: 265px; border-radius: 10px; }
	.tt2-product-thumbs { gap: 6px; }
	.tt2-product-thumb { height: 62px; border-radius: 7px; }
	.tt2-product-card { padding: 20px 17px 16px; border-radius: 12px; }
	.tt2-product-card h1 { font-size: 28px; }
	.tt2-product-price-row { grid-template-columns: 1fr; gap: 10px; }
	.tt2-product-rating { grid-template-columns: auto 1fr; }
	.tt2-product-quickfacts { grid-template-columns: repeat(2,1fr); gap: 12px 0; }
	.tt2-product-quickfacts > div:nth-child(2) { border-right: 0; }
	.tt2-product-actions { grid-template-columns: 1fr; }
	.tt2-product-promises { flex-wrap: wrap; }
	.tt2-summary-strip { grid-template-columns: 1fr 1fr; padding: 16px; }
	.tt2-summary-strip h2 { grid-column: 1 / -1; }
	.tt2-summary-strip > div { border-left: 0; padding: 8px 6px; }
	.cts-tour-v2 .tt2-nav-cta { display: none; }
	.cts-tour-v2 .tt2-facts, .cts-tour-v2 .tt2-highlights { grid-template-columns: 1fr 1fr; }
	.cts-tour-v2 .tt2-day-head { padding-left: 66px; }
	.cts-tour-v2 .tt2-day-body { padding-left: 66px; }
	.cts-tour-v2 .tt2-booking-card .cts-wc-field-row { grid-template-columns: 1fr; }
}
