/* =============================================================
   Itinerary Store · app.css
   Light, travel-editorial palette, mobile-first.
   ============================================================= */

:root {
  /* ===== Solar Dusk — Gen Z Design System ===== */

  /* Surfaces */
  --bg:            #FFFFFF;
  --bg-soft:       #F7FAFC;
  --bg-alt:        #EFF6F9;
  --surface:       #FFFFFF;
  --surface-tint:  #F8FCFB;
  --glass:         rgba(255, 255, 255, 0.72);
  --glass-border:  rgba(255, 255, 255, 0.5);

  /* Text hierarchy — WCAG AA compliant (≥4.5:1 on white) */
  --ink:    #0D1117;
  --ink-2:  #374151;
  --muted:  #52606D;   /* was #6B7280 — darkened for WCAG AA on light surfaces */
  --muted-2:#8896A4;   /* was #9CA3AF */
  --line:   #E2E8F0;
  --line-2: #EDF0F5;
  --line-warm: #E8DDD0;

  /* Brand — Coral/Amber energy */
  --brand:      #0EA5A4;
  --brand-2:    #0F766E;
  --brand-glow: #5EEAD4;
  --brand-deep: #12343B;
  --brand-soft: #E6FFFB;
  --brand-ink:  #FFFFFF;
  --icon-accent: #C2410C;
  --icon-muted:  #374151;

  /* Accent — Electric Teal (Gen Z dual-tone) */
  --accent:      #F97316;
  --accent-2:    #EA580C;
  --accent-glow: rgba(249, 115, 22, 0.18);
  --teal:        #0EA5A4;
  --warm:        #F97316;

  /* Status */
  --pos:      #16a34a;
  --pos-soft: #D1F5E0;
  --warn:     #D97706;
  --neg:      #B42318;

  /* Effects */
  --ring:        rgba(14, 165, 164, 0.24);
  --ring-teal:   rgba(14, 165, 164, 0.22);
  --shadow-1:    0 8px 24px rgba(18, 52, 59, 0.05), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-2:    0 18px 48px rgba(18, 52, 59, 0.10), 0 5px 14px rgba(0,0,0,0.04);
  --shadow-card: 0 18px 52px rgba(18, 52, 59, 0.08), 0 5px 14px rgba(0,0,0,0.03);
  --shadow-glass:0 8px 32px rgba(31, 38, 135, 0.07);
  --shadow-brand:0 10px 30px rgba(14, 165, 164, 0.25);

  /* Shape */
  --radius:      var(--token-radius-lg);    /* 20px */
  --radius-sm:   14px;                      /* public-specific; no token match */
  --radius-lg:   var(--token-radius-2xl);   /* 28px */
  --radius-xl:   36px;                      /* public-specific; no token match */
  --radius-pill: var(--token-radius-pill);  /* 999px */

  /* Layout */
  --container: 1240px;
  --header-h:  68px;

  /* Typography */
  --font-sans:      "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display:   "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, sans-serif;
  --font-ui:        "Manrope", "Inter", system-ui, sans-serif;
  --font-head:      var(--font-display);
  --font-editorial: "Fraunces", "Plus Jakarta Sans", Georgia, serif;
  --font-mono:      "DM Mono", "JetBrains Mono", "Courier New", monospace;

  /* Spacing scale — defined in tokens.css; available here via cascade. */

  /* Gradients */
  --hero-gradient:    linear-gradient(135deg, #FFFFFF 0%, #F3FBFA 56%, #FFF7ED 100%);
  --hero-mesh:        linear-gradient(135deg, #FFFFFF 0%, #F3FBFA 56%, #FFF7ED 100%);
  --section-gradient: linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
  --brand-gradient:   linear-gradient(90deg, #0EA5A4 0%, #14B8A6 100%);
  --teal-gradient:    linear-gradient(90deg, #0EA5A4 0%, #0F766E 100%);
}

.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;
}

/* =============================================================
   Animations — Gen Z Motion System
   ============================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes meshDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes forceReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInBottom {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes badgePop {
  0%   { transform: scale(0.8); opacity: 0; }
  70%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* Reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
body:not(.js-loaded) .reveal {
  animation: forceReveal 0.1s forwards 3s;
}
.pulse-hover:hover { animation: pulseGlow 1.5s infinite; }
.float-anim       { animation: floatY 4s ease-in-out infinite; }

/* Skeleton shimmer utility */
.skeleton {
  background: linear-gradient(90deg, #ece6d6 0%, #f4efdd 50%, #ece6d6 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  border-radius: var(--radius-sm);
}


.intelligence-ticker {
  background: var(--brand-deep);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 100;
}
.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-roll 30s linear infinite;
}
.ticker-content span { display: inline-flex; align-items: center; gap: 8px; margin-right: 48px; }
.ticker-content .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); display: inline-block; }
@keyframes ticker-roll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* =============================================================
   Phase 4 — Dark Mode (data-theme="dark" + system preference)
   ============================================================= */
[data-theme="dark"],
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --bg:            #0D1117;
    --bg-soft:       #161B22;
    --bg-alt:        #1C2128;
    --surface:       #1C2128;
    --surface-tint:  #21262D;
    --glass:         rgba(28, 33, 40, 0.85);
    --glass-border:  rgba(255, 255, 255, 0.08);

    --ink:    #F0F6FC;
    --ink-2:  #D1D5DB;
    --muted:  #9CA3AF;
    --muted-2:#6B7280;
    --line:   #30363D;
    --line-2: #21262D;
    --line-warm: #3D3228;

    --brand:      #FF6B35;
    --brand-2:    #FF5A1F;
    --brand-glow: #FF8C55;
    --brand-soft: #2D1A0E;
    --brand-deep: #0F1923;
    --brand-ink:  #FFFFFF;

    --accent:      #39D5A0;
    --accent-2:    #00C896;
    --teal:        #39D5A0;

    --pos:      #2EA043;
    --pos-soft: #0D2818;

    --shadow-1:    0 4px 20px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
    --shadow-2:    0 12px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
    --shadow-card: 0 16px 48px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
    --shadow-glass:0 8px 32px rgba(0,0,0,0.4);
    --shadow-brand:0 8px 28px rgba(255,107,53,0.4);

    --hero-gradient:    linear-gradient(135deg, #0A1628 0%, #1A0D30 40%, #0A2030 70%, #040E18 100%);
    --hero-mesh:        radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.2) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(57,213,160,0.12) 0%, transparent 50%),
                        radial-gradient(ellipse at 60% 80%, rgba(26,13,48,0.6) 0%, transparent 60%),
                        linear-gradient(135deg, #0A1628 0%, #1A0D30 50%, #040E18 100%);
    --section-gradient: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
    --brand-gradient:   linear-gradient(90deg, #FF6B35 0%, #FF8C55 100%);
  }
}

/* Explicit [data-theme=dark] always wins */
[data-theme="dark"] {
  --bg:            #0D1117;
  --bg-soft:       #161B22;
  --bg-alt:        #1C2128;
  --surface:       #1C2128;
  --surface-tint:  #21262D;
  --glass:         rgba(28, 33, 40, 0.85);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --ink:    #F0F6FC;
  --ink-2:  #D1D5DB;
  --muted:  #9CA3AF;
  --muted-2:#6B7280;
  --line:   #30363D;
  --line-2: #21262D;
  --line-warm: #3D3228;
  --brand:      #FF6B35;
  --brand-2:    #FF5A1F;
  --brand-soft: #2D1A0E;
  --brand-deep: #0F1923;
  --accent:      #39D5A0;
  --teal:        #39D5A0;
  --pos:      #2EA043;
  --pos-soft: #0D2818;
  --shadow-1: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-card: 0 16px 48px rgba(0,0,0,0.5);
  --hero-mesh: radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.2) 0%, transparent 60%),
               radial-gradient(ellipse at 80% 20%, rgba(57,213,160,0.12) 0%, transparent 50%),
               linear-gradient(135deg, #0A1628 0%, #1A0D30 50%, #040E18 100%);
  --section-gradient: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
}

/* Dark mode surface overrides for components */
[data-theme="dark"] .site-header {
  background: rgba(10, 13, 18, 0.94);
  border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] body {
  background: var(--bg);
  color: var(--ink);
}
[data-theme="dark"] .panel-section,
[data-theme="dark"] .filter-card,
[data-theme="dark"] .trip-card,
[data-theme="dark"] .dest-card-compact {
  background: var(--surface);
  border-color: var(--line);
}
[data-theme="dark"] .hero-trust-tile {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .hero-aside {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .sticky-cta {
  background: rgba(13,17,23,0.92);
  border-top-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .pill-chip {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
[data-theme="dark"] .pill-chip:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand);
}
[data-theme="dark"] .nav-user-pill {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
[data-theme="dark"] #dark-toggle { color: #facc15; }

/* Smooth theme transitions */
*, *::before, *::after {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}
/* BUT don't slow down transform/opacity animations */
.dest-card *, .btn, .pill-chip, .hero-title, img {
  transition-property: transform, opacity, box-shadow, border-color, background-color, color;
}


html {
  overflow-x: clip;
}

body {
  margin: 0; padding: 0;
  /* clip does not create a new BFC, so position:sticky children still work */
  overflow-x: clip; width: 100%; position: relative;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-2); }

/* Bento Grid & Strategic Showcase */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin: 20px 0; }
.bento-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; overflow: hidden; }
.bento-item.span-6 { grid-column: span 6; }
.bento-item.span-4 { grid-column: span 4; }
.bento-item.span-3 { grid-column: span 3; }
.bento-item.span-8 { grid-column: span 8; }

.curator-spotlight { display: flex; gap: 24px; padding: 16px 0; overflow-x: auto; scrollbar-width: none; }
.curator-spotlight::-webkit-scrollbar { display: none; }
.curator-card { min-width: 280px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 20px; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.curator-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.curator-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }

.premium-club-cta {
  background: var(--brand-deep); color: #fff; border-radius: var(--radius-lg); padding: 40px;
  text-align: center; margin: 40px 0; position: relative; overflow: hidden;
}
/* Responsive visibility helpers */
.mobile-only { display: none !important; }

.premium-club-cta h2 { font-size: 42px; margin-bottom: 12px; color: #fff; }
.premium-club-cta .glow {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,90,31,0.15) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .bento-item { grid-column: span 12 !important; }
  .desktop-only { display: none !important; }
  .mobile-only  { display: inline-flex !important; }
}

.nav-vip-pulse {
  position: relative; color: var(--brand) !important; font-weight: 700;
}
.nav-vip-pulse::after {
  content: ''; position: absolute; top: 0; right: -8px; width: 6px; height: 6px;
  background: var(--brand); border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.container { 
  width: 100%; 
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 0 32px; 
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* Global Typography Refinement */
h1, h2, h3 { color: var(--ink); font-weight: 700; margin-top: 0; }
p { color: var(--ink-2); margin-top: 0; }

/* Filter Card Upgrade */
.filter-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  margin-bottom: 40px;
}
.filter-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.filter-sort {
  margin-left: auto;
  width: auto !important;
  min-height: auto !important;
  padding: 8px 32px 8px 12px !important;
  font-size: 14px !important;
}


/* ================================================================
   HEADER V3 — Right-aligned premium nav
================================================================ */
.hdr {
  position: sticky; top: 0; z-index: 2000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease, padding .3s ease;
  width: 100%;
}
.hdr--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.hdr-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between;
}

/* Logo — left anchor */
.hdr-logo {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0; flex: 0 0 auto;
  opacity: 1; transition: opacity .25s ease, transform .25s ease;
}
.hdr-logo:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.hdr-logo-img {
  height: 28px; width: auto; max-width: 140px;
  object-fit: contain; 
}

/* Right group: nav + actions together */
.hdr-right {
  display: flex; align-items: center; gap: 0;
}

/* Nav — right side */
.hdr-nav {
  display: flex; align-items: center; gap: 4px;
  padding-right: 20px; margin-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.hdr-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600;
  color: rgba(15, 23, 42, 0.65);
  text-decoration: none; white-space: nowrap;
  font-family: var(--font-ui, 'Inter', sans-serif);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
  cursor: pointer;
  background: transparent; outline: none;
  position: relative;
}
.hdr-nav-link:hover, .hdr-nav-link:focus-visible {
  color: #0F172A;
  background: rgba(15, 23, 42, 0.04);
}
.hdr-nav-link.is-active {
  color: #0F172A;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.04);
}
.hdr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 3px;
  background: var(--brand, #F97316);
  border-radius: 99px;
  transform: translateX(-50%) scaleX(0);
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hdr-nav-link:hover::after,
.hdr-nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
.hdr-chevron { transition: transform .2s ease; flex-shrink: 0; opacity: .5; margin-left: 2px; }
.hdr-dropdown-trigger[aria-expanded="true"] .hdr-chevron { transform: rotate(180deg); opacity: .8; }

/* Dropdown */
.hdr-dropdown { position: relative; }
.hdr-dropdown-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px) scale(.97);
  min-width: 230px; background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 16px;
  padding: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0; pointer-events: none;
  transition: opacity .2s cubic-bezier(0.16, 1, 0.3, 1), transform .2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}
.hdr-dropdown-panel.is-open {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.hdr-dropdown-panel--right {
  left: auto; right: 0; transform: translateY(-6px) scale(.97);
}
.hdr-dropdown-panel--right.is-open {
  transform: translateY(0) scale(1);
}
.hdr-dropdown-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 9px; text-decoration: none;
  transition: background .13s;
}
.hdr-dropdown-item:hover { background: rgba(0,0,0,.04); }
.hdr-dropdown-item strong {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(15,23,42,.88); line-height: 1.2;
}
.hdr-dropdown-item em {
  display: block; font-size: 11px; font-style: normal;
  color: rgba(15,23,42,.5); margin-top: 1px;
}
.hdr-dropdown-item--danger strong { color: #dc2626; }
.hdr-di-icon { font-size: 17px; line-height: 1; flex-shrink: 0; }
.hdr-dropdown-divider { height: 1px; background: rgba(0,0,0,.06); margin: 4px 6px; }

/* Right actions */
.hdr-actions { display: flex; align-items: center; gap: 6px; }

/* Travel Club button */
.hdr-club-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 99px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #FFA366;
  font-size: 13.5px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.hdr-club-btn svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #F97316;
}
.hdr-club-btn:hover {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.5);
  color: #fff;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}
.hdr-club-btn:hover svg {
  transform: scale(1.25) rotate(15deg);
  color: #fff;
}

/* User pill */
.hdr-user-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 4px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.9);
}
.hdr-user-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.hdr-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #ea580c);
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hdr-user-name { font-size: 13px; font-weight: 600; }

/* Join CTA */
.hdr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 99px;
  background: linear-gradient(135deg, #FF6B00, #F97316);
  color: #fff !important;
  font-size: 14px; font-weight: 800; text-decoration: none;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap; font-family: var(--font-ui, 'Inter', sans-serif);
}
.hdr-cta svg {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hdr-cta:hover {
  background: linear-gradient(135deg, #FF7A00, #FF5500);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}
.hdr-cta:hover svg {
  transform: translateX(4px);
}
.hdr-cta--full { width: 100%; justify-content: center; border-radius: 14px; padding: 14px 20px; font-size: 15px; }

/* Icon button */
.hdr-icon-btn {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.06);
  color: rgba(15,23,42,.6); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, color .15s; text-decoration: none;
}
.hdr-icon-btn:hover { background: rgba(0,0,0,.06); color: #0F172A; }

/* Burger */
.hdr-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.06);
  cursor: pointer; transition: background .15s;
}
.hdr-burger:hover { background: rgba(0,0,0,.06); }
.hdr-burger-line {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: rgba(15,23,42,.85); transition: transform .25s, opacity .25s;
}

/* Overlay */
.hdr-overlay {
  position: fixed; inset: 0; z-index: 2990;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.hdr-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* Drawer */
.hdr-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 3000;
  width: min(340px, 90vw); background: #0e1320;
  border-left: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.hdr-drawer.is-open { transform: translateX(0); }
.hdr-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.hdr-drawer-nav { display: flex; flex-direction: column; padding: 12px 12px 0; flex: 1; }
.hdr-drawer-link {
  display: block; padding: 13px 16px; border-radius: 12px;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.72);
  text-decoration: none; transition: background .15s, color .15s;
}
.hdr-drawer-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.hdr-drawer-link--danger { color: #f87171; }
.hdr-drawer-link--danger:hover { background: rgba(248,113,113,.1); }
.hdr-drawer-footer {
  padding: 16px 12px 28px; border-top: 1px solid rgba(255,255,255,.07); flex-shrink: 0;
}

/* Travel Club pill */
.hdr-club-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 8px;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25);
  color: #fb923c; font-size: 13px; font-weight: 600;
  text-decoration: none; white-space: nowrap; letter-spacing: .01em;
  transition: background .15s, border-color .15s, transform .15s;
}
.hdr-club-btn:hover { background: rgba(249,115,22,.22); border-color: rgba(249,115,22,.5); transform: translateY(-1px); }

/* Separator */
.hdr-sep {
  width: 1px; height: 22px; background: rgba(255,255,255,.1);
  flex-shrink: 0; margin: 0 4px;
}

/* User pill */
.hdr-user-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 10px 4px 4px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  cursor: pointer; transition: background .15s, border-color .15s;
  font-family: inherit; color: rgba(255,255,255,.78);
}
.hdr-user-pill:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }
.hdr-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #c2410c);
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  letter-spacing: 0;
}
.hdr-user-name { font-size: 13px; font-weight: 500; }

/* Join CTA */
.hdr-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 9px;
  background: #F97316; color: #fff !important;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  box-shadow: 0 0 0 0 rgba(249,115,22,.0);
  transition: background .15s, transform .15s, box-shadow .2s;
  white-space: nowrap; font-family: var(--font-ui, 'Inter', sans-serif);
  letter-spacing: .01em;
}
.hdr-cta:hover {
  background: #ea580c; transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249,115,22,.45);
}
.hdr-cta--full {
  width: 100%; justify-content: center;
  border-radius: 12px; padding: 13px 20px; font-size: 15px;
}

/* Icon button (close drawer etc) */
.hdr-icon-btn {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, color .15s; text-decoration: none;
}
.hdr-icon-btn:hover { background: rgba(255,255,255,.10); color: #fff; }

/* Burger */
.hdr-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  cursor: pointer; transition: background .15s;
}
.hdr-burger:hover { background: rgba(255,255,255,.10); }
.hdr-burger-line {
  display: block; width: 16px; height: 1.5px; border-radius: 2px;
  background: rgba(255,255,255,.8); transition: transform .25s, opacity .25s;
}

/* Overlay */
.hdr-overlay {
  position: fixed; inset: 0; z-index: 2990;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.hdr-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* Drawer */
.hdr-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 3000;
  width: min(320px, 88vw); background: #080b12;
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.hdr-drawer.is-open { transform: translateX(0); }
.hdr-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.hdr-drawer-nav { display: flex; flex-direction: column; padding: 10px 10px 0; flex: 1; }
.hdr-drawer-link {
  display: block; padding: 12px 14px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.65);
  text-decoration: none; transition: background .15s, color .15s;
}
.hdr-drawer-link:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }
.hdr-drawer-link--danger { color: #fca5a5; }
.hdr-drawer-link--danger:hover { background: rgba(248,113,113,.08); }
.hdr-drawer-footer {
  padding: 14px 10px 24px; border-top: 1px solid rgba(255,255,255,.07); flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1060px) { .hdr-nav { display: none; } }
@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .hdr {
    height: var(--header-h);
  }
  .hdr-inner { padding: 0 16px; }
  .hdr-logo {
    padding: 7px 0;
  }
  .hdr-logo-img {
    height: 32px;
    max-width: 132px;
  }
  .hdr-burger { display: flex; }
  .hdr-cta:not(.hdr-cta--full) { display: none; }
  .hdr-club-btn { display: none; }
  .hdr-user-name { display: none; }
  .hdr-sep { display: none; }
  .hdr-right { gap: 6px; }
  .hdr-icon-btn,
  .hdr-burger {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 22px rgba(0,0,0,.18);
  }
  .hdr-burger {
    position: relative;
    overflow: hidden;
  }
  .hdr-burger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 20%, rgba(249,115,22,.32), transparent 48%);
    pointer-events: none;
  }
  .hdr-burger-line {
    width: 18px;
    height: 2px;
    background: #fff;
    z-index: 1;
  }
  .hdr-drawer {
    width: min(360px, 92vw);
    background:
      radial-gradient(circle at 85% 0%, rgba(249,115,22,.18), transparent 30%),
      linear-gradient(180deg, #080b12 0%, #0d1424 100%);
  }
  .hdr-drawer-head {
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .hdr-drawer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
  }
  .hdr-drawer-link {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
  }
  .hdr-drawer-link:hover,
  .hdr-drawer-link:focus-visible {
    background: rgba(249,115,22,.13);
    border-color: rgba(249,115,22,.28);
    color: #fff;
  }
  .hdr-drawer-link--featured {
    background: linear-gradient(135deg, rgba(249,115,22,.22), rgba(20,184,166,.08));
    border-color: rgba(249,115,22,.30);
    color: #fff;
  }
  .hdr-drawer-footer {
    padding: 12px 14px 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    gap: 10px;
  }
  .hdr-drawer-footer .hdr-drawer-link,
  .hdr-drawer-footer .hdr-cta--full {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .hdr-burger { display: none !important; }
  .mobile-only { display: none !important; }
}

/* ----- Header — Dark Glassmorphic (legacy .site-header kept for admin) ----- */

.site-header {
  position: sticky; top: 0; z-index: 2000;
  height: var(--header-h, 80px);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
  pointer-events: auto;
}
.header-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; gap: 16px;
}
@media (max-width: 768px) {
  .header-row { padding: 0 20px; height: 100%; }
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #FFFFFF;
  text-decoration: none;
}
.brand-logo { display: block; height: auto; max-width: 100%; filter: brightness(0) invert(1); }
.brand-logo-full { height: 38px !important; max-width: 220px !important; object-fit: contain; }
.brand-logo-mark { height: 36px !important; width: 36px !important; display: none; object-fit: contain; }
.footer-logo { height: 44px; max-width: 240px; filter: brightness(0) invert(1); opacity: 0.95; object-fit: contain; }
.admin-brand-logo { height: 36px !important; width: 36px !important; object-fit: contain; }
.brand-name-admin { color: #fff; font-family: var(--font-display); font-size: 18px; }
@media (max-width: 720px) {
  .brand-logo-full { display: none; }
  .brand-logo-mark { display: block; }
}
/* Simplified Navbar Styles */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  gap: 32px;
}

.header-right-quadrant {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.12);
  border-color: var(--brand-line);
}

.tour-card:hover .trip-card-media img {
  transform: scale(1.05);
}

.tour-card .btn-premium-tour:hover {
  background: var(--brand-deep);
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.3);
}

@media (max-width: 1024px) {
  .header-right-quadrant {
    gap: 16px;
  }
  .site-nav {
    display: none; /* Hide main nav on mobile, use toggle */
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 99px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: transparent;
  font-family: var(--font-ui);
}

.site-nav a span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a:hover {
  background: rgba(255,255,255,0.10);
  transform: scale(1.03);
  color: #FFFFFF;
}

.site-nav a.is-active {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-join-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 20px;
  background: var(--brand);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255,90,31,0.34);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.nav-join-cta:hover {
  background: #ff6b35;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255,90,31,0.42);
}

.nav-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  height: 40px;
  text-decoration: none !important;
  color: #fff;
}

.nav-user-pill:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
}

.user-avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.currency-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  position: relative;
  height: 40px;
  min-width: 100px;
}

.currency-switcher:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.cs-globe { font-size: 14px; opacity: 0.7; color: var(--brand); }

