/* ═══════════════════════════════════════════════════════════════════
   THE VACATION CODE — HOMEPAGE V2 (THRILLOPHILIA-STYLE MARKETPLACE)
   Exact pixel alignment with Thrillophilia signature design patterns
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --tp-primary: #19AD6F;
  --tp-primary-dark: #128253;
  --tp-accent: #f97316;
  --tp-accent-hover: #ea580c;
  --tp-dark: #1B2921;
  --tp-slate: #334155;
  --tp-muted: #64748b;
  --tp-light: #f8fafc;
  --tp-border: #e2e8f0;
  --tp-card-bg: #ffffff;
  --tp-gold: #f59e0b;
  --tp-save-bg: #E5F1E8;
  --tp-save-text: #19AD6F;
  --tp-radius-sm: 8px;
  --tp-radius-md: 14px;
  --tp-radius-lg: 20px;
  --tp-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --tp-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --tp-shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --tp-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --tp-font-heading: 'Poppins', var(--tp-font-sans);
}

html {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

body.tp-v2-page,
body.page-home {
  font-family: var(--tp-font-sans);
  color: var(--tp-slate);
  background-color: #fafbfb;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip !important;
  overflow-y: visible !important;
  overscroll-behavior-y: auto !important;
  touch-action: pan-y pan-x;
}

.tp-v2-page {
  font-family: var(--tp-font-sans);
  color: var(--tp-slate);
  background-color: #fafbfb;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.tp-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════════
   § 1. HERO SECTION WITH 3D FLIP CARD BACKDROP
   ═══════════════════════════════════════════════════════════════════ */

.tp-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 38px 20px 24px;
  color: var(--tp-dark);
  overflow: clip;
  border-bottom: 1px solid var(--tp-border);
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.tp-hero-flip-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.16;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  touch-action: pan-y !important;
  z-index: 1;
  transform: rotate(-3deg) scale(1.1);
}

.tp-hero-flip-backdrop * {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.tp-flip-row {
  display: flex;
  gap: 16px;
  animation: tpFloatGrid 40s linear infinite alternate;
}
.tp-flip-row.reverse {
  animation: tpFloatGridRev 40s linear infinite alternate;
}

@keyframes tpFloatGrid {
  0% { transform: translateX(0); }
  100% { transform: translateX(-120px); }
}
@keyframes tpFloatGridRev {
  0% { transform: translateX(-120px); }
  100% { transform: translateX(0); }
}

.tp-flip-card {
  width: 110px;
  height: 110px;
  perspective: 600px;
  flex-shrink: 0;
}

.tp-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 12px;
}

.tp-flip-card.flipped .tp-flip-inner {
  transform: rotateY(180deg);
}

.tp-flip-front,
.tp-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.tp-flip-front img,
.tp-flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-flip-back {
  transform: rotateY(180deg);
}

.tp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.45) 0%, rgba(248, 250, 252, 0.85) 100%);
  z-index: 2;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.tp-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
  touch-action: pan-y;
}

.tp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #047857;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(4, 120, 87, 0.06);
}

.tp-hero-pill .tp-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: tpPulse 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes tpPulse {
  to { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.tp-hero-title {
  font-family: var(--tp-font-heading);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.tp-head-gradient {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tp-hero-desc {
  font-size: 14.5px;
  line-height: 1.45;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 16px;
  font-weight: 400;
}

/* ── Hero Search Box & Tabs (Unified Luxury Floating Pill) ── */
.tp-search-container {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin: 0 auto 16px !important;
  max-width: 680px !important;
  width: 100% !important;
  text-align: left;
  position: relative;
}

.tp-search-tabs {
  display: none !important;
}

.tp-search-box-row {
  position: relative !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  padding: 5px 6px 5px 18px !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 56px !important;
}

.tp-search-box-row:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 8px 28px -4px rgba(15, 23, 42, 0.12), 0 3px 10px -2px rgba(15, 23, 42, 0.05) !important;
}

.tp-search-box-row:focus-within {
  background: #ffffff !important;
  border-color: #059669 !important;
  box-shadow: 0 8px 30px -4px rgba(5, 150, 105, 0.18), 0 0 0 3.5px rgba(5, 150, 105, 0.12) !important;
}

.tp-search-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin-right: 12px !important;
  color: #059669 !important;
  flex-shrink: 0 !important;
}

.tp-search-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #059669 !important;
  stroke-width: 2.2 !important;
}

.tp-search-input,
.tp-search-box-row input,
.tp-search-box-row input[type="text"],
.tp-search-box-row input#tpSearchInput,
.tp-search-box-row input.tp-search-input,
#tpSearchInput {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: 100% !important;
  border: none !important;
  border-width: 0 !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  padding: 0 !important;
  height: 42px !important;
  line-height: 42px !important;
  font-family: var(--tp-font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.tp-search-input:focus,
.tp-search-box-row input:focus,
.tp-search-box-row input[type="text"]:focus,
.tp-search-box-row input#tpSearchInput:focus,
#tpSearchInput:focus {
  border: none !important;
  border-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
}

.tp-search-input::placeholder,
.tp-search-box-row input::placeholder,
#tpSearchInput::placeholder {
  color: #94a3b8 !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
}

.tp-search-submit {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  border: none !important;
  outline: none !important;
  font-family: var(--tp-font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  padding: 0 24px !important;
  height: 44px !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0 !important;
}

.tp-search-submit:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45) !important;
}

.tp-search-submit:active {
  transform: translateY(0) scale(0.98) !important;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3) !important;
}

.tp-search-btn-desktop { display: inline !important; }
.tp-search-btn-mobile { display: none !important; }

