/* ==========================================================================
   TRAVELMER - PREMIUM ANIMATIONS & RESPONSIVE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 40px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -30px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.92, 0.92, 0.92);
	}
	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translate3d(-50px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translate3d(50px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes floatHero {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-8px);
	}
}

@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 0 0 rgba(200, 151, 27, 0.4);
	}
	70% {
		box-shadow: 0 0 0 12px rgba(200, 151, 27, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(200, 151, 27, 0);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

/* --------------------------------------------------------------------------
   2. SCROLL REVEAL UTILITIES
   -------------------------------------------------------------------------- */
.reveal-item {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	will-change: opacity, transform;
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active state triggered by JS Intersection Observer */
.reveal-item.is-visible,
.no-js .reveal-item {
	opacity: 1 !important;
	transform: translate3d(0, 0, 0) scale(1) !important;
}

/* Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   3. DESKTOP INTERACTIVES & HERO ANIMATIONS
   -------------------------------------------------------------------------- */

/* Header Sticky Transition (GPU Hardware Accelerated - Zero Lag) */
.site-header {
	background-color: #ffffff;
	padding: 14px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	will-change: padding, box-shadow, background-color;
	transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
	background-color: #ffffff;
	padding: 8px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-header-cta {
	background: linear-gradient(135deg, #D4AF37 0%, #C8971B 100%) !important;
	color: #0B1528 !important;
	font-weight: 700 !important;
	padding: 10px 22px !important;
	border-radius: 30px !important;
	font-size: 0.85rem !important;
	white-space: nowrap !important;
	border: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(200, 151, 27, 0.35) !important;
	transition: all 0.3s ease !important;
}

.btn-header-cta:hover {
	background: linear-gradient(135deg, #E0B83D 0%, #D9A524 100%) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 20px rgba(200, 151, 27, 0.5) !important;
}

/* Site & Footer Logo Styling */
.site-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-logo {
	max-height: 80px;
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
	transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.site-header.is-scrolled .site-logo {
	max-height: 62px;
}

.site-logo-link:hover .site-logo {
	transform: scale(1.03);
}

.footer-logo {
	max-height: 90px;
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
	margin-bottom: 18px;
}

/* Hero Section */
.hero-section {
	overflow: hidden;
	position: relative;
	background-repeat: no-repeat;
	background-position: center 50% !important;
	background-size: cover;
}

.hero-title {
	animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
	animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
	opacity: 0;
}

.hero-buttons {
	animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
	opacity: 0;
}

.hero-search-bar {
	animation: zoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
	opacity: 0;
	background: #ffffff;
	max-width: 860px;
	margin: 0 auto;
	border-radius: 50px;
	padding: 8px 10px 8px 24px;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-search-bar:hover {
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
	transform: translateY(-3px);
}

.search-fields {
	display: grid;
	grid-template-columns: 1.3fr 1.3fr auto;
	gap: 15px;
	align-items: center;
	width: 100%;
}

.search-field {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 15px;
	border-right: 1.5px solid #E2E8F0;
	transition: background-color 0.3s ease;
}

.search-field:last-of-type {
	border-right: none;
}

.search-field i {
	color: var(--color-secondary);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.search-field input,
.search-field select {
	border: none;
	outline: none;
	background: transparent;
	width: 100%;
	font-size: 0.95rem;
	font-weight: 500;
	color: #0B1528;
	height: 40px;
}

.search-field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%3CC8971B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 30px;
	cursor: pointer;
}

.btn-hero-search-submit {
	height: 48px;
	background: linear-gradient(135deg, #D4AF37 0%, #C8971B 100%) !important;
	color: #0B1528 !important;
	border-radius: 30px !important;
	font-weight: 800 !important;
	padding: 0 32px !important;
	font-size: 0.9rem !important;
	letter-spacing: 1px !important;
	border: none !important;
	box-shadow: 0 6px 20px rgba(200, 151, 27, 0.4) !important;
	cursor: pointer;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease !important;
}

.btn-hero-search-submit:hover {
	background: linear-gradient(135deg, #E0B83D 0%, #D9A524 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(200, 151, 27, 0.6) !important;
}

/* Buttons Hover Glow & Shine Effect */
.btn {
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		60deg,
		transparent 30%,
		rgba(255, 255, 255, 0.25) 50%,
		transparent 70%
	);
	transform: rotate(30deg) translateY(-100%);
	transition: transform 0.6s ease-in-out;
	z-index: 2;
}

.btn:hover::after {
	transform: rotate(30deg) translateY(100%);
}

/* Hero Premium Buttons */
.hero-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
}

.hero-buttons .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-gold {
	background: linear-gradient(135deg, #C8971B 0%, #E5B22D 100%) !important;
	color: #0B1528 !important;
	border: none !important;
	box-shadow: 0 8px 25px rgba(200, 151, 27, 0.4);
}

.btn-hero-gold:hover {
	background: linear-gradient(135deg, #d4a11d 0%, #f0be35 100%) !important;
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(200, 151, 27, 0.6);
	color: #0B1528 !important;
}

.btn-hero-glass {
	background: rgba(255, 255, 255, 0.15) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #FFFFFF !important;
	border: 2px solid rgba(255, 255, 255, 0.85) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-glass:hover {
	background: #FFFFFF !important;
	color: #0B1528 !important;
	border-color: #FFFFFF !important;
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
}

.hero-buttons .btn i {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
	transform: scale(1.15) rotate(-5deg);
}

/* Destination Cards 3D Hover & Shimmer */
.destination-card {
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	transform-style: preserve-3d;
	perspective: 1000px;
}

.destination-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card .card-image img {
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .card-image img {
	transform: scale(1.12);
}

.btn-explore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 15px;
	padding: 8px 22px;
	background-color: var(--color-primary);
	color: #ffffff;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	white-space: nowrap;
	flex-shrink: 0;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 12px rgba(11, 21, 40, 0.15);
}

.destination-card:hover .btn-explore {
	background-color: var(--color-secondary);
	color: #0B1528;
	box-shadow: 0 6px 16px rgba(200, 151, 27, 0.4);
	transform: translateY(-2px);
}

.tour-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tour-card .tour-footer .btn-explore {
	margin-top: 0;
	padding: 7px 16px;
	font-size: 0.82rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.tour-card:hover .btn-explore {
	background-color: var(--color-secondary);
	color: #0B1528;
	box-shadow: 0 6px 16px rgba(200, 151, 27, 0.4);
	transform: translateY(-2px);
}

.btn-explore i {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.destination-card:hover .btn-explore i,
.tour-card:hover .btn-explore i {
	transform: translateX(5px);
}

/* Tour Cards Hover & Badge Pulse */
.tour-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card .card-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tour-card .tour-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #f1f5f9;
	padding-top: 15px;
	gap: 10px;
}

.tour-card .tour-footer .price {
	white-space: nowrap;
	flex-shrink: 1;
	font-size: 0.88rem;
	font-weight: 600;
	color: #64748B;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tour-card .tour-footer .price strong,
.tour-card .tour-footer .price .amount,
.tour-card .tour-footer .price bdi {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-primary);
}

.tour-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tour-card .card-image {
	overflow: hidden;
	position: relative;
}

.tour-card .card-image img {
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .card-image img {
	transform: scale(1.08);
}

.tour-card .badge {
	animation: pulseGlow 2.5s infinite;
}

/* Tour Filter Pills Transition */
.tours-filter {
	position: relative;
}

.filter-btn {
	position: relative;
	transition: color 0.3s ease;
}

.filter-btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--color-secondary);
	transition: width 0.3s ease, left 0.3s ease;
}

.filter-btn.active::after,
.filter-btn:hover::after {
	width: 100%;
	left: 0;
}

/* Categories Masonry Zoom and Parallax Overlay */
.cat-item {
	overflow: hidden;
	border-radius: 16px;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
}

.cat-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(212, 175, 55, 0.6);
}

.cat-item::before {
	transition: opacity 0.4s ease, background 0.4s ease;
}

.cat-item:hover::before {
	background: linear-gradient(to top, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}

.cat-overlay {
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-item:hover .cat-overlay {
	transform: translateY(-6px);
}

.cat-overlay h3 {
	transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
	color: #ffffff;
}

.cat-item:hover .cat-overlay h3 {
	color: #ffffff;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

.cat-overlay p {
	transition: all 0.3s ease;
}

.cat-item:hover .cat-overlay p {
	background: linear-gradient(135deg, #D4AF37 0%, #C8971B 100%);
	color: #ffffff;
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(200, 151, 27, 0.4);
	transform: translateY(-2px);
}

/* Features List Animation */
.features-image img {
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.features-image:hover img {
	transform: translateY(-5px) scale(1.02);
	box-shadow: -25px 25px 0 var(--color-secondary);
}

.features-list li {
	transition: transform 0.3s ease;
}

.features-list li:hover {
	transform: translateX(8px);
}

.features-list li i {
	transition: transform 0.3s ease, color 0.3s ease;
}

.features-list li:hover i {
	transform: scale(1.25);
	color: var(--color-primary);
}

/* Stats Counter Styling */
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-number {
	display: block;
	width: 100%;
	text-align: center;
	transition: color 0.3s ease;
}

/* Testimonial Card Floating Accent */
.testimonial-card {
	position: relative;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card::before {
	content: '\u201C';
	position: absolute;
	top: 15px;
	right: 25px;
	font-size: 5rem;
	font-family: Georgia, serif;
	color: rgba(200, 151, 27, 0.12);
	line-height: 1;
	transition: transform 0.3s ease, color 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
	transform: scale(1.15) rotate(-5deg);
	color: rgba(200, 151, 27, 0.25);
}

/* Blog Cards */
.blog-card {
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card .card-image {
	overflow: hidden;
}

.blog-card .card-image img {
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .card-image img {
	transform: scale(1.1);
}

.read-more i {
	transition: transform 0.3s ease;
	display: inline-block;
}

.read-more:hover i {
	transform: translateX(6px);
}

/* CTA Banner Animation */
.cta-banner-section {
	overflow: hidden;
}

.cta-content h2 {
	animation: floatHero 6s ease-in-out infinite;
}

.header-right-mobile {
	display: flex;
	align-items: center;
	gap: 15px;
}

.menu-toggle {
	display: none;
}

/* --------------------------------------------------------------------------
   4. MOBILE (CELULAR) OPTIMIZED ANIMATIONS & TOUCH INTERACTIONS
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
	.header-container {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
		width: 100% !important;
		padding: 12px 24px !important;
		box-sizing: border-box !important;
	}

	.site-branding h1 {
		font-size: 1.35rem !important;
		margin: 0 !important;
		line-height: 1.2 !important;
	}

	.site-logo {
		max-height: 56px !important;
		width: auto !important;
	}

	.header-right-mobile {
		display: flex !important;
		align-items: center !important;
		gap: 16px !important;
	}

	.header-actions .btn {
		width: auto !important;
		padding: 7px 14px !important;
		font-size: 0.8rem !important;
		white-space: nowrap !important;
	}
	/* Faster transitions for quick touch screen response */
	.reveal-item {
		transition-duration: 0.6s;
	}

	.reveal-fade-up {
		transform: translate3d(0, 30px, 0);
	}

	.reveal-slide-left,
	.reveal-slide-right {
		transform: translate3d(0, 25px, 0); /* Fallback to vertical slide on mobile to prevent overflow-x */
	}

	/* Touch Active Spring Feedback for Celular */
	a:active,
	button:active,
	.destination-card:active,
	.tour-card:active,
	.cat-item:active,
	.testimonial-card:active,
	.blog-card:active {
		transform: scale(0.97) !important;
		transition: transform 0.15s ease-out !important;
	}

	/* Hero adjustments for mobile */
	.hero-title {
		font-size: 2.3rem;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: 25px;
	}

	.hero-buttons {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 12px !important;
		margin-bottom: 30px !important;
		padding: 0 10px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	.hero-buttons .btn {
		flex: 1 1 135px !important;
		max-width: 190px !important;
		width: auto !important;
		padding: 12px 16px !important;
		font-size: 0.88rem !important;
		white-space: nowrap !important;
		border-radius: 35px !important;
	}

	.hero-search-bar {
		padding: 12px;
		border-radius: 12px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
	}

	/* Filter buttons swipeable scroll bar */
	.tours-filter {
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
	}

	.tours-filter::-webkit-scrollbar {
		display: none; /* Chrome/Safari */
	}

	.filter-btn {
		display: inline-block;
		padding: 8px 16px;
		background: #fff;
		border-radius: 20px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.06);
		margin-right: 8px;
		font-size: 0.9rem;
	}

	.filter-btn.active {
		background: var(--color-primary);
		color: #fff;
	}

	.filter-btn::after {
		display: none;
	}

	/* Features Image on Mobile */
	.features-image img {
		box-shadow: -10px 10px 0 var(--color-primary);
	}

	/* Mobile Menu Toggle Button & Drawer */
	.menu-toggle {
		display: flex !important;
		flex-direction: column;
		justify-content: space-between;
		width: 26px;
		height: 20px;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		z-index: 1100;
	}

	.menu-toggle span {
		width: 100%;
		height: 3px;
		background: var(--color-primary);
		border-radius: 2px;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.menu-toggle.is-active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.menu-toggle.is-active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.is-active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.mobile-nav-close {
		position: absolute !important;
		top: 20px !important;
		right: 20px !important;
		background: #F1F5F9 !important;
		border: none !important;
		width: 38px !important;
		height: 38px !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		color: #0F172A !important;
		font-size: 1.15rem !important;
		cursor: pointer !important;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
		transition: all 0.2s ease !important;
	}

	.mobile-nav-close:hover {
		background: #C8971B !important;
		color: #FFFFFF !important;
	}

	.main-navigation {
		position: fixed !important;
		top: 0 !important;
		right: -100% !important;
		width: 85% !important;
		max-width: 320px !important;
		height: 100vh !important;
		background: #ffffff !important;
		box-shadow: -8px 0 35px rgba(0, 0, 0, 0.25) !important;
		padding: 75px 20px 40px !important;
		transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
		z-index: 999999 !important;
		display: block !important;
		overflow-y: auto !important;
	}

	.main-navigation.is-open {
		right: 0 !important;
	}

	.main-navigation ul {
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
		padding: 0 !important;
		margin: 0 !important;
		list-style: none !important;
	}

	.main-navigation a {
		font-size: 1.05rem !important;
		font-weight: 700 !important;
		color: #0F172A !important;
		display: flex !important;
		align-items: center !important;
		gap: 14px !important;
		padding: 14px 18px !important;
		border-radius: 14px !important;
		border-bottom: none !important;
		background: #F8FAFC !important;
		text-decoration: none !important;
		transition: all 0.2s ease !important;
	}

	.main-navigation a i {
		color: #C8971B !important;
		font-size: 1.1rem !important;
		width: 22px !important;
		text-align: center !important;
	}

	.main-navigation a:hover,
	.main-navigation a:active {
		background: #0F172A !important;
		color: #FFFFFF !important;
	}

	.main-navigation a:hover i,
	.main-navigation a:active i {
		color: #D4AF37 !important;
	}

	.menu-backdrop {
		display: none !important;
	}

	/* Disable parallax heavy transforms on touch devices for maximum 60fps */
	.cta-banner-section {
		background-attachment: scroll !important;
	}
}

/* --------------------------------------------------------------------------
   5. PREFERS-REDUCED-MOTION ACCESSIBILITY
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.reveal-item,
	.hero-title,
	.hero-subtitle,
	.hero-buttons,
	.hero-search-bar,
	.destination-card,
	.tour-card,
	.btn,
	.cat-item,
	.cta-content h2 {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* --------------------------------------------------------------------------
   6. FLOATING WIDGETS & FEATURE CARDS (WHATSAPP, BACK TO TOP, SOBRE NOSOTROS)
   -------------------------------------------------------------------------- */

/* Floating WhatsApp Button */
.whatsapp-float-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	z-index: 1000;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
	animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
	}
	70% {
		box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.whatsapp-float-btn:hover {
	transform: scale(1.12);
	color: #ffffff;
}

.whatsapp-tooltip {
	position: absolute;
	right: 72px;
	background: #0B1528;
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.82rem;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateX(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
	opacity: 1;
	transform: translateX(0);
}

/* Back to Top Button */
.back-to-top-btn {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 48px;
	height: 48px;
	background-color: var(--color-primary);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(11, 21, 40, 0.25);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top-btn:hover {
	background-color: var(--color-secondary);
	color: var(--color-primary);
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(200, 151, 27, 0.4);
}

/* Feature Cards in Sobre Nosotros */
.features-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 25px;
}

.feature-card-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 22px;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card-item:hover {
	transform: translateX(8px) translateY(-2px);
	box-shadow: 0 10px 25px rgba(11, 21, 40, 0.1);
	border-color: rgba(200, 151, 27, 0.3);
}

.feature-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: rgba(200, 151, 27, 0.12);
	color: var(--color-secondary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: all 0.3s ease;
}

.feature-card-item:hover .feature-icon {
	background: var(--color-secondary);
	color: #0B1528;
	transform: scale(1.1) rotate(5deg);
}

.feature-card-item strong {
	display: block;
	font-size: 1.1rem;
	color: var(--color-primary);
	margin-bottom: 4px;
}

.feature-card-item p {
	font-size: 0.92rem;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.whatsapp-float-btn {
		bottom: 20px;
		right: 20px;
		width: 52px;
		height: 52px;
		font-size: 28px;
	}

	.whatsapp-tooltip {
		display: none;
	}

}

/* --------------------------------------------------------------------------
   7. SHOP / TOURS CATALOG PAGE STYLES (/shop/)
   -------------------------------------------------------------------------- */

.shop-page .reveal-item,
.shop-page .tour-card,
.shop-hero-content *,
.shop-filter-bar {
	opacity: 1 !important;
	transform: none !important;
}

/* Shop Hero Banner */
.shop-hero-section {
	position: relative;
	height: 48vh;
	min-height: 380px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	text-align: center;
}

.shop-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(11, 21, 40, 0.65) 0%, rgba(11, 21, 40, 0.88) 100%);
	z-index: 1;
}

.shop-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.gold-subtitle {
	color: var(--color-secondary) !important;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 0.85rem;
}

.shop-hero-title {
	font-family: var(--font-heading);
	font-size: 3.2rem;
	color: #ffffff;
	margin: 10px 0 15px;
	font-weight: 700;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.shop-hero-description {
	color: #e2e8f0;
	font-size: 1.1rem;
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Modern Filter Bar Redesign */
.shop-filter-section {
	position: relative;
	z-index: 30;
	margin-bottom: 30px;
}

.shop-filter-bar {
	background: #ffffff;
	border-radius: 24px;
	padding: 28px 36px;
	box-shadow: 0 16px 45px rgba(11, 21, 40, 0.09);
	margin-top: -60px;
	border: 1px solid rgba(11, 21, 40, 0.06);
	backdrop-filter: blur(10px);
}

#shop-filter-form {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 24px;
	align-items: flex-end;
	width: 100%;
	box-sizing: border-box;
}

.filter-group {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0; /* Prevents overflow in grid items */
	box-sizing: border-box;
}

.filter-group label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.76rem;
	font-weight: 700;
	color: #0B1528;
	letter-spacing: 1.2px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.filter-group label i {
	color: var(--color-secondary);
	font-size: 0.88rem;
}

.input-wrapper,
.select-wrapper {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

#shop-filter-form input[type="text"],
#shop-filter-form select {
	width: 100%;
	height: 52px;
	padding: 0 20px;
	border-radius: 14px;
	border: 1.5px solid #E2E8F0;
	background-color: #F8FAFC;
	color: #0B1528;
	font-size: 0.95rem;
	font-weight: 500;
	outline: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-sizing: border-box;
	margin: 0;
}

/* Custom styled dropdown arrow */
#shop-filter-form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%3CC8971B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	padding-right: 45px;
	cursor: pointer;
}

#shop-filter-form input[type="text"]::placeholder {
	color: #94A3B8;
	font-size: 0.92rem;
}

#shop-filter-form input[type="text"]:focus,
#shop-filter-form select:focus,
#shop-filter-form input[type="text"]:hover,
#shop-filter-form select:hover {
	border-color: var(--color-secondary);
	background-color: #ffffff;
	box-shadow: 0 4px 18px rgba(200, 151, 27, 0.15);
}

.filter-group-btn {
	justify-content: flex-end;
}

.btn-search-shop {
	height: 52px;
	background: linear-gradient(135deg, #D4AF37 0%, #C8971B 100%) !important;
	color: #0B1528 !important;
	border-radius: 30px !important;
	font-weight: 800 !important;
	padding: 0 38px !important;
	font-size: 0.9rem !important;
	letter-spacing: 1.2px !important;
	transition: all 0.35s ease !important;
	box-shadow: 0 6px 20px rgba(200, 151, 27, 0.38) !important;
	border: none !important;
	cursor: pointer;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-search-shop:hover {
	background: linear-gradient(135deg, #E0B83D 0%, #D9A524 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(200, 151, 27, 0.55) !important;
}

/* Shop Catalog Tours Grid */
.shop-tours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
}

/* ==========================================================================
   8. SINGLE TOUR & PRODUCT DETAIL PAGE STYLING
   ========================================================================== */
.tour-single-hero {
	position: relative;
	padding: 100px 0 60px;
	background-size: cover;
	background-position: center;
	color: #ffffff;
}

.hero-single-container {
	position: relative;
	z-index: 2;
}

.single-breadcrumbs {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

.single-breadcrumbs a {
	color: #D4AF37;
	text-decoration: none;
}

.tour-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.badge-gold {
	background: linear-gradient(135deg, #D4AF37 0%, #C8971B 100%);
	color: #0B1528;
	font-weight: 800;
	font-size: 0.78rem;
	padding: 6px 14px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.badge-glass {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.tour-single-title {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.25;
}

.tour-single-rating-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
}

.tour-single-rating-bar .stars i {
	color: #FFC107;
	font-size: 1.1rem;
}

.tour-single-rating-bar .stars span {
	font-weight: 600;
	margin-left: 8px;
	font-size: 0.95rem;
}

.hero-price-tag .label {
	font-size: 0.85rem;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	margin-right: 8px;
}

.hero-price-tag .amount {
	font-size: 2rem;
	font-weight: 800;
	color: #D4AF37;
}

/* Layout Grid */
.tour-single-body {
	background-color: #F8FAFC;
}

.tour-layout-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}

.tour-block {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(11, 21, 40, 0.05);
	border: 1px solid rgba(11, 21, 40, 0.06);
}

.block-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0B1528;
	margin-top: 0;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 2px solid #F1F5F9;
	padding-bottom: 14px;
}

.text-gold { color: #C8971B !important; }
.text-green { color: #16A34A !important; }
.text-red { color: #DC2626 !important; }

/* Highlights List */
.highlights-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 14px;
}

.highlights-list li {
	background: #FFFDF5;
	border: 1px solid rgba(200, 151, 27, 0.2);
	border-radius: 12px;
	padding: 14px 18px;
	font-weight: 600;
	color: #0B1528;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Timeline */
.itinerary-timeline {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	padding-left: 20px;
	border-left: 3px solid #E2E8F0;
}

.itinerary-day-item {
	position: relative;
	background: #F8FAFC;
	border-radius: 14px;
	padding: 20px 24px;
	border: 1px solid #E2E8F0;
}

.itinerary-day-item .day-badge {
	position: absolute;
	left: -37px;
	top: 18px;
	width: 32px;
	height: 32px;
	background: #0B1528;
	color: #D4AF37;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.88rem;
	border: 3px solid #ffffff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.day-title {
	margin: 0 0 8px;
	font-size: 1.15rem;
	color: #0B1528;
	font-weight: 700;
}

.day-desc {
	margin: 0;
	color: #475569;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Services Grid */
.services-comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.service-box {
	border-radius: 16px;
	padding: 24px;
}

.service-includes {
	background: #F0FDF4;
	border: 1.5px solid #BBF7D0;
}

.service-excludes {
	background: #FEF2F2;
	border: 1.5px solid #FECACA;
}

.service-title {
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 1.1rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 8px;
}

.service-title.inc { color: #15803D; }
.service-title.exc { color: #B91C1C; }

.service-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-box ul li {
	font-size: 0.92rem;
	font-weight: 600;
	color: #1E293B;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.4;
}

.bring-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bring-list li {
	font-size: 0.95rem;
	color: #334155;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}

.policies-content p {
	margin-bottom: 10px;
	color: #475569;
	font-size: 0.92rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Sticky Booking Card Sidebar */
.booking-card-sticky {
	position: sticky;
	top: 100px;
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 16px 45px rgba(11, 21, 40, 0.12);
	border: 1px solid rgba(11, 21, 40, 0.08);
}

.card-header-gold {
	background: #0B1528;
	padding: 24px;
	text-align: center;
	color: #ffffff;
}

.card-header-gold .price-label {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.7);
	display: block;
	margin-bottom: 4px;
}

.card-header-gold .price-main {
	font-size: 2.3rem;
	font-weight: 800;
	color: #D4AF37;
}

.card-header-gold .guarantee {
	font-size: 0.8rem;
	color: #38BDF8;
	display: block;
	margin-top: 6px;
}

.card-meta-list {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-bottom: 1px solid #F1F5F9;
}

.card-meta-list .meta-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.card-meta-list .meta-item i {
	font-size: 1.2rem;
	color: #C8971B;
	width: 24px;
	text-align: center;
}

.card-meta-list .meta-item div strong {
	display: block;
	font-size: 0.76rem;
	text-transform: uppercase;
	color: #64748B;
}

.card-meta-list .meta-item div span {
	font-size: 0.92rem;
	font-weight: 700;
	color: #0F172A;
}

.card-actions {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.btn-reserve-gold {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
	color: #ffffff !important;
	border-radius: 30px !important;
	font-weight: 800 !important;
	padding: 16px !important;
	text-align: center;
	font-size: 0.95rem !important;
	letter-spacing: 1px !important;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
	border: none !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
}

.btn-reserve-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6) !important;
}

.btn-inquire-glass {
	background: #F1F5F9 !important;
	color: #0B1528 !important;
	border-radius: 30px !important;
	font-weight: 700 !important;
	padding: 14px !important;
	text-align: center;
	font-size: 0.88rem !important;
	border: 1px solid #CBD5E1 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
}

.card-footer-info {
	padding: 0 24px 20px;
	text-align: center;
}

.card-footer-info p {
	font-size: 0.8rem;
	color: #64748B;
	margin: 4px 0;
}

/* Specs Quick Bar */
.tour-specs-bar {
	background: #ffffff;
	border-bottom: 1px solid #E2E8F0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	padding: 20px 0;
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 16px;
}

.spec-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 12px 16px;
	transition: all 0.25s ease;
}

.spec-card:hover {
	border-color: #C8971B;
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(200, 151, 27, 0.1);
}

.spec-card i {
	font-size: 1.4rem;
	color: #C8971B;
	width: 28px;
	text-align: center;
}

.spec-card .spec-label {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	color: #64748B;
	letter-spacing: 0.5px;
	font-weight: 700;
}

.spec-card .spec-val {
	font-size: 0.92rem;
	color: #0F172A;
	font-weight: 700;
}

/* Gallery Header Row & Badge */
.gallery-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	border-bottom: 2px solid #F1F5F9;
	padding-bottom: 14px;
}

.gallery-count-badge {
	background: #F1F5F9;
	color: #0B1528;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.gallery-count-badge i {
	color: #C8971B;
}

/* Gallery Grid System */
.tour-gallery-grid {
	display: grid;
	gap: 14px;
}

/* 1 Photo */
.tour-gallery-grid.gallery-count-1 {
	grid-template-columns: 1fr;
}
.tour-gallery-grid.gallery-count-1 .gallery-item-link {
	aspect-ratio: 21/9;
	max-height: 380px;
}

/* 2 Photos */
.tour-gallery-grid.gallery-count-2 {
	grid-template-columns: 1fr 1fr;
}
.tour-gallery-grid.gallery-count-2 .gallery-item-link {
	aspect-ratio: 16/10;
}

/* 3 Photos */
.tour-gallery-grid.gallery-count-3 {
	grid-template-columns: 1.2fr 1fr;
	grid-template-rows: repeat(2, 160px);
}
.tour-gallery-grid.gallery-count-3 .item-hero {
	grid-row: span 2;
	aspect-ratio: auto;
	height: 100%;
}
.tour-gallery-grid.gallery-count-3 .gallery-item-link:not(.item-hero) {
	aspect-ratio: auto;
	height: 160px;
}

/* 4 Photos - Perfect 2x2 Grid (Eliminates empty gaps) */
.tour-gallery-grid.gallery-count-4 {
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	width: 100%;
}
.tour-gallery-grid.gallery-count-4 .gallery-item-link {
	aspect-ratio: 16/10;
	width: 100%;
	height: auto;
}

/* 5+ Photos - Bento Featured Layout */
.tour-gallery-grid.gallery-count-5 {
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 150px);
	gap: 12px;
}
.tour-gallery-grid.gallery-count-5 .item-hero {
	grid-column: span 2;
	grid-row: span 2;
	height: 100%;
	aspect-ratio: auto;
}
.tour-gallery-grid.gallery-count-5 .gallery-item-link:not(.item-hero) {
	grid-column: span 1;
	height: 150px;
	aspect-ratio: auto;
}

.gallery-item-link {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	display: block;
}

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

.gallery-hover-overlay {
	position: absolute;
	inset: 0;
	background: rgba(11, 21, 40, 0.6);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* More Overlay "+X Fotos" */
.gallery-more-overlay {
	position: absolute;
	inset: 0;
	background: rgba(11, 21, 40, 0.75);
	backdrop-filter: blur(4px);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: background 0.3s ease;
}

.gallery-more-overlay .more-number {
	font-size: 1.8rem;
	font-weight: 800;
	color: #D4AF37;
	line-height: 1;
	margin-bottom: 4px;
}

.gallery-more-overlay .more-text {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.gallery-item-link:hover .gallery-more-overlay {
	background: rgba(11, 21, 40, 0.88);
}

.gallery-item-link:hover img {
	transform: scale(1.08);
}

.gallery-item-link:hover .gallery-hover-overlay {
	opacity: 1;
}

/* Itinerary Accordion */
.itinerary-accordion-wrapper {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.accordion-item {
	border: 1.5px solid #E2E8F0;
	border-radius: 14px;
	overflow: hidden;
	background: #ffffff;
	transition: border-color 0.25s ease;
}

.accordion-item.active {
	border-color: #C8971B;
	box-shadow: 0 4px 15px rgba(200, 151, 27, 0.08);
}

.accordion-header {
	width: 100%;
	background: #F8FAFC;
	border: none;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.2s ease;
}

.accordion-header:hover {
	background: #F1F5F9;
}

.accordion-badge {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #0B1528;
	color: #D4AF37;
	font-weight: 800;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.accordion-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0F172A;
	flex-grow: 1;
}

.accordion-icon {
	color: #64748B;
	font-size: 0.9rem;
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
	color: #C8971B;
}

.accordion-body {
	padding: 20px 24px;
	border-top: 1px solid #E2E8F0;
	background: #ffffff;
}

/* Safe WYSIWYG Content Styling */
.wysiwyg-content-box {
	font-size: 0.95rem;
	color: #334155;
	line-height: 1.7;
}

.wysiwyg-content-box p {
	margin-bottom: 12px;
}

.wysiwyg-content-box ul,
.wysiwyg-content-box ol {
	padding-left: 20px;
	margin-bottom: 14px;
}

.wysiwyg-content-box li {
	margin-bottom: 6px;
}

/* WhatsApp Booking Form */
.card-booking-form {
	padding: 20px 24px;
	border-bottom: 1px solid #F1F5F9;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.card-booking-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.card-booking-form label {
	font-size: 0.8rem;
	font-weight: 700;
	color: #0F172A;
	display: flex;
	align-items: center;
	gap: 6px;
}

.card-booking-form label i {
	color: #C8971B;
}

.card-booking-form input,
.card-booking-form select {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid #CBD5E1;
	border-radius: 12px;
	font-size: 0.92rem;
	font-weight: 500;
	background: #FFFFFF;
	box-sizing: border-box;
	color: #0F172A;
	transition: all 0.2s ease;
	font-family: inherit;
}

.card-booking-form input:focus,
.card-booking-form select:focus {
	border-color: #C8971B;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(200, 151, 27, 0.15);
	outline: none;
}

/* Custom Calendar Picker Styling */
.card-booking-form input[type="date"] {
	position: relative;
	cursor: pointer;
	color: #0F172A;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.card-booking-form input[type="date"]:hover {
	border-color: #C8971B;
	box-shadow: 0 2px 10px rgba(200, 151, 27, 0.12);
}

.card-booking-form input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	filter: invert(48%) sepia(70%) saturate(600%) hue-rotate(5deg) brightness(90%) contrast(90%);
	padding: 4px;
	border-radius: 6px;
	transition: transform 0.2s ease;
}

.card-booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
	transform: scale(1.2);
}

/* Related Tours Grid */
.related-tours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

@media (max-width: 992px) {
	.tour-layout-grid {
		grid-template-columns: 1fr;
	}

	.related-tours-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.services-comparison-grid {
		grid-template-columns: 1fr;
	}

	.booking-card-sticky {
		position: static;
		margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.tour-block {
		padding: 20px 16px !important;
		border-radius: 16px !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
	}

	.tour-gallery-grid {
		gap: 10px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	.tour-gallery-grid.gallery-count-4 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px !important;
		width: 100% !important;
	}

	.tour-gallery-grid.gallery-count-4 .gallery-item-link {
		aspect-ratio: 16/10 !important;
		height: auto !important;
		width: 100% !important;
		border-radius: 10px !important;
	}

	.tour-gallery-grid.gallery-count-3,
	.tour-gallery-grid.gallery-count-5 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px !important;
		width: 100% !important;
	}

	.tour-gallery-grid.gallery-count-3 .item-hero,
	.tour-gallery-grid.gallery-count-5 .item-hero {
		grid-column: span 2 !important;
		grid-row: span 1 !important;
		height: auto !important;
		aspect-ratio: 16/9 !important;
		width: 100% !important;
	}

	.tour-gallery-grid.gallery-count-3 .gallery-item-link:not(.item-hero),
	.tour-gallery-grid.gallery-count-5 .gallery-item-link:not(.item-hero) {
		grid-column: span 1 !important;
		height: auto !important;
		aspect-ratio: 16/10 !important;
		width: 100% !important;
	}
}

.tour-card.shop-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid #f1f5f9;
	display: flex;
	flex-direction: column;
}

.tour-card.shop-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(11, 21, 40, 0.12);
	border-color: rgba(200, 151, 27, 0.3);
}

.badge-gold {
	background: var(--color-secondary) !important;
	color: #0B1528 !important;
	font-weight: 700 !important;
	font-size: 0.72rem !important;
	padding: 6px 14px !important;
	border-radius: 20px !important;
	letter-spacing: 0.8px !important;
	text-transform: uppercase !important;
	box-shadow: 0 4px 10px rgba(200, 151, 27, 0.3);
}

.card-excerpt {
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 16px;
	flex-grow: 1;
}

/* Shop Featured Banner */
.shop-featured-banner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	background: #0B1528;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(11, 21, 40, 0.3);
}

.featured-banner-image img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}

.featured-banner-content {
	padding: 55px 45px;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.featured-banner-title {
	font-family: var(--font-heading);
	font-size: 2.6rem;
	color: #ffffff;
	margin: 10px 0 15px;
	font-weight: 700;
}

.featured-banner-desc {
	color: #cbd5e1;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 25px;
}

.featured-banner-meta {
	display: flex;
	gap: 25px;
	font-size: 0.9rem;
	color: var(--color-secondary);
	font-weight: 600;
	margin-bottom: 30px;
}

.featured-banner-meta i {
	margin-right: 6px;
}

/* La Diferencia Merk Section */
.difference-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.difference-card {
	padding: 40px 30px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
	border: 1px solid #f1f5f9;
	transition: all 0.35s ease;
}

.difference-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 35px rgba(11, 21, 40, 0.09);
	border-color: rgba(200, 151, 27, 0.3);
}

.difference-icon {
	width: 64px;
	height: 64px;
	background: rgba(200, 151, 27, 0.12);
	color: var(--color-secondary);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.difference-card:hover .difference-icon {
	background: var(--color-secondary);
	color: #0B1528;
	transform: scale(1.1) rotate(5deg);
}

.difference-card h3 {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	color: var(--color-primary);
	margin-bottom: 12px;
	font-weight: 600;
}

.difference-card p {
	font-size: 0.93rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.cta-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 30px;
}

.btn-white-border {
	border: 2px solid #ffffff !important;
	color: #ffffff !important;
}

.btn-white-border:hover {
	background: #ffffff !important;
	color: var(--color-primary) !important;
}

/* Responsive adjustments for /shop/ */
@media (max-width: 1024px) {
	.shop-tours-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	#shop-filter-form {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-featured-banner {
		grid-template-columns: 1fr;
	}

	.featured-banner-content {
		padding: 35px 30px;
	}
}

@media (max-width: 768px) {
	.shop-hero-title {
		font-size: 2.2rem;
	}

	#shop-filter-form {
		grid-template-columns: 1fr;
	}

	.shop-filter-bar {
		margin-top: -30px;
		padding: 20px;
	}

	.shop-tours-grid {
		grid-template-columns: 1fr;
	}

	.difference-grid {
		grid-template-columns: 1fr;
	}

	.cta-actions {
		flex-direction: column;
		gap: 15px;
	}

	.whatsapp-float-btn {
		bottom: 20px;
		right: 20px;
		width: 52px;
		height: 52px;
		font-size: 28px;
	}

	.whatsapp-tooltip {
		display: none;
	}

	.back-to-top-btn {
		bottom: 20px;
		left: 20px;
		width: 42px;
		height: 42px;
	}
}

/* Lightbox Modal Gallery Viewer */
.tm-lightbox-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.tm-lightbox-modal.is-active {
	opacity: 1;
	visibility: visible;
}

.tm-lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(11, 21, 40, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.tm-lightbox-container {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 1100px;
	height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tm-lightbox-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	max-height: 100%;
}

#tm-lightbox-img {
	max-width: 100%;
	max-height: 75vh;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.tm-lightbox-caption {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 18px;
	border-radius: 20px;
	backdrop-filter: blur(6px);
}

.tm-lightbox-close,
.tm-lightbox-prev,
.tm-lightbox-next {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	z-index: 10;
}

.tm-lightbox-close:hover,
.tm-lightbox-prev:hover,
.tm-lightbox-next:hover {
	background: var(--color-secondary, #C8971B);
	color: #0B1528;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(200, 151, 27, 0.4);
}

.tm-lightbox-close {
	position: absolute;
	top: 10px;
	right: 10px;
}

.tm-lightbox-prev {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.tm-lightbox-next {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 768px) {
	.tm-lightbox-prev { left: 5px; }
	.tm-lightbox-next { right: 5px; }
	.tm-lightbox-close,
	.tm-lightbox-prev,
	.tm-lightbox-next {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	#tm-lightbox-img {
		max-height: 65vh;
	}
}

/* Explicit White Background for Blog Section */
.blog-section,
#blog.blog-section {
	background-color: #ffffff !important;
	background: #ffffff !important;
}
.blog-section .section-title {
	color: #0B1528 !important;
}

/* Micro-animations for Testimonial Review Cards */
.testimonial-card {
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
	position: relative;
	overflow: hidden;
}

.testimonial-card:hover {
	transform: translateY(-12px) scale(1.02) !important;
	box-shadow: 0 25px 50px rgba(11, 21, 40, 0.12), 0 0 20px rgba(200, 151, 27, 0.15) !important;
	border-color: rgba(200, 151, 27, 0.5) !important;
}

.quote-icon {
	transition: transform 0.4s ease, color 0.4s ease !important;
}

.testimonial-card:hover .quote-icon {
	transform: scale(1.25) rotate(-10deg) !important;
	color: var(--color-secondary) !important;
}

.review-stars i {
	transition: transform 0.3s ease, color 0.3s ease !important;
}

.testimonial-card:hover .review-stars i {
	animation: starGlow 0.6s ease forwards !important;
}

.testimonial-card:hover .review-stars i:nth-child(1) { animation-delay: 0.05s !important; }
.testimonial-card:hover .review-stars i:nth-child(2) { animation-delay: 0.1s !important; }
.testimonial-card:hover .review-stars i:nth-child(3) { animation-delay: 0.15s !important; }
.testimonial-card:hover .review-stars i:nth-child(4) { animation-delay: 0.2s !important; }
.testimonial-card:hover .review-stars i:nth-child(5) { animation-delay: 0.25s !important; }

@keyframes starGlow {
	0% { transform: scale(1); }
	50% { transform: scale(1.35); color: #FBBF24; }
	100% { transform: scale(1.1); color: #F59E0B; }
}

.review-avatar-round {
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.testimonial-card:hover .review-avatar-round {
	transform: scale(1.12) rotate(4deg) !important;
	border-color: #F59E0B !important;
	box-shadow: 0 8px 20px rgba(200, 151, 27, 0.35) !important;
}

.badge-verified {
	transition: transform 0.3s ease, background 0.3s ease !important;
}

.testimonial-card:hover .badge-verified {
	transform: scale(1.06) !important;
	background: #D1FAE5 !important;
}

/* Circular Team Avatars for About Us Page */
.team-img-wrapper {
	width: 150px !important;
	height: 150px !important;
	border-radius: 50% !important;
	overflow: hidden !important;
	position: relative !important;
	margin: 0 auto 22px auto !important;
	border: 4px solid var(--color-secondary) !important;
	box-shadow: 0 8px 24px rgba(11, 21, 40, 0.12) !important;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
	flex-shrink: 0 !important;
}

.team-img-wrapper img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 50% !important;
	display: block !important;
	transition: transform 0.5s ease !important;
}

.team-card:hover .team-img-wrapper {
	transform: scale(1.08) rotate(3deg) !important;
	border-color: #F59E0B !important;
	box-shadow: 0 12px 30px rgba(200, 151, 27, 0.35) !important;
}

.team-card:hover .team-img-wrapper img {
	transform: scale(1.12) !important;
}

.team-role-badge {
	position: static !important;
	display: inline-block !important;
	background: rgba(200, 151, 27, 0.12) !important;
	color: #B48008 !important;
	font-weight: 700 !important;
	font-size: 0.72rem !important;
	padding: 4px 12px !important;
	border-radius: 20px !important;
	letter-spacing: 0.5px !important;
	text-transform: uppercase !important;
	margin-bottom: 10px !important;
	border: 1px solid rgba(200, 151, 27, 0.3) !important;
	transform: none !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
}

/* ==========================================================================
   ULTRA LUXURY TAILOR YOUR TRIP MODAL POPUP (HIGH-PRIORITY REDESIGN)
   ========================================================================== */
#tm-tailor-modal.tm-modal-overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	background: rgba(11, 21, 40, 0.88) !important;
	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	z-index: 999999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 24px 16px !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

#tm-tailor-modal.tm-modal-overlay.is-active {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

#tm-tailor-modal .tm-modal-container {
	position: relative !important;
	background: #FFFFFF !important;
	color: var(--color-primary, #0B1528) !important;
	width: 100% !important;
	max-width: 720px !important;
	max-height: 90vh !important;
	overflow-y: auto !important;
	border-radius: 28px !important;
	padding: 42px 40px 36px !important;
	box-shadow: 0 35px 100px rgba(11, 21, 40, 0.5), 0 0 0 2px rgba(200, 151, 27, 0.35) !important;
	transform: scale(0.92) translateY(20px) !important;
	transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.35s ease !important;
	text-align: left !important;
}

#tm-tailor-modal.is-active .tm-modal-container {
	transform: scale(1) translateY(0) !important;
}

#tm-tailor-modal .tm-modal-close {
	position: absolute !important;
	top: 22px !important;
	right: 22px !important;
	width: 42px !important;
	height: 42px !important;
	border-radius: 50% !important;
	background: var(--color-light-bg, #F8F9FA) !important;
	border: 1px solid #CBD5E1 !important;
	color: var(--color-primary, #0B1528) !important;
	font-size: 1.25rem !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
	z-index: 10 !important;
}

#tm-tailor-modal .tm-modal-close:hover {
	background: var(--color-primary, #0B1528) !important;
	color: var(--color-secondary, #C8971B) !important;
	border-color: var(--color-primary, #0B1528) !important;
	transform: rotate(90deg) scale(1.1) !important;
	box-shadow: 0 4px 14px rgba(11, 21, 40, 0.35) !important;
}

#tm-tailor-modal .tm-modal-header {
	text-align: center !important;
	margin-bottom: 28px !important;
	padding-bottom: 18px !important;
	border-bottom: 1px solid #F1F5F9 !important;
}

#tm-tailor-modal .badge-gold {
	display: inline-block !important;
	background: rgba(200, 151, 27, 0.12) !important;
	color: var(--color-secondary, #C8971B) !important;
	font-size: 0.78rem !important;
	font-weight: 800 !important;
	padding: 6px 16px !important;
	border-radius: 20px !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	border: 1px solid rgba(200, 151, 27, 0.35) !important;
	margin-bottom: 12px !important;
	transition: transform 0.3s ease !important;
}

#tm-tailor-modal .badge-gold:hover {
	transform: scale(1.05) !important;
}

#tm-tailor-modal .tm-modal-title {
	font-size: 1.85rem !important;
	font-weight: 800 !important;
	color: var(--color-primary, #0B1528) !important;
	margin-bottom: 8px !important;
	line-height: 1.2 !important;
	letter-spacing: -0.5px !important;
}

#tm-tailor-modal .tm-modal-subtitle {
	font-size: 0.92rem !important;
	color: var(--color-gray, #718096) !important;
	margin: 0 !important;
	line-height: 1.5 !important;
	font-weight: 500 !important;
}

#tm-tailor-modal .form-section {
	margin-bottom: 24px !important;
	padding-bottom: 20px !important;
	border-bottom: 1px dashed #E2E8F0 !important;
}

#tm-tailor-modal .form-section-label {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	font-size: 0.95rem !important;
	font-weight: 800 !important;
	color: var(--color-primary, #0B1528) !important;
	margin-bottom: 14px !important;
}

#tm-tailor-modal .form-section-label i {
	color: var(--color-secondary, #C8971B) !important;
}

#tm-tailor-modal .pills-selection-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 12px !important;
}

#tm-tailor-modal .pill-checkbox, 
#tm-tailor-modal .pill-radio {
	display: block !important;
	margin: 0 !important;
	cursor: pointer !important;
}

#tm-tailor-modal .pill-checkbox input, 
#tm-tailor-modal .pill-radio input {
	position: absolute !important;
	opacity: 0 !important;
	pointer-events: none !important;
	width: 0 !important;
	height: 0 !important;
}

#tm-tailor-modal .pill-label {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	padding: 12px 14px !important;
	background: var(--color-light-bg, #F8F9FA) !important;
	border: 1.5px solid #CBD5E1 !important;
	border-radius: 16px !important;
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	color: var(--color-primary, #0B1528) !important;
	cursor: pointer !important;
	transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
	user-select: none !important;
	text-align: center !important;
	position: relative !important;
	overflow: hidden !important;
}

#tm-tailor-modal .pill-label i {
	color: var(--color-secondary, #C8971B) !important;
	font-size: 0.95rem !important;
	transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease !important;
}

#tm-tailor-modal .pill-label:hover {
	border-color: var(--color-secondary, #C8971B) !important;
	background: #FFFFFF !important;
	transform: translateY(-3px) scale(1.02) !important;
	box-shadow: 0 8px 20px rgba(200, 151, 27, 0.22) !important;
}

#tm-tailor-modal .pill-label:hover i {
	transform: scale(1.2) !important;
}

/* SELECTED STATE: ROYAL MIDNIGHT BLUE & LUXURY GOLD */
#tm-tailor-modal .pill-checkbox input:checked + .pill-label,
#tm-tailor-modal .pill-radio input:checked + .pill-label {
	background: linear-gradient(135deg, #0B1528 0%, #16243E 100%) !important;
	border: 2px solid #C8971B !important;
	color: #FFFFFF !important;
	font-weight: 800 !important;
	box-shadow: 0 8px 24px rgba(11, 21, 40, 0.4), 0 0 12px rgba(200, 151, 27, 0.35) !important;
	transform: translateY(-2px) scale(1.02) !important;
}

#tm-tailor-modal .pill-checkbox input:checked + .pill-label i,
#tm-tailor-modal .pill-radio input:checked + .pill-label i {
	transform: scale(1.25) !important;
	color: #F0C040 !important;
}

@keyframes pillPopAnim {
	0% { transform: scale(1); }
	40% { transform: scale(0.95); }
	70% { transform: scale(1.04); }
	100% { transform: scale(1.02); }
}

#tm-tailor-modal .pill-label.pill-pop {
	animation: pillPopAnim 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

#tm-tailor-modal .form-row-2col {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 18px !important;
	margin-bottom: 22px !important;
	padding-bottom: 20px !important;
	border-bottom: 1px dashed #E2E8F0 !important;
}

#tm-tailor-modal .form-group {
	margin-bottom: 0 !important;
}

#tm-tailor-modal .form-group label {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 0.88rem !important;
	font-weight: 800 !important;
	color: var(--color-primary, #0B1528) !important;
	margin-bottom: 8px !important;
}

#tm-tailor-modal .form-group label i {
	color: var(--color-secondary, #C8971B) !important;
}

#tm-tailor-modal .form-group select, 
#tm-tailor-modal .form-group input {
	width: 100% !important;
	box-sizing: border-box !important;
	height: 48px !important;
	padding: 12px 16px !important;
	border: 1.5px solid #CBD5E1 !important;
	border-radius: 14px !important;
	font-size: 0.92rem !important;
	font-weight: 600 !important;
	color: var(--color-primary, #0B1528) !important;
	background: var(--color-light-bg, #F8F9FA) !important;
	outline: none !important;
	transition: all 0.25s ease !important;
	font-family: inherit !important;
}

#tm-tailor-modal .form-group select:focus, 
#tm-tailor-modal .form-group input:focus {
	border-color: var(--color-secondary, #C8971B) !important;
	background: #FFFFFF !important;
	box-shadow: 0 0 0 4px rgba(200, 151, 27, 0.2) !important;
}

#tm-tailor-modal .tm-modal-buttons {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	margin-top: 24px !important;
	margin-bottom: 18px !important;
	width: 100% !important;
}

#tm-tailor-modal .btn-whatsapp-direct {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
	color: #FFFFFF !important;
	font-weight: 800 !important;
	font-size: 0.95rem !important;
	border-radius: 50px !important;
	padding: 13px 28px !important;
	height: 50px !important;
	max-width: 380px !important;
	width: 100% !important;
	margin: 0 auto !important;
	border: none !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4) !important;
	letter-spacing: 0.5px !important;
	text-transform: uppercase !important;
}

#tm-tailor-modal .btn-whatsapp-direct:hover {
	background: linear-gradient(135deg, #28E16D 0%, #159B8C 100%) !important;
	box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55) !important;
	transform: translateY(-3px) scale(1.02) !important;
}

#tm-tailor-modal .tm-modal-trust-footer {
	display: flex !important;
	justify-content: center !important;
	gap: 22px !important;
	margin-top: 22px !important;
	font-size: 0.8rem !important;
	color: var(--color-gray, #718096) !important;
	font-weight: 700 !important;
}

/* HIGHLY OPTIMIZED MOBILE LAYOUT */
@media (max-width: 640px) {
	#tm-tailor-modal.tm-modal-overlay {
		padding: 12px 10px !important;
	}
	#tm-tailor-modal .tm-modal-container {
		padding: 26px 18px 20px !important;
		border-radius: 20px !important;
		max-height: 94vh !important;
		-webkit-overflow-scrolling: touch !important;
	}
	#tm-tailor-modal .tm-modal-close {
		top: 14px !important;
		right: 14px !important;
		width: 36px !important;
		height: 36px !important;
		font-size: 1.1rem !important;
	}
	#tm-tailor-modal .tm-modal-header {
		margin-bottom: 18px !important;
		padding-bottom: 12px !important;
	}
	#tm-tailor-modal .tm-modal-title {
		font-size: 1.35rem !important;
		margin-bottom: 4px !important;
	}
	#tm-tailor-modal .tm-modal-subtitle {
		font-size: 0.82rem !important;
		line-height: 1.4 !important;
	}
	#tm-tailor-modal .form-section {
		margin-bottom: 16px !important;
		padding-bottom: 14px !important;
	}
	#tm-tailor-modal .form-section-label {
		font-size: 0.88rem !important;
		margin-bottom: 10px !important;
	}
	#tm-tailor-modal .pills-selection-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 8px !important;
	}
	#tm-tailor-modal .pill-label {
		padding: 10px 8px !important;
		font-size: 0.78rem !important;
		border-radius: 12px !important;
		min-height: 42px !important;
		gap: 6px !important;
	}
	#tm-tailor-modal .pill-label i {
		font-size: 0.85rem !important;
	}
	#tm-tailor-modal .form-row-2col {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin-bottom: 16px !important;
		padding-bottom: 14px !important;
	}
	#tm-tailor-modal .form-group select, 
	#tm-tailor-modal .form-group input {
		height: 44px !important;
		font-size: 0.88rem !important;
		padding: 10px 14px !important;
		border-radius: 12px !important;
	}
	#tm-tailor-modal .tm-modal-buttons {
		gap: 10px !important;
		margin-top: 16px !important;
	}
	#tm-tailor-modal .btn-gold,
	#tm-tailor-modal .btn-whatsapp-direct {
		padding: 13px !important;
		font-size: 0.88rem !important;
		border-radius: 14px !important;
	}
	#tm-tailor-modal .tm-modal-trust-footer {
		flex-direction: row !important;
		flex-wrap: wrap !important;
		gap: 10px 16px !important;
		margin-top: 16px !important;
		font-size: 0.75rem !important;
	}
}

