:root {
	--tpm-accent: #0e7c86;
	--tpm-ink: #1c2b2e;
	--tpm-muted: #6b7877;
	--tpm-border: #e7ecec;
	--tpm-bg-soft: #f7faf9;
}

* { box-sizing: border-box; }

.tpm-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 24px 16px 60px;
}

.tpm-breadcrumb { margin-bottom: 14px; }
.tpm-breadcrumb a {
	color: var(--tpm-muted);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}
.tpm-breadcrumb a:hover { color: var(--tpm-accent); }

/* Hero */
.tpm-hero img {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
	display: block;
}

/* Meta row + badges */
.tpm-meta-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin: 16px 0 6px;
	font-size: 14px;
	color: var(--tpm-muted);
	font-weight: 600;
}
.tpm-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: #fff;
}
.tpm-badge-available { background: #1e9e5a; }
.tpm-badge-fast { background: #e07b17; }
.tpm-badge-almost { background: #d64545; }
.tpm-badge-sold { background: #6b6b6b; }

.tpm-title { font-size: 32px; line-height: 1.2; margin: 8px 0 12px; color: var(--tpm-ink); }
.tpm-highlight { font-size: 16px; color: #4b5757; margin-bottom: 20px; line-height: 1.6; }

/* Trust row */
.tpm-trust-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 20px 0;
}
.tpm-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--tpm-bg-soft);
	border: 1px solid var(--tpm-border);
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 13px;
}
.tpm-trust-item span { font-size: 22px; }
.tpm-trust-item strong { display: block; font-size: 13px; color: var(--tpm-ink); }
@media (max-width: 640px) { .tpm-trust-row { grid-template-columns: 1fr; } }

/* Price block */
.tpm-price-block {
	border: 1px solid var(--tpm-border);
	border-radius: 16px;
	padding: 22px;
	margin: 24px 0 32px;
	background: linear-gradient(180deg, #fff 0%, var(--tpm-bg-soft) 100%);
	box-shadow: 0 2px 10px rgba(14, 124, 134, 0.06);
}
.tpm-price-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px dashed #dbe4e4;
}
.tpm-price-option:last-of-type { border-bottom: none; }
.tpm-price-label { display: block; font-weight: 700; color: var(--tpm-muted); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.tpm-price-value { font-size: 24px; font-weight: 800; color: var(--tpm-accent); }
.tpm-price-value small { font-size: 12px; font-weight: 500; color: #888; }

.tpm-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}
.tpm-cta-row-compact { margin-top: 0; flex: 0 0 auto; }
.tpm-btn {
	display: inline-block;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	flex: 1 1 auto;
	transition: transform .1s ease, box-shadow .1s ease;
	border: none;
	cursor: pointer;
	font-size: 15px;
}
.tpm-btn:hover { transform: translateY(-1px); }
.tpm-btn-primary { background: var(--tpm-accent); color: #fff; box-shadow: 0 4px 12px rgba(14,124,134,.25); }
.tpm-btn-outline { background: #fff; color: var(--tpm-accent); border: 2px solid var(--tpm-accent); }
.tpm-btn-whatsapp { background: #25D366; color: #fff; }
.tpm-btn-full { width: 100%; padding: 14px; font-size: 16px; }
.tpm-token-note { margin-top: 14px; font-size: 13px; color: #a15b00; background: #fff6e8; border-radius: 8px; padding: 8px 12px; }
.tpm-tcs-note { margin-top: 10px; font-size: 12px; color: #888; }

.tpm-content { margin: 24px 0; line-height: 1.7; color: #333; }

/* Flights */
.tpm-flights { display: grid; gap: 10px; margin: 14px 0 24px; }
.tpm-flight-card {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	border: 1px solid var(--tpm-border);
	background: var(--tpm-bg-soft);
	border-radius: 10px;
	padding: 14px;
	font-size: 14px;
}
.tpm-flight-card strong { color: var(--tpm-ink); }

/* Itinerary */
.tpm-itinerary { margin: 14px 0 24px; }
.tpm-day {
	border-left: 3px solid var(--tpm-accent);
	padding: 4px 0 18px 18px;
	margin-bottom: 6px;
	position: relative;
}
.tpm-day::before {
	content: '';
	position: absolute;
	left: -7px;
	top: 6px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--tpm-accent);
}
.tpm-day h3 { margin: 0 0 6px; font-size: 17px; color: var(--tpm-ink); }
.tpm-meals { font-size: 13px; color: var(--tpm-muted); }

/* Hotels */
.tpm-hotels-table-wrap { overflow-x: auto; margin: 14px 0 24px; }
.tpm-hotels-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.tpm-hotels-table th, .tpm-hotels-table td { border: 1px solid var(--tpm-border); padding: 10px; text-align: left; }
.tpm-hotels-table th { background: var(--tpm-bg-soft); color: var(--tpm-ink); }

/* Inclusions / Exclusions */
.tpm-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.tpm-inc-exc h2 { font-size: 18px; }
.tpm-inc-exc ul { padding-left: 0; list-style: none; }
.tpm-inclusions li, .tpm-exclusions li { padding: 6px 0 6px 26px; position: relative; font-size: 14px; line-height: 1.5; }
.tpm-inclusions li::before { content: '✓'; position: absolute; left: 0; color: #1e9e5a; font-weight: 800; }
.tpm-exclusions li::before { content: '✕'; position: absolute; left: 0; color: #d64545; font-weight: 800; }
@media (max-width: 640px) { .tpm-inc-exc { grid-template-columns: 1fr; } }

/* Gallery */
.tpm-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin: 14px 0 24px; }
.tpm-gallery-item { display: block; border-radius: 10px; overflow: hidden; }
.tpm-gallery-item img { width: 100%; height: 130px; object-fit: cover; display: block; transition: transform .2s ease; }
.tpm-gallery-item:hover img { transform: scale(1.05); }

/* FAQs */
.tpm-faqs { margin: 14px 0 30px; }
.tpm-faq { border-bottom: 1px solid var(--tpm-border); padding: 12px 0; }
.tpm-faq summary { cursor: pointer; font-weight: 700; color: var(--tpm-ink); }
.tpm-faq p { margin: 10px 0 0; color: #444; }

/* Why us */
.tpm-why-us { margin: 30px 0; }
.tpm-why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tpm-why-us-grid div {
	background: var(--tpm-bg-soft);
	border: 1px solid var(--tpm-border);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	color: var(--tpm-ink);
}
.tpm-why-us-grid-vertical { grid-template-columns: 1fr; }
@media (max-width: 640px) { .tpm-why-us-grid:not(.tpm-why-us-grid-vertical) { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.tpm-floating-whatsapp {
	position: fixed;
	bottom: 84px;
	right: 20px;
	background: #25D366;
	color: #fff;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0,0,0,.25);
	z-index: 999;
}

/* Sticky mobile CTA bar */
.tpm-sticky-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--tpm-border);
	padding: 10px 16px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	z-index: 998;
	box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.tpm-sticky-price span { font-size: 18px; font-weight: 800; color: var(--tpm-accent); display: block; }
.tpm-sticky-price small { font-size: 11px; color: var(--tpm-muted); }
.tpm-sticky-bar .tpm-btn { flex: 0 0 auto; padding: 10px 22px; }
@media (max-width: 720px) {
	.tpm-sticky-bar { display: flex; }
	.tpm-single { padding-bottom: 70px; }
}

/* Grid / archive */
.tpm-archive-title { text-align: center; margin-bottom: 28px; font-size: 30px; color: var(--tpm-ink); }
.tpm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.tpm-card {
	display: block;
	border: 1px solid var(--tpm-border);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: transform .15s ease, box-shadow .15s ease;
}
.tpm-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.tpm-card-img { position: relative; background: var(--tpm-bg-soft); }
.tpm-card-img img { width: 100%; height: 180px; object-fit: cover; display: block; }
.tpm-card-img .tpm-badge { position: absolute; top: 12px; left: 12px; }
.tpm-card-body { padding: 16px; }
.tpm-card-body h3 { margin: 0 0 6px; font-size: 17px; color: var(--tpm-ink); }
.tpm-card-meta { font-size: 13px; color: var(--tpm-muted); margin-bottom: 10px; }
.tpm-card-price { font-weight: 800; color: var(--tpm-accent); font-size: 16px; }
