/*
Theme Name: Andean Magic
Theme URI: https://cuscocreativos.com
Author: Cusco Creativos
Author URI: https://cuscocreativos.com
Description: Tema personalizado para la agencia de viajes Andean Magic. Optimizado para SEO, compatible con WooCommerce y Polylang.
Version: 1.0.0
Text Domain: andean-magic
Tags: travel, woocommerce, translation-ready, seo-optimized, custom-colors
*/

/* ==========================================================================
   Variables de Diseño (Design Tokens)
   ========================================================================== */
:root {
	/* Colores Primarios (Extraídos del Logo) */
	--color-primary: #305178;    /* Azul profundo del fondo/texto principal */
	--color-accent: #f08012;     /* Naranja vibrante de la letra 'M' */
	
	/* Colores de Fondo y Texto */
	--color-bg-light: #ffffff;
	--color-bg-alt: #f4f7f9;
	--color-text-main: #333333;
	--color-text-muted: #666666;
	
	/* Tipografía */
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   Estilos Base (Reset & Typography)
   ========================================================================== */
body {
	font-family: var(--font-body);
	color: var(--color-text-main);
	background-color: var(--color-bg-light);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-weight: 700;
	margin-top: 0;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--color-primary);
}

/* ==========================================================================
   Utilidades
   ========================================================================== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.text-white { color: #ffffff; }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }

.btn {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.btn-outline {
	border-color: #ffffff;
	color: #ffffff;
	background: transparent;
}

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

/* ==========================================================================
   Header Transparente & Acciones
   ========================================================================== */
.absolute-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 1.5rem 0;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
}

.header-left, .header-right {
	flex: 1;
}

.header-left {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1.5rem;
}

.header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.menu-toggle {
	background: transparent;
	border: none;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 8px;
	z-index: 1001;
	position: relative;
}

.menu-toggle-icon {
	width: 26px;
	height: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 2.5px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
	transform-origin: center;
}

/* Animated X state */
.menu-toggle.is-active .hamburger-line--top {
	transform: translateY(8.75px) rotate(45deg);
}
.menu-toggle.is-active .hamburger-line--mid {
	opacity: 0;
	transform: scaleX(0);
}
.menu-toggle.is-active .hamburger-line--bot {
	transform: translateY(-8.75px) rotate(-45deg);
}

.logo-link {
	text-decoration: none;
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.5px;
}

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

.user-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

/* Responsive Header Tuning */
@media (max-width: 1100px) {
	.user-actions {
		gap: 1rem;
	}
}

.lang-switcher {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.lang-btn {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.7rem;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
	color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-1px);
}

.lang-btn.active {
	color: #ffffff;
	background: rgba(240, 128, 18, 0.25);
	border-color: var(--color-accent);
	box-shadow: 0 2px 8px rgba(240, 128, 18, 0.2);
}

.lang-flag {
	font-size: 1.15rem;
	line-height: 1;
}

.lang-label {
	letter-spacing: 0.5px;
}

.custom-tour-link {
	color: #ffffff;
	font-weight: 500;
	position: relative;
}

.custom-tour-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--color-accent);
	transition: width 0.3s ease;
}

.custom-tour-link:hover { color: #ffffff; }
.custom-tour-link:hover::after { width: 100%; }

.main-navigation { display: none; }

/* ==========================================================================
   Menu Drawer (Fullscreen Slide-In Panel)
   ========================================================================== */
.menu-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(13, 33, 55, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-drawer-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.menu-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 380px;
	max-width: 90vw;
	height: 100vh;
	height: 100dvh;
	background: linear-gradient(175deg, #0d2137 0%, #162d47 40%, #1a3b5c 100%);
	z-index: 999;
	transform: translateX(-105%);
	transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
	box-shadow: 8px 0 40px rgba(0,0,0,0.3);
}

.menu-drawer.is-open {
	transform: translateX(0);
}

/* ── Drawer Header ── */
.drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	flex-shrink: 0;
}

.drawer-logo .logo-text {
	font-size: 1.5rem;
}

.drawer-close {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.7);
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}

.drawer-close:hover {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
	transform: rotate(90deg);
}

/* ── Drawer Navigation ── */
.drawer-nav {
	padding: 1.5rem 0;
	flex: 1;
}

.drawer-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.drawer-menu-list .menu-item {
	opacity: 0;
	transform: translateX(-20px);
}

.menu-drawer.is-open .drawer-menu-list .menu-item {
	animation: drawerItemSlide 0.5s ease forwards;
}

.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(2) { animation-delay: 0.15s; }
.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(4) { animation-delay: 0.25s; }
.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(5) { animation-delay: 0.3s; }
.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(6) { animation-delay: 0.35s; }
.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(7) { animation-delay: 0.4s; }
.menu-drawer.is-open .drawer-menu-list .menu-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes drawerItemSlide {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.drawer-menu-list .menu-item a {
	display: flex;
	align-items: center;
	padding: 1rem 2rem;
	color: rgba(255, 255, 255, 0.85);
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	transition: all 0.3s;
	border-left: 3px solid transparent;
}

.drawer-menu-list .menu-item a:hover,
.drawer-menu-list .menu-item.current-menu-item > a,
.drawer-menu-list .menu-item.current_page_item > a {
	color: #ffffff;
	background: rgba(255,255,255,0.04);
	border-left-color: var(--color-accent);
	padding-left: 2.3rem;
}

.drawer-menu-list .menu-item a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, rgba(240, 128, 18, 0.08), transparent);
	transition: width 0.3s;
}

.drawer-menu-list .menu-item a:hover::before {
	width: 100%;
}

/* Submenu */
.drawer-menu-list .sub-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	background: rgba(0,0,0,0.1);
}

.drawer-menu-list .sub-menu .menu-item a {
	font-size: 0.95rem;
	font-weight: 500;
	padding-left: 3rem;
	color: rgba(255,255,255,0.65);
}

.drawer-menu-list .sub-menu .menu-item a:hover {
	color: var(--color-accent);
	padding-left: 3.3rem;
}

/* ── Drawer CTA Group ── */
.drawer-cta-group {
	padding: 1rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	flex-shrink: 0;
}

.drawer-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.9rem 1.5rem;
	border-radius: 14px;
	font-weight: 700;
	font-size: 0.9rem;
	font-family: var(--font-heading);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	text-align: center;
}

.drawer-cta--primary {
	background: var(--color-accent);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(240, 128, 18, 0.3);
}

.drawer-cta--primary:hover {
	background: #d9700e;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(240, 128, 18, 0.4);
}

.drawer-cta--whatsapp {
	background: rgba(37, 211, 102, 0.12);
	color: #25d366;
	border: 1px solid rgba(37, 211, 102, 0.2);
}

.drawer-cta--whatsapp:hover {
	background: #25d366;
	color: #ffffff;
	border-color: #25d366;
	transform: translateY(-2px);
}

/* ── Drawer Footer ── */
.drawer-footer {
	padding: 1.5rem 2rem;
	border-top: 1px solid rgba(255,255,255,0.06);
	flex-shrink: 0;
}

.drawer-lang {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.2rem;
}

.drawer-lang-label {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}

.drawer-lang-options {
	display: flex;
	gap: 0.4rem;
}

.drawer-lang-btn {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.9rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	color: rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.06);
}

.drawer-lang-btn .lang-flag {
	font-size: 1.1rem;
	line-height: 1;
}

.drawer-lang-btn.active,
.drawer-lang-btn:hover {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
}

.drawer-socials {
	display: flex;
	gap: 0.8rem;
	margin-bottom: 1rem;
}

.drawer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 10px;
	color: rgba(255,255,255,0.5);
	transition: all 0.3s;
}

.drawer-socials a:hover {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
	transform: translateY(-3px);
}

.drawer-copyright {
	font-size: 0.72rem;
	color: rgba(255,255,255,0.25);
	margin: 0;
}

/* ── Body lock when drawer is open ── */
body.drawer-is-open {
	overflow: hidden;
}

/* ── Responsive: Hide actions on mobile, show in drawer ── */
@media (max-width: 768px) {
	.user-actions {
		display: none;
	}
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-slideshow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	animation: heroSlideAnim 15s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes heroSlideAnim {
	0% { opacity: 0; transform: scale(1); }
	5% { opacity: 1; }
	33.33% { opacity: 1; }
	38% { opacity: 0; transform: scale(1.05); }
	100% { opacity: 0; transform: scale(1.15); }
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(48, 81, 120, 0.4), rgba(0, 0, 0, 0.6));
	z-index: 1;
}

.hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-content {
	text-align: center;
	color: #ffffff;
	max-width: 900px;
	margin: 0 auto;
}

.hero-title {
	color: #ffffff;
	font-size: clamp(3rem, 5vw, 4.5rem);
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -1px;
}

.hero-subtitle {
	font-size: 0.9rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 3rem;
	opacity: 0.9;
}

/* ==========================================================================
   Search Bar (Glassmorphism Blur Effect)
   ========================================================================== */