/* ==========================================================================
   CUSTOM LUXURY DROPDOWN SELECT COMPONENT
   ========================================================================== */
.tm-custom-select-container {
	position: relative !important;
	width: 100% !important;
	user-select: none !important;
	display: block !important;
}

.tm-custom-select-trigger {
	width: 100% !important;
	height: 48px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	background: transparent !important;
	border: none !important;
	outline: none !important;
	padding: 0 4px !important;
	font-family: inherit !important;
	font-size: 0.94rem !important;
	font-weight: 700 !important;
	color: #0B1528 !important;
	cursor: pointer !important;
	text-align: left !important;
	transition: all 0.25s ease !important;
}

.tm-custom-select-trigger:hover {
	color: #C8971B !important;
}

.tm-select-label {
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	flex: 1 !important;
}

.tm-select-chevron {
	color: #C8971B !important;
	font-size: 0.85rem !important;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.tm-custom-select-container.is-open .tm-select-chevron {
	transform: rotate(180deg) !important;
}

.tm-custom-select-dropdown {
	position: absolute !important;
	top: calc(100% + 10px) !important;
	left: 0 !important;
	width: max(100%, 290px) !important;
	max-height: 340px !important;
	background: #FFFFFF !important;
	border: 1.5px solid rgba(200, 151, 27, 0.4) !important;
	border-radius: 20px !important;
	box-shadow: 0 20px 60px rgba(11, 21, 40, 0.25), 0 0 0 1px rgba(200, 151, 27, 0.15) !important;
	backdrop-filter: blur(12px) !important;
	z-index: 99999 !important;
	overflow-y: auto !important;
	padding: 8px !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-8px) scale(0.96) !important;
	transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s ease !important;
}