.currency-switcher select {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 16px 0 4px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.currency-switcher::after {
  content: '▾';
  position: absolute;
  right: 14px;
  font-size: 10px;
  color: var(--muted);
  pointer-events: none;
}

.currency-switcher select option { background: #fff; color: #000; }
.currency-switcher--footer {
  height: 36px;
  min-width: 132px;
  padding: 0 34px 0 12px;
  gap: 7px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
}
.currency-switcher--footer:hover {
  background: rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.35);
}
.currency-switcher--footer .cs-globe {
  color: #F97316;
  opacity: 1;
}
.currency-switcher--footer .cs-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.42);
}
.currency-switcher--footer select {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  padding-right: 0 !important;
}
.currency-switcher--footer::after {
  right: 12px;
  color: rgba(255,255,255,.35);
}
/* Cleaned up duplicate site-nav rules to prevent style collisions */

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.nav-dropdown-trigger:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.nav-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-2);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s var(--ease-out);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-content a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
  border: none !important;
  background: transparent !important;
}
.nav-dropdown-content a:hover {
  background: var(--brand-soft) !important;
  color: var(--brand) !important;
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  width: 42px; height: 42px; border-radius: 12px; padding: 0;
  margin-left: auto; cursor: pointer;
}
.mobile-bottom-nav { display: none; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

@media (max-width: 1100px) {
  .header-row {
    padding: 0 18px;
    gap: 12px;
  }

  .header-right-quadrant,
  .header-actions {
    gap: 10px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a,
  .nav-dropdown-trigger {
    padding: 8px 10px;
    font-size: 12px;
  }

  .site-nav > a:nth-of-type(5),
  .site-nav .nav-travelclub {
    display: none !important;
  }

  .currency-switcher {
    min-width: 88px;
    padding: 0 12px;
  }

  .nav-join-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 880px) {
  :root { --header-h: 60px; }
  .brand-logo-full { height: 30px; }
  
  .nav-toggle, .site-nav { display: none !important; }
  .container { padding: 0 16px; }

  body {
    padding-top: var(--header-h);
    padding-bottom: calc(118px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2100;
  }

  /* Frosted Glass Panel Navigation */
  .mobile-bottom-nav {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: calc(76px + env(safe-area-inset-bottom)); 
    padding-bottom: env(safe-area-inset-bottom);
    border-radius: 40px 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 2000;
    padding-left: 12px;
    padding-right: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .bottom-nav-item {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 4px;
    color: #cbd5e1;
    flex: 1;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    height: 60px;
    margin-top: 8px;
    border-radius: 30px;
    min-width: 0;
    transform: translateZ(0);
  }

  .bottom-nav-item.is-active {
    flex: 1.5;
  }

  .bottom-nav-item svg { 
    width: 24px; 
    height: 24px; 
    stroke-width: 2.2; 
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    transform: translateY(6px);
  }

  .bottom-nav-item span { 
    font-size: 10px; 
    font-weight: 700; 
    text-transform: capitalize; 
    letter-spacing: 0.02em;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    opacity: 1; 
    white-space: nowrap;
    overflow: visible;
    max-width: 100%; 
    transform: translateY(0) scale(1);
    pointer-events: none;
  }

  /* Frosted Glass Active Pill */
  .bottom-nav-item.is-active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    z-index: 1;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 2px 4px rgba(255,255,255,0.05);
    animation: activePillIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes activePillIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  .bottom-nav-item.is-active svg { 
    transform: translateY(-2px) scale(1.1); 
  }

  .bottom-nav-item.is-active span { 
    opacity: 1;
    transform: translateY(-1px) scale(1);
    max-width: 100%;
    padding: 0 4px;
  }

  .bottom-nav-item:active { 
    transform: scale(0.85) translateZ(0); 
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* Specific Icon & Text Color Overrides for the active state (pastel for dark styling) */
  .bottom-nav-item[data-color="orange"].is-active svg { stroke: #fb923c !important; }
  .bottom-nav-item[data-color="orange"].is-active span { color: #fb923c !important; }

  .bottom-nav-item[data-color="teal"].is-active svg { stroke: #2dd4bf !important; }
  .bottom-nav-item[data-color="teal"].is-active span { color: #2dd4bf !important; }

  .bottom-nav-item[data-color="violet"].is-active svg { stroke: #a78bfa !important; }
  .bottom-nav-item[data-color="violet"].is-active span { color: #a78bfa !important; }

  .bottom-nav-item[data-color="green"].is-active svg { stroke: #4ade80 !important; }
  .bottom-nav-item[data-color="green"].is-active span { color: #4ade80 !important; }

  .bottom-nav-item[data-color="slate"].is-active svg { stroke: #94a3b8 !important; }
  .bottom-nav-item[data-color="slate"].is-active span { color: #94a3b8 !important; }

  .bottom-nav-item[data-color="blue"].is-active svg { stroke: #60a5fa !important; }
  .bottom-nav-item[data-color="blue"].is-active span { color: #60a5fa !important; }

  .bottom-nav-item[data-color="rose"].is-active svg { stroke: #fb7185 !important; }
  .bottom-nav-item[data-color="rose"].is-active span { color: #fb7185 !important; }

  /* Show currency switcher in mobile header top-right */
  .mobile-currency-wrap {
    display: flex;
    margin-left: auto;
    margin-right: 4px;
  }
}
@media (max-width: 360px) {
  .brand-logo-mark { height: 32px; width: 32px; }
}

/* ----- Hero card — Dark Mesh Gradient (Gen Z Solar Dusk) ----- */
/* hero must be flush — beat the global section { padding } rule via combined selector */
section.hero, .hero { padding: 0 !important; margin-top: 0 !important; background: var(--brand-deep); }
.hero-card {
  position: relative;
  background: var(--hero-mesh);
  background-size: 200% 200%;
  animation: meshDrift 12s ease infinite;
  border-radius: 0;
  padding: 28px 0 44px;
  border: none;
  box-shadow: none;
  overflow: hidden;
}
.hero-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,90,31,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.full-hero { width: 100%; min-height: 500px; display: flex; align-items: center; }
.full-size { width: 100%; flex: 1; }
.header-wrap {
  width: 100%;
  max-width: none !important;
  padding: 12px 5%;
}
.hero-title em { font-style: normal; color: #ffeb3b; }

/* ----- Regional Hero Pattern (WanderOn Style) ----- */
.regional-section { margin-top: 64px; }
.regional-hero {
  position: relative;
  border-radius: 40px;
  height: 520px;
  background-size: cover;
  background-position: center;
  padding: 0;
  color: #fff;
  margin-bottom: 0;
  overflow: hidden;
}
.regional-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}
.regional-content { 
  position: relative; z-index: 2; max-width: 600px; height: 100%; 
  display: flex; flex-direction: column; justify-content: center; 
  padding-bottom: 0; 
}
.regional-content h2 { font-size: clamp(32px, 5vw, 56px); margin: 0 0 12px; font-family: var(--font-display); line-height: 1.1; color: #fff; }
.regional-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 32px; font-weight: 500; max-width: 480px; }
.btn-yellow { 
  background: #ffeb3b; color: #000; font-weight: 700; border-radius: 12px;
  padding: 16px 48px; display: inline-block; text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,235,59,0.4); transition: transform 0.2s ease, background 0.2s ease;
  width: fit-content;
}
.btn-yellow:hover { transform: scale(1.05); background: #fdd835; }

/* ----- Overlapping Discovery Row ----- */
.overlap-grid { 
  position: relative; z-index: 10; padding: 0;
  margin-top: 0; /* Removed negative overlap as requested */
  margin-bottom: 30px;
}

.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); gap: 72px; align-items: center; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid rgba(0, 200, 150, 0.4);
  padding: 9px 18px; border-radius: 999px;
  font-size: 12px; color: #00C896; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 200, 150, 0.2);
  animation: badgePop 0.5s ease 0.3s both;
  font-family: var(--font-ui);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02; margin: 22px 0 18px;
  letter-spacing: -.03em; color: #FFFFFF;
  font-weight: 800;
}
.hero-title em {
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-sub { font-size: clamp(15px, 1.45vw, 17px); color: rgba(255,255,255,0.74); max-width: 590px; line-height: 1.55; margin-top: 18px; font-family: var(--font-sans); }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-ctas .btn { min-height: 48px; border-radius: 999px; }
.hero-ctas .btn-primary {
  background: var(--brand-gradient); border: none;
  font-weight: 800; padding: 13px 28px; font-size: 15px;
  box-shadow: var(--shadow-brand);
  font-family: var(--font-ui);
  letter-spacing: -0.01em;
}
.hero-ctas .btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(255,90,31,0.5); }
.hero-ctas .btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 700; padding: 13px 26px; font-size: 15px;
  font-family: var(--font-ui);
}
.hero-ctas .btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

/* Trust counter tiles (3 across in hero) */
.hero-trust {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
  margin-top: 24px; max-width: 560px;
}
.hero-trust-tile {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 13px 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-trust-tile:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.hero-trust-tile strong {
  display: block; font-family: var(--font-display); font-size: 22px;
  color: #FFFFFF; font-weight: 800; line-height: 1;
}
.hero-trust-tile span {
  display: block; font-size: 10px; color: rgba(255,255,255,0.55);
  letter-spacing: .11em; text-transform: uppercase; font-weight: 700;
  margin-top: 5px; font-family: var(--font-ui);
}

/* Right-side card "Most Viewed Itineraries" */
.hero-aside {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 520px;
  justify-self: end;
}
.hero-aside-label {
  font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--font-ui);
}
.hero-aside-card {
  aspect-ratio: 4 / 3;
  background: var(--brand-deep);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-aside-itinerary {
  width: 100%; height: 100%; position: relative;
}
.hero-aside-itinerary img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.hero-aside-itinerary:hover img { transform: scale(1.05); }
.hero-aside-itinerary-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.08) 100%);
  color: #fff;
}
.hero-aside-itinerary-meta h4 { margin: 10px 0 5px; font-family: var(--font-display); font-size: 19px; line-height: 1.25; }
.hero-aside-itinerary-meta span { font-size: 13px; opacity: 0.8; font-weight: 500; }
.hero-aside-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-aside-badges span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #1f2937;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  opacity: 1;
}
/* Hero Social Proof */
.avatar-stack { display: flex; align-items: center; }
.avatar-stack img {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -12px; transition: transform .2s ease;
}
.avatar-stack img:first-child { margin-left: 0; }
.avatar-stack img:hover { transform: translateY(-3px); z-index: 10; }
.avatar-plus {
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand);
  color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center;
  border: 2px solid #fff; margin-left: -12px; z-index: 5;
}
.social-text .stars { color: #f59e0b; font-size: 12px; margin-bottom: 2px; }
.social-text span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* Hero USP Group */
.hero-usp-group { display: flex; flex-direction: column; gap: 10px; }
.hero-usp {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: rgba(255,255,255,0.8); border: 1px solid var(--line);
  border-radius: var(--radius-sm); transition: transform .2s ease;
}
.hero-usp:hover { transform: translateX(5px); background: #fff; border-color: var(--brand-soft); }
.hero-usp .usp-icon { font-size: 18px; }
.hero-usp span:last-child { font-size: 13px; font-weight: 600; color: var(--ink); }

.hero-aside-foot {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 20px;
}

/* Full-width search bar (separate section under hero) */
/* Single-Intent Discovery Guide - 2026 Polish */
.search-bar-section { 
  margin-top: -56px; 
  position: relative; 
  z-index: 2000; 
  overflow: visible !important;
}

.discovery-portal {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 99px;
  padding: 6px 6px 6px 28px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid var(--line);
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discovery-portal:focus-within {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: var(--brand-soft);
}

.discovery-portal .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 0 !important;
  padding: 8px 12px 8px 0;
  position: relative;
  min-width: 0;
}

.discovery-portal .field-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.discovery-portal .field-icon {
  font-size: 18px;
}

.discovery-portal label {
  font-size: 10px; 
  color: var(--brand); 
  font-weight: 800;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  opacity: 0.9;
}

.discovery-portal input {
  border: none; 
  background: transparent; 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--ink);
  padding: 4px 0; 
  outline: none; 
  width: 100%;
  cursor: text;
  letter-spacing: -0.015em;
}

.discovery-portal .field-hint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 2px;
}

.discovery-portal input::placeholder {
  color: var(--muted);
  font-weight: 500;
  opacity: 0.6;
}

/* Original Marketplace Search Bar */
.search-bar {
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto; 
  gap: 0;
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--line);
  width: 100%;
  margin: 0 auto;
  overflow: visible !important;
}

.search-bar .field {
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
}

.search-bar .field:hover { background: var(--bg-soft); }
.search-bar .field:first-child { border-radius: 18px 0 0 18px; }
.search-bar .field:last-of-type { border-right: 0; }

.search-bar .field-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.search-bar .field-icon {
  font-size: 14px;
  opacity: 0.8;
}

.search-bar label {
  font-size: 10px; 
  color: var(--brand); 
  font-weight: 800;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
}

.search-bar input, 
.search-bar select {
  border: none; 
  background: transparent; 
  font-size: 15px; 
  font-weight: 700; 
  color: var(--ink);
  padding: 0; 
  outline: none; 
  width: 100%;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.search-submit {
  background: var(--brand); 
  color: #fff; 
  border: none; 
  border-radius: 99px;
  padding: 0 32px; 
  height: 52px;
  font-weight: 800; 
  font-size: 15px; 
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255, 90, 31, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.search-submit:hover {
  background: var(--brand-2);
  box-shadow: 0 6px 24px rgba(255, 90, 31, 0.45);
  transform: scale(1.02);
}
.search-submit:active {
  transform: scale(0.97);
}

/* Marketplace Quick Filters */
.quick-filter-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quick-filter-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-select {
  width: auto !important;
  min-width: 140px;
  background-color: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 99px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  padding: 8px 36px 8px 16px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  height: 40px !important;
}

.quick-select:hover {
  border-color: var(--brand) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.clear-filters-btn {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  padding: 8px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.clear-filters-btn:hover {
  background: #eee;
  transform: translateY(-1px);
}

.search-submit {
  background: var(--brand); 
  color: #fff; 
  border: none; 
  border-radius: 99px;
  padding: 0 40px; 
  height: 56px;
  font-weight: 800; 
  font-size: 15px; 
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px var(--ring);
  white-space: nowrap;
  flex-shrink: 0;
}

.search-submit:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--ring);
}

.search-submit span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.marketplace-filters {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 0;
  border-radius: 99px;
  width: 100%;
  overflow: visible !important;
  background: #fff;
  border: 1px solid var(--line);
}

.marketplace-filters .field {
  border-right: 1px solid var(--line);
  padding: 12px 24px;
}

.marketplace-filters .field:last-of-type {
  border-right: 0;
}

.marketplace-filters .search-submit {
  border-radius: 99px;
  margin: 4px;
  height: 56px;
}

@media (max-width: 1024px) {
  .marketplace-filters {
    grid-template-columns: 1fr 1fr;
    border-radius: 32px;
  }
  .marketplace-filters .field:nth-child(2n) {
    border-right: 0;
  }
  .marketplace-filters .field {
    border-bottom: 1px solid var(--line);
  }
  .marketplace-filters .field:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .marketplace-filters .search-submit {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .marketplace-filters {
    grid-template-columns: 1fr;
    border-radius: 24px;
    gap: 0;
  }
  .marketplace-filters .field {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .marketplace-filters .field:last-of-type {
    border-bottom: 0 !important;
  }
  .marketplace-filters .search-submit {
    grid-column: span 1;
    margin: 8px;
  }
}

@media (max-width: 980px) {
  .hero-card { padding: 28px 22px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-aside { display: none; }
  .search-bar { grid-template-columns: 1fr 1fr; padding: 8px; }
  .search-bar .field { padding: 10px 16px; }
  .search-bar .field:nth-child(2n+1) { border-right: 1px solid var(--line); }
  .search-bar .field:nth-child(2n)   { border-right: 0; }
  .search-bar .search-submit { grid-column: span 2; padding: 14px; margin: 6px 0 0; }
}
@media (max-width: 540px) {
  .hero-card { padding: 22px 16px; }
  .hero-trust { gap: 8px; margin-top: 22px; grid-template-columns: 1fr 1fr 1fr; }
  .hero-trust-tile { padding: 12px 10px; }
  .hero-trust-tile strong { font-size: 22px; }
  .search-bar { grid-template-columns: 1fr; }
  .search-bar .field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-bar .field:last-of-type { border-bottom: 0; }
  .search-bar .search-submit { grid-column: span 1; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700;
  font-size: 15px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease-out), background .2s ease, box-shadow .2s ease;
  user-select: none;
}
.btn:active { transform: scale(0.96); }
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 4px 12px var(--ring); }
.btn-primary:hover { background: var(--brand-2); color: #fff; box-shadow: 0 6px 20px var(--ring); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); color: #fff; }
.btn-outline { background: var(--surface); color: var(--ink); border-color: #6b7280; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: var(--bg-soft); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-sm { padding: 8px 14px; font-size: 14px; }

/* ----- Sections (tightened rhythm) ----- */
section { padding: 24px 0; }
.section-head { text-align: center; margin-bottom: 20px; }
.section-eyebrow { color: #c2410c; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(22px, 4.4vw, 38px); margin: 8px 0 8px; letter-spacing: -.01em; line-height: 1.15; }
.section-sub { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: clamp(14px, 2.2vw, 16px); }
@media (max-width: 720px) {
  section { padding: 16px 0; }
  .section-head { margin-bottom: 14px; }
}

/* ----- Trip Cards ----- */
.trip-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.trip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.4s ease;
}
.trip-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-2);
  border-color: var(--brand-soft);
}
.trip-card-media { aspect-ratio: 16/10; background: #eee; position: relative; }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; }
.trip-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.94); color: var(--ink); font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .02em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 4px;
}
.trip-card-tag-free { background: var(--pos) !important; color: #fff !important; }
.trip-card-tag-match { background: var(--brand-deep) !important; color: #fff !important; }
.trip-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.trip-card-title { font-family: var(--font-display); font-size: 19px; line-height: 1.25; color: var(--ink); }
.trip-card-route { display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: var(--ink-2); }
.trip-card-route span { background: var(--line-2); padding: 3px 8px; border-radius: 999px; color: var(--ink-2); }
.trip-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.trip-card-price { font-family: var(--font-display); font-size: 22px; color: var(--ink); font-weight: 600; }
.trip-card-price small { display: block; color: var(--muted); font-size: 11px; font-weight: 500; }
.trip-card-cta { font-size: 14px; padding: 9px 16px; }

@media (max-width: 980px) { .trip-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; } }
@media (max-width: 540px) {
  .trip-grid { grid-template-columns: 1fr; gap: 14px; }
  .trip-card-body { padding: 14px 14px 16px; }
  .trip-card-title { font-size: 17px; }
  .trip-card-price { font-size: 19px; }
}

/* ----- Empty state ----- */
.empty-state {
  text-align: center; padding: 60px 24px;
  background: var(--surface); border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}
.empty-state h3 { font-family: var(--font-display); color: var(--ink); margin: 0 0 6px; font-size: 22px; }

/* ----- Trust strip ----- */
.partner-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(120px, 1fr); gap: 32px;
  align-items: center; opacity: .85; padding: 16px 0;
}
.partner-strip img { max-height: 28px; width: auto; margin: 0 auto; filter: grayscale(1); }
@media (max-width: 720px) {
  .partner-strip { grid-auto-flow: row; grid-template-columns: repeat(2,1fr); }
}

/* ----- Counters ----- */
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.counter-card { text-align: center; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.counter-card strong { display: block; font-family: var(--font-display); font-size: 32px; color: var(--ink); }
.counter-card span { color: var(--muted); font-size: 14px; }
@media (max-width: 720px) { .counter-grid { grid-template-columns: repeat(2,1fr); } }

/* ----- Gen Z Pill Filter Bar (Instagram-style) ----- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
  background: transparent;
  border: none;
  box-shadow: none;
}
.filter-bar select, .filter-bar input {
  appearance: none; -webkit-appearance: none;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-ui);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  width: auto;
  min-width: 140px;
}
.filter-bar select:hover, .filter-bar input:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.filter-bar select:focus, .filter-bar input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--ring);
  outline: none;
}

/* Pill Filter Chips (for destination/category pills) */
.pill-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0 8px;
  -webkit-overflow-scrolling: touch;
}
.pill-filter-bar::-webkit-scrollbar { display: none; }

/* Pill Filter Bar */
.pill-filter-bar {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.pill-filter-bar::-webkit-scrollbar {
  display: none;
}
.pill-filter-bar .pill-chip {
  flex-shrink: 0;
  scroll-snap-align: start;
}

.pill-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-ui);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
  flex-shrink: 0;
}
.pill-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
  transform: scale(1.03);
}
.pill-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px var(--ring);
}
@media (max-width: 880px) { .filter-bar { gap: 8px; } }
@media (max-width: 520px) { .filter-bar { gap: 6px; } }

/* ----- Form fields ----- */
input:not([type="checkbox"]):not([type="radio"]), select, textarea {
  font: inherit;
  color: var(--ink);
  background: #f8f9fa;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  outline: none;
  width: 100%;
  transition: all 0.2s var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}
textarea { line-height: 1.5; resize: vertical; min-height: 96px; }

/* native arrow on selects */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a2945' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  padding-right: 40px;
  cursor: pointer;
  font-weight: 500;
}
select:disabled { background-color: #f5f3ec; cursor: not-allowed; }
select option {
  background-color: #fff; color: var(--ink);
  padding: 12px;
  font-weight: 500;
}
select:hover { background-color: var(--bg-soft); }

input:hover, select:hover, textarea:hover {
  border-color: rgba(15, 139, 141, 0.55);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--ring);
  background-color: #fff;
}
input::placeholder, textarea::placeholder { color: #9aa9a3; }

/* Autofill (Chrome/Safari) — keep our look */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--ink) !important;
  caret-color: var(--ink);
  border-color: var(--brand) !important;
}

label {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  display: inline-block;
  letter-spacing: .01em;
}

/* Field rows: tighter, consistent. */
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row.with-help small { color: var(--muted); font-size: 12px; }
.form-row .field-with-icon { position: relative; }
.form-row .field-with-icon input { padding-left: 40px; }
.form-row .field-with-icon::before {
  content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; opacity: .6;
}

/* Checkbox / radio — actually visible */
input[type="checkbox"], input[type="radio"] {
  width: 18px; height: 18px; padding: 0; margin: 0;
  accent-color: var(--brand);
  vertical-align: middle;
}
input[type="file"] {
  padding: 8px;
  background: #fafaf6;
  border-style: dashed;
}

/* Inline form error / helper text */
.field-error { color: var(--neg); font-size: 12px; margin-top: 4px; }

/* ----- Trip page ----- */
.trip-hero {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; padding: 28px 0;
}
.trip-hero-image { 
  position: relative; 
  width: 100%;
  aspect-ratio: 21 / 9; 
  background: var(--bg-soft);
  border-radius: 24px; 
  overflow: hidden; 
  margin-bottom: 32px; 
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line-2);
}
.trip-hero-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.8s var(--ease-out); 
}
.trip-hero-image:hover img { 
  transform: scale(1.05); 
}
@media (max-width: 1024px) {
  .trip-hero-image { aspect-ratio: 16 / 10; border-radius: 20px; }
}
@media (max-width: 768px) {
  .trip-hero-image { aspect-ratio: 4 / 3; border-radius: 16px; margin-bottom: 24px; }
}

.trip-expert-badge {
  position: absolute; top: 20px; left: 20px; z-index: 10;
  background: rgba(255, 255, 255, 0.95); color: var(--pos);
  padding: 6px 12px; border-radius: 99px; font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); border: 1px solid var(--pos-soft);
}

.trip-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  display: flex; align-items: flex-end; padding: 24px;
}

.trip-hero-highlights {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.trip-hero-highlights span {
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); color: #fff;
  padding: 6px 14px; border-radius: 99px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}
.trip-hero-side {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 14px; height: max-content; position: sticky; top: calc(var(--header-h) + 16px);
}
.trip-hero-side h1 { font-family: var(--font-display); font-size: 26px; line-height: 1.15; margin: 0; }
.trip-meta-row { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.trip-price { font-family: var(--font-display); font-size: 32px; }
.trip-price small { font-size: 14px; color: var(--muted); display: block; }
.trip-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.trip-tags span { background: var(--line-2); color: var(--ink-2); padding: 4px 10px; border-radius: 999px; font-size: 12px; }
@media (max-width: 880px) {
  .trip-hero { grid-template-columns: 1fr; }
  .trip-hero-side { position: static; }
}

.day-card { 
  position: relative;
  background: var(--surface); 
  border: 1px solid var(--line); 
  border-radius: var(--radius); 
  padding: 0; 
  overflow: hidden; 
  margin-bottom: 20px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.day-card:hover { border-color: var(--brand); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.day-card-header {
  padding: 16px 18px; display: flex; gap: 14px; align-items: center; cursor: pointer;
  border-bottom: 1px solid var(--line-2);
}
.day-num { background: var(--brand); color: #fff; width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; font-weight: 700; }
.day-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); }
.day-summary { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.day-toggle-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft);
  display: grid; place-items: center; color: var(--muted); font-size: 10px;
  transition: transform 0.3s ease, background 0.2s ease;
}
.day-card.is-open .day-toggle-icon { transform: rotate(180deg); background: var(--brand-soft); color: var(--brand); }
.day-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.event-row {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 14px; align-items: start;
  padding: 12px 0; border-bottom: 1px solid var(--line-2);
}
.event-row:last-child { border-bottom: 0; }
.event-time { color: var(--brand); font-weight: 600; font-size: 14px; }
.event-title { font-weight: 600; color: var(--ink); }
.event-meta { font-size: 13px; color: var(--muted); margin-top: 2px; display: flex; gap: 10px; flex-wrap: wrap; }
.event-cost { font-weight: 600; color: var(--ink); white-space: nowrap; }
.event-cat-pill {
  display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 999px;
  background: var(--line-2); color: var(--ink-2);
}

.cost-table { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.cost-cell { background: var(--line-2); padding: 10px 12px; border-radius: 10px; font-size: 13px; color: var(--ink-2); }
.cost-cell strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 16px; }
@media (max-width: 720px) { .cost-table { grid-template-columns: repeat(2, 1fr); } }

/* ----- Forms ----- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-1); max-width: 480px; margin: 40px auto;
}
.form-card h1 { font-family: var(--font-display); font-size: 28px; margin: 0 0 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-error {
  background: #fef2f2; color: #991b1b; border: 1px solid #fecaca;
  padding: 10px 12px; border-radius: 10px; font-size: 14px; margin-bottom: 12px;
}
.form-success {
  background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0;
  padding: 10px 12px; border-radius: 10px; font-size: 14px; margin-bottom: 12px;
}

/* Alert system — Bootstrap-compatible names used across public & admin pages */
.alert {
  padding: 12px 16px; border-radius: 12px; font-size: 14px; line-height: 1.5;
  border: 1px solid transparent; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 8px;
}
.alert-success  { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.alert-danger   { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert-warning  { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.alert-info     { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }

/* ----- Footer (legacy) ----- */
.site-footer { background: #0e1d2b; color: #cdd5dd; padding: 56px 0 24px; margin-top: 56px; }
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { background: #fff; color: #0e1d2b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 10px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: #cdd5dd; }
.footer-col a:hover { color: #fff; }
.footer-bottom { color: #758290; font-size: 13px; padding-top: 18px; border-top: 1px solid #182a3a; margin-top: 24px; }
.muted { color: var(--muted); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════════════════════
   FOOTER V2 — Premium dark footer (site-footer-v2)
═══════════════════════════════════════════════════════ */
.site-footer-v2 {
  background: #080B12;
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
  margin-top: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border-top: 1px solid rgba(255,255,255,.07);
}
.site-footer-v2 .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Grid */
.site-footer-v2 .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand column */
.site-footer-v2 .footer-brand-box { display: flex; flex-direction: column; gap: 0; }
.site-footer-v2 .footer-brand-box .brand-logo {
  height: 36px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px; display: block;
}
.site-footer-v2 .footer-brand-box-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25);
  color: #F97316; font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  margin-bottom: 16px; width: fit-content;
}
.site-footer-v2 .footer-brand-box p {
  font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.45);
  margin-bottom: 20px; max-width: 280px;
}
.site-footer-v2 .footer-brand-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.site-footer-v2 .footer-brand-pills span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; letter-spacing: .2px;
}
.site-footer-v2 .footer-brand-cta {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.site-footer-v2 .footer-brand-cta .btn {
  font-size: 13px; padding: 9px 18px; border-radius: 8px;
}
.site-footer-v2 .footer-brand-cta .btn-primary {
  background: #F97316; color: #fff; border: none;
}
.site-footer-v2 .footer-brand-cta .btn-primary:hover { background: #EA580C; }
.site-footer-v2 .footer-brand-cta .btn-outline {
  background: transparent; color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.15);
}
.site-footer-v2 .footer-brand-cta .btn-outline:hover {
  border-color: rgba(255,255,255,.4); color: #fff;
}

/* Nav columns */
.site-footer-v2 .footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  margin: 0 0 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-footer-v2 .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer-v2 .footer-col li { padding: 0; }
.site-footer-v2 .footer-col a {
  color: rgba(255,255,255,.5); font-size: 14px; text-decoration: none;
  transition: color .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.site-footer-v2 .footer-col a:hover { color: rgba(255,255,255,.9); }

/* Bottom bar */
.site-footer-v2 .footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; color: rgba(255,255,255,.3);
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.site-footer-v2 .footer-bottom-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.site-footer-v2 .footer-bottom-trust span {
  display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.3);
}

/* Responsive */
@media (max-width: 1100px) {
  .site-footer-v2 .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer-v2 .footer-brand-box { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .site-footer-v2 .footer-brand-box p { max-width: 380px; }
}
@media (max-width: 720px) {
  .site-footer-v2 { padding: 48px 0 0; }
  .site-footer-v2 .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer-v2 .footer-brand-box { grid-column: 1 / -1; flex-direction: column; }
  .site-footer-v2 .footer-brand-box p { max-width: 100%; }
  .site-footer-v2 .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .site-footer-v2 .footer-bottom-trust { justify-content: center; }
}

/* =================================================================
   FOOTER V3 — Ultra-premium redesigned footer (site-footer-v3)
================================================================= */
.site-footer-v3 {
  background: #07090f;
  color: rgba(255,255,255,.6);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
}
.site-footer-v3::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.07) 0%, transparent 70%);
  pointer-events: none;
}
/* Newsletter Strip */
.ftv3-newsletter {
  background: linear-gradient(135deg, rgba(249,115,22,.1) 0%, rgba(249,115,22,.04) 100%);
  border-bottom: 1px solid rgba(249,115,22,.15);
  padding: 40px 0;
}
.ftv3-newsletter-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.ftv3-nl-label {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #F97316; margin-bottom: 6px;
}
.ftv3-nl-title {
  font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 4px;
}
.ftv3-nl-sub { font-size: 14px; color: rgba(255,255,255,.5); }
.ftv3-nl-form {
  display: flex; gap: 8px; flex: 1; max-width: 460px; min-width: 280px;
}
.ftv3-nl-input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 13px 18px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: #fff; outline: none; transition: border-color .2s;
}
.ftv3-nl-input::placeholder { color: rgba(255,255,255,.3); }
.ftv3-nl-input:focus { border-color: rgba(249,115,22,.5); }
.ftv3-nl-btn {
  background: #F97316; color: #fff; border: none; cursor: pointer;
  border-radius: 12px; padding: 13px 22px; font-size: 14px; font-weight: 700;
  font-family: 'Inter', sans-serif; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.ftv3-nl-btn:hover { background: #EA580C; transform: translateY(-1px); }
/* Body */
.ftv3-body { padding: 64px 0 40px; }
.ftv3-body-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ftv3-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
/* Brand col */
.ftv3-logo {
  height: 38px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); display: block; margin-bottom: 18px;
}
.ftv3-brand-tagline {
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,.85);
  line-height: 1.4; margin-bottom: 12px; letter-spacing: -.01em;
}
.ftv3-brand-desc {
  font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.42);
  margin-bottom: 28px; max-width: 290px;
}
/* Social */
.ftv3-social { display: flex; gap: 10px; margin-bottom: 28px; }
.ftv3-social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.55);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.ftv3-social-btn:hover {
  background: rgba(249,115,22,.15); border-color: rgba(249,115,22,.4);
  color: #F97316; transform: translateY(-2px);
}
.ftv3-social-btn svg { width: 18px; height: 18px; }
/* Trust badges */
.ftv3-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.ftv3-trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px; padding: 7px 12px;
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.5);
}
/* Nav cols */
.ftv3-col h5 {
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  margin: 0 0 20px;
}
.ftv3-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ftv3-col li { padding: 0; }
.ftv3-col a {
  color: rgba(255,255,255,.45); font-size: 13.5px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: color .15s, gap .15s; line-height: 1.3;
}
.ftv3-col a:hover { color: rgba(255,255,255,.9); gap: 9px; }
.ftv3-col a .ftv3-arrow { opacity: 0; font-size: 10px; transition: opacity .15s; flex-shrink: 0; }
.ftv3-col a:hover .ftv3-arrow { opacity: 1; }
.ftv3-badge-new {
  font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: #F97316; color: #fff; padding: 2px 6px; border-radius: 4px;
}
/* Destinations strip */
.ftv3-dest-strip {
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.ftv3-dest-label {
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); white-space: nowrap; padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,.07); margin-right: 20px; flex-shrink: 0;
}
.ftv3-dest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ftv3-dest-tag {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45);
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.09);
  text-decoration: none; transition: all .15s;
}
.ftv3-dest-tag:hover { color: #F97316; border-color: rgba(249,115,22,.4); background: rgba(249,115,22,.05); }
/* Bottom bar */
.ftv3-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 16px; flex-wrap: wrap;
}
.ftv3-copyright { font-size: 12.5px; color: rgba(255,255,255,.28); }
.ftv3-bottom-links { display: flex; align-items: center; gap: 6px; }
.ftv3-bottom-links a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; padding: 0 6px; }
.ftv3-bottom-links a:hover { color: rgba(255,255,255,.7); }
.ftv3-bottom-links span { color: rgba(255,255,255,.1); }
.ftv3-bottom-right { display: flex; align-items: center; gap: 16px; }
.ftv3-made-in { font-size: 11.5px; color: rgba(255,255,255,.25); display: flex; align-items: center; gap: 6px; }
.ftv3-scroll-top {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; flex-shrink: 0; text-decoration: none;
}
.ftv3-scroll-top:hover { background: rgba(249,115,22,.15); border-color: rgba(249,115,22,.4); color: #F97316; }
.ftv3-scroll-top svg { width: 16px; height: 16px; }
/* Responsive */
@media (max-width: 1100px) {
  .ftv3-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .ftv3-brand { grid-column: 1 / -1; }
  .ftv3-brand-desc { max-width: 500px; }
}
@media (max-width: 760px) {
  .ftv3-newsletter-inner { flex-direction: column; gap: 20px; }
  .ftv3-nl-form { max-width: 100%; width: 100%; }
  .ftv3-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ftv3-body { padding: 48px 0 32px; }
  .ftv3-dest-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ftv3-dest-label { border-right: none; margin-right: 0; padding-right: 0; }
  .ftv3-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ftv3-bottom-right { align-self: stretch; justify-content: space-between; }
}

/* ============= Quick-wins polish pack ============= */

/* Skeleton loader helper heights (used during AI generation, inherits base shimmer) */
.skeleton.h-text { height: 14px; margin: 6px 0; }
.skeleton.h-line { height: 10px; margin: 4px 0; }
.skeleton.h-block { height: 80px; }

/* Glassmorphism — promoted to a reusable class */
.glass-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 12px 40px rgba(15,23,42,0.06);
}
.sticky-cta { backdrop-filter: blur(14px); background: rgba(255,255,255,0.85) !important; }