.hero-search-wrapper.blur-effect {
	/* Glassmorphism background */
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50px;
	padding: 0.5rem;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tour-search-form {
	display: flex;
	align-items: center;
	width: 100%;
}

.search-field {
	flex: 1;
	padding: 0.5rem 1rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.field-icon {
	color: var(--color-primary);
	opacity: 0.6;
}

.search-field input,
.search-field select {
	width: 100%;
	border: none;
	background: transparent;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-main);
	outline: none;
	cursor: pointer;
}

.search-field input::placeholder {
	color: #888;
	font-weight: 400;
}

.search-field select {
	appearance: none;
	-webkit-appearance: none;
	display: none; /* Hide original select, JS will replace it */
}

/* ==========================================================================
   Custom Select Dropdown
   ========================================================================== */
.custom-select-wrapper {
	position: relative;
	width: 100%;
}

.custom-select-trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-main);
	background: transparent;
	width: 100%;
	user-select: none;
}

.custom-select-options {
	position: absolute;
	top: 140%;
	left: -20px;
	width: calc(100% + 40px);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
	border: 1px solid rgba(255, 255, 255, 0.6);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 100;
	max-height: 250px;
	overflow-y: auto;
	list-style: none;
	padding: 0.5rem 0;
	margin: 0;
}

.custom-select-options.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.custom-select-options::-webkit-scrollbar {
	width: 6px;
}

.custom-select-options::-webkit-scrollbar-thumb {
	background-color: rgba(48, 81, 120, 0.3);
	border-radius: 10px;
}

.custom-select-option {
	padding: 0.8rem 1.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: var(--font-body);
	color: var(--color-text-main);
	font-weight: 500;
	font-size: 0.95rem;
}

.custom-select-option:hover {
	background-color: rgba(48, 81, 120, 0.05); /* Light primary color */
	color: var(--color-primary);
	padding-left: 1.8rem;
}

.custom-select-option.selected {
	color: var(--color-accent);
	font-weight: 700;
	background-color: rgba(240, 128, 18, 0.05);
}

.search-divider {
	width: 1px;
	height: 30px;
	background-color: rgba(0, 0, 0, 0.1);
}

.btn-search {
	background-color: var(--color-accent);
	color: #ffffff;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.btn-search:hover {
	background-color: #d9700e;
	transform: scale(1.05);
}

/* ==========================================================================
   Popups (Modals)
   ========================================================================== */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(13, 33, 55, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.popup-container {
	background-color: #ffffff;
	width: 92%;
	max-width: 600px;
	border-radius: 24px;
	position: relative;
	transform: translateY(30px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
	display: none;
	box-shadow: 0 30px 60px -12px rgba(13, 33, 55, 0.3), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	border: 1px solid rgba(48, 81, 120, 0.08);
}

.popup-container.active {
	display: block;
	animation: popupFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popupFadeIn {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Premium Visual Header Art */
.popup-header-art {
	height: 110px;
	background: linear-gradient(135deg, var(--color-primary) 0%, #102a43 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.popup-header-art::before {
	content: '';
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(240, 128, 18, 0.12);
	bottom: -60px;
	right: -20px;
	pointer-events: none;
}

.popup-art-icon {
	width: 56px;
	height: 56px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	box-shadow: 0 8px 24px rgba(240, 128, 18, 0.25);
	position: relative;
	z-index: 2;
}

.popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.popup-close:hover {
	background: #ffffff;
	color: var(--color-accent);
	transform: scale(1.1) rotate(90deg);
}

.popup-content-inner {
	padding: 2rem 2.2rem 2.2rem 2.2rem;
}

.popup-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.6rem;
	text-align: center;
	line-height: 1.3;
}

.popup-desc {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	margin-bottom: 1.8rem;
	text-align: center;
	line-height: 1.5;
}

/* Premium Form Styles with Icon support */
.input-with-icon {
	position: relative;
}

.input-with-icon input,
.input-with-icon textarea {
	padding-left: 2.8rem !important;
	z-index: 1;
}

.input-with-icon .field-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	pointer-events: none;
	transition: color 0.3s ease, transform 0.3s ease;
	z-index: 2;
	display: flex;
	align-items: center;
}

.input-with-icon.input-type-textarea .field-icon {
	top: 20px;
	transform: none;
}

/* Icon focus color matching form input focus */
.input-with-icon input:focus + .field-icon,
.input-with-icon textarea:focus + .field-icon {
	color: var(--color-accent) !important;
	transform: translateY(-50%) scale(1.05);
}

.input-with-icon.input-type-textarea textarea:focus + .field-icon {
	transform: scale(1.05);
}

/* Submit button flight effect */
.btn-premium-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	padding: 0.9rem 1.5rem !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	box-shadow: 0 4px 15px rgba(240, 128, 18, 0.2) !important;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
	font-family: var(--font-heading) !important;
	cursor: pointer;
}

.btn-premium-submit:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 25px rgba(240, 128, 18, 0.35) !important;
}

.btn-premium-submit .submit-arrow {
	transition: transform 0.3s ease;
}

.btn-premium-submit:hover .submit-arrow {
	transform: translate(3px, -3px) scale(1.05);
}

.custom-form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.form-row { display: flex; flex-direction: column; }

.custom-form input,
.custom-form textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--color-text-main);
	background-color: #f8fafc;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.custom-form input:focus,
.custom-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(48, 81, 120, 0.1);
}

.custom-form textarea {
	resize: vertical;
	min-height: 100px;
}

.btn-primary { background-color: var(--color-accent); color: #ffffff; }
.btn-primary:hover { background-color: #d9700e; color: #ffffff; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ==========================================================================
   Popular Places Section
   ========================================================================== */
.popular-places-section {
	padding: 5rem 0;
	background-color: var(--color-bg-light);
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.section-title {
	font-size: 1.6rem;
	color: #2c2c2c;
	margin: 0;
	font-weight: 700;
}

.view-all-link {
	color: var(--color-text-muted);
	font-weight: 500;
	font-size: 0.95rem;
}

.view-all-link:hover {
	color: var(--color-primary);
}

.filter-pills {
	display: flex;
	gap: 0.8rem;
	margin-bottom: 2rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scrollbar-width: none;
}

.filter-pills::-webkit-scrollbar {
	display: none;
}

.pill {
	background-color: #f6f6f6;
	border: none;
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.9rem;
	color: #999999;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.pill.active, .pill:hover {
	background-color: #2c2c2c;
	color: #ffffff;
}

.places-slider-wrapper {
	position: relative;
	width: 100%;
}

.places-grid {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none; /* Firefox */
	padding-bottom: 20px; /* For hover effects */
	margin-bottom: -20px;
}

.places-grid::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

.place-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 380px;
	flex: 0 0 280px; /* Fixed width for horizontal scroll */
	background-size: cover;
	background-position: center;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	z-index: 10;
	transition: all 0.3s ease;
	color: var(--color-primary);
}

.slider-arrow:hover {
	background: var(--color-primary);
	color: #ffffff;
}

.prev-arrow {
	left: -20px;
}

.next-arrow {
	right: -20px;
}

@media (max-width: 1200px) {
	.prev-arrow { left: 0; }
	.next-arrow { right: 0; }
}



.place-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.place-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

.place-card-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.place-card-heart {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	z-index: 2;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease;
}

.place-card-heart:hover {
	background: rgba(255, 255, 255, 0.9);
	color: #ff4b4b;
}

.place-card-content {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	background: #1e293b; /* Dark navy blue from the design */
	padding: 1rem 1.2rem;
	border-radius: 16px;
	color: #ffffff;
	z-index: 2;
}

.place-title {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.place-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
}

.place-location {
	display: flex;
	align-items: center;
	gap: 5px;
}

.place-location svg {
	opacity: 0.7;
}

.place-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.8rem;
}

.place-rating svg {
	color: #a0aab2; /* Light greyish star from design */
	width: 12px;
	height: 12px;
}

/* ==========================================================================
   Most Visited Tours Section
   ========================================================================== */
.most-visited-section {
	padding: 0 0 5rem 0;
	background-color: var(--color-bg-light);
}

.tours-grid {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none; /* Firefox */
	padding-bottom: 20px; /* For hover effects */
	margin-bottom: -20px;
}

.tours-grid::-webkit-scrollbar {
	display: none;
}

.tour-card {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #eaeaea;
	display: flex;
	flex-direction: column;
	flex: 0 0 300px; /* Fixed width for horizontal scroll */
}

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

.tour-card-image {
	position: relative;
	height: 200px;
	background-size: cover;
	background-position: center;
	margin: 0;
	border-radius: 0;
}

.tour-card-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tour-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #002b5c; /* Dark blue matching design */
	line-height: 1.3;
}

.tour-title a {
	color: inherit;
}

.tour-title a:hover {
	color: var(--color-accent);
}

.tour-meta-info {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed #d1d5db;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	color: #002b5c; /* Dark blue text */
}

.meta-item svg {
	color: #d9700e; /* Accent color for icons */
}

.tour-excerpt {
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.tour-footer-price {
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
	gap: 8px;
	margin-top: auto;
}

.price-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
}

.price-amount {
	font-size: 1.3rem;
	font-weight: 700;
	color: #002b5c;
}

.price-amount .woocommerce-Price-amount {
	color: inherit;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
	padding: 5rem 0;
	background-color: var(--color-bg-alt); /* Light gray to contrast with white cards */
}

.benefits-section .section-header {
	justify-content: center;
	margin-bottom: 3.5rem;
}

