/* =============================================================
   TourPress v2.0.0 — Frontend Styles
   Namespaced: .tourpress-* to avoid conflicts with any theme
============================================================= */

/* ---- RESET & BASE ---- */
.tourpress-single,
.tourpress-archive,
.tourpress-grid,
.tourpress-slider-wrap,
.tourpress-card {
	box-sizing: border-box;
}

.tourpress-single *,
.tourpress-archive *,
.tourpress-grid *,
.tourpress-slider-wrap *,
.tourpress-card * {
	box-sizing: inherit;
}

/* ---- CSS VARIABLES ---- */
:root {
	--tp-primary:       #1e6f9f;
	--tp-primary-dark:  #155d85;
	--tp-accent:        #f59e0b;
	--tp-accent-dark:   #d97706;
	--tp-green:         #22c55e;
	--tp-red:           #ef4444;
	--tp-text:          #1a1a2e;
	--tp-text-muted:    #64748b;
	--tp-bg:            #f8fafc;
	--tp-white:         #ffffff;
	--tp-border:        #e2e8f0;
	--tp-radius:        12px;
	--tp-radius-sm:     8px;
	--tp-shadow:        0 4px 20px rgba(0, 0, 0, 0.08);
	--tp-shadow-hover:  0 12px 40px rgba(30, 111, 159, 0.18);
	--tp-transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--tp-font:          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ---- CONTAINER ---- */
.tourpress-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* ====================================================
   TOUR CARD
==================================================== */
.tourpress-card {
	background: var(--tp-white);
	border-radius: var(--tp-radius);
	overflow: hidden;
	box-shadow: var(--tp-shadow);
	transition: var(--tp-transition);
	display: flex;
	flex-direction: column;
	font-family: var(--tp-font);
}

.tourpress-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tp-shadow-hover);
}

/* Image */
.tourpress-card__img-wrap {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--tp-border);
	text-decoration: none !important;
}

.tourpress-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tourpress-card:hover .tourpress-card__img {
	transform: scale(1.06);
}

/* Badges */
.tourpress-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--tp-accent);
	color: var(--tp-white);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 4px 10px;
	border-radius: 20px;
	line-height: 1;
	z-index: 2;
}

.tourpress-card__badge--sale {
	background: var(--tp-red);
	left: auto;
	right: 12px;
}

.tourpress-card--featured .tourpress-card__img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(30, 111, 159, 0.2) 100%);
	pointer-events: none;
}

/* Body */
.tourpress-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

/* Meta row */
.tourpress-card__meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tourpress-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--tp-text-muted);
	font-weight: 500;
}

.tourpress-card__meta-item svg {
	flex-shrink: 0;
	color: var(--tp-primary);
}

/* Title */
.tourpress-card__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--tp-text);
	margin: 0;
	line-height: 1.35;
}

.tourpress-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.tourpress-card__title a:hover {
	color: var(--tp-primary);
}

/* Excerpt */
.tourpress-card__excerpt {
	font-size: 14px;
	color: var(--tp-text-muted);
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Rating */
.tourpress-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.tourpress-star--full,
.tourpress-star--half {
	color: var(--tp-accent);
}

.tourpress-star--empty {
	color: var(--tp-border);
}

.tourpress-rating-num {
	font-size: 12px;
	color: var(--tp-text-muted);
}

/* Footer */
.tourpress-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--tp-border);
	gap: 10px;
}

.tourpress-card__price {
	display: flex;
	flex-direction: column;
}

.tourpress-card__price-old {
	font-size: 13px;
	color: var(--tp-text-muted);
	text-decoration: line-through;
}

.tourpress-card__price-current {
	font-size: 18px;
	font-weight: 800;
	color: var(--tp-primary);
}

.tourpress-card__price-current .tourpress-currency {
	font-size: 14px;
	font-weight: 700;
}

.tourpress-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--tp-primary);
	color: var(--tp-white) !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 16px;
	border-radius: var(--tp-radius-sm);
	white-space: nowrap;
	transition: var(--tp-transition);
	flex-shrink: 0;
}

.tourpress-card__btn:hover {
	background: var(--tp-primary-dark);
	transform: translateX(2px);
}

/* ====================================================
   GRID LAYOUT
==================================================== */
.tourpress-grid {
	display: grid;
	gap: 28px;
}

.tourpress-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tourpress-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tourpress-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ====================================================
   SLIDER / SWIPER
==================================================== */
.tourpress-slider-wrap {
	position: relative;
	padding: 0 0 40px;
}

.tourpress-swiper {
	overflow: hidden;
	border-radius: var(--tp-radius);
}

.tourpress-swiper .swiper-wrapper {
	align-items: stretch;
}

.tourpress-swiper .swiper-slide {
	height: auto;
}

.tourpress-swiper .swiper-slide .tourpress-card {
	height: 100%;
}

.tourpress-nav-prev,
.tourpress-nav-next {
	color: var(--tp-primary) !important;
	background: var(--tp-white);
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
	transition: var(--tp-transition) !important;
}

.tourpress-nav-prev:hover,
.tourpress-nav-next:hover {
	background: var(--tp-primary) !important;
	color: var(--tp-white) !important;
}

.tourpress-nav-prev::after,
.tourpress-nav-next::after {
	font-size: 16px !important;
	font-weight: 900 !important;
}

.tourpress-pagination .swiper-pagination-bullet {
	background: var(--tp-primary) !important;
	opacity: 0.4;
}

.tourpress-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.3);
}

/* ====================================================
   NO RESULTS
==================================================== */
.tourpress-no-results {
	text-align: center;
	padding: 60px 20px;
	color: var(--tp-text-muted);
	font-size: 15px;
}

