/*
Theme Name: Zentrek Travels
Theme URI: https://zentrektravels.com
Author: Zentrek Travels
Description: Custom theme for Zentrek Travels — a Himachal Pradesh travel agency. Built with plain PHP templates and WP Travel Engine, no page builder.
Version: 1.0.0
Text Domain: zentrek-travels
*/

/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--zt-text);
	background: var(--zt-bg);
	line-height: 1.6;
	font-size: 16px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5em;
	font-weight: 700;
	line-height: 1.25;
	color: var(--zt-heading);
}

p {
	margin: 0 0 1em;
}

button {
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
	--zt-primary: #1c5f8a;
	--zt-primary-dark: #144a6b;
	--zt-accent: #f5820a;
	--zt-accent-dark: #d96e00;
	--zt-navy: #0f2436;
	--zt-navy-light: #16324a;
	--zt-bg: #f7f8f6;
	--zt-bg-alt: #eef2f0;
	--zt-white: #ffffff;
	--zt-text: #3c4a52;
	--zt-heading: #102c3f;
	--zt-muted: #6b7c85;
	--zt-border: #e3e8e6;
	--zt-star: #f5a623;
	--zt-radius: 14px;
	--zt-radius-sm: 8px;
	--zt-shadow: 0 10px 30px rgba(15, 36, 54, 0.08);
	--zt-shadow-lg: 0 20px 50px rgba(15, 36, 54, 0.16);
	--zt-container: 1320px;
}

/* ==========================================================================
   Layout utilities
   ========================================================================== */

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

.zt-section {
	padding: 88px 0;
}

.zt-section--alt {
	background: var(--zt-bg-alt);
}

.zt-section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 48px;
}

.zt-eyebrow {
	display: inline-block;
	color: var(--zt-accent);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.zt-section-head h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 14px;
}

.zt-section-head p {
	color: var(--zt-muted);
	font-size: 1.05rem;
	margin: 0;
}

.zt-section-head-link {
	color: inherit;
	transition: color 0.15s ease;
}

.zt-section-head-link:hover {
	color: var(--zt-primary);
}

.zt-grid {
	display: grid;
	gap: 28px;
}

.zt-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.zt-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.zt-grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 980px) {
	.zt-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.zt-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 620px) {
	.zt-grid--4,
	.zt-grid--3,
	.zt-grid--2 {
		grid-template-columns: 1fr;
	}
	.zt-section {
		padding: 56px 0;
	}
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.zt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.98rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.zt-btn:hover {
	transform: translateY(-2px);
}

.zt-btn--accent {
	background: var(--zt-accent);
	color: #fff;
	box-shadow: 0 10px 24px rgba(245, 130, 10, 0.35);
}

.zt-btn--accent:hover {
	background: var(--zt-accent-dark);
	color: #fff;
}

.zt-btn--primary {
	background: var(--zt-primary);
	color: #fff;
	box-shadow: 0 10px 24px rgba(28, 95, 138, 0.3);
}

.zt-btn--primary:hover {
	background: var(--zt-primary-dark);
	color: #fff;
}

.zt-btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.zt-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.zt-btn--outline-dark {
	background: transparent;
	border-color: var(--zt-primary);
	color: var(--zt-primary);
}

.zt-btn--outline-dark:hover {
	background: var(--zt-primary);
	color: #fff;
}

.zt-btn--sm {
	padding: 10px 20px;
	font-size: 0.9rem;
}

.zt-btn--block {
	width: 100%;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.zt-site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--zt-border);
}

.zt-header-inner {
	max-width: var(--zt-container);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.zt-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--zt-heading);
	flex-shrink: 0;
}

.zt-logo img {
	max-height: 53px; /* +15% from 46px */
	width: auto;
}

.zt-logo strong {
	color: var(--zt-accent);
}

.zt-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.zt-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--zt-heading);
	margin: 5px 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.zt-primary-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.zt-primary-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}

.zt-primary-nav a {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--zt-text);
	transition: background 0.15s ease, color 0.15s ease;
}

.zt-primary-nav a:hover {
	background: var(--zt-bg-alt);
	color: var(--zt-primary);
}

.zt-header-cta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