/* ── Live Search Results Dropdown ── */
.tp-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--tp-border);
  z-index: 100;
  max-height: 380px;
  overflow-y: auto;
  text-align: left;
}

.tp-search-dropdown.show { display: block; }

.tp-suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: var(--tp-dark);
  transition: background 0.15s;
}

.tp-suggest-item:hover { background: #f8fafc; }
.tp-suggest-item:last-child { border-bottom: none; }

.tp-suggest-title {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--tp-dark);
}

.tp-suggest-meta {
  font-size: 12.5px;
  color: var(--tp-muted);
}

/* ── Trending Chips ── */
.tp-trending-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tp-trending-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 2px;
}

.tp-chip {
  background: #ffffff;
  color: #334155;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tp-chip:hover {
  background: #f8fafc;
  color: #047857;
  border-color: #cbd5e1;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* ── Hero Trust Strip ── */
.tp-hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.tp-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.tp-trust-item span.icon {
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════
   § 2. THRILLOPHILIA STICKY TAB BAR (StickyTabBar)
   ═══════════════════════════════════════════════════════════════════ */

.tp-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid var(--tp-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.tp-sticky-scroll {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tp-sticky-scroll::-webkit-scrollbar { display: none; }

.tp-nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--tp-slate);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

.tp-nav-tab:hover { color: var(--tp-dark); }

.tp-nav-tab.active {
  color: #f97316;
  font-weight: 600;
  border-bottom-color: #f97316;
}

.tp-tab-flame {
  background: #fef2f2;
  color: #ef4444;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   § 3. LIVE OPERATIONS BANNER ("Tours Operating Right Now!")
   ═══════════════════════════════════════════════════════════════════ */

.tp-live-ops-section {
  background: linear-gradient(135deg, #1B2921 0%, #0d1712 100%);
  color: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-live-ops-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 36px;
  align-items: center;
}

.tp-live-header h2 {
  font-family: var(--tp-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.tp-live-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
}

.tp-odometer-row {
  display: flex;
  gap: 28px;
}

.tp-odometer-stat {
  display: flex;
  flex-direction: column;
}

.tp-odometer-num {
  font-family: var(--tp-font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.tp-odometer-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tp-live-ticker-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 18px 24px;
}

.tp-ticker-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #34d399;
  margin-bottom: 12px;
}

.tp-ticker-title .tp-green-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: tpPulse 1.8s infinite;
}

.tp-ticker-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp-ticker-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════════
   § 4. HORIZONTAL PRODUCT CAROUSEL & CONTROLS
   ═══════════════════════════════════════════════════════════════════ */

.tp-section {
  padding: 60px 0;
  position: relative;
}

.tp-section-alt {
  background-color: #f8fafc;
}

.tp-sec-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tp-sec-header-row h2 {
  font-family: var(--tp-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--tp-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.tp-view-all-circle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #f97316;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tp-view-all-circle:hover {
  color: #ea580c;
  transform: translateX(3px);
}

.tp-arrow-circle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f97316;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Sub-Filter Chips */
.tp-shelf-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tp-shelf-chips::-webkit-scrollbar { display: none; }

.tp-filter-chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tp-filter-chip:hover {
  background: #e2e8f0;
  color: var(--tp-dark);
}

.tp-filter-chip.active {
  background: #f97316;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

/* Shelf Header Actions Container */
.tp-sec-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Carousel Container */
.tp-carousel-wrap {
  position: relative;
  width: 100%;
}

.tp-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 16px 0;
}
.tp-carousel-track::-webkit-scrollbar { display: none; }

/* In-Header Carousel Navigation Controls */
.tp-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tp-carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--tp-border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  color: var(--tp-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  padding: 0;
  outline: none;
}

.tp-carousel-arrow:hover:not(:disabled):not(.disabled) {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #f97316;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.tp-carousel-arrow:disabled,
.tp-carousel-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* Guard against legacy track overlapping arrows */
.tp-carousel-wrap > .tp-carousel-arrow {
  display: none !important;
}

/* ── Thrillophilia Product Card ── */
.tp-product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 275px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: var(--tp-radius-md);
  border: 1px solid var(--tp-border);
  overflow: hidden;
  box-shadow: var(--tp-shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.tp-product-card.tp-hidden {
  display: none !important;
}

.tp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tp-shadow-md);
  border-color: #cbd5e1;
}

.tp-prod-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.tp-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tp-product-card:hover .tp-prod-img { transform: scale(1.06); }

.tp-prod-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.tp-prod-ribbon.group { background: linear-gradient(135deg, #19AD6F 0%, #128253 100%); }
.tp-prod-ribbon.romantic { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }

/* Wishlist Heart Button */
.tp-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: 15px;
  color: #64748b;
  transition: all 0.2s ease;
}

.tp-wishlist-btn:hover {
  transform: scale(1.15);
  background: #ffffff;
  color: #ef4444;
}

.tp-wishlist-btn.active {
  color: #ef4444;
  background: #ffffff;
}

/* Card Bottom Box */
.tp-prod-bottom {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tp-duration-review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tp-card-duration-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--tp-muted);
}

.tp-card-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #19AD6F;
}

.tp-card-rating-pill .star-icon { font-size: 14px; }

.tp-card-rating-count {
  font-weight: 400;
  color: var(--tp-muted);
  font-size: 12px;
}

.tp-prod-name {
  font-family: var(--tp-font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--tp-dark);
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 43px;
}

.tp-destination-stops {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tp-dest-stop-item {
  font-size: 12px;
  color: var(--tp-slate);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tp-stop-days {
  font-weight: 700;
  color: var(--tp-dark);
}

.tp-stop-divider {
  color: #cbd5e1;
  font-weight: 300;
}

.tp-price-action-box {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.tp-strike-save-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tp-strikethrough-price {
  font-size: 12.5px;
  color: #94a3b8;
  text-decoration: line-through;
}

.tp-save-price-badge {
  display: inline-flex;
  align-items: center;
  background: var(--tp-save-bg);
  color: var(--tp-save-text);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.tp-actual-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tp-actual-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--tp-dark);
}

.tp-person-label {
  font-size: 12px;
  color: var(--tp-muted);
  font-weight: 400;
}

/* Card Action Buttons: Call Button + Book Now */
.tp-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
}

.tp-btn-call {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  border: 1.5px solid #10b981;
  background: #ecfdf5;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.08);
}

.tp-btn-call:hover {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.tp-btn-book {
  flex: 1;
  height: 42px;
  background: #111a2c;
  color: #ffffff !important;
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(17, 26, 44, 0.2);
  transition: all 0.2s ease;
  cursor: pointer;
}

.tp-btn-book:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(17, 26, 44, 0.3);
  color: #ffffff !important;
}

.tp-btn-book-arrow {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.tp-btn-book:hover .tp-btn-book-arrow {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════════
   § 5. BUDGET & DURATION TRIP MATCHER WIDGET
   ═══════════════════════════════════════════════════════════════════ */

.tp-matcher-card {
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: var(--tp-shadow-md);
  margin: 20px auto 50px;
}

.tp-matcher-header {
  text-align: center;
  margin-bottom: 28px;
}

.tp-matcher-header h2 {
  font-family: var(--tp-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--tp-dark);
  margin: 0 0 6px 0;
}

.tp-matcher-header p {
  font-size: 15px;
  color: var(--tp-muted);
  margin: 0;
}

.tp-matcher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 180px;
  gap: 30px;
  align-items: center;
}

.tp-slider-group label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-dark);
  margin-bottom: 10px;
}

.tp-slider-val {
  color: #f97316;
  font-weight: 700;
}

.tp-range-input {
  width: 100%;
  accent-color: #f97316;
  cursor: pointer;
}

.tp-matcher-result-btn {
  background: linear-gradient(135deg, #19AD6F 0%, #128253 100%);
  color: #ffffff;
  border: none;
  font-family: var(--tp-font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 14px rgba(25, 173, 111, 0.35);
  transition: all 0.2s ease;
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tp-matcher-result-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 173, 111, 0.45);
}


/* ═══════════════════════════════════════════════════════════════════
   § 7. POPULAR DESTINATIONS VISUAL TILES
   ═══════════════════════════════════════════════════════════════════ */

.tp-dest-header-row {
  margin-bottom: 24px;
}

.tp-dest-header-text {
  width: 100%;
}

.tp-dest-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tp-dest-sub {
  color: #64748b;
  margin-top: 4px;
  font-size: 14.5px;
  line-height: 1.45;
}

.tp-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tp-dest-tile {
  position: relative;
  border-radius: var(--tp-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  box-shadow: var(--tp-shadow-sm);
  transition: all 0.3s ease;
}

.tp-dest-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--tp-shadow-md);
}

.tp-dest-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tp-dest-tile:hover .tp-dest-bg { transform: scale(1.08); }

.tp-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}

.tp-dest-name {
  font-family: var(--tp-font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.tp-dest-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.tp-dest-price-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════
   § 7B. BROWSE BY TRAVEL VIBE (VISUAL TILES & CLIPART)
   ═══════════════════════════════════════════════════════════════════ */

.tp-vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

@media (max-width: 580px) {
  .tp-vibe-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.tp-vibe-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--tp-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
  box-shadow: var(--tp-shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #0f172a;
}

.tp-vibe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  border-color: rgba(4, 120, 87, 0.4);
}

.tp-vibe-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.tp-vibe-card:hover .tp-vibe-bg {
  transform: scale(1.08);
}

.tp-vibe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.45) 35%, rgba(15, 23, 42, 0.92) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.tp-vibe-card:hover .tp-vibe-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.4) 30%, rgba(15, 23, 42, 0.94) 100%);
}

.tp-vibe-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tp-vibe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.02em;
}

.tp-vibe-badge .tp-vibe-emoji {
  font-size: 15px;
  line-height: 1;
}

.tp-vibe-count {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.tp-vibe-bottom {
  position: relative;
  z-index: 3;
}

.tp-vibe-title {
  font-family: var(--tp-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tp-vibe-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tp-vibe-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #34d399;
  transition: gap 0.2s ease, color 0.2s ease;
}

.tp-vibe-card:hover .tp-vibe-cta {
  color: #6ee7b7;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   § 8. RECOGNISED BY TOP MEDIA & TOURISM ALLIANCES
   ═══════════════════════════════════════════════════════════════════ */

.tp-media-section {
  padding: 38px 0;
  background: #ffffff;
  border-top: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
  text-align: center;
}

.tp-media-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tp-media-title::before,
.tp-media-title::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #e2e8f0;
}

/* ── Live Squad Running Marquee Ticker (Rebuilt From Scratch) ── */
#sec-ticker.tvc-live-ticker-wrap,
.tvc-live-ticker-wrap {
  padding: 6px 0 !important;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.tvc-live-ticker-bar {
  display: flex;
  align-items: center;
  height: 34px;
  gap: 12px;
  position: relative;
  width: 100%;
}
.tvc-live-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.08);
  user-select: none;
  z-index: 5;
}
.tvc-live-beacon {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: tvcBeaconPulse 2s infinite;
}
@keyframes tvcBeaconPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.tvc-live-badge-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #065f46;
  white-space: nowrap;
}
.tvc-live-divider {
  width: 1px;
  height: 16px;
  background: #cbd5e1;
  flex-shrink: 0;
}
.tvc-live-viewport {
  flex: 1;
  min-width: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.tvc-live-edge-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 3;
  pointer-events: none;
}
.tvc-edge-left {
  left: 0;
  background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}
.tvc-edge-right {
  right: 0;
  background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}
.tvc-live-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: tvcTickerSlide 38s linear infinite;
}
.tvc-live-viewport:hover .tvc-live-track,
.tvc-live-track:hover,
.tvc-live-track.is-paused {
  animation-play-state: paused !important;
}
@keyframes tvcTickerSlide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.tvc-live-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.tvc-live-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 6px;
  color: #334155;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  transition: color 0.15s ease, background-color 0.15s ease;
  line-height: 1.2;
}
.tvc-live-item:hover,
.tvc-live-item:focus {
  color: #047857 !important;
  background-color: #ecfdf5 !important;
  text-decoration: none;
}
.tvc-live-icon {
  font-size: 13px;
  line-height: 1;
}
.tvc-live-text {
  white-space: nowrap;
}
.tvc-live-sep {
  color: #cbd5e1;
  margin: 0 8px;
  font-weight: 400;
  user-select: none;
  pointer-events: none;
  display: inline-block;
}