.benefits-section .section-title {
	font-size: 2.2rem;
	text-align: center;
	color: var(--color-text-main);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.benefit-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	border: 1px solid rgba(48, 81, 120, 0.05);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(240, 128, 18, 0.03) 0%, rgba(48, 81, 120, 0.03) 100%);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(48, 81, 120, 0.08);
	border-color: rgba(240, 128, 18, 0.2);
}

.benefit-card:hover::before {
	opacity: 1;
}

.benefit-icon {
	width: 75px;
	height: 75px;
	background: rgba(48, 81, 120, 0.05);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem auto;
	color: var(--color-primary);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover .benefit-icon {
	background: var(--color-primary);
	color: #ffffff;
	transform: scale(1.1) rotate(5deg);
	border-radius: 50%;
}

.benefit-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text-main);
}

.benefit-desc {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   Full Day Tours Section
   ========================================================================== */
.full-day-tours-section {
	padding: 5rem 0;
	background-color: var(--color-bg-light);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
	padding: 5rem 0;
	background-color: var(--color-bg-alt); /* Light background for contrast */
}

.faq-section .section-header {
	justify-content: center;
	margin-bottom: 3.5rem;
}

.faq-section .section-title {
	font-size: 2.2rem;
	text-align: center;
	color: var(--color-text-main);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.faq-item {
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	border: 1px solid rgba(48, 81, 120, 0.05);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	padding: 1.5rem;
	font-family: var(--font-body);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text-main);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: var(--color-primary);
}

.faq-icon {
	color: var(--color-primary);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer-inner {
	padding: 0 1.5rem 1.5rem 1.5rem;
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* ==========================================================================
   Shop Archive Layout — Premium Redesign
   ========================================================================== */

/* ── Shop Hero ── */
.shop-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
	display: flex;
	align-items: center;
	min-height: 65vh;
	padding: 0;
}

.shop-hero-badge {
	display: inline-block;
	background: rgba(240, 128, 18, 0.2);
	border: 1px solid rgba(240, 128, 18, 0.4);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	padding: 0.5rem 1.8rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.shop-hero-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 1rem !important;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
	line-height: 1.1;
}

.shop-hero-desc {
	font-size: 1.1rem !important;
	opacity: 0.85;
	max-width: 600px;
	margin: 0 auto !important;
	line-height: 1.6;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.shop-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	color: rgba(255,255,255,0.5);
	animation: shopBounce 2s infinite;
}

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

/* ── Shop Content Section ── */
.shop-content-section {
	padding: 4rem 0 5rem;
	background: var(--color-bg-alt);
}

.shop-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2.5rem;
	align-items: start;
}

/* ── Sidebar Filters ── */
.filter-widget-wrapper {
	background: #ffffff;
	border-radius: 20px;
	padding: 0;
	position: sticky;
	top: 100px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.04);
	border: 1px solid rgba(48, 81, 120, 0.06);
	overflow: hidden;
}

.filter-widget-header {
	background: linear-gradient(135deg, var(--color-primary) 0%, #1a3b5c 100%);
	color: #ffffff;
	padding: 1.2rem 1.8rem;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.3px;
}

.filter-section {
	padding: 1.5rem 1.8rem;
	border-bottom: 1px solid rgba(48, 81, 120, 0.06);
}

.filter-section--last {
	border-bottom: none;
}

.filter-title {
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	margin-top: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.filter-title svg {
	color: var(--color-accent);
	flex-shrink: 0;
}

.filter-trust {
	padding: 1.5rem 1.8rem;
	background: rgba(48, 81, 120, 0.02);
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.filter-trust-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.82rem;
	color: var(--color-text-muted);
	font-weight: 500;
}

.filter-trust-item svg {
	flex-shrink: 0;
}

/* ── Shop Controls ── */
.shop-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	background: #ffffff;
	padding: 1rem 1.5rem;
	border-radius: 14px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	border: 1px solid rgba(48, 81, 120, 0.05);
}

.shop-controls-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
	justify-content: space-between;
}

.shop-controls .woocommerce-ordering {
	margin: 0;
}

.shop-controls .woocommerce-ordering select {
	border: 1px solid rgba(48, 81, 120, 0.12);
	border-radius: 10px;
	padding: 0.5rem 2.5rem 0.5rem 1rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--color-text-main);
	background: var(--color-bg-alt);
	cursor: pointer;
	transition: all 0.3s;
	outline: none;
}

.shop-controls .woocommerce-ordering select:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(240, 128, 18, 0.1);
}

.shop-controls .woocommerce-result-count {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

/* ── Tour Cards Grid ── */
.shop-tours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

/* ── Tour Card (Premium) ── */
.shop-tour-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.04);
	border: 1px solid rgba(48, 81, 120, 0.06);
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	animation: shopCardFadeIn 0.6s ease-out both;
}

@keyframes shopCardFadeIn {
	from {
		opacity: 0;
		transform: translateY(25px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.shop-tour-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(48, 81, 120, 0.12);
	border-color: rgba(240, 128, 18, 0.2);
}

.shop-tour-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.shop-tour-card-image {
	position: relative;
	height: 220px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.shop-tour-card-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 40%,
		rgba(13, 33, 55, 0.6) 100%
	);
	z-index: 1;
	transition: opacity 0.4s;
}

.shop-tour-card:hover .shop-tour-card-image::before {
	background: linear-gradient(
		to bottom,
		transparent 30%,
		rgba(13, 33, 55, 0.7) 100%
	);
}

.shop-tour-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(240, 128, 18, 0.08);
	opacity: 0;
	transition: opacity 0.4s;
	z-index: 1;
}

.shop-tour-card:hover .shop-tour-card-overlay {
	opacity: 1;
}

.shop-tour-price-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--color-primary);
	padding: 0.5rem 1rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.95rem;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(0,0,0,0.12);
	transition: all 0.3s;
}

.shop-tour-price-badge del {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	font-weight: 400;
}

.shop-tour-price-badge ins {
	text-decoration: none;
	color: var(--color-accent);
	font-weight: 800;
}

.shop-tour-card:hover .shop-tour-price-badge {
	background: var(--color-accent);
	color: #fff;
	transform: scale(1.05);
}

.shop-tour-card:hover .shop-tour-price-badge del {
	color: rgba(255,255,255,0.7);
}

.shop-tour-card:hover .shop-tour-price-badge ins {
	color: #fff;
}

.shop-tour-duration-badge {
	position: absolute;
	bottom: 14px;
	left: 14px;
	background: rgba(13, 33, 55, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #ffffff;
	padding: 0.35rem 0.8rem;
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 600;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	letter-spacing: 0.3px;
}

/* ── Card Body ── */
.shop-tour-card-body {
	padding: 1.4rem 1.5rem 1.5rem;
}

.shop-tour-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 0.8rem 0;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
}

.shop-tour-card:hover .shop-tour-title {
	color: var(--color-accent);
}

.shop-tour-meta-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.8rem;
	flex-wrap: wrap;
}

.shop-tour-location,
.shop-tour-service {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.8rem;
	color: var(--color-text-muted);
	font-weight: 500;
}

.shop-tour-location svg,
.shop-tour-service svg {
	color: var(--color-accent);
	flex-shrink: 0;
}

.shop-tour-excerpt {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	margin-bottom: 1.2rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.shop-tour-cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(48, 81, 120, 0.06);
}

.shop-tour-view-btn {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-accent);
	transition: all 0.3s;
}

.shop-tour-view-btn svg {
	transition: transform 0.3s;
}

.shop-tour-card:hover .shop-tour-view-btn svg {
	transform: translateX(4px);
}

.shop-tour-rating {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--color-primary);
}

/* ── Pagination ── */
.shop-pagination {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.shop-pagination nav.woocommerce-pagination ul {
	border: none;
	display: flex;
	gap: 10px;
}

.shop-pagination nav.woocommerce-pagination ul li {
	border: none;
}

.shop-pagination nav.woocommerce-pagination ul li a, 
.shop-pagination nav.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fff;
	color: var(--color-primary);
	font-weight: 700;
	transition: all 0.3s;
	border: 1px solid rgba(48, 81, 120, 0.08);
	padding: 0;
	font-size: 0.95rem;
}

.shop-pagination nav.woocommerce-pagination ul li span.current {
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 4px 15px rgba(48, 81, 120, 0.25);
}

.shop-pagination nav.woocommerce-pagination ul li a:hover {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
	transform: translateY(-2px);
}

/* ── No Results State (Premium) ── */
.shop-no-results {
	text-align: center;
	padding: 4rem 2rem;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.04);
	border: 1px solid rgba(48, 81, 120, 0.06);
}

.shop-no-results-illustration {
	margin-bottom: 2rem;
	animation: shopFloat 4s ease-in-out infinite;
}

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

.shop-no-results-illustration svg {
	max-width: 200px;
	height: auto;
}

.shop-no-results-title {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.8rem;
}

.shop-no-results-desc {
	font-size: 1rem;
	color: var(--color-text-muted);
	max-width: 480px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.shop-no-results-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.shop-no-results-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.8rem;
	border-radius: 14px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	font-family: var(--font-heading);
}