/* Curator residency / verified badge */
.curator-residency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #78350f; padding: 3px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  border: 1px solid #f59e0b;
}

/* "Continue editing" pulse on curator dashboard drafts */
.draft-continue-pulse {
  display: inline-block; padding: 2px 8px; border-radius: 99px;
  background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
  color: #78350f; font-size: 10px; font-weight: 800;
  animation: pulse-draft 2.2s ease-in-out infinite;
}
@keyframes pulse-draft { 0%,100% { box-shadow: 0 0 0 0 rgba(252,211,77,0.7); } 50% { box-shadow: 0 0 0 8px rgba(252,211,77,0); } }

/* My Trips card grid */
.my-trip-card:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(15,23,42,0.08); }
.my-trip-card .share-box,
.my-trip-card .guest-pass-box,
.my-trip-card .photo-upload-box { padding: 14px !important; margin: 0 !important; border-radius: 14px !important; }
.my-trip-card .share-box-title { font-size: 14px; margin: 0 0 4px; }
.my-trip-card .share-box-desc  { font-size: 12px; margin: 0 0 10px; }
.my-trip-card details summary::-webkit-details-marker { display: none; }
.my-trip-card details[open] summary span:last-child { transform: rotate(180deg); display: inline-block; }
@media (max-width: 720px) {
  .my-trips-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* ===== Sticky CTA — Gen Z Conversion Strip ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 -12px 40px rgba(13,17,23,0.12);
  padding: 14px 20px;
  display: none;
  z-index: 999;
  animation: slideInBottom 0.4s var(--ease-out) both;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
}
@media (max-width: 880px) {
  .sticky-cta { display: flex; align-items: center; gap: 12px; }
  .sticky-cta .btn { flex: 1; }
}

.sticky-cta-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
}
.sticky-cta-price small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sticky-cta .btn-primary {
  background: var(--brand-gradient) !important;
  border: none !important;
  font-family: var(--font-ui) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  box-shadow: var(--shadow-brand) !important;
  min-height: 50px;
}
.sticky-cta .btn-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(255,90,31,0.45) !important;
}

/* FOMO signal on sticky CTA */
.sticky-cta-fomo {
  font-size: 11px;
  color: var(--warm);
  font-weight: 700;
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 4px;
  animation: pulseGlow 2s infinite;
  white-space: nowrap;
}

/* ===== FOMO & Social Proof Components ===== */
/* Live viewer count badge */
.fomo-viewers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
  color: var(--warm);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-ui);
  padding: 5px 12px;
  border-radius: 99px;
}
.fomo-viewers::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--warm);
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite;
  flex-shrink: 0;
}

/* Social proof stack (avatars + count) */
.social-proof-stack {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof-avatars {
  display: flex;
}
.social-proof-avatars .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: var(--brand-soft);
  object-fit: cover;
  overflow: hidden;
}
.social-proof-avatars .avatar:first-child { margin-left: 0; }
.social-proof-text {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  font-family: var(--font-ui);
}
.social-proof-text strong { color: var(--ink); }

/* Urgency countdown bar */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(255,90,31,0.06) 0%, rgba(255,140,85,0.04) 100%);
  border: 1px solid rgba(255,90,31,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
}
.urgency-bar-icon { font-size: 16px; }
.urgency-bar em {
  font-style: normal;
  color: var(--brand);
  font-weight: 800;
}

/* Spots remaining meter */
.spots-meter {
  margin-top: 8px;
}
.spots-meter-bar {
  height: 4px;
  background: var(--line-2);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 6px;
}
.spots-meter-fill {
  height: 100%;
  background: var(--brand-gradient);
  border-radius: 99px;
  transition: width 1s ease;
}



/* Misc utility */
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.spacer { height: 16px; }
.hr { height: 1px; background: var(--line); margin: 28px 0; border: 0; }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
  background: #e5e7eb; color: #374151;
}
.badge.ok   { background: #d1fae5; color: #065f46; }
.badge.warn { background: #fef3c7; color: #92400e; }
.badge.bad  { background: #fee2e2; color: #991b1b; }

/* Trip Page Layout */
.trip-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .trip-layout { grid-template-columns: 1fr; gap: 40px; }
}

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

.trip-header { margin-bottom: 32px; }
.trip-title { font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin-bottom: 16px; color: var(--brand-deep); }
.trip-meta-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.meta-pill { background: var(--bg-soft); color: var(--ink-2); padding: 7px 16px; border-radius: 99px; font-size: 13px; font-weight: 700; border: 1.5px solid var(--line); }

.trip-description { font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 32px; }
.tag-pill { display: inline-block; background: var(--bg-soft); color: var(--brand); padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; margin-right: 8px; margin-bottom: 8px; }

/* Sidebar & Sticky Card */
.trip-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  z-index: 10;
}
.sticky-card { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 24px; 
  padding: 32px; 
  box-shadow: 0 12px 40px rgba(26, 41, 69, 0.08);
  position: relative;
}

.price-box { text-align: center; margin-bottom: 24px; }
.price-label { font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.price-value { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--ink); }

.secure-badge { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; color: var(--pos); font-size: 12px; font-weight: 700; }

.sidebar-features { margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 12px; }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); font-weight: 500; }
.feat-item span { font-size: 18px; }

.sidebar-footer { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }

@media (max-width: 1024px) {
  .trip-sidebar { position: static; }
  .sticky-card { padding: 24px; }
}

.toast { 
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(14, 29, 43, 0.95); backdrop-filter: blur(8px);
  color: #fff; padding: 12px 20px; border-radius: 999px; z-index: 3000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); font-size: 14px;
  width: calc(100% - 48px); max-width: 400px;
}
@media (max-width: 880px) {
  .toast { bottom: 106px !important; }
}

/* ----- Includes / "What you get" feature blocks ----- */

/* ----- Includes / "What you get" feature blocks ----- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.feature-card .ic {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(14,107,107,.1);
  color: var(--brand); display: grid; place-items: center; font-weight: 700; margin-bottom: 12px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 17px; margin: 0 0 6px; }
.feature-card p { color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feature-grid { grid-template-columns: 1fr; gap: 12px; } }

/* ----- Comparison table ----- */
.compare-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--line-2); }
.compare-row:last-child { border-bottom: 0; }
.compare-cell { padding: 16px 18px; font-size: 14px; }
.compare-cell.head { font-weight: 700; background: var(--line-2); }
.compare-cell.head.us { background: rgba(14,107,107,.1); color: var(--brand); }
.compare-cell.label { background: #fafaf6; color: var(--ink-2); font-weight: 600; }
.compare-cell.us { color: var(--ink); }
.compare-cell.them { color: var(--muted); }
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr; border-bottom: 2px solid var(--line); }
  .compare-row:last-child { border-bottom: 0; }
  .compare-cell { padding: 12px 16px; }
  .compare-cell.label { background: #fafaf6; font-size: 13px; padding: 10px 16px; font-weight: 700; }
  /* hide the empty header row entirely on mobile — labels carry the meaning */
  .compare-row:first-child { display: none; }
  /* prefix body rows with the column label */
  .compare-row:not(:first-child) .compare-cell.them::before { content: "Typical · "; color: var(--muted); font-weight: 500; }
  .compare-row:not(:first-child) .compare-cell.us::before { content: "Itinerary Store · "; color: var(--brand); font-weight: 600; }
}

/* ----- Repeat CTA strip ----- */
.cta-strip {
  background: linear-gradient(135deg, #0e6b6b, #0c4a4a);
  color: #fff; border-radius: var(--radius-lg); padding: 36px 28px;
  display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); margin: 0; max-width: 520px; }
.cta-strip p { color: #cdd5dd; margin: 6px 0 0; max-width: 520px; }
.cta-strip .btn-accent { background: #fff; color: var(--brand); }
.cta-strip .btn-accent:hover { background: #fff; color: var(--brand-2); }

/* ----- Aggregate rating bar ----- */
.rating-bar {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; box-shadow: var(--shadow-1);
}
.rating-bar .stars { color: #d97706; font-size: 18px; letter-spacing: 1px; }
.rating-bar strong { font-family: var(--font-display); font-size: 18px; }
.rating-bar small { color: var(--muted); font-size: 13px; }

/* ----- Trip page mobile ----- */
@media (max-width: 880px) {
  .trip-hero { padding: 18px 0; gap: 18px; }
  .event-row { grid-template-columns: 64px 1fr; }
  .event-cost { grid-column: 2; padding-top: 4px; font-size: 14px; }
  .day-card-header { padding: 12px 14px; gap: 10px; }
  .day-num { width: 30px; height: 30px; font-size: 13px; }
  .day-body { padding: 14px; }
  .container { padding: 0 16px; }
  body { padding-bottom: calc(118px + env(safe-area-inset-bottom)); } /* room for fixed mobile nav */
}
@media (max-width: 540px) {
  .trip-hero-side { padding: 18px; }
  .trip-price { font-size: 26px; }
  .cost-table { gap: 8px; }
}

/* ----- Filter bar improvements ----- */
@media (max-width: 720px) {
  .filter-bar { padding: 10px; gap: 8px; }
  .filter-bar input, .filter-bar select { padding: 9px 10px; font-size: 14px; }
  .filter-bar .btn { padding: 10px 16px; font-size: 14px; }
}

/* ----- Browse page filter card ----- */
.browse-section { padding-top: 36px; }
.filter-card {
  background: var(--surface-solid, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-1);
}
.filter-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
}
.filter-actions {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-2);
}
.filter-sort { margin-left: auto; max-width: 220px; }
@media (max-width: 1024px) { .filter-fields { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) {
  .filter-fields { grid-template-columns: 1fr 1fr; gap: 10px; }
  .filter-card { padding: 14px; }
  .filter-actions { gap: 8px; }
  .filter-sort { margin-left: 0; max-width: none; flex: 1; }
}
@media (max-width: 380px) {
  .filter-fields { grid-template-columns: 1fr; }
}

/* ----- Chip row (popular destinations etc.) ----- */
.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-top: 14px;
}
.chip {
  display: inline-flex; align-items: center;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  text-decoration: none;
  transition: border-color .12s ease, background-color .12s ease;
}
.chip:hover { border-color: var(--brand); background: rgba(15, 139, 141, .06); color: var(--brand); }

/* ----- Sticky CTA: keep above iOS home indicator ----- */
.sticky-cta { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }

/* =============================================================
   MOBILE-FIRST POLISH PASS
   Tuned for 320px–480px primary, gradually relaxing up to 768px.
   ============================================================= */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  section { padding: 16px 0; }
  .hr { margin: 18px 0; }

  /* Hero */
  .hero { padding: 0 0 20px !important; margin-top: 0 !important; }
  .hero-eyebrow { padding: 5px 10px; font-size: 11px; display: block; text-align: center; width: fit-content; margin: 0 auto; }
  .hero-title { line-height: 1.1; margin: 12px 0 10px; text-align: center; }
  .hero-sub { line-height: 1.5; text-align: center; }
  .hero-ctas { gap: 10px; margin-top: 18px; justify-content: center; }
  .hero-ctas .btn { flex: 1; min-width: 140px; }
  .hero-search { margin-top: 18px; padding: 6px; }
  .hero-search .field { padding: 6px 10px; }
  .hero-search label { padding: 0; font-size: 10px; }
  .hero-search input, .hero-search select { font-size: 14px; padding: 4px 0; }

  /* Trust counters → 2x2 grid */
  .hero-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-trust div { font-size: 12px; }
  .hero-trust strong { font-size: 17px; }

  /* Sections */
  .section-head { margin-bottom: 18px; }

  /* Trip cards: tighter padding */
  .trip-card-media { aspect-ratio: 4/3; }
  .trip-card-tag { font-size: 11px; padding: 4px 8px; }
  .trip-card-route span { font-size: 11px; padding: 2px 7px; }

  /* Destination cards: wider, less tall on tiny screens */
  .dest-card { aspect-ratio: 3/4; }
  .dest-card-meta { left: 8px; right: 8px; bottom: 8px; padding: 6px 9px; }

  /* Feature blocks: tighter */
  .feature-card { padding: 18px; }
  .feature-card .ic { width: 34px; height: 34px; margin-bottom: 10px; }
  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 13px; }

  /* CTA strip */
  .cta-strip { padding: 26px 22px; gap: 14px; flex-direction: column; align-items: flex-start; }
  .cta-strip .btn { width: 100%; }

  /* Footer */
  .site-footer { padding: 36px 0 100px; margin-top: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col h4 { font-size: 12px; }
  .footer-logo { height: 38px; }

  /* Trip page */
  .trip-hero-image { aspect-ratio: 5/3; }
  .trip-hero-side h1 { font-size: 22px; }
  .trip-hero-side { padding: 16px; gap: 12px; }
  .trip-price { font-size: 24px; }
  .trip-tags span { font-size: 11px; padding: 3px 9px; }
  .day-card { margin-bottom: 12px; }
  .day-card-header { padding: 12px; gap: 10px; }
  .day-num { width: 30px; height: 30px; font-size: 13px; border-radius: 7px; }
  .day-title { font-size: 15px; }
  .day-summary { font-size: 13px; }
  .day-body { padding: 12px; gap: 10px; }
  .event-row { grid-template-columns: 56px 1fr; padding: 10px 0; }
  .event-time { font-size: 13px; }
  .event-title { font-size: 14px; }
  .event-meta { font-size: 12px; gap: 8px; }
  .event-cost { grid-column: 2; padding-top: 4px; font-size: 13px; font-weight: 700; color: var(--brand); }
  .cost-table { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cost-cell { padding: 8px 10px; font-size: 12px; }
  .cost-cell strong { font-size: 14px; }

  /* Auth & forms */
  .form-card { padding: 20px; margin: 24px auto; }
  .form-card h1 { font-size: 22px; }

  /* Section eyebrow legibility */
  .section-eyebrow { font-size: 11px; }

  /* Buttons more thumb-friendly */
  .btn { padding: 12px 18px; font-size: 15px; min-height: 44px; }
  .btn-sm { min-height: 36px; padding: 8px 14px; }

  /* Inputs more thumb-friendly */
  input:not([type="checkbox"]):not([type="radio"]), select, textarea { font-size: 16px; padding: 11px 12px; min-height: 44px; }
  /* But keep hero-search slim */
  .hero-search input:not([type="checkbox"]):not([type="radio"]), .hero-search select { min-height: 36px; padding: 4px 8px; font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-ctas .btn { font-size: 14px; padding: 11px 16px; }
  .hero-search { grid-template-columns: 1fr; gap: 6px; }
  .hero-search .field { border-right: 0; border-bottom: 1px solid var(--line-2); padding: 8px 10px; }
  .hero-search .field:last-of-type { border-bottom: 0; }
  .hero-search button { grid-column: span 1; width: 100%; }

  .trip-grid { gap: 12px; }
  .feature-grid { gap: 10px; }
  .dest-grid { gap: 8px; }
  .partner-strip { gap: 16px; }
  .partner-strip img { max-height: 22px; }

  .filter-bar { gap: 6px; padding: 8px; }

  /* Trip page sticky CTA tighter */
  .sticky-cta { padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 8px; }
  .sticky-cta-price { font-size: 16px; }
  .sticky-cta .btn { font-size: 14px; padding: 11px 14px; }

  .trip-layout { padding-bottom: 100px; }
  .stay-grid { grid-template-columns: repeat(2, 1fr); }
  .stay-tier-btn { padding: 10px; }
  .tier-price { font-size: 13px; }

  /* Comparison table on tiny screens */
  .compare-cell { padding: 10px 14px; font-size: 13px; }
  .compare-cell.label { padding: 8px 14px; font-size: 12px; }

  /* Aggregate rating more compact */
  .rating-bar { padding: 6px 14px; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .rating-bar strong { font-size: 16px; }
  .rating-bar small { font-size: 12px; }

  /* Day card cost grid stays 2x2 */
  /* Container tightening so things never feel cramped */
  .container { padding: 0 14px; }
}

/* Tablet sweet spot */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { max-width: 480px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Panel sections (Trending Destinations / Best-Selling) — boxed with light gradient + dashed empty card
   ============================================================ */
.panel-section {
  background: var(--section-gradient);
  border-radius: var(--radius-lg);
  border: 1px solid #ecdfca;
  padding: 24px 28px;
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .panel-section { padding: 20px 18px; margin-bottom: 12px; }
}
.panel-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 18px;
}
.panel-section-head h1,
.panel-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
/* The eyebrow label above headings (e.g. "🔥 AI-Ranked") */
.panel-section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  padding: 0;
  border: none;
  background: transparent;
}
/* The subtitle/description line below h2 */
.panel-section-head p,
.panel-section-head .panel-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin: 3px 0 0;
  line-height: 1.4;
}
/* The View All / Explore button */
.panel-section-head > a,
.panel-section-head .panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.panel-section-head > a:hover,
.panel-section-head .panel-cta:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.panel-empty {
  background: #fff; border: 2px dashed var(--line-warm); border-radius: var(--radius);
  padding: 64px 24px; text-align: center;
  color: var(--muted); font-weight: 600; font-size: 16px;
}

/* ============================================================
   Comparison section "Faster Planning. Better Trips."
   Two-column: left card (eyebrow + heading + day mock + pills + CTAs) | right (icon-row table)
   ============================================================ */
.compare-section {
  border-radius: var(--radius-lg);
  background: var(--section-gradient);
  border: 1px solid #ecdfca;
  padding: 32px;
  margin: 18px 0;
}
@media (max-width: 720px) { .compare-section { padding: 22px 16px; margin: 14px 0; } }
.compare-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: stretch;
}
.compare-left { display: flex; flex-direction: column; }
.compare-eyebrow {
  font-size: 11px; color: var(--brand); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.compare-heading {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1; color: var(--ink); margin: 12px 0 16px;
}
.compare-sub { color: var(--ink-2); margin: 0 0 22px; max-width: 380px; line-height: 1.55; }

.compare-mock {
  background: #1a2945; border-radius: var(--radius);
  padding: 22px;
  position: relative;
  margin: 12px 0 18px;
}
.compare-mock-cards { display: flex; gap: 10px; }
.compare-mock-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px; padding: 12px;
  flex: 1;
  font-size: 11px;
  color: var(--ink-2);
}
.compare-mock-card strong { display: block; color: var(--ink); font-size: 12px; margin-bottom: 2px; }
.compare-mock-card.day1 { background: rgba(255, 255, 255, 0.95); border-top: 3px solid var(--brand); }
.compare-mock-card.day2 { background: rgba(255, 255, 255, 0.95); border-top: 3px solid var(--pos); }
.compare-mock-card.day3 { background: rgba(255, 255, 255, 0.95); border-top: 3px solid #f0b423; }
.compare-mock-trail {
  display: flex; gap: 6px; align-items: center; justify-content: space-around;
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.2);
}
.compare-mock-pin {
  width: 14px; height: 14px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); display: inline-block;
}
.compare-mock-pin.p1 { background: var(--brand); }
.compare-mock-pin.p2 { background: var(--pos); }
.compare-mock-pin.p3 { background: #6aa1ff; }

.compare-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.compare-pills span {
  background: #fff; border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.compare-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Right side rows */
.compare-rows {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.compare-rows-head {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr;
  background: #fafaf6;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.compare-rows-head > div { padding: 14px 16px; color: var(--ink-2); }
.compare-rows-head > div:nth-child(3) { color: var(--ink); }

.compare-row-modern {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--line-2);
  align-items: stretch;
}
.compare-row-modern:last-child { border-bottom: 0; }
.compare-row-modern .feat {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 16px; font-weight: 700; color: var(--ink);
}
.compare-row-modern .feat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.compare-row-modern .typical, .compare-row-modern .ours {
  padding: 14px 16px; display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; color: var(--ink-2);
  background: #fff; margin: 8px 8px 8px 0; border-radius: 10px;
}
.compare-row-modern .typical { border: 1px solid var(--line-2); }
.compare-row-modern .ours {
  background: #f0fdf4; border: 1px solid #bbf7d0; color: var(--ink);
  margin-right: 12px;
}
.compare-row-modern .typical small,
.compare-row-modern .ours small {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.compare-row-modern .ours small { color: var(--pos); }

@media (max-width: 980px) {
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .compare-section { padding: 24px 18px; }
  .compare-rows-head { display: none; }
  .compare-row-modern { grid-template-columns: 1fr; padding: 14px; gap: 8px; }
  .compare-row-modern .feat { padding: 0 0 6px; }
  .compare-row-modern .typical, .compare-row-modern .ours { margin: 0; }
}

/* ============================================================
   Partner cards — colored icon container + label + tagline
   ============================================================ */
.partner-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 16px 0 32px;
}
.partner-cards-wrap {
  background: var(--section-gradient);
  border: 1px solid #ecdfca;
  border-radius: var(--radius);
  padding: 22px;
}
.partner-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
}
.partner-card:hover { border-color: var(--brand); }
.partner-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.partner-card-icon.orange { background: var(--brand); }
.partner-card-icon.green  { background: #1f7a3a; }
.partner-card-icon.purple { background: #7c3aed; }
.partner-card-icon.amber  { background: #ed6f1c; }

.partner-card-meta strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 17px; line-height: 1.1; }
.partner-card-meta span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }

@media (max-width: 980px) { .partner-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .partner-cards { grid-template-columns: 1fr; gap: 12px; } }

/* ============================================================
   Footer redesign — dark navy with brand box (left) + columns (right)
   ============================================================ */
/* ============================================================
   FOOTER v4 - Mega Premium Footer
   ============================================================ */
.site-footer-v4 {
    background: #090e17; /* Extra dark base */
    color: #94a3b8;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    border-radius: 40px 40px 0 0; /* Huge rounded top corners */
}

/* Beautiful animated glowing mesh background */
.site-footer-v4::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 140%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(var(--brand-rgb, 255,90,31), 0.15) 0%, rgba(9,14,23,0) 60%),
                radial-gradient(circle at 80% 80%, rgba(139,92,246, 0.12) 0%, rgba(9,14,23,0) 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-v4-top, .footer-v4-bottom {
    position: relative;
    z-index: 2;
}

.footer-v4-top {
    padding: 100px 0 60px;
}

.footer-v4-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* Glassmorphism Brand Card */
.footer-v4-brand-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-v4-brand-card h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 16px;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-v4-brand-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #94a3b8;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    padding: 6px;
}
.footer-newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 20px;
    flex: 1;
    font-size: 15px;
    outline: none;
}
.footer-newsletter-form input::placeholder {
    color: #64748b;
}
.footer-newsletter-form button {
    background: var(--brand);
    color: #fff;
    border: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.footer-newsletter-form button:hover {
    transform: scale(1.05);
    background: var(--brand-2);
}

.footer-v4-brand-card .footer-trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.08);
}
.trust-badge svg {
    color: var(--brand);
    width: 18px; height: 18px;
}