/* ── Infinite Slow Running Ticker (Continuous Smooth Marquee) ── */
.tp-media-ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.tp-media-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: tpMediaTicker 48s linear infinite;
}

@media (hover: hover) {
  .tp-media-ticker-container:hover .tp-media-ticker-track,
  .tp-media-ticker-track:hover {
    animation-play-state: paused;
  }
}
.tp-media-ticker-track:active {
  animation-play-state: paused;
}

.tp-media-ticker-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}

@keyframes tpMediaTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.tp-media-logo-card {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all 0.2s ease;
  user-select: none;
  text-decoration: none;
  color: #0f172a;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
}

.tp-media-logo-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #059669;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.12);
}

/* 1. The Economic Times */
.tp-et-badge {
  background: #b91c1c;
  color: #ffffff;
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: -0.02em;
}

.tp-et-text {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: #1e293b;
}

/* 2. Forbes India */
.tp-forbes-text {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.tp-forbes-sub {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #b91c1c;
  background: #fef2f2;
  padding: 2px 5px;
  border-radius: 4px;
  border: 1px solid #fecaca;
  margin-left: 2px;
}

/* 3. Livemint */
.tp-mint-live {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #64748b;
  letter-spacing: -0.02em;
}

.tp-mint-dot {
  width: 7px;
  height: 7px;
  background: #f97316;
  border-radius: 2px;
}

.tp-mint-brand {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  letter-spacing: -0.03em;
}

/* 4. CNBC TV18 */
.tp-cnbc-peacock {
  flex-shrink: 0;
}

.tp-cnbc-text {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.tp-cnbc-badge {
  background: #dc2626;
  color: #ffffff;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* 5. Outlook Traveller */
.tp-outlook-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.tp-outlook-brand {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 800;
  font-size: 15.5px;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.tp-outlook-sub {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #047857;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════════
   § 10. REAL TRAVELER REVIEWS (WALL OF LOVE)
   ═══════════════════════════════════════════════════════════════════ */

.tp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tp-review-card {
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-md);
  padding: 24px;
  box-shadow: var(--tp-shadow-sm);
  display: flex;
  flex-direction: column;
}

.tp-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tp-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--tp-slate);
  font-size: 16px;
}

.tp-reviewer-info { flex: 1; }

.tp-reviewer-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--tp-dark);
}