.shop-no-results-btn--primary {
	background: var(--color-accent);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(240, 128, 18, 0.3);
}

.shop-no-results-btn--primary:hover {
	background: var(--color-primary);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(48, 81, 120, 0.3);
}

.shop-no-results-btn--outline {
	background: transparent;
	color: var(--color-primary);
	border: 2px solid rgba(48, 81, 120, 0.15);
}

.shop-no-results-btn--outline:hover {
	border-color: var(--color-primary);
	background: rgba(48, 81, 120, 0.04);
	color: var(--color-primary);
	transform: translateY(-3px);
}

.shop-no-results-contact {
	padding-top: 2rem;
	border-top: 1px solid rgba(48, 81, 120, 0.06);
}

.shop-no-results-contact p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin-bottom: 0.8rem;
}

.shop-no-results-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #25d366;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	background: rgba(37, 211, 102, 0.08);
}

.shop-no-results-whatsapp:hover {
	background: #25d366;
	color: #fff;
	transform: translateY(-2px);
}

/* ── WooCommerce Filter Widgets ── */
.filter-section .widget {
	margin-bottom: 0;
}

.filter-section .widget-title {
	display: none; /* Hidden, we use our own titles */
}

.widget_price_filter .price_slider_wrapper .ui-slider {
	background: rgba(48, 81, 120, 0.08);
	height: 6px;
	border-radius: 3px;
	margin-bottom: 1.5rem;
}

.widget_price_filter .ui-slider-range {
	background: linear-gradient(90deg, var(--color-accent), #f0a050);
	height: 100%;
	border-radius: 3px;
}

.widget_price_filter .ui-slider-handle {
	background: #fff;
	border: 2px solid var(--color-accent);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	top: -6px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(240, 128, 18, 0.25);
	transition: transform 0.2s;
}

.widget_price_filter .ui-slider-handle:hover {
	transform: scale(1.2);
}

.widget_price_filter .price_slider_amount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: var(--color-text-main);
}

.widget_price_filter .button {
	background: var(--color-primary);
	color: #fff;
	border: none;
	padding: 0.5rem 1.2rem;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 600;
	font-size: 0.85rem;
}

.widget_price_filter .button:hover {
	background: var(--color-accent);
	transform: translateY(-1px);
}

.widget_product_categories ul, .widget_layered_nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget_product_categories ul li, .widget_layered_nav ul li {
	margin-bottom: 0;
}

.widget_product_categories ul li a, .widget_layered_nav ul li a {
	color: var(--color-text-main);
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s;
	padding: 0.55rem 0.8rem;
	border-radius: 10px;
	font-size: 0.9rem;
}

.widget_product_categories ul li a:hover, .widget_layered_nav ul li a:hover {
	color: var(--color-accent);
	background: rgba(240, 128, 18, 0.04);
	padding-left: 1rem;
}

.widget_product_categories ul li .count, .widget_layered_nav ul li .count {
	background: rgba(48, 81, 120, 0.06);
	color: var(--color-text-muted);
	padding: 2px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
}

.widget_product_tag_cloud .tagcloud a {
	display: inline-block;
	background: rgba(48, 81, 120, 0.04);
	color: var(--color-text-main);
	padding: 0.4rem 0.9rem;
	border-radius: 20px;
	text-decoration: none;
	font-size: 0.82rem !important;
	margin: 0 0.4rem 0.5rem 0;
	transition: all 0.3s;
	border: 1px solid rgba(48, 81, 120, 0.06);
	font-weight: 500;
}

.widget_product_tag_cloud .tagcloud a:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
	transform: translateY(-1px);
}

/* ── Shop Responsive ── */
@media (max-width: 1024px) {
	.shop-layout {
		grid-template-columns: 260px 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.shop-hero {
		min-height: 50vh;
	}

	.shop-hero-title {
		font-size: 2rem !important;
	}

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

	.filter-widget-wrapper {
		position: static;
	}

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

	.shop-no-results-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.shop-no-results-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
	padding: 5rem 0 7rem 0;
	background-color: var(--color-bg-light);
}

.blog-slider-wrapper {
	position: relative;
}

.blog-slider-wrapper > .slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.blog-slider-wrapper > .prev-arrow {
	left: -20px;
}

.blog-slider-wrapper > .next-arrow {
	right: -20px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.blog-grid .blog-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #f0f0f0;
	display: flex;
	flex-direction: column;
}

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

.blog-card-image-link {
	display: block;
	overflow: hidden;
}

.blog-card-image {
	height: 220px;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: transform 0.5s ease;
}

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

.blog-category-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--color-primary);
	color: #ffffff;
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 2;
}

.blog-card-content {
	padding: 1.8rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 1rem;
	color: #888;
	font-size: 0.85rem;
}

.blog-date {
	display: flex;
	align-items: center;
	gap: 6px;
}

.blog-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1rem;
	color: var(--color-text-main);
}

.blog-title a {
	color: inherit;
	transition: color 0.3s ease;
}

.blog-title a:hover {
	color: var(--color-primary);
}

.blog-excerpt {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.blog-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--color-primary);
	font-size: 0.95rem;
	transition: color 0.3s ease;
	margin-top: auto;
}

.blog-read-more svg {
	transition: transform 0.3s ease;
}

.blog-read-more:hover {
	color: var(--color-accent);
}

.blog-read-more:hover svg {
	transform: translateX(5px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background-color: var(--color-primary);
	color: #e0e0e0;
	font-family: var(--font-body);
}

.footer-top {
	padding: 5rem 1rem 3rem 1rem;
}

.footer-columns {
	display: grid;
	grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
	gap: 3rem;
}

.footer-col-brand .footer-logo {
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.footer-col-brand .footer-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #cccccc;
	margin-bottom: 2rem;
}

.footer-contact {
	margin-bottom: 2rem;
}

.footer-contact .contact-item {
	margin-bottom: 1.2rem;
}

.footer-contact .contact-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--color-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.3rem;
}

.footer-contact .contact-value {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-contact .contact-value:hover {
	color: var(--color-accent);
}

.footer-socials {
	display: flex;
	gap: 1rem;
}

.footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: var(--color-accent);
	transition: all 0.3s ease;
}

.footer-socials a:hover {
	background: var(--color-accent);
	color: #ffffff;
	transform: translateY(-3px);
}

.footer-heading {
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 0.8rem;
}

.footer-menu a {
	color: #cccccc;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s;
}

.footer-menu a:hover {
	color: var(--color-accent);
}

.footer-menu.list-bullet li {
	position: relative;
	padding-left: 15px;
}

.footer-menu.list-bullet li::before {
	content: "•";
	color: #cccccc;
	position: absolute;
	left: 0;
	top: -1px;
	font-size: 1.2rem;
	transition: color 0.3s;
}

.footer-menu.list-bullet li:hover::before {
	color: var(--color-accent);
}

.mt-3 {
	margin-top: 2.5rem;
}

.footer-location {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.95rem;
	color: #cccccc;
	line-height: 1.5;
}

.location-icon {
	flex-shrink: 0;
	margin-top: 3px;
	stroke: var(--color-accent);
}

.payment-methods {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.payment-icon {
	height: 28px;
	width: auto;
	max-width: 60px;
	max-height: 28px;
	background: #ffffff;
	padding: 4px 8px;
	border-radius: 6px;
	object-fit: contain;
	display: inline-block;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: #aaaaaa;
}

.footer-bottom-inner p {
	margin: 0;
}

.footer-bottom-inner a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-bottom-inner a:hover {
	text-decoration: underline;
	color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
	.tour-search-form {
		flex-direction: column;
		border-radius: 15px;
	}
	.hero-search-wrapper.blur-effect {
		border-radius: 20px;
		padding: 1.5rem;
	}
	.search-divider {
		width: 100%;
		height: 1px;
		margin: 0.5rem 0;
	}
	.search-field { width: 100%; padding: 0.5rem 0; }
	.search-submit { width: 100%; margin-top: 1rem; }
	.btn-search { width: 100%; border-radius: 50px; }
	
	.footer-columns {
		grid-template-columns: 1fr 1fr;
	}
}

/* ==========================================================================
   Single Product — Tour Page (sp-*)
   ========================================================================== */

/* Hero Banner */
.sp-hero {
	position: relative;
	height: 80vh;
	min-height: 500px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 4rem;
	overflow: hidden;
}

.sp-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 0;
	animation: spHeroZoom 20s linear infinite alternate;
}

@keyframes spHeroZoom {
	0% { transform: scale(1); }
	100% { transform: scale(1.1); }
}

.sp-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 33, 55, 0.95) 0%, rgba(13, 33, 55, 0.4) 40%, rgba(13, 33, 55, 0.1) 100%);
	z-index: 1;
}
.sp-hero-inner {
	position: relative;
	z-index: 2;
	padding-bottom: 5rem;
}
.sp-breadcrumbs {
	margin-bottom: 1rem;
}
.sp-breadcrumb-nav,
.sp-breadcrumb-nav a {
	color: rgba(255,255,255,0.7);
	font-size: 0.85rem;
	text-decoration: none;
	transition: color 0.3s;
}
.sp-breadcrumb-nav a:hover {
	color: var(--color-accent);
}
.sp-bc-sep {
	margin: 0 0.4rem;
	opacity: 0.5;
}
.sp-hero-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.2rem;
	line-height: 1.15;
	text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.sp-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}