.tourpress-no-results svg {
	display: block;
	margin: 0 auto 16px;
	opacity: 0.4;
}

/* ====================================================
   ARCHIVE PAGE
==================================================== */
.tourpress-archive {
	font-family: var(--tp-font);
}

.tourpress-archive-header {
	background: linear-gradient(135deg, var(--tp-primary) 0%, #0d4f73 100%);
	padding: 60px 0;
	margin-bottom: 48px;
}

.tourpress-archive-header__title {
	color: var(--tp-white);
	font-size: clamp(24px, 4vw, 42px);
	font-weight: 800;
	margin: 0 0 12px;
}

.tourpress-archive-header__desc {
	color: rgba(255,255,255,0.8);
	font-size: 17px;
	margin: 0;
	max-width: 600px;
}

.tourpress-archive .tourpress-container {
	padding-bottom: 60px;
}

/* Pagination */
.tourpress-pagination {
	margin-top: 48px;
	text-align: center;
}

.tourpress-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.tourpress-pagination .page-numbers a,
.tourpress-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--tp-text);
	border: 1px solid var(--tp-border);
	transition: var(--tp-transition);
}

.tourpress-pagination .page-numbers a:hover,
.tourpress-pagination .page-numbers .current {
	background: var(--tp-primary);
	color: var(--tp-white);
	border-color: var(--tp-primary);
}

/* ====================================================
   SINGLE TOUR PAGE
==================================================== */
.tourpress-single {
	font-family: var(--tp-font);
	color: var(--tp-text);
}

/* --- HERO --- */
.tourpress-hero {
	position: relative;
	min-height: 480px;
	background: linear-gradient(135deg, var(--tp-primary) 0%, #0a3d5c 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding-bottom: 48px;
}

.tourpress-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.tourpress-hero__inner {
	position: relative;
	z-index: 1;
}

.tourpress-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.tourpress-breadcrumb a {
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: color 0.2s;
}

.tourpress-breadcrumb a:hover {
	color: var(--tp-white);
}

.tourpress-hero__title {
	color: var(--tp-white);
	font-size: clamp(24px, 4vw, 46px);
	font-weight: 800;
	margin: 0 0 20px;
	line-height: 1.2;
	text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.tourpress-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.tourpress-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255,255,255,0.9);
	font-size: 14px;
	font-weight: 500;
}

.tourpress-hero__meta-item .tourpress-star--full,
.tourpress-hero__meta-item .tourpress-star--half {
	color: var(--tp-accent);
}

.tourpress-hero__meta-item .tourpress-star--empty {
	color: rgba(255,255,255,0.3);
}

/* --- LAYOUT --- */
.tourpress-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 40px;
	padding-top: 48px;
	padding-bottom: 80px;
	align-items: start;
}

.tourpress-main {
	min-width: 0;
}

.tourpress-sidebar {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* --- SECTIONS --- */
.tourpress-section {
	background: var(--tp-white);
	border-radius: var(--tp-radius);
	padding: 32px;
	margin-bottom: 28px;
	box-shadow: var(--tp-shadow);
}

.tourpress-section:last-child {
	margin-bottom: 0;
}

.tourpress-section__title {
	font-size: 20px;
	font-weight: 800;
	color: var(--tp-text);
	margin: 0 0 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--tp-border);
	position: relative;
}

.tourpress-section__title span {
	position: relative;
}

.tourpress-section__title span::after {
	content: '';
	position: absolute;
	bottom: -18px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--tp-primary);
}

/* --- HIGHLIGHTS --- */
.tourpress-highlights__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

.tourpress-highlights__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--tp-text);
	line-height: 1.5;
}

.tourpress-highlights__item svg {
	flex-shrink: 0;
	color: var(--tp-green);
	margin-top: 2px;
}

/* --- CONTENT --- */
.tourpress-content {
	font-size: 15px;
	line-height: 1.8;
	color: var(--tp-text);
}

.tourpress-content h2,
.tourpress-content h3 {
	color: var(--tp-primary);
}

.tourpress-content p {
	margin: 0 0 16px;
}

/* --- GALLERY --- */
.tourpress-gallery-section .tourpress-section__title {
	margin-bottom: 20px;
}

.tourpress-gallery-swiper {
	border-radius: var(--tp-radius-sm);
	overflow: hidden;
}

.tourpress-gallery-slide {
	aspect-ratio: 16 / 9;
}

.tourpress-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.tourpress-gallery-link:hover .tourpress-gallery-img {
	transform: scale(1.03);
}

/* --- ITINERARY --- */
.tourpress-itinerary__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tourpress-itinerary__item {
	display: flex;
	gap: 20px;
	position: relative;
	padding-bottom: 28px;
}

.tourpress-itinerary__item:last-child {
	padding-bottom: 0;
}

.tourpress-itinerary__item:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 48px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--tp-primary) 0%, var(--tp-border) 100%);
}

.tourpress-itinerary__day-badge {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 100%);
	color: var(--tp-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.1;
	box-shadow: 0 4px 12px rgba(30, 111, 159, 0.35);
}

.tourpress-itinerary__day-badge strong {
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
}

.tourpress-itinerary__content {
	flex: 1;
	min-width: 0;
	padding-top: 8px;
}

.tourpress-itinerary__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--tp-text);
	margin: 0 0 8px;
}

.tourpress-itinerary__desc {
	font-size: 14px;
	color: var(--tp-text-muted);
	line-height: 1.7;
	margin: 0;
}

/* --- INCLUSIONS --- */
.tourpress-inclusions__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.tourpress-inclusions__heading {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--tp-text);
}