@media (max-width: 980px) {
	.zt-nav-toggle {
		display: block;
	}

	.zt-primary-nav {
		position: fixed;
		inset: 70px 0 0 0;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 20px 24px;
		gap: 4px;
		transform: translateY(-8px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;
		overflow-y: auto;
	}

	.zt-primary-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.zt-primary-nav a {
		padding: 14px 16px;
	}

	.zt-site-header.is-nav-open .zt-primary-nav {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	.zt-header-cta a.zt-btn--outline-dark {
		display: none;
	}

	.zt-header-cta .zt-btn--sm {
		padding: 10px 16px;
		font-size: 0.82rem;
	}
}

@media (max-width: 480px) {
	.zt-header-cta {
		gap: 6px;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */

.zt-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	color: #fff;
	background: linear-gradient(180deg, rgba(10, 26, 40, 0.35), rgba(10, 26, 40, 0.75)), var(--zt-hero-image, linear-gradient(135deg, #163a52, #0f2436)) center/cover no-repeat;
	text-align: center;
	overflow: hidden;
}

.zt-hero-inner {
	position: relative;
	max-width: 780px;
	margin: 0 auto;
	padding: 60px 24px;
}

.zt-hero-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 18px;
}

.zt-hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	color: #fff;
	margin-bottom: 18px;
}

.zt-hero h1 span {
	color: var(--zt-accent);
}

.zt-hero p {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 560px;
	margin: 0 auto 34px;
}

.zt-hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ==========================================================================
   Why choose us
   ========================================================================== */

.zt-feature-card {
	background: #fff;
	border-radius: var(--zt-radius);
	padding: 32px 26px;
	text-align: left;
	box-shadow: var(--zt-shadow);
	border: 1px solid var(--zt-border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zt-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--zt-shadow-lg);
}

.zt-feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(28, 95, 138, 0.1);
	color: var(--zt-primary);
	margin-bottom: 18px;
}

.zt-feature-icon svg {
	width: 28px;
	height: 28px;
}

.zt-feature-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.zt-feature-card p {
	color: var(--zt-muted);
	font-size: 0.95rem;
	margin: 0;
}

/* ==========================================================================
   Popular destination (merged section)
   ========================================================================== */

.zt-destination-intro {
	max-width: 820px;
	margin: 0 auto 48px;
	text-align: center;
	color: var(--zt-text);
	font-size: 1.05rem;
}

.zt-dest-tile {
	position: relative;
	border-radius: var(--zt-radius);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: var(--zt-shadow);
	display: block;
}

.zt-dest-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.zt-dest-tile:hover img {
	transform: scale(1.08);
}

.zt-dest-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 36, 54, 0) 40%, rgba(15, 36, 54, 0.85));
}

.zt-dest-tile-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	color: #fff;
	z-index: 1;
}

.zt-dest-tile-label strong {
	display: block;
	font-size: 1.1rem;
}

.zt-dest-tile-label span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
}

.zt-destination-actions {
	text-align: center;
	margin-top: 44px;
}

/* ==========================================================================
   Trip card pricing (WP Travel Engine)
   ========================================================================== */

.zt-trip-grid .actual-price {
	font-weight: 800;
}

/* ==========================================================================
   Testimonials / Google Reviews
   ========================================================================== */

.zt-stars {
	color: var(--zt-star);
	font-size: 1rem;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.zt-google-reviews {
	max-width: 100%;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.zt-cta-banner {
	background: linear-gradient(120deg, var(--zt-primary), #2a7fb0 60%, var(--zt-primary-dark));
	border-radius: 28px;
	color: #fff;
	padding: 72px 56px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 40px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--zt-shadow-lg);
}

.zt-cta-banner-content h2 {
	color: #fff;
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	margin-bottom: 16px;
}

.zt-cta-banner-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 480px;
}

.zt-cta-banner-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.zt-cta-banner-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.zt-cta-banner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 280px;
}

@media (max-width: 860px) {
	.zt-cta-banner {
		grid-template-columns: 1fr;
		padding: 48px 28px;
		text-align: center;
	}
	.zt-cta-banner-content p {
		margin-left: auto;
		margin-right: auto;
	}
	.zt-cta-banner-actions {
		justify-content: center;
	}
}

/* ==========================================================================
   Contact teaser
   ========================================================================== */

.zt-contact-teaser {
	text-align: center;
	background: #fff;
	border: 1px solid var(--zt-border);
	border-radius: var(--zt-radius);
	padding: 56px 32px;
	box-shadow: var(--zt-shadow);
}

.zt-contact-teaser h2 {
	margin-bottom: 12px;
}

.zt-contact-teaser p {
	color: var(--zt-muted);
	max-width: 520px;
	margin: 0 auto 28px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.zt-site-footer {
	background: var(--zt-navy);
	color: rgba(255, 255, 255, 0.78);
	padding: 72px 0 0;
}

.zt-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
	gap: 36px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zt-footer-col h4 {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 18px;
	letter-spacing: 0.02em;
}

.zt-footer-col p {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.65);
}