/* Links Grid */
.footer-v4-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 20px;
}
.footer-v4-links .footer-link-group h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0.9;
}
.footer-v4-links .footer-link-group ul {
    list-style: none; padding: 0; margin: 0;
}
.footer-v4-links .footer-link-group li {
    margin-bottom: 14px;
}
.footer-v4-links .footer-link-group a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: color 0.2s;
    display: inline-block;
}
.footer-v4-links .footer-link-group a::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -2px; left: 0;
    background: var(--brand);
    transition: width 0.3s ease;
}
.footer-v4-links .footer-link-group a:hover {
    color: #ffffff;
}
.footer-v4-links .footer-link-group a:hover::after {
    width: 100%;
}

/* Bottom Bar */
.footer-v4-bottom {
    padding-bottom: 40px;
}
.footer-v4-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-v4-legal {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.legal-links {
    display: flex;
    gap: 16px;
}
.legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.legal-links a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    color: #94a3b8;
    background: rgba(255,255,255,0.05);
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    background: var(--brand);
    color: #ffffff;
    transform: translateY(-4px);
}
.footer-socials a svg {
    width: 18px; height: 18px;
}

/* Massive Typography */
.footer-v4-huge-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 16vw;
    font-weight: 900;
    text-align: center;
    line-height: 0.75;
    color: #ffffff;
    opacity: 0.03; /* Extremely subtle */
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.04em;
    margin-bottom: -1vw;
}

@media (max-width: 1024px) {
    .footer-v4-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .footer-v4-links {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
}
@media (max-width: 600px) {
    .site-footer-v4 {
        border-radius: 24px 24px 0 0;
        margin-top: 40px;
    }
    .footer-v4-top {
        padding: 60px 0 40px;
    }
    .footer-v4-brand-card {
        padding: 30px 20px;
    }
    .footer-v4-bar {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-v4-legal {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    .footer-v4-huge-text {
        font-size: 22vw;
        margin-top: 20px;
    }
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs { padding: 14px 0 0; }
.breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 13px; color: var(--muted);
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before {
  content: "›"; color: var(--muted); margin-right: 2px;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs span { color: var(--ink); font-weight: 600; }

/* ============================================================
   Trust strip (below hero) — icon pills, not flat text
   ============================================================ */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  /* Match section rhythm: tighter top space, modest bottom space.
     Container alignment is inherited from the parent .container. */
  margin: 32px 0 24px;
  padding: 0;
}
.trust-strip .trust-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-1);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  line-height: 1.4;
  transition: border-color .15s ease, transform .15s ease;
}
.trust-strip .trust-item:hover { border-color: var(--brand); transform: translateY(-1px); }
.trust-strip .trust-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-strip .trust-icon svg { width: 20px; height: 20px; }
.trust-strip .trust-text strong {
  display: block; color: var(--ink); font-weight: 700; font-size: 14px;
}
.trust-strip .trust-text span { display: block; color: var(--muted); font-size: 12px; font-weight: 500; }
@media (max-width: 980px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-strip { grid-template-columns: 1fr; gap: 8px; margin: 18px 0 20px; }
  .trust-strip .trust-item { gap: 12px; padding: 10px 12px; border-radius: 18px; }
  .trust-strip .trust-icon { width: 32px; height: 32px; border-radius: 9px; }
  .trust-strip .trust-icon svg { width: 18px; height: 18px; }
  .trust-strip .trust-text strong { font-size: 13px; line-height: 1.2; }
  .trust-strip .trust-text span { font-size: 11px; line-height: 1.25; }
}

/* ============================================================
   Sale timer ribbon
   ============================================================ */
.sale-ribbon {
  background: linear-gradient(135deg, #1a2945 0%, #ed6f1c 100%);
  color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-align: center;
}
.sale-ribbon strong { font-family: var(--font-display); font-size: 18px; }
.sale-ribbon .sale-spark { font-size: 16px; }

/* ============================================================
   Reviews block (on trip pages and Reviews page)
   ============================================================ */
.reviews-block { margin-top: 28px; }
.reviews-summary {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 22px; box-shadow: var(--shadow-1); margin-bottom: 18px;
}
.reviews-summary .big-rating {
  font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--ink);
  line-height: 1;
}
.reviews-summary .big-rating-stars {
  color: var(--brand); font-size: 18px; letter-spacing: 1px;
}
.reviews-summary .total-count { color: var(--muted); font-size: 14px; }
.reviews-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-1);
}
.review-card-head {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff; font-weight: 700; font-family: var(--font-display);
  display: grid; place-items: center; flex-shrink: 0; font-size: 16px;
}
.review-card-name { font-weight: 700; color: var(--ink); }
.review-card-stars { color: var(--brand); font-size: 14px; letter-spacing: 1px; }
.review-card-body { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin: 0; }
.review-card-meta { color: var(--muted); font-size: 12px; margin-top: auto; padding-top: 4px; }
@media (max-width: 720px) { .reviews-list { grid-template-columns: 1fr; } }

/* ============================================================
   Social proof on trip cards
   ============================================================ */
.trip-card-social {
  display: flex; gap: 8px; align-items: center;
  font-size: 11px; color: var(--muted); font-weight: 600;
  margin-top: 4px;
}
.trip-card-social .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pos);
  display: inline-block; box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.18);
}

/* ============================================================
   FAQ accordion (used on FAQ + trip pages for objection handling)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px; font-weight: 700; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
}
.faq-q::after {
  content: "+"; font-size: 20px; color: var(--brand); font-weight: 700;
  transition: transform .15s ease;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 20px 18px; color: var(--ink-2); font-size: 14px; line-height: 1.6;
}

/* ============================================================
   Impersonation banner (admin acting as user)
   ============================================================ */
.impersonate-banner {
  background: linear-gradient(90deg, #1a2945 0%, #ed6f1c 100%);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 8px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  position: sticky; top: 0; z-index: 60;
}
.impersonate-banner a { color: #fff; text-decoration: underline; font-weight: 700; }
.impersonate-banner a:hover { color: #fff; opacity: 0.9; }

/* ============================================================
   Top progress bar (NProgress-style, no library)
   ============================================================ */
#its-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1100;
  pointer-events: none; opacity: 0; transition: opacity .2s ease;
}
#its-progress.its-progress-show { opacity: 1; }
.its-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22d3ee 0%, #5fbf6e 25%, #f0c419 50%, #f97316 75%, #e11d48 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .2s ease;
  box-shadow: 0 0 8px rgba(15, 139, 141, .35);
}

/* ============================================================
   Button spinner / loading state
   ============================================================ */
.btn.is-loading,
button[data-loading="1"] {
  position: relative;
  pointer-events: none;
  cursor: wait;
}
.btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: its-spin .7s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes its-spin { to { transform: rotate(360deg); } }

/* Skeleton placeholder utility (inherited from base skeleton shimmer) */

/* Lock body scroll while mobile nav open */
body.nav-open { overflow: hidden; }

/* Reduce-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .reveal, .float-anim, .pulse-hover:hover {
    transform: none !important;
    transition: none !important;
  }
  #its-progress, .btn-spinner, .skeleton { display: none !important; }
}

/* =============================================================
   Premium Loading Screen
   ============================================================= */
.its-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}
.its-loader.is-active { opacity: 1; visibility: visible; }

/* Sky Backdrop SVG */
.travel-loader-sky-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.travel-loader-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pulsing pins */
.pin-pulse-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: pinPulse 2s var(--ease-out) infinite;
}
@keyframes pinPulse {
  0% { transform: scale(0.5); opacity: 1; stroke-width: 1.5; }
  100% { transform: scale(1.6); opacity: 0; stroke-width: 0.5; }
}

/* Drifting clouds */
@keyframes cloudDrift {
  0% { transform: translateX(0); }
  50% { transform: translateX(40px); }
  100% { transform: translateX(0); }
}
.cloud {
  animation: cloudDrift 24s ease-in-out infinite;
}
.cloud-2 {
  animation-delay: -6s;
  animation-duration: 28s;
}
.cloud-3 {
  animation-delay: -12s;
  animation-duration: 32s;
}

/* Synchronous Active Path Trail */
.active-flight-trail {
  stroke-dasharray: 260 1200;
  animation: drawTrail 5.5s linear infinite;
}
@keyframes drawTrail {
  0% { stroke-dashoffset: 260; }
  100% { stroke-dashoffset: -1200; }
}

/* Thruster flicker */
@keyframes flameFlicker {
  0%, 100% { transform: scale(0.9) translateX(0); opacity: 0.7; }
  50% { transform: scale(1.2) translateX(-1px); opacity: 1; fill: #ff9f1c; }
}
.thruster-glow {
  transform-box: fill-box;
  transform-origin: center;
  animation: flameFlicker 0.15s ease-in-out infinite;
}

.its-loader-inner { 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  z-index: 10;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 40px 48px;
  border-radius: var(--radius-lg, 28px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-2);
  max-width: 440px;
  width: calc(100% - 40px);
  transition: all 0.3s ease;
}
[data-theme="dark"] .its-loader-inner {
  background: rgba(13, 17, 23, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Background Particle Animation */
.loader-bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: radial-gradient(circle, var(--brand-glow, #5eead4) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(8px);
  animation: floatParticle 14s ease-in-out infinite alternate;
}
.particle.p-1 { width: 180px; height: 180px; top: 10%; left: 8%; animation-duration: 18s; }
.particle.p-2 { 
  width: 260px; height: 260px; bottom: 8%; right: 4%; animation-duration: 24s; animation-delay: -5s; 
  background: radial-gradient(circle, var(--accent, #f97316) 0%, rgba(255,255,255,0) 70%); 
}
.particle.p-3 { width: 90px; height: 90px; top: 65%; left: 78%; animation-duration: 14s; animation-delay: -9s; }
.particle.p-4 { 
  width: 140px; height: 140px; bottom: 45%; left: 20%; animation-duration: 20s; animation-delay: -3s; 
  background: radial-gradient(circle, #7c3aed 0%, rgba(255,255,255,0) 70%); 
}

@keyframes floatParticle {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-30px) scale(1.15) rotate(180deg); }
  100% { transform: translateY(10px) scale(0.9) rotate(360deg); }
}

/* Mascot Hiker Loader */
.hiker-loader-container {
  width: 140px;
  height: 70px;
  position: relative;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiker-trail-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hiker-trail-line {
  fill: none;
  stroke: url(#hiker-trail-grad);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 6;
  filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.32));
  animation: drawHikerPath 2s linear infinite;
}
.hiker-mascot {
  width: 64px;
  height: 64px;
  position: absolute;
  offset-path: path('M10,40 Q50,10 90,40');
  filter: drop-shadow(0 8px 16px rgba(12, 16, 25, 0.16));
  animation: flyHiker 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
[data-theme="dark"] .hiker-mascot {
  filter: drop-shadow(0 8px 24px rgba(94, 234, 212, 0.22));
}
.hiker-mascot img, .hiker-mascot span {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: hikerBob 0.35s ease-in-out infinite alternate;
}
@keyframes drawHikerPath {
  0% { stroke-dashoffset: 24; }
  100% { stroke-dashoffset: 0; }
}
@keyframes flyHiker {
  0% { offset-distance: 0%; opacity: 0; transform: scale(0.6); }
  15% { opacity: 1; transform: scale(1); }
  85% { opacity: 1; transform: scale(1); }
  100% { offset-distance: 100%; opacity: 0; transform: scale(0.6); }
}
@keyframes hikerBob {
  0% { transform: translateY(0) rotate(-5deg); }
  100% { transform: translateY(-7px) rotate(5deg); }
}

/* Loader Text & Subtext */
.its-loader-text {
  font-family: var(--font-display);
  font-size: 20px; 
  font-weight: 800;
  color: var(--ink, #0D1117);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-transform: capitalize;
}
[data-theme="dark"] .its-loader-text {
  color: #fff;
}
.travel-loader-subtext {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted, #52606D);
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
[data-theme="dark"] .travel-loader-subtext {
  color: rgba(255, 255, 255, 0.7);
}

/* Branded Speech bubble tip card */
.saathi-tip-bubble {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 16px 20px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  width: 100%;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4);
}
[data-theme="dark"] .saathi-tip-bubble {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
}
.tip-bubble-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.tip-bubble-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent, #f97316);
  background: rgba(249, 115, 22, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Loader Progress Indicator */
.loader-progress-track {
  width: 100%;
  height: 4px;
  background: var(--line, #e2e8f0);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 20px;
}
[data-theme="dark"] .loader-progress-track {
  background: rgba(255,255,255,0.08);
}
.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand, #0ea5a4) 0%, var(--accent, #f97316) 100%);
  border-radius: 99px;
  animation: progressRun 4s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}
@keyframes progressRun {
  0% { width: 0%; }
  30% { width: 45%; }
  70% { width: 75%; }
  90% { width: 90%; }
  100% { width: 93%; }
}

/* Glassmorphism utility for V2 */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-hover {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.glass-hover:hover {
  background: #fff;
  box-shadow: var(--shadow-1);
  border-color: var(--brand-soft);
}
/* V2 Premium Components */
.vibe-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; font-style: italic;
  color: var(--brand); background: var(--brand-soft);
  padding: 2px 8px; border-radius: 999px;
  margin-left: 6px; text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(237, 111, 28, 0.2);
}

.stay-selector-wrap { margin-bottom: 20px; }
.stay-selector-label { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.1em; }
.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stay-tier-btn { 
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; cursor: pointer; text-align: center; transition: all 0.2s ease;
}
.stay-tier-btn.active { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 4px 12px var(--ring); }
.tier-name { font-size: 10px; font-weight: 800; color: var(--muted); margin-bottom: 4px; }
.tier-price { font-weight: 700; color: var(--ink); }

.selected-stay-info {
  margin-top: 16px; padding: 14px 18px; background: var(--bg-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line-warm);
}
.selected-stay-info span { font-weight: 600; font-size: 14px; color: var(--ink); }
.selected-stay-info a {
  background: var(--brand); color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 700;
  transition: background 0.2s ease;
}
.selected-stay-info a:hover { background: var(--brand-2); }
.stay-tier-btn:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-1); }
.stay-tier-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 4px 12px var(--ring); }
.stay-tier-btn .tier-name { font-size: 10px; font-weight: 800; opacity: 0.8; margin-bottom: 2px; }
.stay-tier-btn .tier-price { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.stay-tier-btn.active .tier-name, .stay-tier-btn.active .tier-price { color: #fff; opacity: 1; }

.variant-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; padding: 2px 8px; border-radius: 999px;
  background: var(--bg-alt); color: var(--ink-2); cursor: pointer;
  transition: all 0.2s ease; border: 1px solid transparent;
}
.variant-pill:hover { border-color: var(--brand); }
.variant-pill.active { background: var(--brand-deep); color: #fff; }

/* ----- Trip Card Upgrades (WanderOn Price Style) ----- */
.trip-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.price-ribbon {
  position: absolute; top: 16px; right: 0;
  background: #ffeb3b; color: #000; font-weight: 800; font-size: 13px;
  padding: 8px 18px; border-radius: 24px 0 0 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 5;
}
.trip-card-footer {
  background: #000; color: #fff; padding: 14px 20px;
  display: flex; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 700;
  border-radius: 0 0 16px 16px;
}
.trip-card-footer span { display: flex; align-items: center; gap: 6px; }

/* ----- Feature Boxes (Why Itinerary Store?) ----- */

.regional-hero-v2 {
    position: relative;
    border-radius: 32px;
    height: 480px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: -60px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.regional-content-v2 {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}
.regional-content-v2 .eyebrow {
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.regional-content-v2 h2 {
    font-family: var(--font-display);
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.side-scroll-premium {
    position: relative;
    z-index: 10;
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.side-scroll-premium::-webkit-scrollbar { display: none; }

.side-scroll-premium .dest-card,
.side-scroll-premium .view-more-card {
    min-width: 260px;
    flex-shrink: 0;
}
.feature-box-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px;
}
/* Mobile: horizontal side-scroll snap, like dest-card row */
@media (max-width: 720px) {
  .feature-box-grid {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 32px -20px 0; padding: 4px 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .feature-box-grid::-webkit-scrollbar { display: none; }
  .feature-box-grid > .feature-box {
    flex: 0 0 78%; max-width: 78%; scroll-snap-align: start;
    padding: 28px 22px;
  }
}
.feature-box {
  background: #fff; border: 1.5px solid #e3f2fd; border-radius: 24px;
  padding: 40px 32px; text-align: center; transition: all 0.3s ease;
  position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.feature-box:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--brand); }
.feature-box h3 { color: var(--brand); font-size: 22px; margin-bottom: 12px; font-family: var(--font-display); }
.feature-box p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.feature-box-icon { 
  height: 80px; width: 80px; margin: 0 auto 20px; 
  background: #f1f8ff; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--brand);
}

/* ----- Destination Cards — Gen Z Bento Grid ----- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 24px 0;
}

/* Alternating Bento rhythm: large(8col) + small(4col), then small(4col) + large(8col) */
.dest-grid .dest-card:nth-child(3n+1) { grid-column: span 8; aspect-ratio: 16/10; }
.dest-grid .dest-card:nth-child(3n+2) { grid-column: span 4; aspect-ratio: 4/5; }
.dest-grid .dest-card:nth-child(3n+3) { grid-column: span 4; aspect-ratio: 4/5; }
.dest-grid .dest-card:nth-child(3n+4) { grid-column: span 8; aspect-ratio: 16/10; }

/* Fallback: if less than 4 cards show even columns */
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid .dest-card:nth-child(n) { grid-column: span 1 !important; aspect-ratio: 4/5; }
}
@media (max-width: 540px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid .dest-card:nth-child(n) { grid-column: span 1 !important; aspect-ratio: 4/5; }
}

.dest-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  cursor: pointer;
}
.dest-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

/* Image zoom on hover — on img, not card */
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.dest-card:hover img { transform: scale(1.08); }

/* Gradient overlay */
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 40%, transparent 80%);
  z-index: 1; pointer-events: none;
}

/* Trending badge (top-right) */
.dest-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: rgba(255, 90, 31, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-ui);
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  animation: badgePop 0.4s ease both;
}
.dest-card-badge.badge-hot   { background: rgba(255, 90, 31, 0.92); }
.dest-card-badge.badge-new   { background: rgba(0, 200, 150, 0.92); }
.dest-card-badge.badge-sale  { background: rgba(225, 29, 72, 0.92); }

.dest-card-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  z-index: 2;
  color: #fff;
}

.dest-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 800;
  margin-bottom: 6px;
  word-break: break-word;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.dest-card-price {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.88;
  letter-spacing: 0.02em;
  font-family: var(--font-ui);
}

/* "Explore →" CTA that slides up on hover */
.dest-card-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-ui);
  color: #fff;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s var(--ease-out);
}
.dest-card:hover .dest-card-explore {
  opacity: 1;
  transform: translateY(0);
}

/* Compact Destination Cards (side-scroll rows) */
.dest-card-compact {
  aspect-ratio: 4/5 !important;
  border-radius: 24px !important;
  min-width: 0 !important;
}
.dest-card-compact .dest-card-meta {
  padding: 16px !important;
}
.dest-card-compact .dest-card-title {
  font-size: 18px !important;
  font-weight: 800 !important;
}
.dest-card-compact .dest-card-price {
  font-size: 12px !important;
  opacity: 0.85 !important;
}
.panel-section-compact {
  margin-top: 32px !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
/* Desktop Trending: premium Vibe layout alignment */
.trending-story-row .dest-card {
  min-width: 200px !important;
  max-width: 200px !important;
  flex: 0 0 200px !important;
  aspect-ratio: 4/5 !important;
  height: 250px !important;
}
@media (min-width: 769px) {
  .trending-story-row {
    margin-left: -4px !important;
    gap: 12px !important;
  }
}
.panel-section-compact .panel-section-head {
  margin-bottom: 20px;
  padding: 0;
}
.panel-section-compact .panel-section-head-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.panel-section-compact .panel-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}

/* Day Cards hover state moved to consolidated section above */

.day-card-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  background: #fff;
}
.day-num {
  width: 50px;
  height: 50px;
  background: var(--brand-deep);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.day-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.day-summary { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* Audit Grid */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.audit-card {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}
.audit-card:hover { transform: translateY(-4px); }
.audit-card-icon { font-size: 32px; margin-bottom: 16px; }
.audit-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--brand-deep); }
.audit-card-text { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* Sticky Mobile Bar */
.mobile-quick-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
}
/* Review Stars & Verified Badge */
.rate-stars { display: flex; gap: 4px; font-size: 32px; cursor: pointer; margin: 12px 0; }
.rate-stars span { color: #ddd; transition: color .12s ease; }
.rate-stars span.is-on { color: var(--brand); }

.verified-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 4px; 
  background: #dcfce7; 
  color: #166534; 
  padding: 4px 12px; 
  border-radius: 99px; 
  font-size: 11px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.02em; 
}

/* Modals */
.its-modal { border: 0; padding: 0; background: transparent; max-width: 500px; width: 92%; }
.its-modal::backdrop { background: rgba(15, 25, 40, 0.6); backdrop-filter: blur(4px); }
.its-modal-card { background: #fff; border-radius: 32px; padding: 40px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.its-modal-close { position: absolute; top: 20px; right: 24px; background: var(--bg-soft); border: 0; font-size: 24px; cursor: pointer; color: var(--muted); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.its-modal-close:hover { background: #eee; color: var(--ink); }

@media (max-width: 880px) {
  body { padding-bottom: 90px; }
}

/* ----- Dashboard & Stats ----- */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.counter-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 20px;
  transition: transform 0.2s ease;
}
.counter-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.counter-card strong { display: block; font-family: var(--font-display); font-size: 32px; color: var(--brand-deep); line-height: 1; margin-bottom: 8px; }
.counter-card span { font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
}
.dash-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.05); }

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.dash-card-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--brand-deep); margin: 0; }
.dash-card-meta { font-size: 14px; color: var(--muted); margin-top: 4px; }

.share-box {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.share-box-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--brand-deep); margin-bottom: 8px; }
.share-box-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

@media (max-width: 768px) {
  .dash-card { padding: 24px; }
  .dash-card-header { flex-direction: column; gap: 16px; }
  .dash-card-title { font-size: 20px; }
}

/* ----- Side Scroll Utility ----- */
.side-scroll {
  position: relative;
  z-index: 10;
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 24px 20px 48px;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  align-items: flex-start; /* default — story circles don't stretch */
}
.side-scroll::-webkit-scrollbar { display: none; } /* Chrome/Safari */

@media (min-width: 769px) {
  .side-scroll {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent !important;
  }
  .side-scroll::-webkit-scrollbar {
    display: block !important;
    height: 6px !important;
  }
  .side-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03) !important;
    border-radius: 10px !important;
  }
  .side-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px !important;
    transition: background 0.3s !important;
  }
  .side-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3) !important;
  }
}

/* Only stretch cards when the row explicitly contains content cards */
.side-scroll.card-row {
  align-items: stretch;
}
.side-scroll.card-row > .trip-card,
.side-scroll.card-row > .tour-card {
  display: flex;
  flex-direction: column;
  height: auto;
}
.side-scroll.card-row > .trip-card .trip-card-body,
.side-scroll.card-row > .tour-card .tour-card-body {
  flex: 1;
}

.side-scroll > * { 
  flex: 0 0 320px; 
  scroll-snap-align: start; 
}

/* For smaller cards if explicitly requested */
.side-scroll.compact-scroll > * {
  flex: 0 0 200px; 
}

@media (max-width: 768px) {
  .side-scroll { gap: 16px; padding: 16px 16px 32px; scroll-padding: 0 16px; }
  .side-scroll > * { flex: 0 0 280px !important; min-width: 280px !important; }
  .side-scroll.compact-scroll > * { flex: 0 0 160px !important; min-width: 160px !important; }
}

.view-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 20px;
  text-align: center;
  color: var(--brand);
  font-weight: 700;
  transition: all 0.3s ease;
  aspect-ratio: 3/4;
}