.tourpress-inclusions__heading--in svg { color: var(--tp-green); }
.tourpress-inclusions__heading--ex svg { color: var(--tp-red); }

.tourpress-inclusions__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tourpress-inclusions__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--tp-text);
	line-height: 1.5;
}

.tourpress-inclusions__list li svg {
	flex-shrink: 0;
	margin-top: 2px;
}

/* --- VISA --- */
.tourpress-visa__body {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #f0f9ff;
	border-radius: var(--tp-radius-sm);
	padding: 20px;
	border-left: 4px solid var(--tp-primary);
}

.tourpress-visa__icon {
	flex-shrink: 0;
	color: var(--tp-primary);
}

.tourpress-visa__body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
}

/* --- FAQ --- */
.tourpress-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tourpress-faq__item {
	border: 1px solid var(--tp-border);
	border-radius: var(--tp-radius-sm);
	overflow: hidden;
}

.tourpress-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	text-align: left;
	padding: 16px 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: var(--tp-text);
	transition: background 0.2s;
	font-family: var(--tp-font);
}

.tourpress-faq__question:hover,
.tourpress-faq__question[aria-expanded="true"] {
	background: #f0f9ff;
}

.tourpress-faq__icon {
	flex-shrink: 0;
	color: var(--tp-primary);
	transition: transform 0.3s;
}

.tourpress-faq__question[aria-expanded="true"] .tourpress-faq__icon {
	transform: rotate(180deg);
}

.tourpress-faq__answer {
	padding: 0 20px 20px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--tp-text-muted);
}

.tourpress-faq__answer[hidden] {
	display: none;
}

/* --- INQUIRY FORM --- */
.tourpress-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 18px;
	border-radius: var(--tp-radius-sm);
	font-size: 14px;
	margin-bottom: 20px;
}

.tourpress-notice--success {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.tourpress-notice--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.tourpress-inquiry__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tourpress-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.tourpress-form__group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tourpress-form__group label {
	font-size: 13px;
	font-weight: 600;
	color: var(--tp-text);
}

.tourpress-form__group label span {
	color: var(--tp-red);
}

.tourpress-inquiry__form input[type="text"],
.tourpress-inquiry__form input[type="email"],
.tourpress-inquiry__form input[type="tel"],
.tourpress-inquiry__form input[type="number"],
.tourpress-inquiry__form textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--tp-border);
	border-radius: var(--tp-radius-sm);
	font-size: 14px;
	color: var(--tp-text);
	font-family: var(--tp-font);
	transition: border-color 0.2s;
	background: var(--tp-white);
}

.tourpress-inquiry__form input:focus,
.tourpress-inquiry__form textarea:focus {
	outline: none;
	border-color: var(--tp-primary);
	box-shadow: 0 0 0 3px rgba(30, 111, 159, 0.12);
}

.tourpress-inquiry__form textarea {
	resize: vertical;
}

/* --- SIDEBAR CARDS --- */
.tourpress-sidebar-card {
	background: var(--tp-white);
	border-radius: var(--tp-radius);
	padding: 24px;
	box-shadow: var(--tp-shadow);
}

/* Price Card */
.tourpress-price-card {
	border-top: 4px solid var(--tp-primary);
}

.tourpress-price-card__price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 20px;
}

.tourpress-price-card__old {
	font-size: 14px;
	color: var(--tp-text-muted);
	text-decoration: line-through;
	margin-bottom: 2px;
}

.tourpress-price-card__current {
	font-size: 28px;
	font-weight: 900;
	color: var(--tp-primary);
	line-height: 1;
}

.tourpress-price-card__current .tourpress-currency {
	font-size: 18px;
}

.tourpress-price-card__per {
	font-size: 12px;
	color: var(--tp-text-muted);
	margin-top: 2px;
}

/* Buttons */
.tourpress-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 100%);
	color: var(--tp-white) !important;
	text-decoration: none !important;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 24px;
	border-radius: var(--tp-radius-sm);
	border: none;
	cursor: pointer;
	font-family: var(--tp-font);
	transition: var(--tp-transition);
	letter-spacing: 0.3px;
}

.tourpress-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(30, 111, 159, 0.35);
}

.tourpress-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: transparent;
	color: var(--tp-primary) !important;
	text-decoration: none !important;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: var(--tp-radius-sm);
	border: 2px solid var(--tp-primary);
	cursor: pointer;
	font-family: var(--tp-font);
	transition: var(--tp-transition);
}

.tourpress-btn-secondary:hover {
	background: var(--tp-primary);
	color: var(--tp-white) !important;
}

.tourpress-btn-full {
	width: 100%;
	margin-bottom: 10px;
}

.tourpress-btn-full:last-child {
	margin-bottom: 0;
}

/* Details card */
.tourpress-details-card__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--tp-text);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--tp-border);
}

.tourpress-details-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tourpress-details-card__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 13px;
}

.tourpress-details-card__list li:last-child {
	border-bottom: none;
}

.tp-detail-icon {
	color: var(--tp-primary);
	flex-shrink: 0;
}

.tp-detail-label {
	color: var(--tp-text-muted);
	flex: 1;
	font-weight: 500;
}

.tp-detail-value {
	font-weight: 600;
	color: var(--tp-text);
	text-align: right;
}

/* Share card */
.tourpress-share__buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tourpress-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: var(--tp-radius-sm);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: var(--tp-transition);
}

.tourpress-share-btn--whatsapp {
	background: #25D366;
	color: var(--tp-white) !important;
}