.tp-trip-tagged {
  font-size: 12px;
  color: var(--tp-primary);
  font-weight: 500;
}

.tp-stars-row {
  color: var(--tp-gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.tp-review-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--tp-slate);
  margin: 0;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   § 11. EXPERT CALLBACK & CUSTOM TRIP PLANNER BANNER
   ═══════════════════════════════════════════════════════════════════ */

.tp-planner-banner {
  background: linear-gradient(135deg, #1B2921 0%, #111e17 100%);
  border-radius: 20px;
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--tp-shadow-lg);
  margin: 20px auto;
}

.tp-planner-banner::after {
  content: '✈️';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 200px;
  opacity: 0.05;
  pointer-events: none;
}

.tp-planner-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tp-planner-title {
  font-family: var(--tp-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.tp-planner-desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
}

.tp-planner-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 24px;
}

.tp-form-group { margin-bottom: 14px; }

.tp-form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: var(--tp-dark);
  font-size: 14.5px;
  box-sizing: border-box;
  font-family: var(--tp-font-sans);
  outline: none;
}

.tp-form-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(25, 173, 111, 0.4);
}

.tp-form-btn {
  width: 100%;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  border: none;
  outline: none;
  font-family: var(--tp-font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transition: all 0.2s ease;
}

.tp-form-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

/* ═══════════════════════════════════════════════════════════════════
   § 12. SLIDE-IN CALLBACK MODAL DRAWER
   ═══════════════════════════════════════════════════════════════════ */

.tp-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tp-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.tp-modal-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.tp-modal-backdrop.active .tp-modal-card {
  transform: scale(1);
}

.tp-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--tp-muted);
  transition: all 0.15s;
}

.tp-modal-close:hover {
  background: #e2e8f0;
  color: var(--tp-dark);
}