.sp-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.15);
	color: #fff;
	padding: 0.45rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
}
.sp-meta-pill svg {
	flex-shrink: 0;
}

/* Gallery Thumbnail Strip */
.sp-hero-thumbs {
	position: relative;
	z-index: 2;
	padding: 0 2rem 2rem;
}
.sp-thumbs-track {
	display: flex;
	gap: 8px;
	justify-content: center;
}
.sp-thumb {
	width: 80px;
	height: 56px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	border: 3px solid transparent;
	cursor: pointer;
	opacity: 0.6;
	transition: all 0.3s;
}
.sp-thumb:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}
.sp-thumb.active {
	opacity: 1;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 2px rgba(240, 128, 18, 0.3);
}

/* Content Section */
.sp-content-section {
	padding: 4rem 0 5rem;
	background: var(--color-bg-alt);
}
.sp-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 3rem;
	align-items: flex-start;
}

/* Quick Info Cards */
.sp-quick-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: 3rem;
}
.sp-qcard {
	background: #fff;
	border-radius: 16px;
	padding: 1.2rem;
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
	border: 1px solid rgba(0,0,0,0.04);
	transition: transform 0.2s, box-shadow 0.2s;
}
.sp-qcard:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.sp-qcard-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 12px;
	background: rgba(240, 128, 18, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
}
.sp-qcard-text {
	display: flex;
	flex-direction: column;
}
.sp-qcard-label {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.2rem;
}
.sp-qcard-text strong {
	font-size: 0.95rem;
	color: var(--color-primary);
}

/* Section Blocks */
.sp-section {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
	border: 1px solid rgba(0,0,0,0.04);
}
.sp-section-title {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(240, 128, 18, 0.15);
}
.sp-section-body {
	line-height: 1.8;
	color: var(--color-text-main);
	font-size: 1rem;
}
.sp-section-body p { margin-bottom: 1rem; }

/* Timeline Itinerary */
.sp-timeline {
	position: relative;
}
.sp-timeline-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 0;
}
.sp-timeline-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 20px;
}
.sp-marker-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--color-accent);
	border: 3px solid rgba(240, 128, 18, 0.2);
	box-shadow: 0 0 0 3px rgba(240, 128, 18, 0.1);
	flex-shrink: 0;
	margin-top: 4px;
}
.sp-marker-line {
	width: 2px;
	flex-grow: 1;
	background: linear-gradient(to bottom, var(--color-accent), rgba(240, 128, 18, 0.15));
	margin: 4px 0;
}
.sp-timeline-card {
	background: var(--color-bg-alt);
	border-radius: 14px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	flex-grow: 1;
	border: 1px solid rgba(0,0,0,0.04);
	transition: box-shadow 0.2s;
}
.sp-timeline-card:hover {
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.sp-day-badge {
	display: inline-block;
	background: rgba(240, 128, 18, 0.12);
	color: var(--color-accent);
	padding: 0.3rem 0.8rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.6rem;
}
.sp-day-title {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.6rem;
}
.sp-day-body {
	line-height: 1.7;
	color: var(--color-text-main);
	font-size: 0.95rem;
}
.sp-day-body p { margin-bottom: 0.5rem; }

/* Details Grid */
.sp-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.sp-detail-card {
	background: var(--color-bg-alt);
	border-radius: 14px;
	padding: 1.5rem;
	border: 1px solid rgba(0,0,0,0.04);
}
.sp-detail-header {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1rem;
}
.sp-detail-header h4 {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	color: var(--color-primary);
	font-weight: 600;
	margin: 0;
}
.sp-detail-body {
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--color-text-main);
}
.sp-detail-body ul {
	padding-left: 1.2rem;
	margin: 0;
}
.sp-detail-body li {
	margin-bottom: 0.4rem;
}

/* ── Booking Sidebar ── */
.sp-booking-card {
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	border: 1px solid rgba(0,0,0,0.04);
	position: sticky;
	top: 100px;
}
.sp-booking-price-row {
	text-align: center;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sp-booking-price {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.2;
}
.sp-booking-price del {
	font-size: 1rem;
	color: var(--color-text-muted);
	font-weight: 400;
}
.sp-booking-price ins {
	text-decoration: none;
	color: var(--color-accent);
}
.sp-price-label {
	display: block;
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-top: 0.3rem;
}

/* Booking Highlights */
.sp-booking-highlights {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sp-bh-row {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.55rem 0;
	font-size: 0.9rem;
	color: var(--color-text-main);
}
.sp-bh-row svg {
	flex-shrink: 0;
}

/* Booking Form Fields */
.sp-booking-field {
	width: 100%;
	margin-bottom: 0.3rem;
}
.sp-field-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}
.sp-field-label svg {
	flex-shrink: 0;
}
.sp-date-input {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 12px;
	font-size: 1rem;
	font-family: var(--font-body);
	color: var(--color-text-main);
	background: var(--color-bg-alt);
	cursor: pointer;
	transition: border-color 0.3s, box-shadow 0.3s;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}
.sp-date-input:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(240, 128, 18, 0.15);
}
.sp-date-input::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.6;
	filter: invert(0.4);
}

/* WooCommerce Add to Cart inside booking card */
.sp-booking-form {
	width: 100%;
}
.sp-booking-form .cart {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	align-items: center;
}
.sp-booking-form .cart > * {
	width: 100%;
}
.sp-booking-form .quantity {
	width: 100%;
}
.sp-booking-form .quantity .qty {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 12px;
	font-size: 1rem;
	text-align: center;
	background: var(--color-bg-alt);
	box-sizing: border-box;
}
.sp-booking-form .single_add_to_cart_button,
.sp-booking-form button.single_add_to_cart_button,
.sp-booking-form .button.single_add_to_cart_button {
	width: 100% !important;
	background: var(--color-accent) !important;
	color: #fff !important;
	border: none !important;
	padding: 1rem !important;
	border-radius: 14px !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	font-family: var(--font-heading) !important;
	cursor: pointer;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.sp-booking-form .single_add_to_cart_button:hover,
.sp-booking-form button.single_add_to_cart_button:hover {
	background: var(--color-primary) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(48, 81, 120, 0.3);
}

/* Trust Badges */
.sp-trust-badges {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.sp-trust-item {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.85rem;
	color: var(--color-text-muted);
}
.sp-trust-item svg {
	flex-shrink: 0;
}

/* WhatsApp Button */
.sp-whatsapp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100%;
	margin-top: 1.2rem;
	padding: 0.9rem;
	background: #25d366;
	color: #fff;
	border-radius: 14px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}
.sp-whatsapp-btn:hover {
	background: #128c7e;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Tour Builder (Customizable Itinerary)
   ========================================================================== */
.tour-builder {
	margin-bottom: 1rem;
}

.tb-header {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(48, 81, 120, 0.08);
	margin-bottom: 1rem;
}

.tb-header-icon {
	width: 36px;
	height: 36px;
	background: rgba(240, 128, 18, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	flex-shrink: 0;
}

.tb-header-title {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 0.2rem 0;
}

.tb-header-desc {
	font-size: 0.78rem;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.3;
}

/* ── Base Price ── */
.tb-base-price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.7rem 0.9rem;
	background: rgba(48, 81, 120, 0.03);
	border-radius: 10px;
	margin-bottom: 0.8rem;
	border: 1px dashed rgba(48, 81, 120, 0.1);
}

.tb-base-label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--color-text-muted);
	font-weight: 500;
}

.tb-base-label svg {
	color: var(--color-accent);
	flex-shrink: 0;
}

.tb-base-value {
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--color-primary);
}

/* ── Destination Items ── */
.tb-destinations-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.tb-dest-item {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.7rem 0.9rem;
	border-radius: 12px;
	border: 1.5px solid rgba(48, 81, 120, 0.08);
	background: #ffffff;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
}

.tb-dest-item:hover {
	border-color: rgba(48, 81, 120, 0.15);
	background: rgba(48, 81, 120, 0.01);
}

.tb-dest-item.is-selected {
	border-color: rgba(240, 128, 18, 0.3);
	background: rgba(240, 128, 18, 0.03);
}

.tb-dest-item.is-selected:hover {
	border-color: rgba(240, 128, 18, 0.5);
}

/* Type-specific accents */
.tb-dest-type--service.is-selected {
	border-color: rgba(240, 128, 18, 0.3);
	background: rgba(240, 128, 18, 0.03);
}
.tb-dest-type--food.is-selected {
	border-color: rgba(76, 175, 80, 0.3);
	background: rgba(76, 175, 80, 0.03);
}