.tourpress-share-btn--whatsapp:hover { background: #20bd5b; }

.tourpress-share-btn--facebook {
	background: #1877F2;
	color: var(--tp-white) !important;
}

.tourpress-share-btn--facebook:hover { background: #1565d8; }

.tourpress-share-btn--twitter {
	background: #111;
	color: var(--tp-white) !important;
}

.tourpress-share-btn--twitter:hover { background: #333; }

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1100px) {
	.tourpress-layout {
		grid-template-columns: 1fr 300px;
	}
}

@media (max-width: 900px) {
	.tourpress-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.tourpress-cols-3 { grid-template-columns: repeat(2, 1fr); }
	.tourpress-layout {
		grid-template-columns: 1fr;
	}
	.tourpress-sidebar {
		position: static;
	}
	.tourpress-inclusions__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.tourpress-cols-4,
	.tourpress-cols-3,
	.tourpress-cols-2 {
		grid-template-columns: 1fr;
	}
	.tourpress-hero {
		min-height: 320px;
		padding-bottom: 32px;
	}
	.tourpress-section {
		padding: 20px;
	}
	.tourpress-form__row {
		grid-template-columns: 1fr;
	}
	.tourpress-highlights__list {
		grid-template-columns: 1fr;
	}
}

/* ====================================================
   LAZY LOAD
==================================================== */
.tp-lazy {
	opacity: 0;
	transition: opacity 0.4s ease;
}

.tp-lazy.tp-lazy-loaded {
	opacity: 1;
}

/* ====================================================
   UTILITY
==================================================== */
.tourpress-currency {
	/* already styled inline where needed */
}

/* ====================================================
   VISA CARD
==================================================== */
.tp-visa-card {
	background: var(--tp-white);
	border-radius: var(--tp-radius);
	overflow: hidden;
	box-shadow: var(--tp-shadow);
	transition: var(--tp-transition);
	display: flex;
	flex-direction: column;
	font-family: var(--tp-font);
}

.tp-visa-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tp-shadow-hover);
}

.tp-visa-card__img-wrap {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #e2e8f0;
	text-decoration: none !important;
}

.tp-visa-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.tp-visa-card:hover .tp-visa-card__img {
	transform: scale(1.05);
}

.tp-visa-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
}

.tp-visa-card__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.tp-visa-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tp-visa-card__flag {
	width: 48px;
	height: auto;
	border-radius: 4px;
	border: 1px solid var(--tp-border);
	flex-shrink: 0;
	object-fit: cover;
}

.tp-visa-card__flag-placeholder {
	flex-shrink: 0;
}

.tp-visa-card__country-info {
	min-width: 0;
}

.tp-visa-card__country {
	font-size: 17px;
	font-weight: 800;
	color: var(--tp-text);
	margin: 0 0 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tp-visa-card__type {
	font-size: 12px;
	color: var(--tp-primary);
	font-weight: 600;
	background: #f0f9ff;
	padding: 2px 8px;
	border-radius: 20px;
}

.tp-visa-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
}

.tp-visa-card__rating-num {
	font-weight: 700;
	color: var(--tp-text);
}

.tp-visa-card__reviews {
	color: var(--tp-text-muted);
}

.tp-visa-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-top: 12px;
	border-top: 1px solid var(--tp-border);
	margin-top: auto;
}

.tp-visa-card__price {
	font-size: 18px;
	font-weight: 800;
	color: var(--tp-primary);
}

.tp-visa-card__currency {
	font-size: 13px;
	font-weight: 700;
}

.tp-visa-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--tp-primary);
	color: var(--tp-white) !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: var(--tp-radius-sm);
	transition: var(--tp-transition);
	white-space: nowrap;
}

.tp-visa-card__btn:hover {
	background: var(--tp-primary-dark);
}

.tp-visa-card--featured {
	border: 2px solid var(--tp-accent);
}

/* ====================================================
   VISA SINGLE PAGE
==================================================== */
.tp-visa-single {}

.tp-visa-hero { min-height: 400px; }

.tp-visa-hero__identity {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.tp-visa-hero__flag {
	width: 70px;
	height: auto;
	border-radius: 6px;
	border: 2px solid rgba(255,255,255,0.4);
	box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Info bar */
.tp-visa-infobar {
	background: var(--tp-primary);
	padding: 20px 0;
}

.tp-visa-infobar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.tp-visa-infobar__item {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 160px;
}

.tp-visa-infobar__item svg {
	color: rgba(255,255,255,0.8);
	flex-shrink: 0;
}

.tp-visa-infobar__label {
	display: block;
	font-size: 11px;
	color: rgba(255,255,255,0.7);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tp-visa-infobar__value {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--tp-white);
}

.tp-visa-infobar__value--price {
	font-size: 20px;
	color: #fbbf24;
}

/* Requirements */
.tp-visa-req-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tp-visa-req-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--tp-text);
	line-height: 1.6;
	padding: 12px 16px;
	background: #f8fafc;
	border-radius: var(--tp-radius-sm);
	border-left: 3px solid var(--tp-green);
}

.tp-req-check {
	flex-shrink: 0;
	color: var(--tp-green);
	margin-top: 2px;
}

/* CTA Banner */
.tp-visa-cta-banner {
	background: linear-gradient(135deg, #0a3d5c 0%, var(--tp-primary) 100%);
	border-radius: var(--tp-radius);
	padding: 28px 32px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.tp-visa-cta-banner__icon {
	color: var(--tp-accent);
	flex-shrink: 0;
}

.tp-visa-cta-banner__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tp-visa-cta-banner__text strong {
	font-size: 16px;
	color: var(--tp-white);
}

.tp-visa-cta-banner__text span {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
}

.tp-visa-cta-banner__btn {
	flex-shrink: 0;
	background: var(--tp-accent) !important;
}

.tp-visa-cta-banner__btn:hover {
	background: var(--tp-accent-dark) !important;
}

/* ====================================================
   UMRAH CARD
==================================================== */
.tp-umrah-card {
	background: var(--tp-white);
	border-radius: var(--tp-radius);
	overflow: hidden;
	box-shadow: var(--tp-shadow);
	transition: var(--tp-transition);
	display: flex;
	flex-direction: column;
	font-family: var(--tp-font);
}

.tp-umrah-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tp-shadow-hover);
}