.zt-footer-col ul li {
	margin-bottom: 10px;
}

.zt-footer-col ul a {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.15s ease;
}

.zt-footer-col ul a:hover {
	color: var(--zt-accent);
}

.zt-footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	font-weight: 800;
	font-size: 1.15rem;
	color: #fff;
}

.zt-footer-logo img {
	max-height: 40px;
	width: auto;
}

.zt-social-icons {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.zt-social-icons a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, transform 0.15s ease;
}

.zt-social-icons a:hover {
	background: var(--zt-accent);
	transform: translateY(-2px);
}

.zt-social-icons svg {
	width: 17px;
	height: 17px;
	fill: #fff;
}

.zt-footer-review-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--zt-radius-sm);
	padding: 18px;
}

.zt-footer-review-card .zt-stars {
	margin-bottom: 8px;
}

.zt-footer-review-card p {
	font-size: 0.88rem;
	margin-bottom: 14px;
}

.zt-footer-bottom {
	max-width: var(--zt-container);
	margin: 0 auto;
	padding: 22px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	flex-wrap: wrap;
}

.zt-footer-bottom a {
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
	.zt-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.zt-footer-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */

.zt-whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
	z-index: 70;
	transition: transform 0.15s ease;
}

.zt-whatsapp-float:hover {
	transform: scale(1.08);
}

.zt-whatsapp-float svg {
	width: 30px;
	height: 30px;
	fill: #fff;
}

/* ==========================================================================
   Enquiry popup modal
   ========================================================================== */

.zt-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

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

.zt-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 22, 33, 0.65);
}

.zt-modal-box {
	position: relative;
	background: #fff;
	border-radius: var(--zt-radius);
	max-width: 520px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px 32px 32px;
	box-shadow: var(--zt-shadow-lg);
}

.zt-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: var(--zt-bg-alt);
	color: var(--zt-heading);
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zt-modal-close:hover {
	background: var(--zt-border);
}

.zt-modal-box h3 {
	font-size: 1.3rem;
	margin-bottom: 6px;
}

.zt-modal-box > p {
	color: var(--zt-muted);
	margin-bottom: 20px;
	font-size: 0.92rem;
}

/* ==========================================================================
   WP Travel Engine form styling (enquiry form used in modal + contact page)
   ========================================================================== */

.wte_enquiry_contact_form-wrap .enquiry-form-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--zt-heading);
	margin-bottom: 16px;
}

.wte_enquiry_contact_form-wrap form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wte_enquiry_contact_form-wrap input[type="text"],
.wte_enquiry_contact_form-wrap input[type="email"],
.wte_enquiry_contact_form-wrap input[type="tel"],
.wte_enquiry_contact_form-wrap input[type="number"],
.wte_enquiry_contact_form-wrap select,
.wte_enquiry_contact_form-wrap textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--zt-border);
	border-radius: var(--zt-radius-sm);
	background: var(--zt-bg);
	color: var(--zt-text);
}

.wte_enquiry_contact_form-wrap textarea {
	min-height: 100px;
	resize: vertical;
}

.wte_enquiry_contact_form-wrap label {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--zt-heading);
	margin-bottom: 4px;
	display: inline-block;
}

.wte_enquiry_contact_form-wrap .enquiry-submit,
.wte_enquiry_contact_form-wrap button[type="submit"] {
	background: var(--zt-accent);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 30px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease;
}

.wte_enquiry_contact_form-wrap .enquiry-submit:hover {
	background: var(--zt-accent-dark);
}

/* ==========================================================================
   Packages page — interest cards
   ========================================================================== */