.btn-premium-tour {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(14, 107, 107, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-tour:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 107, 107, 0.3);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
}

.btn-premium-tour .arrow-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-premium-tour:hover .arrow-icon {
  transform: translateX(4px);
}

.view-more-card:hover { background: var(--brand-soft); border-style: solid; transform: translateY(-8px); }
.view-more-icon { font-size: 32px; margin-bottom: 12px; }

/* =============================================================
   AI Magic Banner
   ============================================================= */
.ai-magic-banner {
  background:
    linear-gradient(135deg, rgba(14,165,164,.09), rgba(249,115,22,.08)),
    #fff;
  border: 1px solid #D8EEF0;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 52px rgba(18, 52, 59, 0.08);
  margin-top: 32px;
}
.ai-magic-glow {
  position: absolute;
  top: -50%; left: -20%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.16) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.ai-magic-content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.ai-icon-hex {
  width: 56px; height: 56px;
  background: var(--brand-soft);
  border: 1px solid #CCFBF1;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.ai-text { flex: 1; }
.ai-text strong { display: block; color: var(--ink); font-size: 18px; margin-bottom: 4px; }
.ai-text span { color: #475569; font-size: 14px; line-height: 1.5; }
.ai-badge-group { display: flex; gap: 8px; }
.ai-micro-badge {
  padding: 4px 10px;
  background: #fff;
  color: var(--brand);
  border: 1px solid #CCFBF1;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .ai-magic-content { flex-direction: column; text-align: center; gap: 16px; }
  .ai-badge-group { justify-content: center; }
}

/* =============================================================
   Recent Unlock Toast
   ============================================================= */
.recent-unlock-toast {
  position: fixed;
  bottom: var(--toast-bottom, 24px); left: 16px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 1999;
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
  max-width: calc(100vw - 32px);
}
.recent-unlock-toast.is-active { transform: translateX(0); }
@media (max-width: 880px) {
  .recent-unlock-toast { --toast-bottom: calc(104px + env(safe-area-inset-bottom)); }
}
.rut-icon {
  width: 32px; height: 32px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.rut-body { font-size: 12px; line-height: 1.4; color: var(--ink); }
.rut-body strong { color: var(--ink); }
.rut-body em { font-style: normal; color: var(--brand); font-weight: 600; }
.rut-body span { display: block; color: var(--muted-2); font-size: 10px; margin-top: 2px; }

/* =============================================================
   Map Preview & AI Concierge Styles
   ============================================================= */
.map-overlay-blur {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(14, 107, 107, 0.2) 100%);
  pointer-events: none;
}
.map-route-trail {
  position: absolute;
  top: 50%; left: 30%; width: 40%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand), var(--brand) 4px, transparent 4px, transparent 8px);
  transform: rotate(-30deg);
  opacity: 0.6;
  z-index: 1;
}
.map-pin-pulse {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--brand);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(237, 111, 28, 0.4);
  animation: mapPinPulse 2s infinite;
  z-index: 2;
}
@keyframes mapPinPulse {
  0% { box-shadow: 0 0 0 0 rgba(237, 111, 28, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(237, 111, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 111, 28, 0); }
}

.ai-concierge-card li {
  padding-left: 0;
  opacity: 0.9;
}
.ai-concierge-card li::before {
  content: none;
}

/* =============================================================
   MOBILE-FIRST RESPONSIVE OVERHAUL (June 2026)
   ============================================================= */

/* -- Fluid Spacing Variables -- */
:root {
  --section-space: 80px;
  --container-px: 32px;
}
@media (max-width: 768px) {
  :root {
    --section-space: 40px;
    --container-px: 20px;
  }
}

/* -- Global Container Safety -- */
.container {
  padding-left: var(--container-px) !important;
  padding-right: var(--container-px) !important;
}

/* -- Refactored Components (Replacing Inline Styles) -- */

/* Unlock Panel */
.trip-unlock-panel {
  text-align: center;
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
}
@media (max-width: 768px) {
  .trip-unlock-panel { padding: 40px 20px; border-radius: var(--radius); }
  .trip-unlock-panel h3 { font-size: 24px !important; }
}

/* Partner Links Grid */
.partner-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
@media (max-width: 480px) {
  .partner-links-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .partner-links-grid > div { padding: 12px !important; }
}

/* Readiness Checklist */
.readiness-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.readiness-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
@media (max-width: 640px) {
  .readiness-item { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px; }
  .readiness-item .btn { width: 100%; text-align: center; }
}

/* Trip Timeline */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
@media (max-width: 640px) {
  .timeline-item { flex-direction: column; gap: 4px; padding: 12px 16px; }
  .timeline-item span:first-child { width: auto !important; }
}

/* Reviews Block */
.reviews-summary-card {
  margin-bottom: 40px;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 640px) {
  .reviews-summary-card { flex-direction: column; text-align: center; gap: 16px; padding: 24px; }
}

/* -- Typography Adjustments -- */
.serif-title {
  font-size: clamp(24px, 4vw, 42px) !important;
  line-height: 1.1;
}

/* -- Layout Gaps -- */
.mt-section { margin-top: var(--section-space) !important; }
.mt-box { margin-top: 32px !important; }

/* -- Utility: Mobile Only Hidden -- */
@media (max-width: 768px) {
  .m-hidden { display: none !important; }
  .m-stack { flex-direction: column !important; }
  .m-full { width: 100% !important; }
}

/* -- Hero & Images -- */
/* Fixed: Removed conflicting height override */
.trip-hero-image {
  /* Dynamic height via aspect-ratio in main block */
}

/* -- Expert Perspective -- */
.expert-panel {
  margin-top: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
@media (max-width: 768px) {
  .expert-panel { padding: 20px; border-radius: var(--radius); }
}

/* -- Experience Layer (trip_experience.php) -- */
.trip-weather-strip {
  background: linear-gradient(135deg, #fef3c7 0%, #dbeafe 100%);
  border: 1px solid #fde68a;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.day-hero {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 640px) {
  .day-hero { height: 160px; }
}

.event-variant-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: var(--transition);
}
.event-variant-btn.active { border-color: var(--brand); background: #fff; }

.route-overview-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .route-overview-grid > div { flex: 1 1 100px; text-align: center; }
  .route-overview-grid span[style*="→"] { display: none; }
}

.curator-card-flex {
  display: flex;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fff4ec 100%);
  border: 1px solid var(--brand-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
@media (max-width: 768px) {
  .curator-card-flex { flex-direction: column; text-align: center; padding: 24px; }
  .curator-card-flex .btn-group { width: 100%; flex-direction: row; justify-content: center; }
}

.group-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .group-calc-grid { grid-template-columns: 1fr; }
}

.budget-summary-card {
  margin: 24px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stay-option-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
@media (max-width: 640px) {
  .stay-option-card { grid-template-columns: auto 1fr; }
  .stay-option-card .btn { grid-column: span 2; width: 100%; margin-top: 8px; }
}

/* Trip Card Tags & Meta */
.trip-card-tag { 
  position: absolute; padding: 4px 10px; border-radius: 99px; 
  font-size: 10px; font-weight: 800; border: none; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 5;
}
.trip-card-tag-free { top: 12px; right: 12px; bottom: auto; left: auto; background: #10b981; color: #fff; }
.trip-card-tag-match { 
  top: 12px; right: 12px; bottom: auto; left: auto;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); color: #fff; 
}
.trip-card-tag-match.is-paid { right: 90px; }
.trip-card-tag-badge { top: 12px; left: 12px; bottom: auto; right: auto; color: #fff; }
.trip-card-tag-version { bottom: 12px; left: 12px; top: auto; right: auto; background: rgba(0,0,0,0.8); color: #fff; backdrop-filter: blur(8px); }
.trip-card-tag-ai { 
  bottom: 12px; right: 12px; top: auto; left: auto;
  background: rgba(14, 107, 107, 0.9); color: #fff; 
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.trip-card-body { padding: 18px 20px 24px; }
.trip-card-title { font-size: 18px; margin-bottom: 12px; font-family: var(--font-display); font-weight: 700; }
.trip-card-social { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; }
.rating-star { color: var(--brand); font-weight: 700; }

/* Vibe Card specialized */
.vibe-card-emoji {
  background: linear-gradient(135deg, var(--brand-soft), #fef3c7);
  display: grid; place-items: center;
  aspect-ratio: 3/4; font-size: 88px;
}
@media (max-width: 768px) {
  .vibe-card-emoji { font-size: 64px; }
}
/* =============================================================
   MOBILE-FIRST RESPONSIVE OVERHAUL (June 2026)
   Priority: Fluid stacking, high readability, zero horizontal scroll.
   ============================================================= */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-aside { display: none; } /* Hide heavy aside on mid-tablets to focus on CTA */
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-bar .field:nth-child(2) { border-right: 0; }
}

@media (max-width: 768px) {
  :root {
    --section-space: 48px;
    --container-padding: 20px;
  }

  /* Header & Nav overrides cleaned up */
  .site-header { padding: 0; height: var(--header-h); display: block; width: 100%; backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
  .header-inner { height: var(--header-h); padding: 0 16px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .site-header .brand-logo { filter: none !important; }

  /* Hero */
  .hero-card { padding: 16px 0 28px; }
  .hero-title { font-size: 36px; text-align: center; }
  .hero-sub { text-align: center; margin: 20px auto; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { width: 100%; }
  .hero-social-proof { justify-content: center; gap: 10px; margin-top: 18px; }
  .avatar-stack svg { width: 34px !important; height: 34px !important; }
  .avatar-plus { width: 34px; height: 34px; font-size: 9px; margin-left: -10px; }
  .social-text .stars { font-size: 11px; line-height: 1; }
  .social-text span { font-size: 11px; line-height: 1.2; }
  .hero-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; max-width: 100%; margin-top: 14px; }
  .hero-trust-tile { padding: 10px 8px; border-radius: 16px; text-align: center; }
  .hero-trust-tile strong { font-size: 17px; }
  .hero-trust-tile span { font-size: 8px; letter-spacing: .08em; margin-top: 4px; }

  /* Search Bar */
  .search-bar-section { margin-top: -78px; }
  .search-bar { grid-template-columns: 1fr; border-radius: 20px; padding: 8px; }
  .search-bar .field { padding: 16px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-submit { width: 100%; border-radius: 12px; margin-top: 8px; padding: 18px; }
  .discovery-portal { flex-direction: column; padding: 8px; border-radius: 24px; }
  .discovery-portal .field { width: 100%; border-bottom: 1px solid var(--line); padding: 10px 12px; }
  .discovery-portal .search-submit { width: 100%; margin-top: 8px; }


  /* Section Spacing */
  .panel-section { padding: 48px 0; }
  .panel-section-head h1,
  .panel-section-head h2 { font-size: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand-box { text-align: center; }
  .footer-brand-pills { justify-content: center; }
  .footer-brand-cta { flex-direction: column; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Cards & Side Scroll */
  .side-scroll { gap: 16px; }
  /* dest-card-compact width:100% must NOT apply inside trending story rows
     (those cards are 70px circles — the story row CSS handles their size) */
  .dest-card-compact:not(.trending-story-row .dest-card) { width: 100% !important; }
  
  /* Regional Hero */
  .regional-hero { border-radius: 20px; height: 420px; }
  .regional-content h2 { font-size: 28px !important; }
  .regional-content p { font-size: 15px; }

  /* Body overflow fix — use clip so inner scroll rows with negative margins
     stay pointer-event-accessible (overflow:hidden creates a scroll container
     that kills pointer events in the clipped area) */
  html { overflow-x: clip; }
  img { max-width: 100%; height: auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(28px, 8vw, 36px); }
  .hero-social-proof { margin-top: 14px; }
  .hero-trust { gap: 7px; margin-top: 12px; }
  .hero-trust-tile { padding: 9px 6px; }
  .hero-trust-tile strong { font-size: 16px; }
  .hero-trust-tile span { font-size: 7.5px; letter-spacing: .06em; }
  .trust-strip { grid-template-columns: 1fr; gap: 8px; align-items: stretch; margin: 18px 0 20px; }
  .ai-magic-banner { padding: 20px; border-radius: 16px; }
  .ai-icon-hex { width: 48px; height: 48px; font-size: 24px; }
}

/* Purged legacy squashing rules to restore wide premium cards */

@media (max-width: 768px) {
  .panel-section-compact {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 16px 0 8px !important;
  }
  .panel-section-head {
    margin-bottom: 14px !important;
    gap: 10px !important;
    padding-bottom: 14px !important;
    /* On mobile: keep flex row but let left column grow */
    align-items: flex-start !important;
  }
  /* Left column wraps tightly */
  .panel-section-head > div:first-child,
  .panel-section-head-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
    flex: 1 !important;
  }
  .panel-section-head h1,
  .panel-section-head h2,
  .panel-section-head-left h1,
  .panel-section-head-left h2 {
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    margin: 0 !important;
    line-height: 1.25 !important;
    color: var(--ink) !important;
  }
  /* Subtitle shrinks on mobile */
  .panel-section-head p,
  .panel-section-head .muted {
    font-size: 11px !important;
    margin: 2px 0 0 !important;
    line-height: 1.4 !important;
    color: #94a3b8 !important;
    /* Single line with ellipsis */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 200px !important;
  }
  .panel-section-eyebrow {
    font-size: 10px !important;
    font-weight: 800 !important;
    color: var(--brand) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    display: inline-block !important;
    margin-bottom: 4px !important;
    background: transparent !important;
    padding: 0 !important;
  }
  /* Badge chips (e.g. "Limited Slots") */
  .panel-section-head .badge {
    font-size: 9px !important;
    padding: 3px 10px !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    width: fit-content !important;
    margin-bottom: 4px !important;
  }
  /* Right CTA button — compact pill */
  .panel-section-head > a {
    padding: 7px 13px !important;
    font-size: 11px !important;
    border-radius: 99px !important;
    border-width: 1.5px !important;
    flex-shrink: 0 !important;
    align-self: center !important;
    letter-spacing: 0.01em !important;
  }

  /* ══════════════════════════════════════════════
     TRENDING DESTINATIONS — INSTAGRAM STORY STYLE
     Completely overrides the default .dest-card
     (removes dark overlay, card shape, bg image)
     ══════════════════════════════════════════════ */

  /* Container: horizontal story scroll */
  .trending-story-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 8px !important;
    /* No negative margins — those clip pointer events when body has overflow:clip.
       Instead, pull out naturally using the container's own padding as breathing room. */
    margin: 0 -16px 0 !important;
    padding: 4px 16px 12px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    align-items: flex-start !important;
    scroll-snap-type: x mandatory !important;
    background: transparent !important;
    -webkit-overflow-scrolling: touch !important;
    /* Ensure touch targets are never clipped */
    overflow-y: visible !important;
    position: relative !important;
    z-index: 5 !important;
  }
  .trending-story-row::-webkit-scrollbar { display: none !important; }

  /* Each destination — strip it down to just a circle + label */
  .trending-story-row .dest-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    width: 70px !important;
    min-width: 0 !important;
    max-width: 70px !important;
    flex: 0 0 70px !important;
    scroll-snap-align: start !important;
    text-decoration: none !important;
    aspect-ratio: unset !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 2px 0 0 !important;
    margin: 0 !important;
    height: auto !important;
    position: relative !important;
    transition: transform 0.2s ease !important;
  }


  /* Kill the dark gradient overlay ::after */
  .trending-story-row .dest-card::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  /* Kill the absolute-positioned background image */
  .trending-story-row .dest-card > img,
  .trending-story-row .dest-card img:not(.dest-card-img-wrap img) {
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }

  .trending-story-row .dest-card:hover {
    transform: scale(1.06) !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .trending-story-row .dest-card:active { transform: scale(0.97) !important; }

  /* ── The gradient ring wrapper ── */
  .trending-story-row .dest-card-img-wrap {
    position: relative !important;
    width: 62px !important;
    height: 62px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    background: conic-gradient(
      #f9a825 0deg,
      #f06292 90deg,
      #9c27b0 180deg,
      #29b6f6 270deg,
      #f9a825 360deg
    ) !important;
    padding: 2.5px !important;
    border: none !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(240, 98, 146, 0.25) !important;
  }

  /* White gap ring */
  .trending-story-row .dest-card-img-wrap::before {
    content: '' !important;
    position: absolute !important;
    inset: 2px !important;
    border-radius: 50% !important;
    background: #fff !important;
    z-index: 1 !important;
  }

  /* The actual photo clipped in a circle */
  .trending-story-row .dest-card-img-wrap img,
  .trending-story-row .dest-card-img-wrap > img {
    position: absolute !important;
    inset: 3px !important;
    width: calc(100% - 6px) !important;
    height: calc(100% - 6px) !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    z-index: 2 !important;
    top: 3px !important;
    left: 3px !important;
    /* Hide alt text if image is broken to keep UI clean */
    color: transparent !important;
    text-indent: -9999px !important;
  }

  /* ── Meta area: just the name, centered below the ring ── */
  .trending-story-row .dest-card-meta {
    position: relative !important;
    inset: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    padding: 0 !important;
    background: none !important;
    color: var(--ink) !important;
    width: 70px !important;
    text-align: center !important;
    z-index: auto !important;
    display: block !important;
  }
  .trending-story-row .dest-card-title {
    font-family: var(--font-body, sans-serif) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 70px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    text-shadow: none !important;
  }
  .trending-story-row .dest-card-price {
    display: none !important;
  }
  .trending-story-row .dest-card-explore {
    display: none !important;
  }
  .trending-story-row .dest-card-badge {
    display: none !important;
  }
}

.search-bar-section, .search-bar, .marketplace-filters {
  overflow: visible !important;
}

.search-bar-section {
  z-index: 1900;
}

/* Custom Portal Dropdown */
.portal-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 99999;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px;
  animation: slideInUp 0.2s var(--ease-out);
}

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

.portal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.portal-item:hover, .portal-item.active {
  background: var(--brand-soft);
  transform: translateX(4px);
}

.portal-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.portal-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portal-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.portal-meta {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Explore by Vibe Cards */
.vibe-card {
  min-width: 200px !important;
  max-width: 200px !important;
  flex: 0 0 200px !important;
  aspect-ratio: 4/5 !important;
  height: 250px !important;
  display: block !important;
  position: relative;
  overflow: hidden;
  border-radius: 24px !important;
  background: #f1f5f9;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out) !important;
}

.vibe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.15);
}

.vibe-card:hover img {
  transform: scale(1.08) !important;
}

/* Custom Scrollbar for Dropdown */
.portal-dropdown::-webkit-scrollbar { width: 6px; }
.portal-dropdown::-webkit-scrollbar-track { background: transparent; }
.portal-dropdown::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.portal-dropdown::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ==========================================================
   HIGH-END RESPONSIVE ADJUSTMENTS FOR SLIDERS & SIDE-SCROLL
   ========================================================== */

/* Fix: side scrolls should scroll naturally on desktop and support drag-swipe */
.side-scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Fix: Allow desktop horizontal scrolling cleanly with visible scrollbar on hover */
@media (min-width: 769px) {
  .side-scroll {
    scrollbar-width: thin !important;
    scrollbar-color: var(--line) transparent !important;
  }
  /* Show 12-15 items beautifully on desktop */
  .trending-story-row {
    gap: 12px !important;
    padding-bottom: 12px !important;
  }
  .trending-story-row .dest-card {
    flex: 0 0 200px !important;
    max-width: 200px !important;
    min-width: 200px !important;
  }
}

/* =============================================================
   Trip Card v2 — price-first, conversion-optimised
   ============================================================= */
.tc-v2 {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}
.tc-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

/* Image area */
.tc-media {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.tc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tc-v2:hover .tc-media img { transform: scale(1.04); }

/* Badges */
.tc-badge {
  position: absolute; top: 12px; left: 12px;
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 99px;
  letter-spacing: 0.03em; white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.28);
}
.tc-match {
  position: absolute; top: 12px; right: 12px;
  background: rgba(15,23,42,0.75); backdrop-filter: blur(6px);
  color: #fff; font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 99px;
}
.tc-price-pill {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(15,23,42,0.82); backdrop-filter: blur(6px);
  color: #fff; font-size: 13px; font-weight: 900;
  padding: 5px 12px; border-radius: 99px;
  letter-spacing: -0.01em;
}
.tc-price-free {
  background: rgba(0,180,130,0.85);
}

/* Body */
.tc-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.tc-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--muted);
}
.tc-meta span {
  background: var(--bg-soft);
  padding: 3px 8px; border-radius: 6px;
}
.tc-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  line-height: 1.3; margin: 0; color: var(--ink);
}
.tc-title a { color: inherit; text-decoration: none; }
.tc-title a:hover { color: var(--brand); }

/* Rating */
.tc-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
}
.tc-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.tc-rcount { font-weight: 700; color: var(--ink-2); }
.tc-sold {
  background: rgba(16,185,129,0.1); color: #065f46;
  font-size: 10px; font-weight: 800;
  padding: 2px 7px; border-radius: 99px;
}

/* CTA */
.tc-cta {
  display: block; margin-top: auto; padding: 12px 16px;
  border-radius: 99px; text-align: center;
  font-size: 14px; font-weight: 800;
  color: #fff; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(255,90,31,0.25);
}
.tc-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Mobile adjustments ─────────────────────── */
@media (max-width: 480px) {
  .tc-media { height: 180px; }
  .tc-title  { font-size: 15px; }
}

/* =============================================================
   Mobile Bottom Navigation Bar
   ============================================================= */
.bottom-tab-bar {
  display: none;
}
@media (max-width: 768px) {
  .bottom-tab-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: 0 0 env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  }
  .bottom-tab-bar a {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px; padding: 10px 4px;
    font-size: 10px; font-weight: 700;
    color: var(--muted); text-decoration: none;
    transition: color 0.15s;
  }
  .bottom-tab-bar a.is-active,
  .bottom-tab-bar a:hover { color: var(--brand); }
  .bottom-tab-bar a svg { width: 22px; height: 22px; }
  /* Push page content above bar */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0)); }
}

/* =============================================================
   Hero Search Bar (homepage)
   ============================================================= */
.hero-search-wrap {
  display: flex; align-items: center;
  background: #fff; border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden; max-width: 540px;
  margin: 24px 0;
}
.hero-search-input {
  flex: 1; padding: 14px 20px;
  border: none; outline: none;
  font-size: 15px; font-weight: 600;
  color: var(--ink); background: transparent;
}
.hero-search-input::placeholder { color: #94a3b8; font-weight: 500; }
.hero-search-btn {
  margin: 5px; padding: 10px 22px;
  background: var(--brand); color: #fff;
  border: none; border-radius: 99px;
  font-size: 14px; font-weight: 800;
  cursor: pointer; white-space: nowrap;
  transition: opacity 0.2s;
}
.hero-search-btn:hover { opacity: 0.88; }

/* ── Live urgency bar ─────────────────────────── */
.hero-urgency-bar {
  display: inline-flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px; padding: 7px 18px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9);
  margin-top: 4px;
}
.hero-urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}

/* =============================================================
   Subscribe page: billing toggle + savings calculator
   ============================================================= */
.sub-toggle-wrap {
  display: inline-flex; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 99px; padding: 4px; gap: 2px;
  margin: 20px auto 28px; display: flex; width: fit-content;
}
.sub-toggle {
  border: none; background: transparent; cursor: pointer;
  padding: 8px 20px; border-radius: 99px;
  font-size: 14px; font-weight: 700; color: var(--ink-2);
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.sub-toggle.is-active {
  background: #fff; color: var(--ink);
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.sub-savings-badge {
  background: #d1fae5; color: #065f46;
  font-size: 11px; font-weight: 800;
  padding: 2px 8px; border-radius: 99px;
}
.sub-calc-box {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 16px; padding: 20px 24px; margin-bottom: 24px;
}

/* =============================================================
   Auth: single-screen form
   ============================================================= */
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 12px; font-weight: 700;
  margin: 16px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.auth-tab-row {
  display: flex; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 99px; overflow: hidden; margin-bottom: 24px;
  padding: 3px; gap: 2px;
}
.auth-tab {
  flex: 1; padding: 9px 14px; text-align: center;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: none; background: transparent; color: var(--muted);
  border-radius: 99px; transition: all 0.18s;
}
.auth-tab.active, .auth-tab.is-active {
  background: #fff; color: var(--ink);
  box-shadow: 0 1px 8px rgba(0,0,0,0.12);
}

/* =============================================================
   Phone Field with Country Code
   ============================================================= */
.phone-field-wrap {
  display: flex;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.phone-field-wrap:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,90,31,.1);
}
.phone-code-select {
  border: none;
  border-right: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 8px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
  max-width: 180px;
  min-width: 130px;
  appearance: auto;
}
.phone-local-input {
  border: none !important;
  outline: none !important;
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  background: transparent;
  min-width: 0;
  box-shadow: none !important;
}
.phone-local-input::placeholder { color: #94a3b8; font-weight: 400; }

/* Profile page phone layout */
.profile-phone-wrap {
  display: flex;
  gap: 10px;
}
.profile-phone-wrap .phone-code-select {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 10px;
  background: var(--bg-soft);
  min-width: 140px;
}
.profile-phone-wrap .phone-local-input {
  flex: 1;
  border: 1px solid var(--line) !important;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  width: 100%;
}
.profile-phone-wrap .phone-local-input:focus {
  border-color: var(--brand) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,90,31,.08);
}

/* =============================================================
   Dashboard: Travel Passport
   ============================================================= */
.passport-card {
  background: linear-gradient(135deg,#0f172a 0%,#1e293b 60%,#0f2233 100%);
  border-radius: 24px; padding: 28px 32px; color: #fff;
  position: relative; overflow: hidden; margin-bottom: 32px;
}
.passport-card::before {
  content: '';
  position: absolute; top: -10px; right: 20px;
  width: 120px; height: 120px; opacity: 0.06; pointer-events: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M7 12h6'/%3E%3Cpath d='M7 16h4'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M7 12h6'/%3E%3Cpath d='M7 16h4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.passport-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin: 0 0 4px;
}
.passport-name {
  font-family: var(--font-display); font-size: 24px;
  font-weight: 700; margin: 0 0 16px; color: #fff;
}
.passport-stamps {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.passport-stamp {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1px;
  color: #fff; text-align: center; cursor: default;
}
.passport-stats {
  display: grid; grid-template-columns: repeat(3,1fr) auto;
  gap: 10px; align-items: stretch;
}
.passport-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 14px 12px; text-align: center;
}
.passport-stat strong {
  display: block; font-size: 22px; font-weight: 900;
  font-family: var(--font-display); margin-bottom: 4px; color: #fff;
}
.passport-stat span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.passport-savings {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 14px; padding: 14px 12px; text-align: center;
  display: flex; flex-direction: column; gap: 2px; color: #4ade80;
}
@media (max-width: 700px) {
  .passport-stats { grid-template-columns: repeat(2,1fr); }
  .passport-savings { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 600px) {
  .passport-card { padding: 20px; }
  .passport-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .passport-stat strong { font-size: 18px; }
}

/* =============================================================
   Trip detail: mobile sticky unlock bar
   ============================================================= */
/* Hidden by default; JS adds .is-visible on desktop scroll past sidebar;
   on mobile always visible via media query below */
.trip-sticky-bar {
  display: none;
  align-items: center; justify-content: space-between;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom,0));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 12px;
}
.trip-sticky-bar.is-visible {
  display: flex;
}
@media (max-width: 768px) {
  .trip-sticky-bar {
    display: flex; /* always show on mobile */
  }
  .trip-sticky-bar-title {
    font-size: 13px; font-weight: 700; color: var(--ink);
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis; flex: 1;
  }
  .trip-sticky-bar-price {
    font-size: 12px; color: var(--muted); font-weight: 600; white-space: nowrap;
  }
  .trip-sticky-bar-btn {
    padding: 10px 20px; border-radius: 99px; font-size: 13px; font-weight: 800;
    background: var(--brand); color: #fff; border: none; cursor: pointer;
    white-space: nowrap; transition: opacity 0.2s;
    text-decoration: none; display: inline-block;
  }
}

/* =============================================================
   Sidebar trust signals
   ============================================================= */
.sidebar-trust {
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--line); padding-top: 14px;
  margin-top: 14px;
}
.sidebar-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: #475569;
}
.sidebar-trust-item span:first-child { font-size: 14px; }