/* Hidden checkbox */
.tb-dest-checkbox {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

/* Toggle Switch */
.tb-dest-toggle {
	width: 36px;
	height: 20px;
	background: rgba(48, 81, 120, 0.12);
	border-radius: 20px;
	position: relative;
	flex-shrink: 0;
	transition: background 0.3s;
}

.tb-dest-toggle-knob {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	background: #ffffff;
	border-radius: 50%;
	transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.tb-dest-item.is-selected .tb-dest-toggle {
	background: var(--color-accent);
}

.tb-dest-item.is-selected .tb-dest-toggle-knob {
	left: 18px;
}

.tb-dest-type--food.is-selected .tb-dest-toggle {
	background: #4caf50;
}

/* Dest Info */
.tb-dest-info {
	flex: 1;
	min-width: 0;
}

.tb-dest-name-row {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.tb-dest-type-icon {
	font-size: 0.85rem;
	flex-shrink: 0;
}

.tb-dest-name {
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.2;
}

.tb-dest-desc {
	display: block;
	font-size: 0.72rem;
	color: var(--color-text-muted);
	margin-top: 0.15rem;
	line-height: 1.3;
}

.tb-dest-price {
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--color-primary);
	flex-shrink: 0;
	white-space: nowrap;
}

.tb-dest-item.is-selected .tb-dest-price {
	color: var(--color-accent);
}

/* ── Price Summary ── */
.tb-summary {
	background: rgba(48, 81, 120, 0.03);
	border-radius: 12px;
	padding: 0.8rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(48, 81, 120, 0.06);
}

.tb-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.4rem 0;
	font-size: 0.82rem;
	color: var(--color-text-muted);
}

.tb-summary-row + .tb-summary-row {
	border-top: 1px solid rgba(48, 81, 120, 0.05);
}

.tb-summary-total {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-primary);
	padding-top: 0.6rem !important;
	margin-top: 0.2rem;
	border-top: 2px solid rgba(240, 128, 18, 0.15) !important;
}

/* ── Dynamic Price Display ── */
.tb-currency {
	font-size: 1.2rem;
	font-weight: 600;
	vertical-align: top;
	margin-right: 2px;
	color: var(--color-accent);
}

.tb-total-amount {
	font-size: 2rem;
	font-weight: 800;
	color: var(--color-primary);
	transition: color 0.3s;
}

/* Price flash animation */
.tb-price-flash {
	color: var(--color-accent) !important;
	animation: tbFlash 0.4s ease;
}

@keyframes tbFlash {
	0% { transform: scale(1); }
	50% { transform: scale(1.08); }
	100% { transform: scale(1); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.sp-grid {
		grid-template-columns: 1fr;
	}
	.sp-sidebar-col {
		order: -1;
	}
	.sp-booking-card {
		position: static;
	}
	.sp-quick-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.sp-hero-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 768px) {
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.shop-layout {
		grid-template-columns: 1fr;
	}
	.shop-sidebar .filter-widget-wrapper {
		position: static;
		margin-bottom: 2rem;
	}
	.footer-columns {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	.sp-hero {
		min-height: 60vh;
	}
	.sp-hero-title {
		font-size: 1.8rem;
	}
	.sp-hero-meta {
		flex-direction: column;
		gap: 0.5rem;
	}
	.sp-quick-cards {
		grid-template-columns: 1fr;
	}
	.sp-details-grid {
		grid-template-columns: 1fr;
	}
	.sp-section {
		padding: 1.5rem;
		border-radius: 14px;
	}
	.sp-thumbs-track {
		overflow-x: auto;
		justify-content: flex-start;
		padding-bottom: 0.5rem;
	}
}

/* ==========================================================================
   Luxury Tour Enhancements (Custom Premium styling)
   ========================================================================== */

/* 1. Quick Info Cards Grid (5-column adaptive layout) */
.sp-quick-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.2rem;
	margin-bottom: 3rem;
}
.sp-qcard {
	background: #ffffff;
	border-radius: 16px;
	padding: 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.9rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	border: 1px solid rgba(48, 81, 120, 0.08);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sp-qcard:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(48, 81, 120, 0.08);
	border-color: rgba(240, 128, 18, 0.3);
}
.sp-qcard-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 50%;
	background: rgba(240, 128, 18, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	transition: all 0.3s;
}
.sp-qcard:hover .sp-qcard-icon {
	background: var(--color-accent);
	color: #fff;
	transform: scale(1.05);
}
.sp-qcard-text {
	display: flex;
	flex-direction: column;
}
.sp-qcard-label {
	font-size: 0.72rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.7px;
	margin-bottom: 0.15rem;
}
.sp-qcard-text strong {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-primary);
}

/* 2. Interactive Accordion Timeline */
.sp-timeline-item {
	position: relative;
	cursor: pointer;
}
.sp-timeline-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.03);
	background: #ffffff;
}
.sp-timeline-item:hover .sp-timeline-card {
	border-color: rgba(240, 128, 18, 0.2);
	box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.sp-timeline-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.sp-timeline-toggle-icon {
	color: var(--color-text-muted);
	transition: transform 0.3s ease;
}
.sp-timeline-item.active .sp-timeline-toggle-icon {
	transform: rotate(180deg);
	color: var(--color-accent);
}
.sp-day-body {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease-out, opacity 0.3s, margin-top 0.3s;
	margin-top: 0;
}
.sp-timeline-item.active .sp-day-body {
	max-height: 2000px;
	opacity: 1;
	margin-top: 1rem;
}

/* 3. Brand Differentials "Why Choose Andean Magic?" */
.sp-brand-section {
	background: linear-gradient(145deg, #1a3048 0%, #0d2137 100%);
	color: #ffffff;
	border-radius: 24px;
	padding: 3.5rem 3rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 12px 30px rgba(13, 33, 55, 0.15);
	position: relative;
	overflow: hidden;
}
.sp-brand-section::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(240, 128, 18, 0.08) 0%, transparent 70%);
	pointer-events: none;
}
.sp-brand-title {
	color: #ffffff !important;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2.5rem;
	letter-spacing: -0.5px;
	position: relative;
}
.sp-brand-title span {
	color: var(--color-accent);
}
.sp-differentials-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.2rem;
}
.sp-differential-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 1.8rem 1rem;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sp-differential-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(240, 128, 18, 0.5);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.sp-diff-icon {
	width: 52px;
	height: 52px;
	background: rgba(240, 128, 18, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	margin-bottom: 1.2rem;
	transition: all 0.3s;
}
.sp-differential-card:hover .sp-diff-icon {
	background: var(--color-accent);
	color: #fff;
	box-shadow: 0 0 15px rgba(240, 128, 18, 0.4);
}
.sp-diff-title {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.6rem;
}
.sp-diff-desc {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.45;
}

/* 4. Luxury Checklist "What to Bring" */
.sp-what-to-bring-box {
	background: #f8fafc;
	border-radius: 18px;
	border: 1px solid #e2e8f0;
	padding: 2rem;
	margin-top: 1.5rem;
}
.sp-what-to-bring-title {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.sp-what-to-bring-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}
.sp-bring-item {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.6rem 1rem;
	background: #ffffff;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.03);
	font-size: 0.9rem;
	color: var(--color-text-main);
	transition: all 0.2s;
}
.sp-bring-item:hover {
	border-color: rgba(240, 128, 18, 0.2);
	background: #fffdfb;
}
.sp-bring-icon {
	color: #16a34a;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

/* 5. FAQs Accordion & Structured QA Layout */
.faq-accordion {
	margin-top: 1.5rem;
}
.faq-item {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	margin-bottom: 0.8rem;
	overflow: hidden;
	background: #ffffff;
	transition: all 0.3s;
}
.faq-item:hover {
	border-color: rgba(240, 128, 18, 0.3);
	box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 1.5rem;
	font-weight: 600;
	color: var(--color-primary);
	cursor: pointer;
	user-select: none;
	background: #ffffff;
	transition: all 0.3s;
	font-size: 1rem;
}
.faq-question:hover {
	background: #fafbfc;
	color: var(--color-accent);
}
.faq-icon {
	color: var(--color-accent);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.2s, padding 0.2s;
	background: #fafbfc;
	border-top: 0 solid #e2e8f0;
	font-size: 0.92rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}
.faq-item.active {
	border-color: var(--color-accent);
}
.faq-item.active .faq-answer {
	max-height: 1000px;
	opacity: 1;
	padding: 1.2rem 1.5rem;
	border-top-width: 1px;
}
.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

/* 6. Luxury Reviews Section (Google / TripAdvisor ratings) */
.sp-reviews-section {
	background: #ffffff;
	border-radius: 20px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.02);
	border: 1px solid rgba(0,0,0,0.04);
}
.sp-reviews-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid rgba(240, 128, 18, 0.12);
	padding-bottom: 1.2rem;
}
.sp-reviews-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
}
.sp-trust-scores {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.sp-trust-badge {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: #f8fafc;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	border: 1px solid #e2e8f0;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
}
.sp-trust-badge.sp-trust--google svg {
	color: #4285F4;
}
.sp-trust-badge.sp-trust--tripadvisor svg {
	color: #00AF87;
}
.sp-reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.sp-review-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.sp-review-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.04);
	border-color: rgba(240, 128, 18, 0.25);
}
.sp-review-rating {
	color: #ffb800;
	margin-bottom: 0.6rem;
	font-size: 0.85rem;
}
.sp-review-text {
	font-style: italic;
	font-size: 0.88rem;
	color: var(--color-text-main);
	margin-bottom: 1.2rem;
	line-height: 1.55;
	flex-grow: 1;
}
.sp-review-author {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--color-primary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.sp-review-author::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--color-accent);
	border-radius: 50%;
}