.tp-umrah-card__img-wrap {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #e2e8f0;
	text-decoration: none !important;
}

.tp-umrah-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.tp-umrah-card:hover .tp-umrah-card__img {
	transform: scale(1.05);
}

.tp-umrah-card__limited {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--tp-accent);
	color: var(--tp-white);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.tp-umrah-card__stars-overlay {
	position: absolute;
	bottom: 12px;
	left: 12px;
	display: flex;
	gap: 2px;
	z-index: 2;
}

.tp-umrah-star {
	color: #fbbf24;
	font-size: 16px;
	text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.tp-umrah-card__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.tp-umrah-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.tp-umrah-card__star-label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #fef3c7;
	color: #92400e;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
}

.tp-umrah-card__duration {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--tp-text-muted);
	font-weight: 500;
}

.tp-umrah-card__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--tp-text);
	margin: 0;
	line-height: 1.4;
}

.tp-umrah-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.tp-umrah-card__title a:hover { color: var(--tp-primary); }

.tp-umrah-card__excerpt {
	font-size: 13px;
	color: var(--tp-text-muted);
	line-height: 1.5;
	margin: 0;
}

.tp-umrah-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-top: 12px;
	border-top: 1px solid var(--tp-border);
	margin-top: auto;
}

.tp-umrah-card__price {
	font-size: 16px;
	font-weight: 800;
	color: var(--tp-primary);
}

.tp-umrah-card__currency { font-size: 12px; }

.tp-umrah-price-call {
	font-size: 13px;
	font-weight: 700;
	color: var(--tp-accent-dark);
	background: #fef3c7;
	padding: 3px 10px;
	border-radius: 20px;
}

.tp-umrah-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--tp-primary);
	color: var(--tp-white) !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: var(--tp-radius-sm);
	transition: var(--tp-transition);
	white-space: nowrap;
}

.tp-umrah-card__btn:hover { background: var(--tp-primary-dark); }

/* ====================================================
   UMRAH SINGLE PAGE
==================================================== */
.tp-umrah-single {}

.tp-umrah-hero { min-height: 440px; }

.tp-umrah-hero__stars {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255,255,255,0.9);
	margin-bottom: 10px;
}

.tp-umrah-star-gold {
	color: #fbbf24;
	font-size: 20px;
}

/* Limited note */
.tp-umrah-limited-note {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fef3c7;
	color: #92400e;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

/* Hotels Grid */
.tp-umrah-hotels-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.tp-umrah-hotel-card {
	border-radius: var(--tp-radius-sm);
	padding: 20px;
	border: 1px solid var(--tp-border);
}

.tp-umrah-hotel-card--makkah {
	background: #fffbeb;
	border-color: #fde68a;
}

.tp-umrah-hotel-card--medina {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.tp-umrah-hotel-card__city {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--tp-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.tp-umrah-hotel-card__city-icon {
	font-size: 18px;
}

.tp-umrah-hotel-card__name {
	font-size: 17px;
	font-weight: 800;
	color: var(--tp-text);
	margin: 0 0 10px;
}

.tp-umrah-hotel-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

.tp-umrah-hotel-card__dist,
.tp-umrah-hotel-card__nights {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	color: var(--tp-text-muted);
	font-weight: 500;
}

.tp-umrah-hotel-card__nights {
	font-weight: 700;
	color: var(--tp-primary);
}

.tp-umrah-hotel-card__location {
	font-size: 12px;
	color: var(--tp-text-muted);
	line-height: 1.5;
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

.tp-umrah-hotel-card__location svg {
	flex-shrink: 0;
	margin-top: 2px;
}

/* Transport */
.tp-umrah-transport-row {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #f0f9ff;
	border-radius: var(--tp-radius-sm);
	padding: 18px 20px;
	color: var(--tp-primary);
}

.tp-umrah-transport-row strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--tp-text);
	margin-bottom: 2px;
}

.tp-umrah-transport-row p {
	margin: 0;
	font-size: 14px;
	color: var(--tp-text-muted);
}

/* Terms */
.tp-umrah-terms-body {
	background: #f8fafc;
	border-radius: var(--tp-radius-sm);
	padding: 20px;
	border-left: 3px solid var(--tp-border);
	font-size: 14px;
	color: var(--tp-text-muted);
}

/* Sidebar umrah */
.tp-umrah-sidebar__pkg-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--tp-text);
	margin: 0 0 6px;
}

.tp-umrah-sidebar__nights {
	font-size: 13px;
	color: var(--tp-text-muted);
	margin: 0;
}

/* Responsive hotels */
@media (max-width: 700px) {
	.tp-umrah-hotels-grid { grid-template-columns: 1fr; }
	.tp-visa-infobar__inner { flex-direction: column; gap: 14px; }
	.tp-visa-cta-banner { flex-direction: column; text-align: center; }
}

/* ====================================================
   LISTING PAGES  (visa_list / umrah_list shortcodes)
==================================================== */

/* Wrapper */
.tpl-listing {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #111827;
	background: #fff;
}

/* --- Header --- */
.tpl-listing__header {
	background: #fff;
	border-bottom: 2px solid #f1f5f9;
	padding: 28px 0 20px;
	margin-bottom: 0;
}