/* Fix: Alignment, overlapping & dynamic item limits on Mobile */
@media (max-width: 768px) {
  /* Limit trending destinations (story list) to exactly 10 items on mobile */
  .trending-story-row .dest-card:nth-child(n+11) {
    display: none !important;
  }

  /* Limit regional blocks (India & Global) to exactly 10 items on mobile */
  .regional-grid .side-scroll .dest-card-compact:nth-child(n+11),
  .side-scroll-premium .dest-card-compact:nth-child(n+11) {
    display: none !important;
  }

  /* Fix: prevent .dest-card-compact inside .side-scroll from stretching to 100% width on mobile */
  .side-scroll .dest-card-compact {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    flex: 0 0 220px !important;
    aspect-ratio: 4/5 !important;
  }

  /* Fix: Ensure the "Explore →" CTA is perfectly visible and aligned on mobile (since there is no hover) */
  .dest-card-compact .dest-card-explore {
    opacity: 1 !important;
    transform: translateY(0) !important;
    font-size: 11px !important;
    padding: 6px 14px !important;
    margin-top: 6px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
  }
}

/* =============================================================
   Browse page: sticky filter bar
   ============================================================= */
.browse-sticky-filters {
  position: sticky;
  top: var(--header-h, 80px);
  z-index: 1900;
  background: var(--bg, #fafafa);
  transition: box-shadow 0.2s;
  border-radius: 0 0 16px 16px;
  padding-bottom: 8px;
}
.browse-sticky-filters.is-stuck {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .browse-sticky-filters { top: var(--header-h, 60px); border-radius: 0; }
}


/* GENZ GRID FOR MOBILE SCROLL */
.genz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .genz-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    padding-bottom: 16px;
    margin: 0 -16px;
    padding: 0 16px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
  }
  .genz-grid::-webkit-scrollbar {
    display: none;
  }
  .genz-grid > * {
    flex: 0 0 240px;
    scroll-snap-align: center;
  }
}

/* ── Trending Destination Scroll Strip ──────────────────────────────────────
   Used on hotels.php and activities.php landing state.
   Desktop: auto-fill grid. Mobile: snap-scrollable horizontal strip.
   ──────────────────────────────────────────────────────────────────────── */
.dest-scroll-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
  margin-top: 20px;
  text-align: left;
}
.dss-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #0f172a;
}
.dss-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.dss-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
  display: block;
}
.dss-card:hover img { transform: scale(1.07); }
.dss-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.dss-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px 14px;
  z-index: 2;
}
.dss-flag {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.dss-name {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  line-height: 1.15;
  font-family: var(--font-display);
}
.dss-sub {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
/* Scroll strip header row */
.dss-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.dss-header-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #94a3b8;
}
.dss-header-hint {
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
  display: none;
}

@media (max-width: 768px) {
  .dest-scroll-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding: 4px 0 14px;
    max-width: 100%;
  }
  .dest-scroll-strip::-webkit-scrollbar { display: none; }
  .dss-card {
    /* Show exactly 2 cards side-by-side + a 10px gap between them.
       Container is ~343px (375 - 2×16px padding), so each card = (343-10)/2 ≈ 166px */
    flex: 0 0 calc(50% - 21px);
    min-width: calc(50% - 21px);
    scroll-snap-align: start;
    aspect-ratio: 3/4;
    border-radius: 16px;
  }
  .dss-meta {
    padding: 10px 11px 12px;
  }
  .dss-name { font-size: 13px; }
  .dss-flag { font-size: 16px; margin-bottom: 3px; }
  .dss-sub { font-size: 10px; }
  .dss-card:hover { transform: none; box-shadow: none; }
  .dss-card:active { transform: scale(0.96); opacity: 0.92; }
  .dss-header-hint { display: block; }
}

/* Wrap with fade-right to hint scrollability on mobile */
.dss-wrap {
  position: relative;
}
@media (max-width: 768px) {
  .dss-wrap::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 14px;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--surface, #fff));
    pointer-events: none;
    z-index: 3;
    border-radius: 0 18px 18px 0;
  }
}

/* Homepage Trending rail cleanup: keep this section compact at every width. */
.panel-section-compact {
  padding: 22px 0 18px !important;
}
.panel-section-compact .panel-section-head {
  margin-bottom: 12px !important;
  padding-bottom: 12px !important;
}
.panel-section-compact .panel-section-head h1,
.panel-section-compact .panel-section-head h2,
.panel-section-compact .panel-section-head-left h1,
.panel-section-compact .panel-section-head-left h2 {
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.08 !important;
  margin-top: 8px !important;
}
.panel-section-compact .panel-section-head > a {
  min-height: 44px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
}
.panel-section-compact .pill-filter-bar {
  gap: 8px !important;
  margin-bottom: 12px !important;
  padding: 2px 0 8px !important;
}
.panel-section-compact .pill-chip {
  padding: 8px 14px !important;
  min-height: 38px !important;
  font-size: 13px !important;
  border-width: 1.25px !important;
  box-shadow: none !important;
}
.panel-section-compact .pill-chip.is-active {
  box-shadow: 0 8px 18px rgba(255, 90, 31, 0.18) !important;
}
@media (max-width: 768px) {
  .panel-section-compact .trending-story-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    align-items: flex-start !important;
    margin: 0 -8px !important;
    padding: 8px 8px 10px !important;
    min-height: 0 !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: none !important;
    background: transparent !important;
  }
  .panel-section-compact .trending-story-row::-webkit-scrollbar {
    display: none !important;
  }
  .panel-section-compact .trending-story-row .dest-card,
  .panel-section-compact .side-scroll .dest-card-compact {
    flex: 0 0 78px !important;
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    height: auto !important;
    aspect-ratio: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    text-decoration: none !important;
    scroll-snap-align: start !important;
  }
  .panel-section-compact .trending-story-row .dest-card::after {
    display: none !important;
  }
  .panel-section-compact .trending-story-row .dest-card-img-wrap {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    flex: 0 0 62px !important;
    border-radius: 50% !important;
    padding: 2.5px !important;
    background: conic-gradient(#ff9f1c, #ff5a7a, #8b5cf6, #22c1dc, #ff9f1c) !important;
    box-shadow: 0 8px 18px rgba(139, 92, 246, 0.14) !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .panel-section-compact .trending-story-row .dest-card-img-wrap::before {
    content: '' !important;
    position: absolute !important;
    inset: 2px !important;
    border-radius: 50% !important;
    background: #fff !important;
    z-index: 1 !important;
  }
  .panel-section-compact .trending-story-row .dest-card-img-wrap img {
    position: absolute !important;
    inset: 4px !important;
    width: calc(100% - 8px) !important;
    height: calc(100% - 8px) !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    z-index: 2 !important;
    display: block !important;
  }
  .panel-section-compact .trending-story-row .dest-card-meta {
    position: static !important;
    inset: auto !important;
    width: 78px !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
    text-align: center !important;
  }
  .panel-section-compact .trending-story-row .dest-card-title {
    width: 78px !important;
    color: #475569 !important;
    font-family: var(--font-ui) !important;
    font-size: 11px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .panel-section-compact .trending-story-row .dest-card-price,
  .panel-section-compact .trending-story-row .dest-card-explore,
  .panel-section-compact .trending-story-row .dest-card-badge {
    display: none !important;
  }
  .panel-section-compact .trending-story-row .dest-card-scrim {
    display: none !important;
  }
  .panel-section-compact .panel-section-head > a {
    min-height: 36px !important;
    padding: 7px 12px !important;
  }
  .panel-section-compact .pill-chip {
    padding: 7px 12px !important;
    min-height: 34px !important;
    font-size: 12px !important;
  }
}

/* Homepage panel header cleanup: compact, aligned cards with calmer CTAs. */
.home-panel {
  padding: 22px !important;
  border-radius: 22px !important;
  border-color: #e3e9f2 !important;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
  overflow: hidden !important;
}
.home-panel .panel-section-head {
  align-items: center !important;
  gap: 14px !important;
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
  min-height: 0 !important;
  border-bottom-color: #edf1f6 !important;
}
.home-panel .panel-section-head h1,
.home-panel .panel-section-head h2,
.home-panel .panel-section-head-left h1,
.home-panel .panel-section-head-left h2 {
  font-size: clamp(22px, 2.4vw, 32px) !important;
  line-height: 1.08 !important;
  margin: 0 !important;
  letter-spacing: -0.025em !important;
}
.home-panel .panel-section-head > h1,
.home-panel .panel-section-head > h2 {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
.home-panel .panel-section-head-left {
  min-width: 0 !important;
}
.home-panel .panel-section-head-left span {
  margin-bottom: 8px !important;
}
.home-panel .panel-section-head > a {
  min-height: 38px !important;
  padding: 8px 15px !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  border-color: #dbe3ee !important;
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}
.home-panel .panel-section-head > a:hover {
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
  transform: translateY(-1px);
}
.home-panel .side-scroll.card-row,
.home-panel .side-scroll {
  padding: 2px 16px 6px !important;
  margin: 0 -8px !important;
}
.home-panel .side-scroll.card-row > .trip-card.reveal,
.home-panel .side-scroll.card-row > .tour-card.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition-property: box-shadow, border-color, transform !important;
}
.home-panel .side-scroll.card-row > .trip-card,
.home-panel .side-scroll.card-row > .tour-card,
.home-panel .side-scroll.card-row > .view-more-card {
  scroll-snap-align: start;
}

.tour-steps-scroll {
  gap: 18px !important;
  padding: 2px 4px 8px !important;
  margin: 0 !important;
  align-items: stretch !important;
  scroll-snap-type: x mandatory;
}
.tour-steps-scroll .tour-step-card {
  flex: 1 0 280px !important;
  min-width: 280px !important;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .home-panel {
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }
  .home-panel .panel-section-head {
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
  }
  .home-panel .panel-section-head h1,
  .home-panel .panel-section-head h2,
  .home-panel .panel-section-head-left h1,
  .home-panel .panel-section-head-left h2 {
    font-size: 19px !important;
    line-height: 1.15 !important;
  }
  .home-panel .panel-section-head > a {
    min-height: 34px !important;
    padding: 7px 11px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }
  .home-panel .side-scroll.card-row,
  .home-panel .side-scroll {
    padding: 0 14px 4px !important;
    margin: 0 -10px !important;
  }
  .tour-steps-scroll {
    margin: 0 -14px !important;
    padding: 0 14px 8px !important;
    gap: 14px !important;
  }
  .tour-steps-scroll .tour-step-card {
    flex: 0 0 268px !important;
    min-width: 268px !important;
    padding: 22px 20px !important;
  }
}

@media (max-width: 420px) {
  .home-panel .panel-section-head h1,
  .home-panel .panel-section-head h2,
  .home-panel .panel-section-head-left h1,
  .home-panel .panel-section-head-left h2 {
    font-size: 18px !important;
  }
  .home-panel .panel-section-head > a {
    padding-inline: 10px !important;
    font-size: 10.5px !important;
  }
}

/* Homepage hero polish: one continuous surface, no mismatched top/bottom bands. */
.hero.full-hero {
  min-height: 0;
  align-items: stretch;
  background: var(--hero-mesh);
  overflow: hidden;
}
.hero.full-hero .hero-card {
  width: 100%;
  min-height: clamp(520px, 62vw, 680px);
  display: flex;
  align-items: center;
  background: transparent;
  animation: none;
  padding: clamp(46px, 6vw, 78px) 0 clamp(44px, 6vw, 72px);
}
.hero.full-hero .hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 54%, rgba(255, 90, 31, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(0, 200, 150, 0.10), transparent 28%);
}
.hero.full-hero .hero-card::after {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 90, 31, 0.08) 0%, transparent 58%);
}
.hero.full-hero .hero-grid {
  gap: clamp(44px, 5vw, 68px);
}
.hero.full-hero .hero-eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 16px 42px rgba(255, 90, 31, 0.24);
}
.hero.full-hero .hero-title {
  max-width: 780px;
}
.hero.full-hero .hero-sub {
  max-width: 700px;
  color: rgba(255,255,255,0.78);
}
.hero.full-hero .hero-ctas {
  margin-top: 26px;
}
.hero.full-hero .hero-ctas .btn {
  min-height: 56px;
  padding-inline: 34px;
}
.hero.full-hero .hero-trust {
  margin-top: 28px;
  max-width: 700px;
}
.hero.full-hero .hero-trust-tile {
  min-height: 90px;
  display: grid;
  align-content: center;
  text-align: center;
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
@media (max-width: 1024px) {
  .hero.full-hero {
    padding: 0;
  }
  .hero.full-hero .hero-card {
    min-height: 0;
    padding: 42px 0 46px;
  }
  .hero.full-hero .hero-grid > div:first-child {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .hero.full-hero .hero-title,
  .hero.full-hero .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero.full-hero .hero-ctas {
    justify-content: center;
  }
  .hero.full-hero .hero-ctas .btn {
    flex: 0 1 260px;
  }
  .hero.full-hero .hero-trust {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .hero.full-hero .hero-card {
    padding: 32px 0 36px;
  }
  .hero.full-hero .hero-title {
    font-size: clamp(34px, 10vw, 48px);
  }
  .hero.full-hero .hero-sub {
    font-size: 15px;
    margin-top: 14px;
  }
  .hero.full-hero .hero-ctas {
    margin-top: 20px;
  }
  .hero.full-hero .hero-ctas .btn {
    flex: 1 1 100%;
    min-height: 52px;
  }
  .hero.full-hero .hero-trust {
    gap: 8px;
    margin-top: 18px;
  }
  .hero.full-hero .hero-trust-tile {
    min-height: 74px;
    padding: 10px 6px;
  }
}

/* Sitewide density pass: reduce visual dead space without collapsing content. */
section {
  padding-top: clamp(18px, 3vw, 36px) !important;
  padding-bottom: clamp(18px, 3vw, 36px) !important;
}

.container {
  padding-left: clamp(14px, 2.4vw, 24px);
  padding-right: clamp(14px, 2.4vw, 24px);
}

.panel-section,
.home-panel,
.filter-card,
.empty-state,
.trip-recommendations,
.partner-strip,
.trip-readiness {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.panel-section,
.home-panel,
.filter-card,
.trip-readiness {
  padding: 18px 20px !important;
}

.panel-section-head,
.home-panel .panel-section-head {
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
  gap: 12px !important;
}

.card-row,
.side-scroll,
.trip-grid,
.related-blog-grid,
.hotel-grid-wrapper,
.popular-acts-grid {
  gap: 16px !important;
}

.site-footer {
  margin-top: 24px !important;
  padding-top: 34px !important;
  padding-bottom: 18px !important;
}

[style*="padding: 80px 20px"],
[style*="padding:80px 20px"],
[style*="padding: 100px 40px"],
[style*="padding:100px 40px"],
[style*="padding: 100px 20px"],
[style*="padding:100px 20px"] {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

[style*="margin-top: 64px"],
[style*="margin-top:64px"],
[style*="margin-top: 72px"],
[style*="margin-top:72px"],
[style*="margin-top: 80px"],
[style*="margin-top:80px"] {
  margin-top: 32px !important;
}

[style*="margin-bottom: 64px"],
[style*="margin-bottom:64px"],
[style*="margin-bottom: 80px"],
[style*="margin-bottom:80px"],
[style*="margin-bottom: 120px"],
[style*="margin-bottom:120px"] {
  margin-bottom: 32px !important;
}

@media (max-width: 768px) {
  section {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .panel-section,
  .home-panel,
  .filter-card,
  .trip-readiness {
    padding: 14px !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .panel-section-head,
  .home-panel .panel-section-head {
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }

  .site-footer {
    margin-top: 16px !important;
    padding-top: 26px !important;
  }
}

.its-emoji-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: currentColor;
  vertical-align: -0.15em;
  line-height: 1;
  margin: 0 0.06em;
}

.its-emoji-svg-icon {
  width: 1em;
  height: 1em;
  display: block;
  stroke-width: 2.65;
}

:where(button, .btn, .search-submit, .pill-chip.is-active, .series-chip, .tc-badge, .tc-match, .tc-price-pill, .trip-card-tag, .bottom-nav-item, .hero, .site-footer-v2, .sale-ribbon, .badge, .chip) .its-emoji-svg {
  color: currentColor;
}

:where(.section-eyebrow, .panel-section-eyebrow) .its-emoji-svg {
  color: var(--icon-accent);
}

:where(.form-success, .form-error, .empty-state, .panel-empty) .its-emoji-svg {
  color: currentColor;
}

svg:not([fill]) {
  overflow: visible;
}

/* ============================================================
   Clean White Public Theme
   Fresh travel marketplace layer. Keep admin styles independent.
   ============================================================ */

/* ── Design token overrides ─────────────────────────────────── */
:root {
  color-scheme: light;
  --hero-gradient:    linear-gradient(135deg, #ffffff 0%, #f3fbfa 58%, #fff7ed 100%);
  --hero-mesh:        linear-gradient(135deg, #ffffff 0%, #f3fbfa 58%, #fff7ed 100%);
  --brand-deep:       #12343B;
}

html[data-theme="dark"],
[data-theme="dark"] {
  color-scheme: light;
  --bg:            #FFFFFF;
  --bg-soft:       #F7FAFC;
  --bg-alt:        #EFF6F9;
  --surface:       #FFFFFF;
  --surface-tint:  #F8FCFB;
  --glass:         rgba(255, 255, 255, 0.86);
  --glass-border:  rgba(226, 232, 240, 0.9);
  --ink:           #0F172A;
  --ink-2:         #334155;
  --muted:         #64748B;
  --muted-2:       #94A3B8;
  --line:          #E2E8F0;
  --line-2:        #EEF2F7;
  --brand:         #0EA5A4;
  --brand-2:       #0F766E;
  --brand-soft:    #E6FFFB;
  --brand-deep:    #12343B;
  --accent:        #F97316;
  --teal:          #0EA5A4;
  --section-gradient: linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
  --hero-mesh: linear-gradient(135deg, #ffffff 0%, #f3fbfa 58%, #fff7ed 100%);
}

/* ── HEADER — White & Clean ─────────────────────────────────── */
.site-header {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1.5px solid #e8ecf0 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05) !important;
}

/* Brand/logo — remove dark-bg invert filter */
.brand-logo          { filter: none !important; }
.brand               { color: var(--ink) !important; }
.brand-name          { color: var(--ink) !important; }

/* Nav links — dark on white */
.site-nav a {
  color: #374151 !important;
}
.site-nav a:hover {
  background: #f1f5f9 !important;
  color: var(--ink) !important;
}
.site-nav a.is-active {
  background: rgba(255, 90, 31, 0.08) !important;
  color: var(--brand) !important;
}
.nav-icon { stroke: #374151; }
.site-nav a:hover .nav-icon,
.site-nav a.is-active .nav-icon { stroke: var(--brand); }

/* Nav dropdown trigger — dark text */
.nav-dropdown-trigger {
  color: #374151 !important;
}
.nav-dropdown-trigger:hover {
  background: #f1f5f9 !important;
  color: var(--ink) !important;
}

/* User pill — refined light style */
.nav-user-pill {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  color: var(--ink) !important;
}
.nav-user-pill:hover {
  background: #f1f5f9 !important;
  border-color: #d1d5db !important;
}
.nav-user-pill span { color: var(--ink-2) !important; }

/* Nav toggle hamburger — dark lines */
.nav-toggle { border-color: #e2e8f0 !important; }
.nav-toggle span { background: var(--ink) !important; }

/* ── HERO — Light & Colorful ────────────────────────────────── */
.hero {
  background: #ffffff !important;
}
.hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3fbfa 58%, #fff7ed 100%) !important;
  animation: none !important;
  position: relative;
  overflow: hidden;
  border: 1px solid #E5EEF2 !important;
  box-shadow: 0 24px 70px rgba(18, 52, 59, 0.08) !important;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,165,164,0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(14,165,164,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .55;
  pointer-events: none;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,164,.28), transparent);
  pointer-events: none;
}

/* Hero text — dark on light */
.hero-title {
  color: var(--ink) !important;
}
.hero-title em {
  background: linear-gradient(90deg, #0EA5A4 0%, #F97316 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.hero-sub {
  color: var(--muted) !important;
}

/* Hero eyebrow badge */
.hero-eyebrow {
  background: rgba(14, 165, 164, 0.08) !important;
  border-color: rgba(14, 165, 164, 0.22) !important;
  color: var(--brand) !important;
  box-shadow: none !important;
}

/* Trust counter tiles */
.hero-trust-tile {
  background: #ffffff !important;
  border: 1.5px solid #e8ecf0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
}
.hero-trust-tile:hover {
  background: var(--brand-soft) !important;
  border-color: rgba(14,165,164,0.25) !important;
  transform: translateY(-3px);
}
.hero-trust-tile strong {
  color: var(--ink) !important;
}
.hero-trust-tile span {
  color: var(--muted) !important;
}

/* Hero aside card (right panel) */
.hero-aside {
  background: #ffffff !important;
  border: 1.5px solid #e8ecf0 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07) !important;
}
.hero-aside-label {
  color: var(--muted) !important;
}

/* Hero outline CTA button — dark on light */
.hero-ctas .btn-outline {
  background: #ffffff !important;
  border: 2px solid #d1d5db !important;
  color: var(--ink) !important;
}
.hero-ctas .btn-outline:hover {
  background: #f8fafc !important;
  border-color: var(--ink) !important;
  color: var(--ink) !important;
}

/* Social proof text */
.social-text span { color: var(--muted) !important; }

/* ── FOOTER v2 — Light & Warm ───────────────────────────────── */
/* Removed light mode overrides for footer, we want the footer to always be dark and premium */

/* Old footer fallback */
.site-footer {
  background: #f1f5f9 !important;
  color: var(--ink-2) !important;
  border-top: 1px solid #e2e8f0 !important;
}
.site-footer .brand { color: var(--ink) !important; }
.footer-logo { filter: none !important; opacity: 1 !important; }

/* ── SECTION EYEBROWS & LABELS ──────────────────────────────── */
.section-eyebrow,
.panel-section-eyebrow {
  color: var(--brand) !important;
}

/* ── PILL CHIPS & FILTER TAGS ───────────────────────────────── */
.pill-chip {
  background: #f1f5f9;
  color: var(--ink-2);
  border: 1.5px solid #e2e8f0;
}
.pill-chip:hover,
.pill-chip.is-active {
  background: var(--brand) !important;
  color: #fff !important;
  border-color: var(--brand) !important;
}

/* ── DASHBOARD / PANEL PAGES ────────────────────────────────── */
.panel-section {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: var(--radius);
}

/* ── TRIP CARDS — lift effect ───────────────────────────────── */
.trip-card {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: rgba(255,90,31,0.2);
}

/* ── DARK THEME — disable completely ────────────────────────── */
/* Force light mode — ignore system dark preference */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="dark"]) {
    color-scheme: light;
    --bg:            #f8fafc;
    --bg-soft:       #f1f5f9;
    --surface:       #ffffff;
    --ink:    #0D1117;
    --ink-2:  #374151;
    --muted:  #52606D;
    --line:   #E2E8F0;
  }
  :root:not([data-theme="dark"]) .site-header  { background: #ffffff !important; }
  :root:not([data-theme="dark"]) .hero          { background: #ffffff !important; }
  :root:not([data-theme="dark"]) .site-footer-v4 { background: #090e17 !important; color: #94a3b8 !important; }
}

/* ── FRESH ACCENT CLASSES ───────────────────────────────────── */
.badge-fresh {
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(255,90,31,0.2);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.surface-card {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* ── GLOBAL body background ─────────────────────────────────── */
body:not(.admin-body) {
  background: #ffffff !important;
}

/* ── Regional image heroes keep readable text without the old dark wash ─ */
.regional-hero::before {
  background: linear-gradient(90deg, rgba(15,23,42,0.42) 0%, rgba(15,23,42,0.18) 48%, transparent 100%) !important;
}

.premium-club-cta,
.cta-strip {
  background: linear-gradient(135deg, #E6FFFB 0%, #FFFFFF 55%, #FFF7ED 100%) !important;
  color: var(--ink) !important;
  border: 1px solid #D8EEF0 !important;
  box-shadow: var(--shadow-card) !important;
}
.premium-club-cta h2,
.cta-strip h2,
.cta-strip p {
  color: var(--ink) !important;
}

.trip-card-tag-match,
.variant-pill.active {
  background: var(--brand) !important;
  color: #fff !important;
}

.intelligence-ticker {
  background: #F0FDFA !important;
  color: #115E59 !important;
  border-bottom: 1px solid #CCFBF1 !important;
}

body:not(.admin-body) .home-panel,
body:not(.admin-body) .panel-section {
  border-color: #DDECEF;
  box-shadow: 0 18px 52px rgba(18, 52, 59, 0.06);
}

body:not(.admin-body) .panel-section-head h2,
body:not(.admin-body) .section-title {
  letter-spacing: -0.03em;
}

body:not(.admin-body) .tc-v2,
body:not(.admin-body) .dest-card,
body:not(.admin-body) .view-more-card {
  border: 1px solid #DDECEF;
  box-shadow: 0 14px 38px rgba(18, 52, 59, 0.07);
}

body:not(.admin-body) .tc-v2:hover,
body:not(.admin-body) .dest-card:hover,
body:not(.admin-body) .view-more-card:hover {
  border-color: rgba(14, 165, 164, 0.35);
  box-shadow: 0 22px 54px rgba(18, 52, 59, 0.12);
}

body:not(.admin-body) .tc-cta,
body:not(.admin-body) .search-submit,
body:not(.admin-body) .hero-search-btn {
  box-shadow: 0 14px 30px rgba(14, 165, 164, 0.20);
}

body:not(.admin-body) .view-more-card {
  background:
    linear-gradient(135deg, rgba(14,165,164,.08), rgba(249,115,22,.08)),
    #fff;
  color: var(--ink);
}

body:not(.admin-body) .dest-card::after {
  background:
    linear-gradient(to top, rgba(15,23,42,0.48) 0%, rgba(15,23,42,0.16) 46%, rgba(255,255,255,0.02) 100%) !important;
}

body:not(.admin-body) .dest-card-title {
  text-shadow: 0 1px 4px rgba(15,23,42,0.35) !important;
}

body:not(.admin-body) .dest-card-price {
  color: rgba(255,255,255,0.88);
}

body:not(.admin-body) .hero-aside-card {
  background: #F0FDFA !important;
  border-color: #D8EEF0 !important;
}

body:not(.admin-body) .hero-aside-itinerary-meta {
  background: linear-gradient(0deg, rgba(15,23,42,0.52) 0%, rgba(15,23,42,0.08) 100%) !important;
}

body:not(.admin-body) .hero-grid-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

body:not(.admin-body) .search-bar-section {
  margin-top: -64px;
}

body:not(.admin-body) .discovery-portal {
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 14px;
  border: 1px solid #CFE7EA;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,253,250,0.86)),
    #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(18,52,59,0.12);
  overflow: visible;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease-out);
}

body:not(.admin-body) .discovery-portal:focus-within {
  border-color: rgba(14,165,164,0.55);
  box-shadow: 0 28px 80px rgba(14,165,164,0.16), 0 0 0 4px rgba(14,165,164,0.08);
  transform: translateY(-2px);
}

body:not(.admin-body) .search-orb {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--brand);
  background: #E6FFFB;
  border: 1px solid #CCFBF1;
}

body:not(.admin-body) .discovery-portal .field {
  padding: 8px 0;
}

body:not(.admin-body) .discovery-portal label {
  color: #0F766E;
  font-size: 11px;
}

body:not(.admin-body) .discovery-portal input {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  padding: 2px 0 4px;
}

body:not(.admin-body) .discovery-portal .field-hint {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.015em;
}

body:not(.admin-body) .discovery-portal .field-subhint {
  font-size: 12px;
  color: #64748B;
  font-weight: 650;
  line-height: 1.2;
}

body:not(.admin-body) .discovery-portal .search-submit {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0;
  background: linear-gradient(135deg, #0EA5A4, #0F766E);
}

body:not(.admin-body) .discovery-portal .search-submit svg {
  transition: transform .2s ease;
}

body:not(.admin-body) .discovery-portal .search-submit:hover svg {
  transform: translateX(3px);
}

body:not(.admin-body) .search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 0 10px;
}

body:not(.admin-body) .search-suggestions button {
  border: 1px solid #DDECEF;
  background: rgba(255,255,255,0.92);
  color: #334155;
  border-radius: 999px;
  padding: 8px 13px;
  font: 800 12px var(--font-ui);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(18,52,59,0.05);
}

body:not(.admin-body) .search-suggestions button:hover {
  color: #0F766E;
  border-color: rgba(14,165,164,0.35);
  background: #F0FDFA;
}

body:not(.admin-body) .portal-dropdown {
  border-color: #CFE7EA;
  box-shadow: 0 26px 70px rgba(18,52,59,0.16);
}

body:not(.admin-body) .portal-item:hover,
body:not(.admin-body) .portal-item.active {
  background: #F0FDFA;
  transform: none;
}

@media (max-width: 768px) {
  body:not(.admin-body) .search-bar-section {
    margin-top: -70px;
  }
  body:not(.admin-body) .discovery-portal {
    gap: 8px;
    padding: 10px;
    border-radius: 24px;
  }
  body:not(.admin-body) .search-orb {
    display: none;
  }
  body:not(.admin-body) .discovery-portal .field {
    border-bottom: 0;
    padding: 0;
  }
  body:not(.admin-body) .discovery-portal input {
    font-size: 17px;
  }
  body:not(.admin-body) .discovery-portal .field-hint {
    font-size: 17px;
  }
  body:not(.admin-body) .discovery-portal .search-submit {
    width: 100%;
    min-height: 50px;
    border-radius: 17px;
    margin-top: 6px;
  }
  body:not(.admin-body) .search-suggestions {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 4px 4px;
    scrollbar-width: none;
  }
  body:not(.admin-body) .search-suggestions::-webkit-scrollbar {
    display: none;
  }
  body:not(.admin-body) .search-suggestions button {
    flex: 0 0 auto;
  }
}

body:not(.admin-body) .region-light-hero {
  border: 1px solid #D8EEF0 !important;
  box-shadow: 0 22px 60px rgba(18, 52, 59, 0.08);
}

body:not(.admin-body) .region-light-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,165,164,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(14,165,164,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 1;
  pointer-events: none;
}

body:not(.admin-body) .region-light-hero .regional-content-v2,
body:not(.admin-body) .region-light-hero .regional-content-v2 .eyebrow,
body:not(.admin-body) .region-light-hero .regional-content-v2 h2,
body:not(.admin-body) .region-light-hero .regional-content-v2 p {
  color: inherit;
  text-shadow: none !important;
}

/* End clean white public theme */

/* ================================================================
   CONVERSION-FIRST UI/UX REVAMP — v2
   All new components added here to avoid touching existing layout.
   ================================================================ */

/* ── Font upgrade: Fraunces (editorial serif) for display headings ── */
.font-display, .hero-title, .section-title, h1.display {
  font-family: var(--font-editorial);
  font-optical-sizing: auto;
}

/* ── Trust bar (below hero, full-width strip) ── */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: relative;
  z-index: 10;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  white-space: nowrap;
}
.trust-bar-item .trust-icon { font-size: 16px; }
.trust-bar-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-bar-inner { gap: 16px; }
  .trust-bar-divider { display: none; }
  .trust-bar-item { font-size: 12px; }
}

/* ── Sample Day Card (free preview section on homepage) ── */
.sample-day-section {
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 60%, #fffbeb 100%);
  border-top: 1px solid #ccfbf1;
  border-bottom: 1px solid #ccfbf1;
  padding: 56px 0;
}
.sample-day-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.sample-day-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ccfbf1;
  color: #065f46;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.sample-day-title {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 6px 0;
  line-height: 1.2;
}
.sample-day-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px 0;
}
.sample-day-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.sample-day-header {
  background: var(--brand);
  color: #fff;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sample-day-events {
  padding: 8px 0;
}
.sample-event-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line-2);
  transition: background .15s ease;
}
.sample-event-row:last-child { border-bottom: none; }
.sample-event-row:hover { background: var(--bg-soft); }
.sample-event-time {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  min-width: 52px;
  padding-top: 2px;
  font-family: var(--font-mono);
  letter-spacing: .03em;
}
.sample-event-icon { font-size: 20px; flex-shrink: 0; }
.sample-event-body { flex: 1; min-width: 0; }
.sample-event-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px 0;
  line-height: 1.3;
}
.sample-event-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
.sample-event-note em {
  font-style: normal;
  background: #fef3c7;
  color: #92400e;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.sample-day-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sample-day-footer-text {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.sample-day-footer-text strong { color: var(--ink); }

/* ── Hero question headline style override ── */
.hero-question-title {
  font-family: var(--font-editorial);
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 12px 0;
  letter-spacing: -.02em;
}
.hero-question-title em {
  font-style: normal;
  color: #ffeb3b;
}

/* ── Intent pills (browse page) ── */
.intent-pills-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.intent-pills-bar::-webkit-scrollbar { display: none; }
.intent-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s var(--ease-out);
  text-decoration: none;
  flex-shrink: 0;
}
.intent-pill:hover,
.intent-pill.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14,165,164,0.3);
}
.intent-pill-icon { font-size: 16px; line-height: 1; }

/* ── Social proof chip on trip cards ── */
.card-social-chip {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .02em;
  z-index: 2;
}
.card-social-chip .chip-fire { font-size: 13px; }

/* ── Peek button (non-committal preview CTA on card) ── */
.trip-card-peek {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.trip-card-peek:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

/* ── Peek drawer (bottom sheet on mobile, popover on desktop) ── */
.peek-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.peek-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.peek-drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 0 0 env(safe-area-inset-bottom);
  z-index: 3100;
  transform: translateY(100%);
  transition: transform .3s var(--ease-spring);
  max-height: 80vh;
  overflow-y: auto;
}
.peek-drawer.is-open {
  transform: translateY(0);
}
.peek-drawer-handle {
  width: 36px; height: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  margin: 12px auto 16px;
}
.peek-drawer-content { padding: 0 20px 24px; }
.peek-drawer-title {
  font-family: var(--font-editorial);
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 6px;
}
.peek-drawer-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.peek-day-summary {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.peek-day-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: 6px;
}
.peek-day-highlights {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

/* ── Cinematic Trip Detail Hero ── */
.trip-hero-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 !important;
  background-size: cover;
  background-position: center;
}
.trip-hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 164, 0.30) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 159, 28, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.94) 100%);
  z-index: 1;
}
.trip-hero-panel-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.trip-hero-cinematic-left {
  color: #ffffff;
}
.trip-hero-destination {
  color: var(--fresh-peach) !important;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(255, 159, 28, 0.15);
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 159, 28, 0.25);
}
.trip-hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(34px, 4.5vw, 54px) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin: 0 0 20px 0 !important;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  letter-spacing: -0.02em !important;
}
.trip-hero-curator {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.trip-hero-social-proof {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}
.trip-hero-proof-row {
  color: rgba(255,255,255,0.95);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trip-hero-proof-row span:first-child {
  font-size: 16px;
}

/* Glassmorphic Right Booking Console */
.trip-hero-info-panel {
  background: rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.20) !important;
  border-radius: 28px !important;
  padding: 36px 30px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3) !important;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trip-hero-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trip-hero-price {
  color: #ffffff !important;
  font-family: var(--font-mono) !important;
  font-size: 38px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em;
}
.trip-hero-price-note {
  color: rgba(255,255,255,0.7) !important;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.trip-hero-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  text-decoration: none;
}
.trip-hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14,165,164,0.55) !important;
}
.trip-hero-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  background: transparent;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.trip-hero-cta-secondary:hover {
  border-color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
}
.trip-hero-micro-trust {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.trip-hero-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .trip-hero-panel {
    padding: 60px 0 !important;
  }
  .trip-hero-panel-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trip-hero-info-panel {
    padding: 28px 22px !important;
  }
  .trip-hero-price { font-size: 32px !important; }
}