.tm-custom-select-container.is-open .tm-custom-select-dropdown {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) scale(1) !important;
}

.tm-custom-select-dropdown::-webkit-scrollbar {
	width: 6px !important;
}
.tm-custom-select-dropdown::-webkit-scrollbar-track {
	background: #F1F5F9 !important;
	border-radius: 10px !important;
}
.tm-custom-select-dropdown::-webkit-scrollbar-thumb {
	background: #CBD5E1 !important;
	border-radius: 10px !important;
}
.tm-custom-select-dropdown::-webkit-scrollbar-thumb:hover {
	background: #C8971B !important;
}

.tm-select-option {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
	padding: 11px 14px !important;
	border-radius: 14px !important;
	font-size: 0.88rem !important;
	font-weight: 700 !important;
	color: #0B1528 !important;
	cursor: pointer !important;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
	margin-bottom: 3px !important;
}

.tm-select-option:last-child {
	margin-bottom: 0 !important;
}

.tm-select-option .option-left {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	flex: 1 !important;
}

.tm-select-option .option-icon {
	color: #C8971B !important;
	font-size: 0.9rem !important;
	transition: transform 0.2s ease !important;
}

.tm-select-option:hover {
	background: rgba(200, 151, 27, 0.12) !important;
	color: #0B1528 !important;
	transform: translateX(4px) !important;
}