.tpl-listing__header--green .tpl-listing__header-inner {
	border-left: 4px solid #16a34a;
	padding-left: 16px;
}

.tpl-listing__header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.tpl-listing__title {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 800;
	color: #111827;
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tpl-listing__subtitle {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.tpl-listing__count {
	background: #f1f5f9;
	color: #374151;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 20px;
	white-space: nowrap;
}

/* --- Filter Bar --- */
.tpl-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 18px 0;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 28px;
}

.tpl-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 16px;
	border-radius: 24px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	color: #374151;
	background: #f9fafb;
	border: 1.5px solid #e5e7eb;
	transition: all 0.2s ease;
	cursor: pointer;
	white-space: nowrap;
}

.tpl-filter-btn:hover {
	background: #f0f9ff;
	border-color: #1e6f9f;
	color: #1e6f9f;
}

.tpl-filter-btn--active {
	background: #1e6f9f !important;
	color: #fff !important;
	border-color: #1e6f9f !important;
}

.tpl-filter-btn--star {
	color: #92400e;
	background: #fef9c3;
	border-color: #fde68a;
}

.tpl-filter-btn--star:hover,
.tpl-filter-btn--star.tpl-filter-btn--active {
	background: #f59e0b !important;
	color: #fff !important;
	border-color: #f59e0b !important;
}

/* --- Grid --- */
.tpl-grid {
	display: grid;
	gap: 24px;
}

.tpl-cols-1 { grid-template-columns: 1fr; }
.tpl-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tpl-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tpl-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Visa Card (listing style) --- */
.tpl-visa-card {
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow 0.25s, transform 0.25s;
	display: flex;
	flex-direction: column;
}

.tpl-visa-card:hover {
	box-shadow: 0 10px 32px rgba(0,0,0,0.10);
	transform: translateY(-4px);
}

.tpl-visa-card--featured {
	border-color: #f59e0b;
	box-shadow: 0 0 0 2px rgba(245,158,11,0.2);
}

.tpl-visa-card__img-wrap {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f1f5f9;
	text-decoration: none !important;
}

.tpl-visa-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tpl-visa-card:hover .tpl-visa-card__img { transform: scale(1.04); }