/* ── Shimmer lock state (replaces blur on locked days) ── */
.day-locked-shimmer {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 12px;
}
.day-locked-header {
  background: #f1f5f9;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.day-locked-header-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.day-locked-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shimmer-line {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, #f0f2f5 25%, #e4e8ed 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}
.shimmer-line.w-full { width: 100%; }
.shimmer-line.w-3-4 { width: 75%; }
.shimmer-line.w-1-2 { width: 50%; }
.shimmer-line.w-2-3 { width: 66%; }
.day-locked-teaser {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line-2);
  background: #fafafa;
}
.day-locked-teaser-text {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.day-locked-teaser-text strong { color: var(--ink); }

/* ── Sticky mobile purchase bar (trip detail) ── */
.trip-sticky-bar {
  display: none;
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px; right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px 14px;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 2200;
  animation: slideInBottom .35s var(--ease-spring) both;
}
.trip-sticky-bar.is-visible { display: flex; }
.trip-sticky-thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.trip-sticky-info { flex: 1; min-width: 0; }
.trip-sticky-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1.3;
}
.trip-sticky-price {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.trip-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s ease;
  box-shadow: 0 4px 14px rgba(14,165,164,0.35);
}
.trip-sticky-btn:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}
@media (min-width: 881px) {
  .trip-sticky-bar { display: none !important; }
}

/* ── Pre-payment confirmation modal ── */
.prepay-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.prepay-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.prepay-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform .3s var(--ease-spring);
}
.prepay-modal-overlay.is-open .prepay-modal {
  transform: translateY(0) scale(1);
}
.prepay-modal-icon { font-size: 36px; margin-bottom: 12px; display: block; text-align: center; }
.prepay-modal-title {
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  text-align: center;
  margin: 0 0 6px;
}
.prepay-modal-subtitle {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 20px;
}
.prepay-modal-trip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.prepay-modal-trip img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.prepay-modal-trip > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.prepay-modal-trip strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.prepay-modal-trip span {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}
.prepay-modal-trip-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px;
}
.prepay-modal-trip-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}
.prepay-modal-price {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.prepay-modal-price-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 16px;
}
.prepay-modal-promises {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prepay-modal-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}
.prepay-modal-promises li .prom-check {
  width: 20px; height: 20px;
  background: var(--pos-soft);
  color: var(--pos);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.prepay-modal-btn-primary {
  width: 100%;
  min-height: 52px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  transition: all .2s ease;
  box-shadow: 0 6px 20px rgba(14,165,164,0.35);
}
.prepay-modal-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(14,165,164,0.45);
  background: var(--brand-2);
}
.prepay-modal-btn-cancel {
  width: 100%;
  min-height: 42px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: color .15s ease;
}
.prepay-modal-btn-cancel:hover { color: var(--ink); }

/* ── Subscribe page — value anchor section ── */
.sub-value-anchor {
  background: linear-gradient(135deg, #f0fdfa 0%, #fff7ed 100%);
  border: 1px solid #ccfbf1;
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 32px;
  text-align: center;
}
.sub-value-anchor p {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.sub-value-anchor strong { color: var(--ink); font-weight: 800; }
.sub-value-anchor .anchor-highlight {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 800;
}

/* ── Subscribe page — guarantee banner ── */
.sub-guarantee-banner {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.sub-guarantee-icon { font-size: 32px; flex-shrink: 0; }
.sub-guarantee-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: #15803d;
  margin: 0 0 4px;
}
.sub-guarantee-text p {
  font-size: 13px;
  color: #166534;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Subscribe page — outcome feature list ── */
.sub-feats-outcome { list-style: none; padding: 0; margin: 14px 0 16px; display: flex; flex-direction: column; gap: 10px; }
.sub-feats-outcome li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.sub-feat-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.sub-feat-text { font-weight: 600; }
.sub-feat-text strong { color: var(--ink); font-weight: 800; }

/* ── Subscribe page — testimonial strip ── */
.sub-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.sub-testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.sub-testimonial-stars { color: #f59e0b; font-size: 13px; margin-bottom: 8px; letter-spacing: 1px; }
.sub-testimonial-text {
  font-size: 14px;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 12px;
}
.sub-testimonial-author {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Dashboard — recommendation row ── */
.dash-rec-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.dash-rec-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  display: block;
}
.dash-rec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.dash-rec-image { aspect-ratio: 16/9; overflow: hidden; }
.dash-rec-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dash-rec-card:hover .dash-rec-image img { transform: scale(1.05); }
.dash-rec-body { padding: 12px 14px; }
.dash-rec-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.dash-rec-price {
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
}

/* ── Save heart burst animation ── */
@keyframes heart-burst {
  0%   { transform: scale(0) rotate(-20deg); opacity: 1; }
  60%  { transform: scale(1.3) rotate(10deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 0; }
}
.heart-particle {
  position: absolute;
  pointer-events: none;
  font-size: 14px;
  animation: heart-burst .7s ease forwards;
  z-index: 100;
}

/* ── Post-payment confetti overlay ── */
.confetti-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.confetti-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}
.confetti-message {
  background: #fff;
  border-radius: 24px;
  padding: 40px 48px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.confetti-emoji { font-size: 56px; display: block; margin-bottom: 16px; }
.confetti-title {
  font-family: var(--font-editorial);
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 8px;
}
.confetti-sub { font-size: 16px; color: var(--muted); margin: 0; font-weight: 600; }

/* ── Unlocked celebration: mascot pop + halo ── */
.unlock-mascot-stage {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.unlock-mascot {
  position: relative;
  z-index: 2;
  animation: unlockMascotPop .7s cubic-bezier(.34,1.56,.64,1) both, unlockMascotBob 2.2s ease-in-out .7s infinite;
}
.unlock-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,164,.22), rgba(245,158,11,.12) 60%, transparent 72%);
  z-index: 1;
  animation: unlockRing 1.6s ease-out infinite;
}
.unlock-burst {
  position: absolute;
  top: -6px; right: 8px;
  font-size: 34px;
  z-index: 3;
  animation: unlockBurst 1s ease-out both;
}
@keyframes unlockMascotPop {
  0% { opacity: 0; transform: scale(.4) rotate(-12deg); }
  60% { opacity: 1; transform: scale(1.12) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes unlockMascotBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes unlockRing {
  0% { transform: scale(.7); opacity: .85; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes unlockBurst {
  0% { opacity: 0; transform: scale(.3) translateY(6px); }
  50% { opacity: 1; transform: scale(1.2) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .unlock-mascot, .unlock-ring, .unlock-burst { animation: none; }
}

/* ── Skeleton card loading state ── */
.skeleton-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.skeleton-media {
  aspect-ratio: 16/10;
  background: linear-gradient(90deg, #f0f2f5 25%, #e4e8ed 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }

/* ── Toast enhancement ── */
.toast {
  position: fixed;
  bottom: max(90px, calc(env(safe-area-inset-bottom) + 80px));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 5000;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
  max-width: calc(100vw - 40px);
}
.toast.is-shown, .toast.ok {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.ok { background: var(--pos); }

/* ── Rotating trip card in hero ── */
.hero-rotating-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  position: relative;
  transition: opacity .4s ease, transform .4s ease;
}
.hero-rotating-card.fade-out {
  opacity: 0;
  transform: scale(0.96);
}
.hero-rotating-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.hero-rotating-card-body {
  padding: 16px 18px;
}
.hero-rotating-card-dest {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0 0 4px;
}
.hero-rotating-card-title {
  font-family: var(--font-editorial);
  font-size: 17px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}
.hero-rotating-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-rotating-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 3px 8px;
  border-radius: 999px;
}
.hero-rotating-card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  font-family: var(--font-mono);
}
.hero-rotating-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.hero-rotating-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all .3s ease;
  cursor: pointer;
}
.hero-rotating-dot.is-active {
  background: #fff;
  width: 18px;
  border-radius: 3px;
}

/* ── Subscription expiry reminder badge (dashboard) ── */
.sub-expiry-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sub-expiry-warning .warn-icon { font-size: 22px; }
.sub-expiry-warning p { margin: 0; font-size: 13px; font-weight: 700; color: #92400e; }
.sub-expiry-warning a { color: var(--brand); text-decoration: underline; }

/* ── DM Mono for prices ── */
.price-mono {
  font-family: var(--font-mono);
  letter-spacing: -.01em;
}

/* ── Scroll-to-sample anchor indicator ── */
.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: color .2s ease;
}
.hero-scroll-cue:hover { color: rgba(255,255,255,0.9); }
.hero-scroll-cue svg { animation: bounce-down 2s ease-in-out infinite; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* =============================================================
   STOREFRONT PREMIUM LIGHT & DARK CONTRAST CORRECTIONS
   ============================================================= */

/* Header light-mode color & logo contrast fixes */
:root:not([data-theme="dark"]) .site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
}
:root:not([data-theme="dark"]) .brand {
  color: var(--ink) !important;
}
:root:not([data-theme="dark"]) .brand-logo {
  filter: none !important; /* show original logo colors! */
}
:root:not([data-theme="dark"]) .footer-logo {
  filter: none !important;
}
:root:not([data-theme="dark"]) .site-nav a {
  color: var(--ink-2) !important;
}
:root:not([data-theme="dark"]) .site-nav a:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: var(--brand) !important;
}
:root:not([data-theme="dark"]) .site-nav a.is-active {
  background: rgba(0, 0, 0, 0.06) !important;
  color: var(--brand) !important;
}
:root:not([data-theme="dark"]) .nav-dropdown-trigger {
  color: var(--ink-2) !important;
}
:root:not([data-theme="dark"]) .nav-dropdown-trigger:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: var(--brand) !important;
}
:root:not([data-theme="dark"]) .nav-user-pill {
  background: rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--ink) !important;
}
:root:not([data-theme="dark"]) .nav-user-pill:hover {
  background: rgba(0, 0, 0, 0.08) !important;
}

/* Hero section light-mode color & text contrast fixes */
:root:not([data-theme="dark"]) .hero-title {
  color: var(--ink) !important;
}
:root:not([data-theme="dark"]) .hero-sub {
  color: var(--ink-2) !important;
}
:root:not([data-theme="dark"]) .hero-scroll-cue {
  color: var(--muted) !important;
}
:root:not([data-theme="dark"]) .hero-scroll-cue:hover {
  color: var(--ink) !important;
}
:root:not([data-theme="dark"]) .hero-aside {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}
:root:not([data-theme="dark"]) .hero-aside-label {
  color: var(--muted) !important;
}
:root:not([data-theme="dark"]) .hero-rotating-card {
  box-shadow: 0 16px 48px rgba(0,0,0,0.06) !important;
}
:root:not([data-theme="dark"]) .hero-rotating-dots .hero-rotating-dot {
  background: rgba(0, 0, 0, 0.15) !important;
}
:root:not([data-theme="dark"]) .hero-rotating-dots .hero-rotating-dot.is-active {
  background: var(--brand) !important;
}
:root:not([data-theme="dark"]) #hero-rotating-link {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: var(--ink) !important;
}
:root:not([data-theme="dark"]) #hero-rotating-link:hover {
  background: rgba(0, 0, 0, 0.06) !important;
}

/* Sleeker and more modern Trust Bar card layout */
.trust-bar {
  background: var(--bg) !important;
  padding: 20px 0 !important;
  margin: 32px 0 0 !important;
  border: none !important;
}
.trust-bar-inner {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 16px 32px !important;
  border-radius: 99px;
  box-shadow: var(--shadow-1) !important;
  max-width: 1100px !important;
}
@media (max-width: 768px) {
  .trust-bar-inner {
    border-radius: 20px !important;
    padding: 16px 20px !important;
  }
}

/* Custom storefront typography & trust bar SVG icon styling */
.travel-text-gradient {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.trust-svg-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  vertical-align: middle;
}

/* Premium GenZ USP Card styles */
.genz-usp-card {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 28px 24px !important;
  text-align: center;
  box-shadow: var(--shadow-1) !important;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.4s ease !important;
  position: relative;
  overflow: hidden;
}
.genz-usp-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-2) !important;
  border-color: var(--brand-glow) !important;
}
.genz-usp-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.genz-usp-card:hover::after {
  opacity: 1;
}

[data-theme="dark"] .genz-usp-card {
  background: #0f172a !important;
  border-color: #1e293b !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}
[data-theme="dark"] .genz-usp-card:hover {
  border-color: var(--brand) !important;
  box-shadow: 0 12px 36px rgba(14,165,164,0.15) !important;
}

/* ============================================================
   HERO FLUSH FIX — Remove gap between sticky navbar & hero
   ============================================================ */
/* 1. Zero out any browser / section default spacing on hero */
section.hero,
section.hero.full-hero,
.hero,
.hero.full-hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* 2. On desktop the header is sticky (in flow), hero starts right beneath it */
@media (min-width: 881px) {
  body {
    padding-top: 0 !important; /* desktop: header is sticky, not fixed */
  }

  .site-header {
    /* Ensure no bottom margin creates a gap */
    margin-bottom: 0 !important;
  }

  section.hero,
  .hero {
    /* Double-check: no top offset on desktop */
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* 3. Mobile: header is fixed + body has padding-top = header height (correct).
      The hero section itself must still have zero top-padding so it sits
      immediately at the top of the scrollable content area. */
@media (max-width: 880px) {
  section.hero,
  .hero {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/* =============================================================
   NEXT-GEN PREMIUM TRAVEL WORKSPACE & CURATOR PROFILES
   ============================================================= */

/* ── Curator Profile Page ───────────────────────────────────── */
.curator-profile-hero {
  background: 
    radial-gradient(circle at 80% 20%, rgba(14, 165, 164, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 159, 28, 0.10) 0%, transparent 40%),
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  border-bottom: 1px solid var(--line) !important;
  padding: 100px 0 80px !important;
  position: relative;
  overflow: hidden;
}
.curator-profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,165,164,0.02) 1px, transparent 1px), linear-gradient(180deg, rgba(14,165,164,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.curator-profile-hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.curator-profile-avatar-wrap {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 24px 50px rgba(18, 52, 59, 0.18);
  border: 4px solid #ffffff;
  background: linear-gradient(135deg, var(--fresh-teal), var(--fresh-peach)) !important;
}
.curator-profile-info {
  flex: 1;
  min-width: 300px;
}
.curator-profile-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--brand-deep);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.curator-profile-badge-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.curator-profile-badge {
  background: #ffffff !important;
  border: 1px solid #d8eef0 !important;
  color: var(--brand) !important;
  padding: 6px 16px !important;
  border-radius: 99px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-1) !important;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.curator-profile-badge:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
}
.curator-profile-stats-panel {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 32px;
  border-radius: 24px;
  border: 1.5px solid #ffffff;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(18, 52, 59, 0.04);
}
.curator-profile-stat-box span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-bottom: 4px;
}
.curator-profile-stat-box strong {
  display: block;
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.curator-profile-details-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.curator-profile-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 52px rgba(18, 52, 59, 0.05);
  transition: transform 0.3s ease;
}
.curator-profile-card:hover {
  transform: translateY(-2px);
}
.curator-profile-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-deep);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.curator-profile-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  transition: transform 0.25s var(--ease-out), border-color 0.2s ease, box-shadow 0.25s ease;
}
.curator-profile-social-link:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--brand);
  box-shadow: var(--shadow-2);
}
.curator-profile-social-icon {
  background: var(--brand-soft);
  color: var(--brand);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Traveler Workspace Page ────────────────────────────────── */
.workspace-hero {
  background: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 164, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 159, 28, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%) !important;
  color: #ffffff;
  padding: 100px 0 140px 0 !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.workspace-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: #ffffff;
  clip-path: ellipse(60% 100% at 50% 100%);
  pointer-events: none;
}
.workspace-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 48px);
  font-weight: 900;
  margin: 0 0 10px 0;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.workspace-hero p {
  margin: 0;
  opacity: 0.88;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.workspace-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
.workspace-sidebar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(18, 52, 59, 0.08);
}
.workspace-main {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid #ffffff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(18, 52, 59, 0.08);
}
.workspace-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 auto 18px auto;
  box-shadow: 0 10px 28px rgba(14, 165, 164, 0.25);
  border: 3px solid #ffffff;
}
.workspace-username {
  text-align: center;
  margin: 0 0 4px 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.workspace-useremail {
  text-align: center;
  margin: 0 0 24px 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.workspace-stat-tile {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform 0.2s ease;
}
.workspace-stat-tile:hover {
  transform: translateY(-2px);
}
.workspace-stat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-deep);
  margin-bottom: 2px;
}
.workspace-stat-tile span {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.workspace-tab-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: none;
  background: none;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  outline: none;
}
.workspace-tab-btn svg {
  flex-shrink: 0;
  stroke: var(--muted);
  transition: stroke 0.2s ease;
}
.workspace-tab-btn:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.workspace-tab-btn:hover svg {
  stroke: var(--ink);
}
.workspace-tab-btn.active {
  background: var(--brand-soft);
  color: var(--brand) !important;
}
.workspace-tab-btn.active svg {
  stroke: var(--brand);
}