.tp-modal-tour-preview {
  display: flex;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid var(--tp-border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.tp-modal-tour-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.tp-modal-tour-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-dark);
  line-height: 1.3;
}

.tp-modal-tour-price {
  font-size: 13px;
  font-weight: 700;
  color: #19AD6F;
  margin-top: 4px;
}

.tp-modal-header h3 {
  font-family: var(--tp-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--tp-dark);
  margin: 0 0 4px 0;
}

.tp-modal-header p {
  font-size: 13.5px;
  color: var(--tp-muted);
  margin: 0 0 18px 0;
}

.tp-modal-field {
  margin-bottom: 14px;
}

.tp-modal-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tp-dark);
  margin-bottom: 6px;
  display: block;
}

.tp-modal-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--tp-font-sans);
  box-sizing: border-box;
}

.tp-modal-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.tp-modal-submit-btn {
  width: 100%;
  background: #f97316;
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  transition: all 0.2s;
  margin-top: 6px;
}

.tp-modal-submit-btn:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.tp-modal-whatsapp-btn {
  width: 100%;
  background: #25D366;
  color: #ffffff;
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-sizing: border-box;
}

/* Toast */
.tp-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1B2921;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.tp-toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════
   § 14. RESPONSIVE BREAKPOINTS (MOBILE & TABLET)
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tp-product-card {
    flex: 0 0 calc(50% - 10px);
  }
  .tp-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-planner-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tp-live-ops-wrap {
    grid-template-columns: 1fr;
  }
  .tp-matcher-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  /* Disable 3D flip card background on mobile, touch screens, and tablets */
  .tp-hero-flip-backdrop {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {
  html {
    overflow-x: clip !important;
    overflow-y: visible !important;
  }
  body.tp-v2-page,
  body.page-home,
  body {
    overflow-x: clip !important;
    overflow-y: visible !important;
    overscroll-behavior-y: auto !important;
    touch-action: pan-y pan-x !important;
  }
  .tp-wrap {
    padding: 0 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* ── Universal Section Header Row Polish ── */
  .tp-sec-header-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 4px 10px !important;
    margin-bottom: 12px !important;
  }
  .tp-sec-header-row > div:first-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 95px) !important;
  }
  .tp-dest-header-row > div:first-child,
  .tp-dest-header-text {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .tp-sec-header-actions,
  .tp-sec-header-row > .tp-view-all-circle {
    flex: 0 0 auto !important;
    margin-top: 2px !important;
  }
  .tp-section h2,
  .tp-sec-header-row h2,
  .tp-dest-title-wrap h2,
  .tp-section-heading {
    font-size: 18px !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    color: #0f172a !important;
    letter-spacing: -0.02em !important;
    font-weight: 800 !important;
  }
  /* Remove section subtitle description texts on mobile devices */
  .tp-dest-sub,
  .tp-sec-header-row p,
  .tp-sec-header-text p,
  .tp-dest-header-text p,
  .tp-section-sub {
    display: none !important;
  }
  .tp-view-all-circle {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #ea580c !important;
    gap: 4px !important;
    padding: 3px 9px !important;
    border-radius: 999px !important;
    background: #fff7ed !important;
    border: 1px solid rgba(249, 115, 22, 0.15) !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }
  .tp-view-all-circle .tp-arrow-circle-icon {
    width: 18px !important;
    height: 18px !important;
    background: transparent !important;
    color: #ea580c !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .tp-view-all-circle .tp-arrow-circle-icon svg {
    width: 12px !important;
    height: 12px !important;
  }
  .tp-carousel-controls {
    display: none !important;
  }
  /* 1. Disable 3D flip card background on mobile to eliminate touch freezes & compositor glitches */
  .tp-hero-flip-backdrop {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  .tp-hero {
    min-height: auto;
    padding: 24px 16px 18px;
    overflow: clip !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .tp-hero-content {
    touch-action: pan-y !important;
  }

  /* Guard inactive overlays from capturing mobile touch events */
  .hdr-drawer:not(.is-open) {
    pointer-events: none !important;
    visibility: hidden !important;
  }
  .hdr-overlay:not(.is-visible) {
    pointer-events: none !important;
    visibility: hidden !important;
  }
  .tp-modal-backdrop:not(.active) {
    pointer-events: none !important;
    visibility: hidden !important;
  }

  .tp-hero-pill {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 8px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tp-hero-title {
    font-size: 24px;
    line-height: 1.22;
    margin-bottom: 6px;
  }

  .tp-hero-desc {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .tp-hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* 2. Redesign mobile search bar: Sleek unified floating capsule */
  .tp-search-container {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 auto 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .tp-search-box-row {
    flex-direction: row !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 999px !important;
    padding: 4px 5px 4px 14px !important;
    gap: 8px !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07), 0 1px 3px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .tp-search-box-row:focus-within {
    border-color: #059669 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.18), 0 0 0 3px rgba(5, 150, 105, 0.1) !important;
  }

  .tp-search-icon {
    padding: 0 !important;
    font-size: 16px !important;
    color: #059669 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .tp-search-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #059669 !important;
  }

  .tp-search-input,
  .tp-search-box-row input,
  .tp-search-box-row input#tpSearchInput,
  .tp-search-box-row input.tp-search-input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    padding: 7px 0 !important;
    color: #0f172a !important;
    border: none !important;
    border-width: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .tp-search-input:focus,
  .tp-search-box-row input:focus,
  .tp-search-box-row input#tpSearchInput:focus {
    border: none !important;
    border-width: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    background-color: transparent !important;
  }

  .tp-search-input::placeholder {
    font-size: 12.5px !important;
    color: #94a3b8 !important;
    font-weight: 400 !important;
    text-overflow: ellipsis !important;
  }

  .tp-search-submit {
    width: auto !important;
    flex-shrink: 0 !important;
    padding: 7px 16px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3) !important;
    border: none !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    min-height: 36px !important;
  }

  .tp-search-btn-desktop { display: none !important; }
  .tp-search-btn-mobile { display: inline !important; }

  /* 3. Mobile trending chips: single-line horizontal scroll */
  .tp-trending-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 4px 4px 6px !important;
    margin: 4px auto 0 !important;
    width: 100% !important;
    gap: 6px !important;
    overscroll-behavior-x: contain !important;
    mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
    touch-action: pan-x pan-y !important;
  }
  .tp-trending-row::-webkit-scrollbar {
    display: none !important;
  }
  .tp-trending-label {
    flex-shrink: 0 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    margin-right: 2px !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
  }
  .tp-chip {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05) !important;
    line-height: 1.2 !important;
  }

  /* ── Universal Compact Section Headers & Vertical Rhythm ── */
  .tp-section {
    padding: 22px 0 16px !important;
  }
  .tp-sec-title {
    font-size: 18.5px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.22 !important;
  }

  /* ── Product Cards & Horizontal Shelves ── */
  .tp-carousel-wrap {
    margin: 0 -16px !important;
    padding: 0 !important;
    width: auto !important;
    overflow: visible !important;
  }
  .tp-carousel-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding: 0 16px !important;
    scroll-padding-inline: 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 12px !important;
    padding: 4px 16px 14px 16px !important;
    margin: 0 !important;
  }
  .tp-carousel-track::-webkit-scrollbar {
    display: none !important;
  }
  .tp-product-card {
    flex: 0 0 78% !important;
    max-width: 295px !important;
    min-width: 260px !important;
    scroll-snap-align: start !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .tp-prod-media {
    height: 175px !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
  }
  .tp-prod-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .tp-prod-bottom {
    padding: 12px 14px 14px !important;
  }
  .tp-card-duration-text {
    font-size: 11.5px !important;
  }
  .tp-card-rating-pill {
    font-size: 11.5px !important;
    padding: 2px 7px !important;
  }
  .tp-prod-name {
    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    margin: 6px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 39px !important;
  }
  .tp-prod-name a {
    color: #0f172a !important;
    text-decoration: none !important;
  }
  .tp-destination-stops {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    gap: 4px !important;
    font-size: 11.5px !important;
    margin-bottom: 10px !important;
    padding-bottom: 2px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .tp-destination-stops::-webkit-scrollbar {
    display: none !important;
  }
  .tp-dest-stop-item {
    white-space: nowrap !important;
  }
  .tp-strike-save-row {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 2px !important;
  }
  .tp-strikethrough-price {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
  }
  .tp-save-price-badge {
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    background: #ecfdf5 !important;
    color: #059669 !important;
  }
  .tp-actual-price-row {
    display: flex !important;
    align-items: baseline !important;
    gap: 4px !important;
  }
  .tp-actual-price {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
  }
  .tp-person-label {
    font-size: 11.5px !important;
    color: #64748b !important;
  }
  .tp-card-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 10px !important;
  }
  .tp-btn-call {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 11px !important;
    border: 1.5px solid #10b981 !important;
    background: #ecfdf5 !important;
    color: #059669 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }
  .tp-btn-book {
    flex: 1 !important;
    height: 40px !important;
    min-height: 40px !important;
    background: #111a2c !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 11px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    margin: 0 !important;
    box-shadow: 0 3px 10px rgba(17, 26, 44, 0.2) !important;
    text-decoration: none !important;
  }
  .tp-wishlist-btn {
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    min-width: 34px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
  }

  /* ── Shelf Filter Chips ── */
  .tp-shelf-chips {
    display: flex !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    margin: 0 -16px 10px -16px !important;
    padding: 2px 16px 8px 16px !important;
    scroll-padding: 0 16px !important;
    scroll-padding-inline: 16px !important;
    mask-image: linear-gradient(to right, black 88%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%) !important;
  }
  .tp-shelf-chips::-webkit-scrollbar {
    display: none !important;
  }
  .tp-filter-chip {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
    border-radius: 999px !important;
    min-height: 34px !important;
    font-weight: 600 !important;
  }

  /* 4. Mobile Trending Destinations Polish */
  #sec-destinations {
    padding: 22px 0 16px !important;
  }
  .tp-dest-header-row {
    margin-bottom: 10px !important;
  }
  .tp-dest-title-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }
  .tp-dest-title-wrap h2 {
    font-size: 18.5px !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    color: #0f172a !important;
  }
  .tp-dest-title-wrap .tp-view-all-circle {
    flex-shrink: 0 !important;
    padding: 3px 10px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    gap: 4px !important;
    border-radius: 999px !important;
    background: #fff7ed !important;
    color: #ea580c !important;
    border: 1px solid rgba(249, 115, 22, 0.15) !important;
  }
  .tp-dest-sub {
    display: none !important;
  }
  .tp-dest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .tp-dest-tile {
    aspect-ratio: 3 / 4 !important;
    min-height: 195px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
  }
  .tp-dest-bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .tp-dest-overlay {
    position: absolute !important;
    inset: 0 !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.35) 45%, rgba(15, 23, 42, 0.92) 100%) !important;
    box-sizing: border-box !important;
  }
  .tp-dest-name {
    font-size: 15.5px !important;
    line-height: 1.25 !important;
    font-weight: 750 !important;
    margin: 0 0 3px 0 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .tp-dest-count {
    font-size: 11px !important;
    line-height: 1.2 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 6px !important;
    display: block !important;
  }
  .tp-dest-price-badge {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ── Group vs Private Chooser ── */
  #sec-chooser {
    padding: 28px 0 !important;
  }
  .tp-chooser-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .tp-chooser-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .tp-chooser-card h3 {
    font-size: 18px !important;
    margin: 8px 0 6px !important;
  }
  .tp-chooser-card p {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }
  .tp-chooser-card ul {
    gap: 6px !important;
    margin-bottom: 16px !important;
    font-size: 12.5px !important;
  }
  .tp-chooser-card a {
    padding: 11px 16px !important;
    font-size: 13.5px !important;
    border-radius: 10px !important;
  }

  /* ── Stats Bar ── */
  #sec-stats {
    padding: 24px 0 !important;
  }
  .tp-odometer-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }
  .tp-odometer-stat {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 14px 10px !important;
    text-align: center !important;
  }
  .tp-odometer-num {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
  }
  .tp-odometer-label {
    font-size: 11.5px !important;
    color: #64748b !important;
    font-weight: 600 !important;
    margin-top: 3px !important;
    display: block !important;
    letter-spacing: 0.02em !important;
  }

  /* ── Travel Vibes (2-Column Visual Grid) ── */
  #sec-vibes {
    padding: 28px 0 !important;
  }
  .tp-vibe-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .tp-vibe-card {
    aspect-ratio: 1 / 1 !important;
    min-height: 155px !important;
    border-radius: 14px !important;
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .tp-vibe-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .tp-vibe-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.88) 100%) !important;
  }
  .tp-vibe-top {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
  }
  .tp-vibe-top .tp-vibe-badge {
    display: none !important;
  }
  .tp-vibe-count {
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 7px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
  }
  .tp-vibe-bottom {
    position: relative !important;
    z-index: 2 !important;
  }
  .tp-vibe-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  }
  .tp-vibe-desc {
    display: none !important;
  }
  .tp-vibe-cta {
    display: none !important;
  }

  /* ── Reviews (Horizontal Swipe Shelf) ── */
  #sec-reviews {
    padding: 28px 0 !important;
  }
  .tp-reviews-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding: 0 16px !important;
    scroll-padding-inline: 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 12px !important;
    padding: 4px 16px 14px 16px !important;
    margin: 0 -16px !important;
    box-sizing: border-box !important;
    touch-action: pan-y pan-x !important;
  }
  .tp-reviews-grid::after {
    content: '' !important;
    flex: 0 0 4px !important;
    width: 4px !important;
  }
  .tp-reviews-grid::-webkit-scrollbar {
    display: none !important;
  }
  .tp-review-card {
    flex: 0 0 82% !important;
    max-width: 310px !important;
    min-width: 270px !important;
    scroll-snap-align: start !important;
    padding: 18px 16px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
    box-sizing: border-box !important;
  }
  .tp-reviewer-avatar {
    width: 38px !important;
    height: 38px !important;
    font-size: 15px !important;
    border-radius: 50% !important;
    background: #e0f2fe !important;
    color: #0284c7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
  }
  .tp-reviewer-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
  }
  .tp-trip-tagged {
    font-size: 11.5px !important;
    color: #059669 !important;
  }
  .tp-review-body {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #334155 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* ── Travel Blogs (Horizontal Swipe Shelf) ── */
  #sec-blogs {
    padding: 28px 0 !important;
  }
  .tp-blogs-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding: 0 16px !important;
    scroll-padding-inline: 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 12px !important;
    padding: 4px 16px 14px 16px !important;
    margin: 0 -16px !important;
    box-sizing: border-box !important;
    touch-action: pan-y pan-x !important;
  }
  .tp-blogs-grid::after {
    content: '' !important;
    flex: 0 0 4px !important;
    width: 4px !important;
  }
  .tp-blogs-grid::-webkit-scrollbar {
    display: none !important;
  }
  .tp-blogs-grid > a {
    flex: 0 0 78% !important;
    max-width: 290px !important;
    min-width: 255px !important;
    scroll-snap-align: start !important;
    border-radius: 14px !important;
  }
  .tp-blogs-grid h4 {
    font-size: 14.5px !important;
    line-height: 1.3 !important;
  }
  .tp-blogs-grid p {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }

  /* ── Media Recognition Ticker on Mobile ── */
  #sec-media {
    padding: 24px 0 20px !important;
    overflow: hidden !important;
  }
  #sec-ticker.tvc-live-ticker-wrap,
  .tvc-live-ticker-wrap {
    padding: 4px 0 !important;
  }
  .tvc-live-ticker-bar {
    height: 30px !important;
    gap: 8px !important;
  }
  .tvc-live-badge {
    padding: 3px 8px !important;
    gap: 5px !important;
  }
  .tvc-live-badge-label {
    font-size: 9.5px !important;
    letter-spacing: 0.03em !important;
  }
  .tvc-live-divider {
    height: 12px !important;
  }
  .tvc-live-item {
    font-size: 11.5px !important;
    padding: 2px 6px !important;
  }
  .tvc-live-sep {
    margin: 0 5px !important;
  }
  .tvc-live-track {
    animation-duration: 30s !important;
  }
  .tp-media-title {
    font-size: 11.5px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 14px !important;
  }
  .tp-media-ticker-container {
    padding: 4px 0 !important;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%) !important;
  }
  .tp-media-ticker-track {
    animation-duration: 40s !important;
  }
  .tp-media-ticker-group {
    gap: 12px !important;
    padding-right: 12px !important;
  }
  .tp-media-logo-card {
    padding: 7px 13px !important;
    border-radius: 10px !important;
  }

  /* ── Hide Desktop Footer in Mobile View ── */
  footer.site-footer-v3,
  .site-footer-v3,
  .site-footer-v2,
  .site-footer-v4,
  footer.site-footer,
  .site-footer {
    display: none !important;
  }

  /* ── Mobile Safe Area & Bottom Spacing (Clearance for 64px floating bottom nav dock) ── */
  body.tp-v2-page,
  body.page-home,
  body {
    padding-bottom: 84px !important;
  }

  /* ── Spacious 4-Tab Mobile Navigation Bar (Zero Squeeze) ── */
  .mobile-bottom-nav,
  .mobile-bottom-nav.tvc-bottom-nav,
  .mobile-bottom-nav.tvc-fluid-nav,
  .mobile-bottom-nav.genz-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 64px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border: none !important;
    border-top: 1px solid rgba(226, 232, 240, 0.85) !important;
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 99999 !important;
    padding: 3px 6px max(env(safe-area-inset-bottom, 0px), 6px) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  /* Kill the top green line stick completely across all states and elements */
  .bnav-tab::after,
  .bnav-tab::before,
  .bnav-tab.is-active::after,
  .bnav-tab.is-active::before,
  .mobile-bottom-nav *::after,
  .mobile-bottom-nav *::before {
    display: none !important;
    content: none !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    border: none !important;
    background: none !important;
  }

  .bnav-tab {
    flex: 1 1 25% !important;
    width: 25% !important;
    max-width: 25% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    position: relative !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    padding: 2px 2px !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
    z-index: 2 !important;
    color: #64748b !important;
    box-sizing: border-box !important;
    transition: transform 0.15s ease, color 0.18s ease !important;
  }

  .bnav-tab:active {
    transform: scale(0.93) !important;
  }

  .bnav-icon-wrap {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 26px !important;
    border-radius: 13px !important;
    transition: all 0.2s ease !important;
  }

  .bnav-tab .bnav-ic {
    width: 21px !important;
    height: 21px !important;
    stroke: #64748b !important;
    stroke-width: 2.1 !important;
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    transition: stroke 0.2s ease !important;
  }

  .bnav-label {
    font-size: 10.5px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.015em !important;
    color: #64748b !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    transition: color 0.2s ease, font-weight 0.2s ease !important;
    white-space: nowrap !important;
  }

  /* Active tab state */
  .bnav-tab.is-active .bnav-icon-wrap {
    background: #ecfdf5 !important;
  }
  .bnav-tab.is-active .bnav-ic {
    stroke: #059669 !important;
  }
  .bnav-tab.is-active .bnav-label {
    color: #059669 !important;
    font-weight: 700 !important;
  }

  /* Saathi mascot in 4-tab bar */
  .bnav-saathi-wrap {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #ecfdf5 !important;
    border: 1.5px solid #10b981 !important;
    box-sizing: border-box !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .bnav-saathi-img {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .bnav-saathi-img.is-hidden { display: none !important; }
  .bnav-saathi-fallback { display: none !important; }
  .bnav-saathi-img.is-hidden + .bnav-saathi-fallback { display: block !important; }
  .bnav-saathi-live-dot {
    position: absolute !important;
    bottom: -1px !important;
    right: -1px !important;
    width: 7px !important;
    height: 7px !important;
    background: #10b981 !important;
    border: 1.5px solid #ffffff !important;
    border-radius: 50% !important;
  }
  .bnav-tab.is-chat-tab.is-open .bnav-saathi-wrap,
  .bnav-tab.is-chat-tab.is-active .bnav-saathi-wrap {
    border-color: #059669 !important;
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.25) !important;
  }
  .bnav-tab.is-chat-tab.is-open .bnav-label,
  .bnav-tab.is-chat-tab.is-active .bnav-label {
    color: #059669 !important;
    font-weight: 700 !important;
  }

  @media (max-width: 380px) {
    .bnav-label {
      font-size: 9.5px !important;
    }
  }
}