/* 7. Tailor-Made Experiences Elegant Banner */
.tailor-made-cta {
	background: linear-gradient(rgba(13, 33, 55, 0.88), rgba(13, 33, 55, 0.88)), url('https://images.unsplash.com/photo-1526392060635-9d6019884377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
	color: #ffffff;
	border-radius: 24px;
	padding: 4rem 2.5rem;
	text-align: center;
	margin-top: 3.5rem;
	box-shadow: 0 12px 35px rgba(13, 33, 55, 0.15);
	position: relative;
	overflow: hidden;
}
.tailor-made-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	margin: 10px;
	pointer-events: none;
}
.tailor-made-content {
	max-width: 680px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.tailor-made-tag {
	background: var(--color-accent);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	letter-spacing: 1.5px;
	display: inline-block;
	margin-bottom: 1.2rem;
}
.tailor-made-title {
	color: #ffffff !important;
	font-size: 2.2rem;
	margin-top: 0;
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1.2;
}
.tailor-made-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 2.2rem;
	line-height: 1.6;
}
.btn-tailor-made {
	background: #ffffff;
	color: var(--color-primary);
	padding: 0.95rem 2.2rem;
	border-radius: 50px;
	font-weight: 700;
	font-family: var(--font-heading);
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-size: 0.9rem;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	border: 1px solid transparent;
}
.btn-tailor-made:hover {
	background: var(--color-accent);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(240, 128, 18, 0.45);
}

/* 8. Booking Sidebar Enhancements */
.sp-booking-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(48, 81, 120, 0.08);
}
.sp-booking-card:hover {
	box-shadow: 0 15px 45px rgba(48, 81, 120, 0.08);
}
.sp-booking-form button.single_add_to_cart_button {
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(240, 128, 18, 0.25);
}
.sp-booking-form button.single_add_to_cart_button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: all 0.5s;
}
.sp-booking-form button.single_add_to_cart_button:hover::before {
	left: 100%;
	transition: all 0.6s ease;
}

/* 9. Responsive layout tweaks */
@media (max-width: 1024px) {
	.sp-differentials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.sp-differentials-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.sp-brand-section {
		padding: 2.5rem 1.5rem;
		border-radius: 18px;
	}
	.tailor-made-cta {
		padding: 3rem 1.5rem;
		border-radius: 18px;
	}
	.tailor-made-title {
		font-size: 1.7rem;
	}
	.sp-what-to-bring-box {
		padding: 1.5rem;
	}
	.sp-reviews-section {
		padding: 1.5rem;
	}
}

/* ==========================================================================
   Tour Builder Accordion — Collapsible Styles
   ========================================================================== */
.tb-accordion {
	border: 1px solid rgba(48, 81, 120, 0.12);
	border-radius: 14px;
	overflow: hidden;
	background: #ffffff;
	margin-bottom: 1.2rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.02);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tb-accordion:hover {
	box-shadow: 0 8px 24px rgba(48, 81, 120, 0.06);
	border-color: rgba(48, 81, 120, 0.2);
}

.tb-accordion-trigger {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.2rem;
	background: #f8fafc;
	border: none;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-primary);
	text-align: left;
	transition: background 0.3s, color 0.3s;
	outline: none;
}

.tb-accordion-trigger:hover {
	background: #f1f5f9;
}

.tb-accordion-trigger-title {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tb-map-icon {
	color: var(--color-accent);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.tb-accordion-trigger:hover .tb-map-icon {
	transform: scale(1.1);
}

.tb-accordion-badge {
	background: rgba(240, 128, 18, 0.1);
	color: var(--color-accent);
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.3s ease;
	border: 1px solid rgba(240, 128, 18, 0.15);
}

.tb-accordion.active .tb-accordion-badge {
	background: var(--color-accent);
	color: #ffffff;
	border-color: var(--color-accent);
}

.tb-accordion-arrow {
	display: flex;
	align-items: center;
	color: var(--color-text-muted);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

.tb-accordion.active .tb-accordion-arrow {
	transform: rotate(180deg);
	color: var(--color-primary);
}

.tb-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: #ffffff;
}

.tb-accordion.active .tb-accordion-content {
	max-height: 850px; /* High enough to contain all destinations */
}

.tb-accordion-inner {
	padding: 1.2rem;
	border-top: 1px solid rgba(48, 81, 120, 0.08);
}

/* ==========================================================================
   Premium Popup Forms — Grid & Scroll Layouts
   ========================================================================== */
.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.form-grid-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.2rem;
}

.popup-overlay {
	overflow-y: auto !important;
	padding: 2.5rem 1rem !important;
}

.popup-container {
	margin: auto !important;
}

@media (max-width: 600px) {
	.form-grid-3,
	.form-grid-2 {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}
}

/* ==========================================================================
   Custom Select Alignment Fixes for Popup Forms
   ========================================================================== */
.custom-select-wrapper select {
	display: none !important;
}

.popup-form .custom-select-trigger {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--color-text-main);
	background-color: #f8fafc;
	transition: all 0.3s ease;
	box-sizing: border-box;
	min-height: 42px; /* Matches name and email inputs exactly */
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.popup-form .custom-select-trigger:hover {
	background-color: #f1f5f9;
}

.popup-form .custom-select-options {
	top: 110%;
	left: 0;
	width: 100%;
	background: #ffffff;
	border: 1px solid rgba(48, 81, 120, 0.1);
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Flatpickr Custom Premium Theme
   ========================================================================== */
.flatpickr-calendar {
	background: #ffffff !important;
	border-radius: 16px !important;
	border: 1px solid rgba(48, 81, 120, 0.1) !important;
	box-shadow: 0 10px 30px rgba(13, 33, 55, 0.12) !important;
	font-family: var(--font-body) !important;
}

.flatpickr-months {
	background: linear-gradient(135deg, var(--color-primary) 0%, #102a43 100%) !important;
	border-radius: 16px 16px 0 0 !important;
	padding: 0.5rem 0 !important;
}

.flatpickr-month {
	color: #ffffff !important;
	fill: #ffffff !important;
}

.flatpickr-current-month {
	color: #ffffff !important;
	font-weight: 600 !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp::after {
	border-bottom-color: #ffffff !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown::after {
	border-top-color: #ffffff !important;
}

.flatpickr-calendar select.flatpickr-monthDropdown-months {
	color: #ffffff !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 12px 0 4px !important;
	margin: 0 !important;
	width: auto !important;
	height: auto !important;
	display: inline-block !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	font-family: var(--font-heading) !important;
	font-weight: 600 !important;
	font-size: 1.05rem !important;
	cursor: pointer !important;
	outline: none !important;
	vertical-align: middle !important;
}

.flatpickr-calendar select.flatpickr-monthDropdown-months option {
	background-color: var(--color-primary) !important;
	color: #ffffff !important;
	padding: 6px 12px !important;
}

.flatpickr-calendar input.cur-year {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 0 0 0.5ch !important;
	margin: 0 !important;
	width: 58px !important;
	height: auto !important;
	display: inline-block !important;
	color: #ffffff !important;
	font-family: var(--font-heading) !important;
	font-weight: 600 !important;
	font-size: 1.05rem !important;
	outline: none !important;
	vertical-align: middle !important;
}

.flatpickr-calendar .flatpickr-prev-month, 
.flatpickr-calendar .flatpickr-next-month {
	color: #ffffff !important;
	fill: #ffffff !important;
	top: 10px !important;
}

.flatpickr-calendar .flatpickr-prev-month:hover, 
.flatpickr-calendar .flatpickr-next-month:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	border-radius: 50% !important;
}

.flatpickr-calendar .flatpickr-prev-month:hover svg, 
.flatpickr-calendar .flatpickr-next-month:hover svg {
	fill: var(--color-accent) !important;
}

.flatpickr-weekday {
	color: var(--color-primary) !important;
	font-weight: 600 !important;
}

.flatpickr-day {
	border-radius: 8px !important;
	transition: all 0.2s ease !important;
}

.flatpickr-day.today {
	border-color: rgba(240, 128, 18, 0.3) !important;
	color: var(--color-accent) !important;
}

.flatpickr-day.today:hover {
	background: rgba(240, 128, 18, 0.08) !important;
	color: var(--color-accent) !important;
}

.flatpickr-day.selected, 
.flatpickr-day.selected:focus, 
.flatpickr-day.selected:hover {
	background: var(--color-accent) !important;
	border-color: var(--color-accent) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 10px rgba(240, 128, 18, 0.3) !important;
}

.flatpickr-day:hover {
	background: rgba(48, 81, 120, 0.06) !important;
	color: var(--color-primary) !important;
}

/* ==========================================================================
   Premium Blog Style Sheet
   ========================================================================== */

/* 1. Blog Grid Section (Home & Archive) */
.blog-section {
	padding: 5rem 0;
	background-color: var(--color-bg-light);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

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

@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* 2. Blog Card Design */
.blog-grid .blog-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(48, 81, 120, 0.08);
	box-shadow: 0 8px 30px rgba(13, 33, 55, 0.04);
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* 3. Slider Specific Overrides */
.blog-slider-wrapper .blog-grid {
	display: flex;
	grid-template-columns: none;
	flex-wrap: nowrap;
	overflow-x: hidden;
	scroll-behavior: smooth;
	margin-top: 2rem;
}

.blog-slider-wrapper .blog-grid .blog-card {
	width: calc((100% - 4rem) / 3);
	min-width: calc((100% - 4rem) / 3);
	flex-shrink: 0;
	height: auto;
}

@media (max-width: 768px) {
	.blog-slider-wrapper .blog-grid {
		gap: 1rem;
	}
	.blog-slider-wrapper .blog-grid .blog-card {
		width: 85%;
		min-width: 85%;
	}
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(13, 33, 55, 0.08);
	border-color: rgba(48, 81, 120, 0.15);
}

.blog-card-image-link {
	display: block;
	overflow: hidden;
	position: relative;
	padding-top: 60%; /* 5:3 Aspect Ratio */
	background-color: #f1f5f9;
}

.blog-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-category-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--color-accent);
	color: #ffffff;
	padding: 0.35rem 0.9rem;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(240, 128, 18, 0.35);
	backdrop-filter: blur(4px);
	z-index: 2;
}

.blog-card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
}

.blog-date {
	font-size: 0.82rem;
	color: var(--color-text-muted);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.blog-date svg {
	color: var(--color-accent);
	flex-shrink: 0;
}

.blog-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 0.75rem 0;
}

.blog-title a {
	color: var(--color-primary);
	transition: color 0.3s ease;
}

.blog-title a:hover {
	color: var(--color-accent);
}

.blog-excerpt {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin: 0 0 1.25rem 0;
	flex-grow: 1;
}

.blog-read-more {
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-accent);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s ease, gap 0.3s ease;
	width: fit-content;
}