/* Stay & Booked Cards */
.workspace-booking-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}
.workspace-booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(14, 165, 164, 0.25);
}
.workspace-booking-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  min-height: 180px;
}
.workspace-status-badge {
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
}
.workspace-status-badge.confirmed {
  background: #dcfce7;
  color: #15803d;
}
.workspace-status-badge.pending {
  background: #fef3c7;
  color: #b45309;
}
.workspace-status-badge.cancelled {
  background: #fee2e2;
  color: #b91c1c;
}
.phone-code-select {
  border: 1.5px solid var(--line);
  border-radius: 12px 0 0 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  background: var(--bg-soft);
  max-width: 90px;
  outline: none;
  cursor: pointer;
}
.phone-local-input {
  border: 1.5px solid var(--line);
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  outline: none;
}
.phone-local-input:focus {
  border-color: var(--brand);
}

@media (max-width: 880px) {
  .curator-profile-details-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .workspace-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* =============================================================
   FRESH, COLORFUL & IMAGE-RICH TRAVEL THEME ACCENTS
   ============================================================= */
:root {
  --fresh-peach: #ff9f1c;
  --fresh-peach-soft: rgba(255, 159, 28, 0.1);
  --fresh-teal: #0ea5a4;
  --fresh-teal-soft: rgba(14, 165, 164, 0.1);
  --fresh-coral: #ff6b6b;
  --fresh-lavender: #a29bfe;
  --fresh-gradient: linear-gradient(135deg, var(--fresh-teal) 0%, var(--fresh-peach) 100%);
  --shadow-premium: 0 20px 48px rgba(18, 52, 59, 0.06);
}

/* 1. Full-Width Amalfi Hero Section */
.fresh-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 180px 0 !important;
  color: #ffffff;
  overflow: hidden;
  border-bottom: none;
}
.fresh-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(14, 165, 164, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 159, 28, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.60) 0%, rgba(15, 23, 42, 0.90) 100%);
  z-index: 1;
}
.fresh-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.fresh-hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(38px, 6vw, 64px) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin: 0 auto 24px auto !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 4px 20px rgba(18, 52, 59, 0.35);
  max-width: 800px;
}

/* 2. Floating Translucent Search Bar */
.fresh-search-widget {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1.5px solid #ffffff !important;
  border-radius: 24px !important;
  padding: 12px 16px !important;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto !important;
  box-shadow: 0 24px 64px rgba(18, 52, 59, 0.15) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
}
.fresh-search-widget:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 32px 80px rgba(18, 52, 59, 0.22) !important;
}
.fresh-search-input-group {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
}
.fresh-search-input-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1.5px solid #e8ecf0;
  padding: 4px 16px;
  position: relative;
}
.fresh-search-input-item:last-child {
  border-right: none;
}
.fresh-search-input-item label {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  display: block;
}
.fresh-search-input-item input,
.fresh-search-input-item select {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.fresh-search-btn {
  background: var(--fresh-gradient) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease !important;
  box-shadow: 0 10px 24px rgba(14, 165, 164, 0.25) !important;
}
.fresh-search-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(14, 165, 164, 0.35) !important;
}

/* 3. Bento Featured Trip Cards */
.fresh-trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.fresh-trip-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.fresh-trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(18, 52, 59, 0.12);
}
.fresh-trip-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.fresh-trip-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.fresh-trip-card:hover .fresh-trip-image-wrap img {
  transform: scale(1.08);
}
.fresh-trip-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 52, 59, 0.4) 0%, transparent 60%);
}
.fresh-trip-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--fresh-gradient);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 12px rgba(14, 165, 164, 0.2);
}
.fresh-trip-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fresh-trip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.fresh-trip-dest {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.fresh-trip-status {
  background: var(--fresh-teal-soft);
  color: var(--fresh-teal);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fresh-trip-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

/* 4. S-Curve Dynamic Day Timeline Track */
.fresh-timeline-track {
  margin: 16px 0;
  position: relative;
  padding-left: 28px;
  border-left: 2px dashed #d8eef0;
}
.fresh-timeline-item {
  position: relative;
  margin-bottom: 14px;
}
.fresh-timeline-item:last-child {
  margin-bottom: 0;
}
.fresh-timeline-bullet {
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--fresh-teal);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.15);
  transition: transform 0.2s ease;
}
.fresh-timeline-item:hover .fresh-timeline-bullet {
  transform: scale(1.2);
  border-color: var(--fresh-peach);
  box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.15);
}
.fresh-timeline-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.fresh-timeline-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.fresh-timeline-time {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

/* 5. Mini Map Route Preview Box */
.fresh-map-preview {
  margin: 16px 0 0 0;
  border-radius: 16px;
  overflow: hidden;
  height: 100px;
  border: 1px solid #e8ecf0;
  position: relative;
  background-size: cover;
  background-position: center;
}
.fresh-map-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 52, 59, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fresh-map-preview-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  color: var(--brand-deep);
  border: 1px solid #e8ecf0;
}
.fresh-trip-footer {
  margin-top: auto;
  border-top: 1px solid #e8ecf0;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fresh-trip-price {
  display: flex;
  flex-direction: column;
}
.fresh-trip-price span {
  font-size: 9px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fresh-trip-price strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--brand-deep);
  font-family: var(--font-display);
}

/* Premium Homepage Hero Redesign additions */
.hero-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-glow-sphere.glow-1 {
  top: 5%;
  left: 15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--fresh-teal) 0%, transparent 70%);
  animation: floatSlow 12s infinite alternate ease-in-out;
}
.hero-glow-sphere.glow-2 {
  bottom: 10%;
  right: 15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--fresh-peach) 0%, transparent 70%);
  animation: floatSlow 16s infinite alternate-reverse ease-in-out;
}

@keyframes floatSlow {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.08); }
  100% { transform: translateY(25px) scale(0.92); }
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 8px 16px !important;
  border-radius: 99px !important;
  margin-bottom: 24px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}
.trust-avatars {
  display: flex;
  align-items: center;
}
.trust-avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2.2px solid #0f172a;
  margin-left: -8px;
}
.trust-avatars img:first-child {
  margin-left: 0;
}
.trust-rating-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}
.trust-rating-text .stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 1px;
}

.hero-quick-pills {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.quick-pill-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-right: 4px;
}
.hero-quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 99px !important;
  padding: 6px 14px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.22s var(--ease-out) !important;
}
.hero-quick-pill:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}
.hero-quick-pill .pill-emoji {
  font-size: 14px;
}

.fresh-search-icon-label-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.fresh-search-icon-label-wrap label {
  margin-bottom: 0 !important;
}
.fresh-search-icon-label-wrap .input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fresh-teal);
}
.fresh-search-icon-label-wrap .input-icon svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 600px) {
  .fresh-search-widget {
    flex-direction: column;
    align-items: stretch;
    padding: 16px !important;
  }
  .fresh-search-input-item {
    border-right: none;
    border-bottom: 1.5px solid #e8ecf0;
    padding: 8px 0;
  }
  .fresh-search-input-item:last-child {
    border-bottom: none;
    margin-bottom: 12px;
  }
}



/* ==========================================================================
   PREMIUM HOMEPAGE REDESIGN
   ========================================================================== */

/* Immersive Hero */
.premium-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.premium-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    overflow: hidden;
}
.premium-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: panHero 30s linear infinite alternate;
    transform: scale(1.1);
}
@keyframes panHero {
    0% { transform: scale(1.1) translate(0, 0); }
    100% { transform: scale(1.2) translate(-2%, -2%); }
}
.premium-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.4) 0%, rgba(15,23,42,0.1) 30%, rgba(15,23,42,0.95) 100%);
    z-index: -1;
}
.premium-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
}

/* Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 24px 8px 8px;
    border-radius: 99px;
}
.trust-avatars {
    display: flex;
}
.trust-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    margin-left: -12px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.2;
}
.trust-rating-text .stars { color: #fbbf24; letter-spacing: 2px; }

/* Hero Text */
.hero-title-main {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}
.hero-title-main span {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--brand);
}
.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Glass Search */
.glass-search-wrapper {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 99px;
    padding: 8px;
    max-width: 800px;
    margin: 0 auto 32px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.glass-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 99px;
    padding: 6px;
}
.glass-search-input, .glass-search-select {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    flex: 1;
    color: var(--ink);
}
.glass-search-input i, .glass-search-select i {
    color: var(--muted);
    width: 20px; height: 20px;
}
.glass-search-input input, .glass-search-select select {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    color: var(--ink);
    outline: none;
}
.glass-search-input input::placeholder { color: #94a3b8; font-weight: 500; }
.glass-search-divider {
    width: 1px;
    height: 32px;
    background: #e2e8f0;
}
.glass-search-btn {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.glass-search-btn:hover {
    background: var(--brand-deep, #c2410c);
    transform: scale(1.02);
}

/* Quick Links */
.hero-quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
}
.hero-quick-links a {
    color: #fff;
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 99px;
    transition: background 0.2s;
}
.hero-quick-links a:hover {
    background: rgba(255,255,255,0.1);
}

/* AI Trust Strip */
.ai-trust-strip {
    background: #f8fafc;
    color: #334155;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}
.ai-trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.ai-icon {
    color: var(--accent);
    width: 24px; height: 24px;
}
.ai-text strong {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0f172a;
    margin-right: 8px;
}
.ai-text span {
    font-size: 14px;
    color: #64748b;
}

/* Sections */
.section-bento, .section-tours, .section-trust, .section-app-preview {
    padding: 80px 0;
    background: #fff;
}
.section-header {
    margin-bottom: 48px;
}
.section-header.center {
    text-align: center;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--ink);
}
.section-header p {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
    grid-auto-flow: dense;
}
.bento-item {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; grid-row: span 1; }
.bento-wide { grid-column: span 2; grid-row: span 1; }
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }
.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.bento-item:hover .bento-bg {
    transform: scale(1.05);
}
.bento-overlay {
    position: absolute;
    inset: 0;
    /* Only apply dark gradient at the very bottom so the beautiful photo colors shine through */
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}
.bento-content {
    position: relative;
    z-index: 3;
}
.bento-country {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    display: block;
}
.bento-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    margin: 0 0 12px;
    line-height: 1.1;
}
.bento-large .bento-title { font-size: 48px; }
.bento-small .bento-title { font-size: 24px; }
.bento-price {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    padding: 8px 16px;
    border-radius: 99px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.bento-item:hover .bento-price {
    transform: scale(1.05);
}
.bento-hidden-meta {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bento-item:hover .bento-hidden-meta {
    opacity: 1;
    max-height: 40px;
}
.bento-hidden-meta i {
    width: 16px;
    height: 16px;
}

/* Trust Section (GenZ USP) */
.section-trust { background: #f8fafc; }
.trust-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-bento-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.trust-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}
.trust-bento-card.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.25);
    color: #fff;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.trust-bento-card.highlight::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}
.trust-bento-card.highlight h2 {
    font-family: var(--font-display);
    font-size: 40px;
    margin: 0 0 16px;
    color: #fff;
}
.trust-bento-card.highlight p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 400px;
    position: relative;
    z-index: 2;
}
.trust-bento-card.highlight h2 {
    font-family: var(--font-display);
    font-size: 44px;
    margin: 0 0 16px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.trust-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-bento-card:hover .trust-icon {
    transform: scale(1.15) rotate(5deg);
}
.trust-icon i { width: 32px; height: 32px; }
.trust-bento-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px;
}
.trust-bento-card p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* App Preview Section */
.section-app-preview { overflow: hidden; padding-bottom: 120px; }
.app-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.app-preview-text h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.app-preview-text p {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 32px;
}
.app-preview-trip-meta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 16px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
}
.app-preview-trip-meta strong { font-size: 18px; color: var(--ink); }
.app-preview-trip-meta span { font-size: 14px; color: var(--muted); margin-top: 4px; }
.app-preview-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.app-screen {
    width: 320px;
    height: 650px;
    background: #fff;
    border-radius: 44px;
    /* Simulate titanium edge with inset and drop shadows */
    box-shadow: 
        inset 0 0 0 8px #0f172a,
        inset 0 0 0 10px #334155,
        0 24px 80px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
/* Simulate iPhone buttons */
.app-screen::before {
    content: '';
    position: absolute;
    left: -2px; top: 120px;
    width: 4px; height: 30px;
    background: #334155;
    border-radius: 4px 0 0 4px;
    z-index: 10;
}
.app-screen::after {
    content: '';
    position: absolute;
    left: -2px; top: 170px;
    width: 4px; height: 50px;
    background: #334155;
    border-radius: 4px 0 0 4px;
    z-index: 10;
    box-shadow: 0 60px 0 #334155; /* volume down */
}
.app-screen-header {
    background: #f8fafc;
    padding: 48px 24px 24px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}
.notch {
    /* Dynamic Island */
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 30px;
    background: #0f172a;
    border-radius: 20px;
    z-index: 20;
}
.app-screen-title {
    font-size: 18px;
    font-weight: 800;
}
.app-screen-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #fff;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Auto-scroll effect */
    animation: appScroll 15s linear infinite alternate;
}
.app-screen-body::-webkit-scrollbar { display: none; }
@keyframes appScroll {
    0%, 10% { transform: translateY(0); }
    90%, 100% { transform: translateY(calc(-100% + 500px)); }
}
.app-event {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}
.app-event:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 63px; top: 32px; bottom: -24px;
    width: 2px;
    background: #e2e8f0;
}
.app-event-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    width: 50px;
    text-align: right;
    padding-top: 6px;
}
.app-event-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--brand);
    margin-top: 8px;
    position: relative;
    z-index: 2;
    border: 2px solid #fff;
}
.app-event-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 12px;
    flex: 1;
    display: flex;
    gap: 12px;
}
.app-event-icon {
    font-size: 20px;
    background: #fff;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.app-event-details h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}
.app-event-details p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .glass-search-form { flex-direction: column; background: transparent; padding: 0; }
    .glass-search-input, .glass-search-select {
        background: #fff; border-radius: 16px; margin-bottom: 8px;
    }
    .glass-search-divider { display: none; }
    .glass-search-btn { width: 100%; border-radius: 16px; padding: 16px; }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-large { grid-column: span 2; grid-row: auto; min-height: 400px; }
    .bento-medium, .bento-wide { grid-column: span 2; grid-row: auto; min-height: 300px; }
    .bento-small, .bento-tall { grid-column: span 1; grid-row: auto; min-height: 250px; }
    .trust-bento { grid-template-columns: 1fr 1fr; }
    .trust-bento-card.highlight { grid-column: span 2; }
    .app-preview-grid { grid-template-columns: 1fr; text-align: center; }
    .app-preview-trip-meta { text-align: left; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
    .hero-title-main { font-size: 40px; }
    .trust-bento { grid-template-columns: 1fr; }
    .trust-bento-card.highlight { grid-column: span 1; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-medium, .bento-small, .bento-wide, .bento-tall { grid-column: span 1; }
}

/* ==========================================================================
   DYNAMIC ANIMATIONS & INTERACTIVE FEELS
   ========================================================================== */

/* Scroll Reveals */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add stagger delays for children if needed */
.bento-grid > .bento-item:nth-child(1) { transition-delay: 0.1s; }
.bento-grid > .bento-item:nth-child(2) { transition-delay: 0.2s; }
.bento-grid > .bento-item:nth-child(3) { transition-delay: 0.3s; }
.bento-grid > .bento-item:nth-child(4) { transition-delay: 0.4s; }
.bento-grid > .bento-item:nth-child(5) { transition-delay: 0.5s; }

.trust-bento > .trust-bento-card:nth-child(1) { transition-delay: 0.1s; }
.trust-bento > .trust-bento-card:nth-child(2) { transition-delay: 0.2s; }
.trust-bento > .trust-bento-card:nth-child(3) { transition-delay: 0.3s; }
.trust-bento > .trust-bento-card:nth-child(4) { transition-delay: 0.4s; }
.trust-bento > .trust-bento-card:nth-child(5) { transition-delay: 0.5s; }

/* Breathing Particles */
@keyframes breathing-float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10px, -15px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}
.hero-glow-sphere {
    animation: breathing-float 12s infinite ease-in-out alternate;
}

/* Advanced Hovers */
.bento-item:hover {
    transform: translateY(-8px) scale(1.01) perspective(1000px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.glass-search-btn:hover {
    box-shadow: 0 0 20px rgba(14, 165, 164, 0.4);
}

/* Grab to scroll hiding scrollbar */
.tours-premium-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding-bottom: 24px;
}
.tours-premium-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Webkit */
}
.tours-premium-scroll > * {
    scroll-snap-align: start;
}
/* =============================================================
   SIDE-SCROLL ENHANCEMENTS (DESKTOP & MOBILE)
   ============================================================= */

/* Force side-scroll for itineraries on desktop & mobile */
.itineraries-side-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding-bottom: 24px;
    margin-right: -24px; /* Pull into container padding */
    margin-left: -24px;
    padding-left: 24px;
    padding-right: 24px;
}
.itineraries-side-scroll::-webkit-scrollbar { display: none; }
.itineraries-side-scroll > .fresh-trip-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

/* Mobile: Force side-scroll for Bento Grid and Vibes Grid */
@media (max-width: 768px) {
    /* Mobile itineraries tweak */
    .itineraries-side-scroll > .fresh-trip-card {
        flex: 0 0 85vw;
    }
    
    /* Make Bento Grid side scroll */
    .bento-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin-right: -24px;
        margin-left: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .bento-grid::-webkit-scrollbar { display: none; }
    .bento-grid > .bento-item {
        flex: 0 0 70vw !important;
        scroll-snap-align: center;
        min-height: 380px !important; /* Portrait, immersive layout for mobile */
        border-radius: 20px;
    }

    /* Make Vibes Grid side scroll */
    .vibes-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin-right: -24px;
        margin-left: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .vibes-grid::-webkit-scrollbar { display: none; }
    .vibes-grid > .vibe-card-v2 {
        flex: 0 0 45vw !important;
        scroll-snap-align: start;
    }
    
    /* Ensure tours premium scroll stays full width */
    .tours-premium-scroll {
        margin-right: -24px;
        margin-left: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .tours-premium-scroll > .tour-card {
        flex: 0 0 85vw !important;
    }
}

/* =============================================================
   PROMO BANNERS
   ============================================================= */
.promo-banner-card {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 240px;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.promo-banner-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.promo-banner-card .promo-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.8s ease;
}
.promo-banner-card:hover .promo-bg {
    transform: scale(1.04);
}
.promo-banner-card .promo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
}
.promo-banner-card .promo-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 0 50px;
    color: #fff;
}
.promo-banner-card h3 {
    font-size: 32px; font-weight: 800; margin: 0 0 16px 0; max-width: 500px; line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.promo-btn {
    background: #fff; color: #000; font-weight: 700; padding: 12px 28px; border-radius: 99px;
    display: inline-flex; align-items: center; gap: 8px; font-size: 15px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.promo-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.promo-banner-card:hover .promo-btn {
    transform: translateX(6px);
    background: var(--brand); color: #fff;
    box-shadow: 0 10px 20px rgba(var(--brand-rgb, 0,0,0), 0.3);
}
@media(max-width: 768px) {
    .promo-banner-card { height: 280px; }
    .promo-banner-card .promo-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.9) 100%);
    }
    .promo-banner-card .promo-content {
        padding: 30px; justify-content: flex-end;
    }
    .promo-banner-card h3 { font-size: 26px; }
}


/* --- Hero Floating Elements --- */
.floating-element {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.float-1 { top: 15%; left: 5%; animation: floatUpDown 6s ease-in-out infinite; }
.float-2 { bottom: 25%; right: 5%; animation: floatUpDown 7s ease-in-out infinite 1s; }

/* site-main */
.site-main { min-height: 60vh; }

/* Mobile header stack: keep hamburger and drawer above photo heroes. */
@media (max-width: 880px) {
  .hdr {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000 !important;
  }

  .hdr-inner,
  .hdr-actions,
  .hdr-burger {
    position: relative;
    z-index: 9002;
  }

  .hdr-overlay {
    z-index: 9100 !important;
  }

  .hdr-drawer {
    z-index: 9200 !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   UI POLISH (appended, reversible)
   1. Dark solid top header   2. Refined mobile bottom-nav   3. Hide mobile scrollbar
   ════════════════════════════════════════════════════════════════════════ */

/* ── 1. Dark solid top header ─────────────────────────────────────────── */
.hdr {
  background: #0b1220 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.28) !important;
}
.hdr--scrolled { background: #0a0f1c !important; box-shadow: 0 10px 34px rgba(0,0,0,.40) !important; }
.hdr-logo-img  { filter: brightness(0) invert(1); }           /* white wordmark on dark */
.hdr-nav       { border-right-color: rgba(255,255,255,.14) !important; }
.hdr-nav-link  { color: rgba(255,255,255,.74); }
.hdr-nav-link:hover, .hdr-nav-link:focus-visible, .hdr-nav-link.is-active { color: #fff; background: rgba(255,255,255,.10); }
.hdr-icon-btn  { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.82); }
.hdr-icon-btn:hover { background: rgba(255,255,255,.14); color: #fff; }
.hdr-burger span { background: #fff !important; }              /* burger lines white */

/* ── 2. Gen-Z mobile bottom nav — floating pill + raised center Saathi ─── */
@media (max-width: 880px) {
  /* Floating, detached, glassy dark pill */
  .mobile-bottom-nav.genz-nav {
    left: 12px !important; right: 12px !important; width: auto !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    height: 66px !important;
    padding: 0 8px !important;
    background: rgba(13,20,36,.86) !important;
    backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 999px !important;
    box-shadow: 0 18px 50px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.10) !important;
    display: flex !important; align-items: center; justify-content: space-around;
    overflow: visible !important;
  }
  /* Tab items */
  .gnav-item {
    flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; text-decoration: none; color: #8b98ad; height: 100%;
    position: relative; border-radius: 18px;
    -webkit-tap-highlight-color: transparent;
    transition: color .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
  }
  .gnav-item .gnav-ic { display: grid; place-items: center; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
  .gnav-item .gnav-ic svg { width: 23px; height: 23px; }
  .gnav-item .gnav-lbl { font-size: 10px; font-weight: 800; letter-spacing: .02em; opacity: .85; }
  .gnav-item:active { transform: scale(.9); }

  /* Active item — coloured glow + lift + pill dot */
  .gnav-item.is-active { color: #fff; }
  .gnav-item.is-active .gnav-ic { transform: translateY(-2px) scale(1.12); }
  .gnav-item.is-active .gnav-ic svg { filter: drop-shadow(0 4px 10px var(--gz-color, #6366f1)); }
  .gnav-item.is-active::before {
    content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; border-radius: 50%; z-index: -1;
    background: radial-gradient(circle, var(--gz-soft, rgba(99,102,241,.45)) 0%, transparent 70%);
  }
  .gnav-item.is-active::after {
    content: ''; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%; background: var(--gz-color, #6366f1);
  }
  /* Per-tab accent colours */
  .gnav-item[data-color="orange"] { --gz-color:#fb923c; --gz-soft:rgba(251,146,60,.4); }
  .gnav-item[data-color="blue"]   { --gz-color:#60a5fa; --gz-soft:rgba(96,165,250,.4); }
  .gnav-item[data-color="rose"]   { --gz-color:#fb7185; --gz-soft:rgba(251,113,133,.4); }
  .gnav-item[data-color="violet"] { --gz-color:#a78bfa; --gz-soft:rgba(167,139,250,.4); }
  .gnav-item[data-color="teal"]   { --gz-color:#2dd4bf; --gz-soft:rgba(45,212,191,.4); }
  .gnav-item.is-active[data-color] .gnav-lbl { color: var(--gz-color); opacity: 1; }

  /* Raised center Saathi button */
  .gnav-saathi {
    flex: 0 0 auto; position: relative; border: none; background: none; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    margin: 0 4px; padding: 0; transform: translateY(-18px);
    -webkit-tap-highlight-color: transparent;
  }
  .gnav-saathi-orb {
    width: 58px; height: 58px;
    display: grid; place-items: center;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
    animation: gnavOrbFloat 3.5s ease-in-out infinite;
  }
  .gnav-saathi-orb::after {  /* pulse ring - removed */
    display: none !important;
  }
  .gnav-saathi-lbl { font-size: 10px; font-weight: 900; color: #c7d2fe; letter-spacing: .03em; }
  .gnav-saathi:active .gnav-saathi-orb { transform: scale(.9); }
  /* Open state — flip to a clear "close" affordance */
  .gnav-saathi.is-open .gnav-saathi-orb { animation: none; }
  .gnav-saathi.is-open .gnav-saathi-orb::after { animation: none; opacity: 0; }

  @keyframes gnavOrbFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-3px);} }
  @keyframes gnavPulse { 0%{ transform: scale(1); opacity:.55;} 100%{ transform: scale(1.55); opacity:0;} }

  /* On mobile, Saathi lives in the nav → hide the floating corner FAB */
  #saathi-fab { display: none !important; }
}

/* ── 3. Hide the scrollbar in mobile view (scrolling still works) ─────── */
@media (max-width: 880px) {
  html, body { scrollbar-width: none; -ms-overflow-style: none; }
  html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; display: none; }
}