.tm-select-option:hover .option-icon {
	transform: scale(1.2) !important;
}

.tm-select-option.is-selected {
	background: linear-gradient(135deg, #0B1528 0%, #16243E 100%) !important;
	color: #FFFFFF !important;
	box-shadow: 0 4px 14px rgba(11, 21, 40, 0.3) !important;
}

.tm-select-option.is-selected .option-icon {
	color: #F0C040 !important;
}

.tm-select-option .option-count {
	background: rgba(200, 151, 27, 0.18) !important;
	color: #B48008 !important;
	font-size: 0.75rem !important;
	font-weight: 800 !important;
	padding: 2px 8px !important;
	border-radius: 12px !important;
	transition: all 0.2s ease !important;
}

.tm-select-option.is-selected .option-count {
	background: rgba(240, 192, 64, 0.25) !important;
	color: #F0C040 !important;
}

.tm-select-option .option-check {
	color: #F0C040 !important;
	font-size: 0.85rem !important;
	display: none !important;
}

.tm-select-option.is-selected .option-check {
	display: inline-block !important;
}

/* ==========================================================================
   Libro de Reclamaciones Virtual - High End Design
   ========================================================================== */
.complaints-section {
	background-color: #F8FAFC !important;
	padding: 60px 0 !important;
}

.complaints-card-box {
	background: #FFFFFF !important;
	border-radius: 24px !important;
	box-shadow: 0 20px 50px rgba(11, 21, 40, 0.07), 0 2px 10px rgba(0, 0, 0, 0.03) !important;
	border: 1px solid #E2E8F0 !important;
	padding: 48px 40px !important;
	margin: 0 auto !important;
	max-width: 940px !important;
}

.complaints-header-top {
	border-bottom: 2px dashed #E2E8F0 !important;
	padding-bottom: 28px !important;
	margin-bottom: 36px !important;
}

.complaint-badge-official {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	background: linear-gradient(135deg, #0B1528 0%, #1E293B 100%) !important;
	color: #D4AF37 !important;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	padding: 6px 16px !important;
	border-radius: 50px !important;
	margin-bottom: 12px !important;
}

.complaints-sheet-title {
	font-family: var(--font-heading, 'Poppins', sans-serif) !important;
	color: #0B1528 !important;
	font-size: 2rem !important;
	font-weight: 700 !important;
	margin-bottom: 6px !important;
}

.complaints-sheet-subtitle {
	color: #64748B !important;
	font-size: 0.94rem !important;
	margin-bottom: 0 !important;
}

.complaints-step-block {
	background: #F8FAFC !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 18px !important;
	padding: 28px 24px !important;
	margin-bottom: 32px !important;
}

.complaints-step-title {
	font-family: var(--font-heading, 'Poppins', sans-serif) !important;
	font-size: 1.18rem !important;
	font-weight: 700 !important;
	color: #0B1528 !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding-bottom: 16px !important;
	border-bottom: 1px solid #E2E8F0 !important;
	margin-bottom: 24px !important;
}

.step-num-badge {
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	background: linear-gradient(135deg, #D4AF37 0%, #C8971B 100%) !important;
	color: #0B1528 !important;
	font-size: 0.95rem !important;
	font-weight: 800 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
}

.complaints-grid-2col {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 20px !important;
	margin-bottom: 20px !important;
	align-items: start !important;
}

.complaints-field {
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
}

.complaints-field label {
	font-size: 0.88rem !important;
	font-weight: 600 !important;
	color: #1E293B !important;
	margin-bottom: 2px !important;
}

.complaints-doc-wrap {
	display: flex !important;
	gap: 8px !important;
	width: 100% !important;
	align-items: center !important;
}

.complaints-doc-select {
	flex: 0 0 115px !important;
	width: 115px !important;
}

.complaints-doc-input {
	flex: 1 !important;
	width: 100% !important;
}

.complaints-radio-group {
	display: flex !important;
	gap: 12px !important;
	height: 48px !important;
	align-items: center !important;
	width: 100% !important;
}

.complaints-radio-pill {
	flex: 1 !important;
	height: 48px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	border: 1px solid #CBD5E1 !important;
	border-radius: 12px !important;
	background: #FFFFFF !important;
	cursor: pointer !important;
	font-size: 0.88rem !important;
	font-weight: 500 !important;
	color: #334155 !important;
	transition: all 0.25s ease !important;
	margin: 0 !important;
	user-select: none !important;
}

.complaints-radio-pill input[type="radio"] {
	display: none !important;
}

.complaints-radio-pill:hover,
.complaints-radio-pill.is-active {
	border-color: #C8971B !important;
	background: #FFFDF5 !important;
	color: #0B1528 !important;
	box-shadow: 0 2px 8px rgba(200, 151, 27, 0.12) !important;
}

.complaints-input,
.complaints-select,
.complaints-textarea {
	width: 100% !important;
	height: 48px !important;
	border-radius: 12px !important;
	border: 1px solid #CBD5E1 !important;
	padding: 0 16px !important;
	font-size: 0.94rem !important;
	color: #0F172A !important;
	background: #FFFFFF !important;
	transition: all 0.25s ease !important;
	outline: none !important;
	font-family: inherit !important;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.02) !important;
	box-sizing: border-box !important;
}

.complaints-textarea {
	height: auto !important;
	min-height: 100px !important;
	padding: 14px 16px !important;
	line-height: 1.5 !important;
}

.complaints-input:focus,
.complaints-select:focus,
.complaints-textarea:focus {
	border-color: #C8971B !important;
	background: #FFFFFF !important;
	box-shadow: 0 0 0 4px rgba(200, 151, 27, 0.18) !important;
}

.complaints-alert-msg {
	padding: 16px 20px !important;
	border-radius: 14px !important;
	font-size: 0.92rem !important;
	line-height: 1.5 !important;
	margin-bottom: 24px !important;
}

.complaints-alert-msg.alert-success {
	background: #ECFDF5 !important;
	border: 1px solid #A7F3D0 !important;
	color: #065F46 !important;
}

.complaints-alert-msg.alert-error {
	background: #FEF2F2 !important;
	border: 1px solid #FECACA !important;
	color: #991B1B !important;
}

.btn-complaints-submit {
	border-radius: 50px !important;
	padding: 14px 44px !important;
	font-weight: 800 !important;
	font-size: 0.96rem !important;
	letter-spacing: 0.6px !important;
	box-shadow: 0 8px 24px rgba(200, 151, 27, 0.4) !important;
}

@media (max-width: 768px) {
	.complaints-card-box {
		padding: 24px 16px !important;
		border-radius: 16px !important;
	}

	.complaints-grid-2col {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}
}

/* Autocomplete Popover Positioning Fix */
.search-field-keyword,
.filter-group-search,
.search-field-wrap,
.hero-filter-row {
	position: relative !important;
}

.tm-autocomplete-popover {
	position: absolute !important;
	top: calc(100% + 8px) !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	max-height: 400px !important;
	z-index: 999999 !important;
}

@media (max-width: 768px) {
	.tm-autocomplete-popover {
		position: absolute !important;
		top: calc(100% + 8px) !important;
		bottom: auto !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		max-height: 50vh !important;
		z-index: 999999 !important;
	}

	/* Mobile Spacing for Section Titles to Prevent Card Overlap */
	.section-header,
	.best-tours-section .section-header,
	.categories-section .reveal-item:first-child {
		margin-bottom: 36px !important;
	}

	.section-title {
		margin-bottom: 12px !important;
	}

	.tours-grid,
	.categories-masonry,
	.related-tours-grid {
		margin-top: 10px !important;
	}
}

/* Card Meta Single-Line Alignment */
.tour-meta {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 8px !important;
	white-space: nowrap !important;
	margin-bottom: 12px !important;
}

.tour-meta span {
	white-space: nowrap !important;
	font-size: 0.85rem !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
}

/* Destinations & Global Section Header Spacing */
.section-header {
	margin-bottom: 50px !important;
	text-align: center;
}

.section-header .section-subtitle {
	display: block !important;
	margin-bottom: 12px !important;
	letter-spacing: 2px !important;
	font-weight: 700 !important;
	font-size: 0.88rem !important;
	text-transform: uppercase !important;
	color: #C8971B !important;
}

.section-header .section-title {
	font-size: 2.3rem !important;
	line-height: 1.25 !important;
	margin-top: 6px !important;
	margin-bottom: 16px !important;
	color: #0B1528 !important;
	font-weight: 700 !important;
}

.section-intro-desc {
	margin-top: 14px !important;
	margin-bottom: 0 !important;
	font-size: 1.05rem !important;
	line-height: 1.65 !important;
	color: #64748B !important;
	max-width: 680px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 768px) {
	.section-header {
		margin-bottom: 38px !important;
		padding: 0 15px !important;
	}

	.section-header .section-title {
		font-size: 1.75rem !important;
		margin-bottom: 14px !important;
	}

	.section-intro-desc {
		font-size: 0.95rem !important;
		line-height: 1.55 !important;
	}
}

/* Hide Mobile Elements on Desktop */
@media (min-width: 993px) {
	.menu-toggle,
	.mobile-nav-close {
		display: none !important;
	}
}

/* Single Product Layout Grid & Container Constraints */
.tour-single-body {
	background: #F8FAFC !important;
	padding: 50px 0 !important;
}

.tour-layout-grid {
	display: grid !important;
	grid-template-columns: 1fr 370px !important;
	gap: 36px !important;
	align-items: start !important;
}

.tour-main-content {
	min-width: 0 !important; /* Prevents grid items from expanding past 100% width */
}

/* Tour Content Blocks */
.tour-block {
	background: #FFFFFF !important;
	border-radius: 20px !important;
	padding: 32px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
	border: 1px solid #F1F5F9 !important;
	margin-bottom: 30px !important;
}

.block-title {
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	color: #0B1528 !important;
	margin-top: 0 !important;
	margin-bottom: 20px !important;
	padding-bottom: 14px !important;
	border-bottom: 2px solid #F1F5F9 !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}

/* Post Content & Images Responsiveness Fix */
.the-content-wrapper,
.wysiwyg-content-box,
.tour-main-content {
	font-size: 1.02rem !important;
	line-height: 1.75 !important;
	color: #334155 !important;
}

.the-content-wrapper p,
.wysiwyg-content-box p {
	margin-bottom: 18px !important;
}

.the-content-wrapper img,
.wysiwyg-content-box img,
.tour-main-content img,
.tour-single-body img {
	max-width: 100% !important;
	height: auto !important;
	border-radius: 16px !important;
	object-fit: cover !important;
	margin: 16px 0 !important;
	display: block !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}

/* WordPress Gallery & Gutenberg Blocks Fix */
.the-content-wrapper .wp-block-gallery,
.the-content-wrapper figure.wp-block-image,
.the-content-wrapper .gallery {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
	gap: 16px !important;
	margin: 24px 0 !important;
}

.the-content-wrapper .wp-block-gallery img,
.the-content-wrapper figure.wp-block-image img {
	width: 100% !important;
	height: 220px !important;
	object-fit: cover !important;
	border-radius: 14px !important;
}

/* Tour Photo Gallery Bento Grid */
.tour-gallery-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 14px !important;
	margin-top: 20px !important;
}

.gallery-item-link {
	position: relative !important;
	display: block !important;
	height: 200px !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
}

.gallery-item-link img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	margin: 0 !important;
	transition: transform 0.4s ease !important;
}

.gallery-item-link:hover img {
	transform: scale(1.06) !important;
}

.gallery-item-link.item-hero {
	grid-column: span 2 !important;
	grid-row: span 2 !important;
	height: 414px !important;
}

/* Single Product Sidebar Booking Card */
.tour-sidebar {
	position: sticky !important;
	top: 100px !important;
}

.booking-widget-card {
	background: #FFFFFF !important;
	border-radius: 24px !important;
	padding: 30px 26px !important;
	box-shadow: 0 15px 40px rgba(11, 21, 40, 0.08) !important;
	border: 1px solid #E2E8F0 !important;
}

/* Responsive Breakpoints for Tablet & Mobile */
@media (max-width: 1024px) {
	.tour-layout-grid {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}

	.tour-sidebar {
		position: static !important;
	}
}

@media (max-width: 768px) {
	.tour-block {
		padding: 22px 18px !important;
		border-radius: 16px !important;
	}

	.tour-gallery-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px !important;
	}

	.gallery-item-link.item-hero {
		grid-column: span 2 !important;
		height: 260px !important;
	}

	.gallery-item-link {
		height: 140px !important;
	}
}

/* Centered Tours Category Filter Bar */
.tours-filter {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	margin-top: 24px !important;
	margin-bottom: 40px !important;
	text-align: center !important;
}

.tours-filter .filter-btn {
	background: #FFFFFF !important;
	border: 1px solid #E2E8F0 !important;
	color: #0B1528 !important;
	padding: 10px 22px !important;
	border-radius: 50px !important;
	font-weight: 600 !important;
	font-size: 0.92rem !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

.tours-filter .filter-btn:hover,
.tours-filter .filter-btn.active {
	background: #0B1528 !important;
	color: #C8971B !important;
	border-color: #0B1528 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 18px rgba(11, 21, 40, 0.15) !important;
}