.blog-read-more svg {
	transition: transform 0.3s ease;
}

.blog-read-more:hover {
	color: var(--color-primary);
	gap: 10px;
}

.blog-read-more:hover svg {
	transform: translateX(2px);
}

/* 3. Blog Hero Header (home.php) */
.blog-hero-section {
	position: relative;
	background: linear-gradient(135deg, var(--color-primary) 0%, #0d1b2a 100%);
	padding: 6rem 0;
	text-align: center;
	color: #ffffff;
	overflow: hidden;
}

.blog-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(240, 128, 18, 0.05) 1px, transparent 0), radial-gradient(rgba(240, 128, 18, 0.05) 1px, transparent 0);
	background-size: 24px 24px;
	background-position: 0 0, 12px 12px;
	opacity: 0.4;
}

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

.blog-hero-title {
	font-size: 3rem;
	color: #ffffff;
	margin-bottom: 1rem;
	font-family: var(--font-heading);
	letter-spacing: -0.02em;
}

.blog-hero-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 500px;
	margin: 0 auto;
	font-weight: 400;
}

@media (max-width: 600px) {
	.blog-hero-section {
		padding: 4rem 0;
	}
	.blog-hero-title {
		font-size: 2.2rem;
	}
	.blog-hero-subtitle {
		font-size: 1rem;
	}
}

/* 4. Pagination Styling */
.blog-pagination-wrapper {
	margin-top: 4rem;
	display: flex;
	justify-content: center;
}

.navigation.pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid rgba(48, 81, 120, 0.1);
	color: var(--color-primary);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	text-decoration: none;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover:not(.dots) {
	background: var(--color-accent);
	color: #ffffff;
	border-color: var(--color-accent);
	box-shadow: 0 4px 10px rgba(240, 128, 18, 0.3);
}

.navigation.pagination .page-numbers.dots {
	background: transparent;
	border: none;
	width: auto;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
	width: auto;
	padding: 0 1.25rem;
	border-radius: 50px;
}

/* 5. Single Post Page (single.php) */
.single-post-hero {
	position: relative;
	padding: 8rem 0 6rem 0;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	text-align: center;
}

.single-post-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(13, 33, 55, 0.6) 0%, rgba(13, 33, 55, 0.9) 100%);
	z-index: 1;
}

.single-post-hero .container {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.single-post-meta-category {
	display: inline-block;
	background: var(--color-accent);
	color: #ffffff;
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 12px rgba(240, 128, 18, 0.4);
}

.single-post-hero-title {
	font-size: 2.8rem;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 1.5rem;
	font-family: var(--font-heading);
	letter-spacing: -0.02em;
}

.single-post-hero-meta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	flex-wrap: wrap;
}

.single-post-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.single-post-meta-item svg {
	color: var(--color-accent);
}

@media (max-width: 768px) {
	.single-post-hero {
		padding: 6rem 0 4rem 0;
	}
	.single-post-hero-title {
		font-size: 2rem;
	}
}

.single-post-container {
	padding: 4rem 0;
	background-color: var(--color-bg-light);
}

.single-post-content {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: var(--color-text-main);
	line-height: 1.8;
}

.single-post-content p {
	margin-bottom: 1.8rem;
}

.single-post-content h2,
.single-post-content h3 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin: 2.5rem 0 1.2rem 0;
	font-weight: 700;
}

.single-post-content h2 {
	font-size: 1.75rem;
	line-height: 1.3;
}

.single-post-content h3 {
	font-size: 1.4rem;
	line-height: 1.35;
}

.single-post-content blockquote {
	margin: 2.5rem 0;
	padding: 1.5rem 2rem;
	background: #f8fafc;
	border-left: 4px solid var(--color-accent);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	font-size: 1.2rem;
	color: var(--color-primary);
	line-height: 1.7;
}

.single-post-content blockquote p:last-child {
	margin-bottom: 0;
}

.single-post-content ul,
.single-post-content ol {
	margin-bottom: 1.8rem;
	padding-left: 1.5rem;
}

.single-post-content li {
	margin-bottom: 0.6rem;
}

.single-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 2.5rem 0;
	box-shadow: 0 10px 30px rgba(13, 33, 55, 0.05);
}

/* 6. Single Post Author Box */
.single-post-footer {
	max-width: 720px;
	margin: 3rem auto 0 auto;
	border-top: 1px solid rgba(48, 81, 120, 0.1);
	padding-top: 2rem;
}

.single-post-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.single-post-tags a {
	background: #ffffff;
	border: 1px solid rgba(48, 81, 120, 0.1);
	padding: 0.35rem 0.85rem;
	border-radius: 50px;
	font-size: 0.82rem;
	color: var(--color-text-muted);
	transition: all 0.3s ease;
}

.single-post-tags a:hover {
	background: var(--color-primary);
	color: #ffffff;
	border-color: var(--color-primary);
}

.author-box {
	display: flex;
	gap: 1.5rem;
	background: #ffffff;
	border: 1px solid rgba(48, 81, 120, 0.08);
	border-radius: 16px;
	padding: 2rem;
	align-items: center;
	box-shadow: 0 8px 30px rgba(13, 33, 55, 0.02);
}

.author-avatar {
	flex-shrink: 0;
}

.author-avatar img {
	border-radius: 50%;
	border: 3px solid rgba(240, 128, 18, 0.15);
}

.author-info-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 0.5rem 0;
}

.author-bio {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 600px) {
	.author-box {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
	}
}

/* 7. Related Posts Grid */
.related-posts-section {
	padding: 5rem 0;
	background-color: #f8fafc;
	border-top: 1px solid rgba(48, 81, 120, 0.08);
}

.related-posts-section-title {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 2.5rem;
	text-align: center;
}
/* Custom styles for home tour cards meta */
.home-tour-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
    margin-top: 10px;
    padding-right: 10px;
}
.home-meta-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    width: 100%;
}
.meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.duration-icon {
    background-color: #fff7ed;
    color: #ea580c;
}
.difficulty-icon {
    background-color: #ea580c;
    color: #ffffff;
}
.meta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}
.meta-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.meta-text strong {
    font-size: 0.85rem;
    color: #1e3a8a;
    font-weight: 600;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp-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;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp-icon {
	width: 32px;
	height: 32px;
	z-index: 2;
	transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover {
	transform: scale(1.08) translateY(-3px);
	background-color: #1ebd58;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
	color: #ffffff;
}

.floating-whatsapp-btn:hover .floating-whatsapp-icon {
	transform: rotate(15deg);
}

/* Tooltip */
.floating-whatsapp-tooltip {
	position: absolute;
	right: 75px;
	top: 50%;
	transform: translateY(-50%) translateX(10px);
	background-color: #0d1b2a;
	color: #ffffff;
	padding: 8px 16px;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
	font-family: var(--font-body);
}

.floating-whatsapp-tooltip::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: transparent transparent transparent #0d1b2a;
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

/* Pulse Animation */
.floating-whatsapp-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #25d366;
	border-radius: 50%;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.75;
	animation: whatsapp-pulse 2s infinite;
	pointer-events: none;
}

@keyframes whatsapp-pulse {
	0% {
		transform: scale(1);
		opacity: 0.75;
	}
	70% {
		transform: scale(1.5);
		opacity: 0;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Adjust position on small devices to stay above mobile footer bars if any */
@media (max-width: 768px) {
	.floating-whatsapp-btn {
		bottom: 20px;
		right: 20px;
		width: 54px;
		height: 54px;
	}
	.floating-whatsapp-icon {
		width: 28px;
		height: 28px;
	}
	/* Hide tooltip on mobile to avoid covering screen real estate */
	.floating-whatsapp-tooltip {
		display: none;
	}
}