.tpl-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.tpl-badge--featured { background: #f59e0b; color: #fff; }
.tpl-badge--limited  { background: #ef4444; color: #fff; }

.tpl-visa-card__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.tpl-visa-card__top {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tpl-visa-card__flag {
	width: 44px;
	height: auto;
	border-radius: 4px;
	border: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.tpl-visa-card__flag-placeholder {
	font-size: 28px;
	flex-shrink: 0;
}

.tpl-visa-card__country {
	font-size: 17px;
	font-weight: 800;
	color: #111827;
	margin: 0 0 4px;
}

.tpl-visa-card__country a {
	color: inherit;
	text-decoration: none;
}

.tpl-visa-card__country a:hover { color: #1e6f9f; }

.tpl-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #1e6f9f;
	background: #eff6ff;
	padding: 2px 8px;
	border-radius: 12px;
}

.tpl-visa-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
}

.tpl-rating-num { font-weight: 700; color: #111827; }
.tpl-reviews { color: #9ca3af; }

.tpl-visa-card__proc {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #6b7280;
}

.tpl-visa-card__footer,
.tpl-umrah-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
	margin-top: auto;
}

.tpl-price {
	font-size: 16px;
	font-weight: 800;
	color: #1e6f9f;
}

.tpl-price-call {
	font-size: 12px;
	font-weight: 700;
	color: #92400e;
	background: #fef3c7;
	padding: 2px 8px;
	border-radius: 12px;
}

.tpl-btn-sm {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #111827;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 12px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 8px;
	white-space: nowrap;
	transition: background 0.2s;
}

.tpl-btn-sm:hover { background: #1e6f9f; }

/* --- Umrah Card (listing style) --- */
.tpl-umrah-card {
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow 0.25s, transform 0.25s;
	display: flex;
	flex-direction: column;
}

.tpl-umrah-card:hover {
	box-shadow: 0 10px 32px rgba(0,0,0,0.10);
	transform: translateY(-4px);
}

.tpl-umrah-card__img-wrap {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f1f5f9;
	text-decoration: none !important;
}

.tpl-umrah-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tpl-umrah-card:hover .tpl-umrah-card__img { transform: scale(1.04); }

.tpl-umrah-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.tpl-umrah-card__img-bottom {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
}

.tpl-umrah-stars-row {
	color: #fbbf24;
	font-size: 16px;
	text-shadow: 0 1px 4px rgba(0,0,0,0.4);
	letter-spacing: 1px;
}

.tpl-umrah-card__body {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.tpl-umrah-card__meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.tpl-star-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #fef3c7;
	color: #92400e;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 12px;
}

.tpl-duration {
	font-size: 12px;
	color: #6b7280;
	font-weight: 500;
}

.tpl-umrah-card__title {
	font-size: 16px;
	font-weight: 800;
	color: #111827;
	margin: 0;
	line-height: 1.4;
}

.tpl-umrah-card__title a {
	color: inherit;
	text-decoration: none;
}

.tpl-umrah-card__title a:hover { color: #1e6f9f; }

.tpl-umrah-card__hotels {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.tpl-hotel-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 150px;
}

.tpl-hotel-chip--makkah { background: #fef9c3; color: #78350f; }
.tpl-hotel-chip--medina { background: #d1fae5; color: #065f46; }

/* --- Empty State --- */
.tpl-empty {
	text-align: center;
	padding: 60px 20px;
	color: #9ca3af;
	font-size: 16px;
}

.tpl-empty svg, .tpl-empty span { display: block; margin: 0 auto 16px; opacity: 0.5; }

/* ====================================================
   SEARCH SHORTCODE  [travel_search]
==================================================== */
.tpl-search-wrap {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	max-width: 800px;
	margin: 0 auto;
	color: #111827;
}

/* Form */
.tpl-search-form {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
}

.tpl-search-input-wrap {
	position: relative;
	flex: 1;
}

.tpl-search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	pointer-events: none;
}

.tpl-search-input {
	width: 100%;
	padding: 14px 42px 14px 44px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 15px;
	color: #111827;
	background: #fff;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.tpl-search-input:focus {
	outline: none;
	border-color: #1e6f9f;
	box-shadow: 0 0 0 3px rgba(30,111,159,0.12);
}

.tpl-search-clear {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #9ca3af;
	padding: 4px;
	display: flex;
	align-items: center;
}

.tpl-search-clear:hover { color: #374151; }

.tpl-search-btn {
	background: #111827;
	color: #fff;
	border: none;
	padding: 14px 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	transition: background 0.2s;
}

.tpl-search-btn:hover { background: #1e6f9f; }

/* Type filters */
.tpl-search-types {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.tpl-search-type-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	border: 1.5px solid #e5e7eb;
	background: #f9fafb;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s;
	user-select: none;
}

.tpl-search-type-chip input { display: none; }

.tpl-search-type-chip:hover {
	border-color: #1e6f9f;
	color: #1e6f9f;
	background: #eff6ff;
}

.tpl-search-type-chip--active {
	background: #1e6f9f !important;
	color: #fff !important;
	border-color: #1e6f9f !important;
}

/* Popular chips */
.tpl-search-popular {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.tpl-search-popular__label {
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	margin: 0;
}

.tpl-search-popular__chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 12px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 500;
	background: #f3f4f6;
	color: #374151;
	text-decoration: none !important;
	border: 1px solid #e5e7eb;
	transition: all 0.2s;
	white-space: nowrap;
}

.tpl-search-popular__chip:hover {
	background: #e0f2fe;
	color: #1e6f9f;
	border-color: #bae6fd;
}

/* Results */
.tpl-search-results {
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	margin-top: 8px;
}

.tpl-search-results__inner {
	max-height: 520px;
	overflow-y: auto;
}

.tpl-results-group {
	border-bottom: 1px solid #f1f5f9;
}

.tpl-results-group:last-child { border-bottom: none; }

.tpl-results-group__header {
	padding: 12px 18px 8px;
	font-size: 12px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: #fafafa;
	border-bottom: 1px solid #f1f5f9;
}

.tpl-results-group__header span {
	font-weight: 500;
	color: #9ca3af;
}

.tpl-results-list { display: flex; flex-direction: column; }

.tpl-result-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	text-decoration: none !important;
	color: #111827;
	transition: background 0.15s;
	border-bottom: 1px solid #f9fafb;
}

.tpl-result-item:last-child { border-bottom: none; }

.tpl-result-item:hover { background: #f0f9ff; }

.tpl-result-item__img {
	width: 56px;
	height: 42px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
	border: 1px solid #f1f5f9;
}

.tpl-result-item__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tpl-result-item__title {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tpl-result-item__meta {
	font-size: 12px;
	color: #9ca3af;
}

.tpl-result-item__price {
	font-size: 13px;
	font-weight: 700;
	color: #1e6f9f;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Searching indicator */
.tpl-search-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 24px;
	color: #6b7280;
	font-size: 14px;
}

.tpl-search-loading::before {
	content: '';
	width: 18px;
	height: 18px;
	border: 2px solid #e5e7eb;
	border-top-color: #1e6f9f;
	border-radius: 50%;
	animation: tpl-spin 0.7s linear infinite;
}

@keyframes tpl-spin {
	to { transform: rotate(360deg); }
}

.tpl-search-no-results {
	text-align: center;
	padding: 32px;
	color: #9ca3af;
	font-size: 14px;
}

/* ====================================================
   RESPONSIVE — Listing + Search
==================================================== */
@media (max-width: 900px) {
	.tpl-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.tpl-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.tpl-cols-4,
	.tpl-cols-3,
	.tpl-cols-2 { grid-template-columns: 1fr; }
	.tpl-search-form { flex-direction: column; }
	.tpl-search-btn { width: 100%; justify-content: center; }
	.tpl-listing__header-inner { flex-direction: column; align-items: flex-start; }
}

/* ====================================================
   VISA LIST — clean horizontal row style  [visa_list]
==================================================== */
.tpl-visa-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1.5px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
}

.tpl-visa-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	text-decoration: none !important;
	color: #111827;
	background: #fff;
	border-bottom: 1px solid #f1f5f9;
	transition: background 0.15s, box-shadow 0.15s;
}

.tpl-visa-row:last-child { border-bottom: none; }

.tpl-visa-row:hover {
	background: #f0f9ff;
	box-shadow: inset 3px 0 0 #1e6f9f;
}

/* Logo column */
.tpl-visa-row__logo {
	flex-shrink: 0;
	width: 56px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tpl-visa-row__logo-img {
	width: 56px;
	height: 42px;
	object-fit: contain;
	border-radius: 5px;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
}

.tpl-visa-row__logo-placeholder {
	width: 56px;
	height: 42px;
	border-radius: 5px;
	border: 1.5px dashed #d1d5db;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	background: #f9fafb;
}

/* Info column */
.tpl-visa-row__info { flex: 1; min-width: 0; }

.tpl-visa-row__country {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tpl-visa-row__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #6b7280;
}

.tpl-visa-row__type {
	background: #eff6ff;
	color: #1e6f9f;
	padding: 2px 8px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 11px;
}

.tpl-visa-row__proc {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: #9ca3af;
}

.tpl-visa-row__short {
	font-size: 12px;
	color: #9ca3af;
	margin-top: 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Right column */
.tpl-visa-row__right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.tpl-visa-row__price {
	font-size: 15px;
	font-weight: 800;
	color: #1e6f9f;
	white-space: nowrap;
}

.tpl-visa-row__arrow {
	color: #d1d5db;
	transition: color 0.15s, transform 0.15s;
}

.tpl-visa-row:hover .tpl-visa-row__arrow {
	color: #1e6f9f;
	transform: translateX(3px);
}

@media (max-width: 600px) {
	.tpl-visa-row { gap: 12px; padding: 14px 14px; }
	.tpl-visa-row__logo { width: 40px; height: 32px; }
	.tpl-visa-row__logo-img { width: 40px; height: 32px; }
	.tpl-visa-row__logo-placeholder { width: 40px; height: 32px; }
	.tpl-visa-row__short { display: none; }
}

/* ====================================================
   VISA DETAIL PAGE — single-visa.php  (tp-vd-* classes)
==================================================== */

/* Hero */
.tp-vd-hero {
	position: relative;
	min-height: 360px;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding-bottom: 40px;
}

.tp-vd-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
}

.tp-vd-hero__inner {
	position: relative;
	z-index: 2;
	padding-top: 40px;
}

.tp-vd-hero__identity {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 16px;
}

.tp-vd-hero__logo-wrap {
	background: rgba(255,255,255,0.12);
	border-radius: 14px;
	padding: 10px;
	backdrop-filter: blur(6px);
	border: 1.5px solid rgba(255,255,255,0.2);
}

.tp-vd-hero__logo {
	width: 80px;
	height: auto;
	max-height: 60px;
	object-fit: contain;
	display: block;
}

.tp-vd-hero__title {
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 900;
	color: #fff;
	margin: 0 0 8px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tp-vd-hero__badge {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.3);
}

.tp-vd-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.tp-vd-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.25);
}

.tp-vd-pill--price { background: rgba(30,111,159,0.6); }

/* CTA Bar */
.tp-vd-cta-bar {
	background: #fff;
	border-bottom: 2px solid #f1f5f9;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	position: sticky;
	top: 0;
	z-index: 100;
}

.tp-vd-cta-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	padding: 14px 0;
}

.tp-vd-cta-bar__price {
	display: flex;
	flex-direction: column;
}

.tp-vd-cta-bar__label {
	font-size: 11px;
	color: #9ca3af;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tp-vd-cta-bar__amount {
	font-size: 20px;
	font-weight: 900;
	color: #1e6f9f;
}

.tp-vd-cta-bar__buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* CTA Buttons */
.tp-vd-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	cursor: pointer;
	white-space: nowrap;
	border: none;
	transition: all 0.2s ease;
}

.tp-vd-btn--call {
	background: #111827;
	color: #fff !important;
}
.tp-vd-btn--call:hover { background: #374151; }

.tp-vd-btn--whatsapp {
	background: #25d366;
	color: #fff !important;
}
.tp-vd-btn--whatsapp:hover { background: #1da851; }

.tp-vd-btn--book {
	background: #1e6f9f;
	color: #fff !important;
}
.tp-vd-btn--book:hover { background: #155d84; }

/* Short details callout */
.tp-vd-short-details {
	background: #f0f9ff;
	border-left: 4px solid #1e6f9f;
	padding: 14px 18px;
	border-radius: 0 8px 8px 0;
	margin-bottom: 28px;
	font-size: 14px;
	color: #374151;
	font-style: italic;
}

/* Content body */
.tp-vd-content {
	font-size: 15px;
	line-height: 1.8;
	color: #374151;
}

.tp-vd-content p { margin-bottom: 16px; }
.tp-vd-content ul, .tp-vd-content ol { padding-left: 22px; margin-bottom: 16px; }
.tp-vd-content li { margin-bottom: 6px; }
.tp-vd-content h2, .tp-vd-content h3 { color: #111827; margin-top: 24px; margin-bottom: 12px; }

/* Bottom CTA */
.tp-vd-bottom-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
	color: #fff;
	padding: 28px 32px;
	border-radius: 14px;
	margin-top: 36px;
}

.tp-vd-bottom-cta__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tp-vd-bottom-cta__text strong { font-size: 20px; font-weight: 800; }
.tp-vd-bottom-cta__text span  { font-size: 14px; opacity: 0.8; }

.tp-vd-bottom-cta__btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* Sidebar price card */
.tp-vd-sidebar__price-label {
	font-size: 11px;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	margin-bottom: 6px;
}

.tp-vd-sidebar__price-amount {
	font-size: 28px;
	font-weight: 900;
	color: #1e6f9f;
	margin-bottom: 18px;
}

/* Requirements list */
.tp-visa-req-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tp-visa-req-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #374151; }
.tp-req-check { color: #16a34a; flex-shrink: 0; margin-top: 1px; }

/* Responsive overrides for detail page */
@media (max-width: 768px) {
	.tp-vd-cta-bar__inner { flex-direction: column; align-items: flex-start; }
	.tp-vd-cta-bar__buttons { width: 100%; }
	.tp-vd-btn { flex: 1; justify-content: center; }
	.tp-vd-bottom-cta { flex-direction: column; text-align: center; align-items: center; }
	.tp-vd-bottom-cta__btns { width: 100%; justify-content: center; }
	.tp-vd-hero { min-height: 280px; }
	.tp-vd-hero__logo { width: 56px; }
	.tp-vd-hero__title { font-size: 24px; }
}