/* Mobile conversion polish: thumb-safe controls, less clipped content. */
@media (max-width: 768px) {
  .tp-hero { padding-inline: var(--tvc-mobile-gutter, 16px) !important; }
  .tp-search-box-row { min-height: 56px; }
  .tp-search-submit { min-width: 76px; min-height: 48px; }
  .tp-trending-row, .tp-shelf-chips { overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; scroll-snap-type: x proximity; padding-bottom: 4px; }
  .tp-trending-row::-webkit-scrollbar, .tp-shelf-chips::-webkit-scrollbar { display: none; }
  .tp-chip, .tp-filter-chip { min-height: 44px !important; display: inline-flex; align-items: center; scroll-snap-align: start; }
  .tp-shelf-head { align-items: flex-end; gap: 12px; }
  .tp-shelf-head h2 { font-size: clamp(20px, 5.5vw, 26px); line-height: 1.15; }
  .tp-shelf-head a { min-height: 44px; display: inline-flex; align-items: center; flex: 0 0 auto; }
  .tp-product-card { width: min(86vw, 340px) !important; border-radius: 18px; scroll-snap-align: start; }
  .tp-prod-media { height: 200px !important; }
  .tp-prod-name { min-height: 2.8em; }
  .tp-prod-bottom :is(a, button) { min-height: 48px !important; }
  .tp-wishlist-btn { width: 44px !important; height: 44px !important; }
}

/* Accessibility / Screen-reader only class (visually hidden, accessible to crawlers & assistive tech) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