.zt-interest-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 860px) {
	.zt-interest-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.zt-interest-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.zt-interest-card {
	background: #fff;
	border: 1px solid var(--zt-border);
	border-radius: var(--zt-radius);
	padding: 26px 18px;
	text-align: center;
	box-shadow: var(--zt-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zt-interest-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--zt-shadow-lg);
}

.zt-interest-icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: rgba(245, 130, 10, 0.1);
	color: var(--zt-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.zt-interest-icon svg {
	width: 26px;
	height: 26px;
}

.zt-interest-card h3 {
	font-size: 0.98rem;
	margin: 0;
}

/* ==========================================================================
   Generic page content (About / Contact / simple pages)
   ========================================================================== */

.zt-page-hero {
	background: var(--zt-navy);
	color: #fff;
	padding: 64px 0;
	text-align: center;
}

.zt-page-hero h1 {
	color: #fff;
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	margin-bottom: 10px;
}

.zt-page-hero p {
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

.zt-prose {
	max-width: 780px;
	margin: 0 auto;
	font-size: 1.02rem;
	color: var(--zt-text);
}

.zt-prose h2 {
	margin-top: 1.4em;
}

.zt-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

@media (max-width: 860px) {
	.zt-contact-grid {
		grid-template-columns: 1fr;
	}
	.zt-cta-banner {
		border-radius: 20px;
	}
}

.zt-contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.zt-contact-info-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--zt-border);
	border-radius: var(--zt-radius-sm);
	padding: 18px;
}

.zt-contact-info-item .zt-feature-icon {
	margin-bottom: 0;
	flex-shrink: 0;
}

.zt-contact-info-item strong {
	display: block;
	color: var(--zt-heading);
	margin-bottom: 2px;
}

.zt-contact-info-item span,
.zt-contact-info-item a {
	color: var(--zt-muted);
	font-size: 0.94rem;
}

.zt-contact-form-card {
	background: #fff;
	border: 1px solid var(--zt-border);
	border-radius: var(--zt-radius);
	padding: 32px;
	box-shadow: var(--zt-shadow);
}

.zt-destination-list-full {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.zt-destination-list-full a {
	display: inline-block;
	padding: 9px 18px;
	border-radius: 999px;
	background: var(--zt-bg-alt);
	color: var(--zt-heading);
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid var(--zt-border);
	transition: background 0.15s ease, color 0.15s ease;
}

.zt-destination-list-full a:hover {
	background: var(--zt-primary);
	color: #fff;
}

.zt-destination-list-full a.is-new {
	background: rgba(245, 130, 10, 0.12);
	color: var(--zt-accent-dark);
	border-color: rgba(245, 130, 10, 0.3);
}

.zt-destination-list-full a.is-new:hover {
	background: var(--zt-accent);
	color: #fff;
}

/* Packages page grid highlight wrapper */
.zt-packages-highlight {
	background: linear-gradient(135deg, rgba(28, 95, 138, 0.06), rgba(245, 130, 10, 0.06));
	border: 2px dashed rgba(28, 95, 138, 0.25);
	border-radius: 24px;
	padding: 48px 24px;
}

/* WP Travel Engine trip card overrides to fit the new design.
   IMPORTANT: never wrap [wte_trip] shortcode output in our own CSS grid —
   the plugin's own .category-main-wrap.category-grid is a flexbox with
   percentage-based card widths (flex: 0 0 33.33% etc.), so nesting it
   inside another grid/flex container shrinks its available width and
   compounds into tiny cards. Let it size against the full section width. */
.zt-trip-grid {
	margin-top: 8px;
}

.category-trips-single {
	background: #fff;
	border-radius: var(--zt-radius);
	overflow: hidden;
	border: 1px solid var(--zt-border);
	box-shadow: var(--zt-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-trips-single:hover {
	transform: translateY(-4px);
	box-shadow: var(--zt-shadow-lg);
}

.category-trip-title a {
	color: var(--zt-heading);
	font-size: 1.05rem;
}

.category-feat-ribbon {
	background: var(--zt-accent);
	color: #fff;
}

.wpte-button,
a.wpte-button {
	background: var(--zt-primary) !important;
	color: #fff !important;
	border-radius: 999px !important;
	border: none !important;
}

.wpte-button:hover {
	background: var(--zt-primary-dark) !important;
}

/* Blog */
.zt-blog-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

@media (max-width: 860px) {
	.zt-blog-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.zt-blog-list {
		grid-template-columns: 1fr;
	}
}

.zt-blog-card {
	background: #fff;
	border: 1px solid var(--zt-border);
	border-radius: var(--zt-radius);
	overflow: hidden;
	box-shadow: var(--zt-shadow);
}

.zt-blog-card img {
	aspect-ratio: 16/10;
	object-fit: cover;
}

.zt-blog-card-body {
	padding: 20px;
}

.zt-blog-card-body h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.zt-blog-card-body h3 a {
	color: var(--zt-heading);
}

.zt-blog-card-body p {
	color: var(--zt-muted);
	font-size: 0.92rem;
	margin: 0;
}

.zt-single-post {
	max-width: 780px;
	margin: 0 auto;
}

.zt-single-post .zt-featured-image {
	border-radius: var(--zt-radius);
	overflow: hidden;
	margin-bottom: 32px;
}

.zt-back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--zt-primary);
	font-weight: 600;
	margin-bottom: 20px;
}
