/* ══════════════════════════════════════════════════════════════════
   WanderLux — Professional Travel Agency Theme
   Redesigned from scratch · Inspired by Thomas Cook, Kesari,
   Veena World, Thrillophilia, SOTC
   ══════════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  --navy:          #003580;
  --navy-2:        #00266a;
  --navy-3:        #001a4e;
  --orange:        #F97316;
  --orange-dk:     #e8620a;
  --orange-lt:     #fff7ed;
  --teal:          #0D9488;
  --teal-lt:       #e6f7f6;
  --gold:          #F59E0B;
  --red:           #ef4444;

  --bg:            #F6F7F9;
  --surface:       #FFFFFF;
  --border:        #E2E8F0;
  --border-2:      #CBD5E1;

  --text:          #1C2B33;
  --text-2:        #4A5568;
  --text-3:        #94A3B8;

  --header-h:      68px;
  --topbar-h:      36px;
  --radius:        10px;
  --radius-sm:     6px;
  --radius-lg:     14px;
  --shadow-card:   0 2px 12px rgba(0,0,0,.07);
  --shadow-hover:  0 8px 32px rgba(0,53,128,.13);
  --shadow-float:  0 16px 48px rgba(0,0,0,.18);
  --transition:    .22s ease;
}

/* ── 2. RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
input:focus, select:focus, textarea:focus, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ── Skip link (WCAG) ──── */
.wl-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s;
}
.wl-skip-link:focus { top: 0; }

/* ── 3. CONTAINER & LAYOUT ───────────────────────────────────────── */
.wl-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wl-section { padding-block: 64px; }
.wl-section--alt   { background: var(--surface); }
.wl-section--navy  { background: var(--navy); }
.wl-section--bg    { background: var(--bg); }

.wl-section-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.wl-section-hdr-lft { flex: 1; }
.wl-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.wl-sh-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.wl-sh-sub { font-size: 14px; color: var(--text-2); margin-top: 6px; }
.wl-view-all {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  transition: var(--transition);
  white-space: nowrap;
}
.wl-view-all:hover { background: var(--navy); color: #fff; }

/* ── 4. TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--text); }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { line-height: 1.7; color: var(--text-2); }

/* ── 5. BUTTONS ──────────────────────────────────────────────────── */
.wl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.wl-btn-primary { background: var(--orange); color: #fff; }
.wl-btn-primary:hover { background: var(--orange-dk); color: #fff; transform: translateY(-1px); }
.wl-btn-navy { background: var(--navy); color: #fff; }
.wl-btn-navy:hover { background: var(--navy-2); color: #fff; }
.wl-btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.wl-btn-outline:hover { background: var(--navy); color: #fff; }
.wl-btn-outline-white { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.wl-btn-outline-white:hover { background: rgba(255,255,255,.1); }
.wl-btn-white { background: #fff; color: var(--navy); }
.wl-btn-white:hover { background: var(--bg); }
.wl-btn-sm { padding: 8px 16px; font-size: 12px; }
.wl-btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── 6. TOPBAR ───────────────────────────────────────────────────── */
.wl-topbar {
  background: var(--navy-3);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding-inline: 24px;
}
.wl-topbar-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wl-topbar-left, .wl-topbar-right { display: flex; align-items: center; gap: 20px; }
.wl-topbar-left a, .wl-topbar-right a {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.wl-topbar-left a:hover, .wl-topbar-right a:hover { color: #fff; }
.wl-topbar-left a i, .wl-topbar-right a i { color: var(--orange); font-size: 11px; }
.wl-topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.15); }
.wl-topbar-socials { display: flex; align-items: center; gap: 10px; }

/* ── 7. SITE HEADER ──────────────────────────────────────────────── */
.wl-site-header {
  background: #fff;
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  transition: box-shadow .3s ease;
}
.wl-site-header.wl-scrolled {
  box-shadow: 0 4px 24px rgba(0,53,128,.12);
  border-bottom-color: transparent;
}
.wl-header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}
.wl-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.wl-logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1;
  margin-top: 1px;
}
.wl-main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.wl-main-nav > li > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.wl-main-nav > li > a:hover,
.wl-main-nav > li.current-menu-item > a { color: var(--navy); background: #EEF4FF; }
.wl-nav-item { position: relative; }
.wl-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 230px;
  box-shadow: 0 16px 48px rgba(0,53,128,.14), 0 2px 12px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 1000;
  padding: 8px;
  pointer-events: none;
}
.wl-nav-item:hover .wl-dropdown,
.wl-nav-item:focus-within .wl-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* Arrow pip on dropdown */
.wl-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}
.wl-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding: 9px 12px;
  border-radius: 8px;
  transition: all .15s;
  text-decoration: none;
}
.wl-dropdown a i {
  width: 18px;
  text-align: center;
  color: var(--orange);
  font-size: 13px;
  flex-shrink: 0;
}
.wl-dropdown a:hover {
  background: #EEF4FF;
  color: var(--navy);
}
.wl-dropdown a:hover i { color: var(--navy); }
.wl-dropdown a + a { margin-top: 1px; }
.wl-header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.wl-header-phone {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.wl-header-phone i { color: var(--orange); }
.wl-header-phone strong { color: var(--navy); font-size: 14px; }
.wl-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.wl-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── 8. MOBILE NAV ───────────────────────────────────────────────── */
.wl-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.wl-mobile-nav.is-open { display: block; }
.wl-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.wl-mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: #fff;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.wl-mobile-nav.is-open .wl-mobile-panel { transform: translateX(0); }
.wl-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.wl-mobile-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-2);
}
.wl-mobile-menu a {
  display: flex;
  align-items: center;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.wl-mobile-menu a:hover { color: var(--orange); }
.wl-mobile-menu .wl-btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ── 9. HERO ─────────────────────────────────────────────────────── */
.wl-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wl-hero-slides { position: absolute; inset: 0; z-index: 0; }
.wl-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.wl-hero-slide.active { opacity: 1; }
.wl-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.wl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,21,64,.78) 0%, rgba(0,42,112,.55) 60%, rgba(0,0,0,.28) 100%);
}
.wl-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 24px 64px;
  max-width: 1200px;
  margin-inline: auto;
}
.wl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.4);
  color: #FDA56B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.wl-hero-content h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
  font-family: 'Playfair Display', Georgia, serif;
}
.wl-hero-content h1 em { color: var(--orange); font-style: normal; }
.wl-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 560px;
}
.wl-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wl-hero-trust span {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.wl-hero-trust i { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   HERO SEARCH (restored from v3.8 — simple, plain form fields)
══════════════════════════════════════════════════════════ */
.wl-hero-search {
  background: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: stretch;
  max-width: 840px;
  box-shadow: var(--shadow-float);
  overflow: hidden;
  margin-bottom: 24px;
}
.wl-hs-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.wl-hs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.wl-hs-label i { color: var(--orange); font-size: 10px; }
.wl-hs-field input,
.wl-hs-field select {
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 0;
  background: transparent;
  width: 100%;
  -webkit-appearance: none;
}
.wl-hs-field input::placeholder { color: var(--text-3); font-weight: 400; }
.wl-hs-field input:focus,
.wl-hs-field select:focus { outline: none; }
.wl-hs-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: var(--transition);
  cursor: pointer;
}
.wl-hs-btn:hover { background: var(--orange-dk); }

/* ── Badge / trust bar ────────────────────────────────── */
.wl-hero-badge-pulse {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 4px;
  animation: wl-badge-pulse 1.8s infinite;
}
@keyframes wl-badge-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  60%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.wl-ht-dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.wl-hero-trending {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wl-hero-trending .label { font-size: 12px; color: rgba(255,255,255,.5); }
.wl-hero-trending a {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 4px 14px;
  transition: var(--transition);
}
.wl-hero-trending a:hover { background: rgba(255,255,255,.22); color: #fff; }

.wl-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.wl-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.wl-hero-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }

/* ── 10. PLAN BAR ─────────────────────────────────────────────────── */
.wl-plan-bar { background: var(--orange); padding: 16px 24px; }
.wl-plan-bar-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wl-plan-bar-text strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.wl-plan-bar-text span   { font-size: 12px; color: rgba(255,255,255,.82); }
.wl-plan-bar-btn {
  background: #fff;
  color: var(--orange);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: var(--transition);
  cursor: pointer;
}
.wl-plan-bar-btn:hover { background: var(--navy); color: #fff; }

/* ── 11. STATS BAR ───────────────────────────────────────────────── */
.wl-stats { background: var(--navy); }
.wl-stats-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.wl-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.wl-stat:last-child { border-right: none; }
.wl-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--orange);
}
.wl-stat strong { display: block; font-size: 24px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 3px; }
.wl-stat span   { font-size: 12px; color: rgba(255,255,255,.5); }

/* ── 12. PACKAGE CARDS ───────────────────────────────────────────── */
.wl-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.wl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.wl-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg);
  flex-shrink: 0;
}
.wl-card-image a { display: block; height: 100%; }
.wl-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.wl-card:hover .wl-card-image img { transform: scale(1.04); }

.wl-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 3px 9px;
  z-index: 1;
}
.wl-card-badge--best { background: var(--orange); color: #fff; }
.wl-card-badge--hot  { background: var(--red);    color: #fff; }
.wl-card-badge--top  { background: var(--teal);   color: #fff; }

.wl-card-duration {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 5px;
  padding: 3px 9px;
  z-index: 1;
}
.wl-card-wishlist {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74c3c;
  font-size: 13px;
  transition: var(--transition);
  z-index: 1;
  border: none;
  cursor: pointer;
}
.wl-card-wishlist:hover { background: #fff; transform: scale(1.1); }
.wl-card-wishlist.is-pro-locked { color: var(--text-3); }
.wl-card-wishlist-lock {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
}

.wl-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wl-card-dest {
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}
.wl-card-dest i { color: var(--orange); font-size: 10px; }
.wl-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.wl-card-title a { color: inherit; }
.wl-card-title a:hover { color: var(--orange); }

.wl-card-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.wl-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--navy);
  color: #fff;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}
.wl-rating-badge i { color: var(--gold); font-size: 9px; }
.wl-rating-count { font-size: 11px; color: var(--text-3); }
.wl-card-verified {
  font-size: 10px;
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.wl-card-verified i { font-size: 9px; }

.wl-card-inclusions {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}
.wl-card-inclusions span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
}
.wl-card-inclusions i { font-size: 9px; color: var(--teal); }

.wl-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--border);
  gap: 10px;
}
.wl-price-from { font-size: 9px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-3); margin-bottom: 1px; }
.wl-price-row  { display: flex; align-items: baseline; gap: 5px; }
.wl-price-was  { font-size: 11px; color: var(--text-3); text-decoration: line-through; }
.wl-price-now  { font-size: 18px; font-weight: 900; color: var(--navy); }
.wl-price-per  { font-size: 10px; color: var(--text-3); margin-top: 1px; }

/* ── 13. PACKAGES SECTION ────────────────────────────────────────── */
.wl-pkg-section { background: var(--surface); }
.wl-pkg-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.wl-pkg-tabs::-webkit-scrollbar { display: none; }
.wl-pkg-tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color var(--transition);
}
.wl-pkg-tab.active,
.wl-pkg-tab:hover { color: var(--orange); }
.wl-pkg-tab.active { border-bottom-color: var(--orange); }
.wl-pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.wl-pkg-grid .wl-card.hidden { display: none; }

/* ── 14. DESTINATIONS ────────────────────────────────────────────── */
.wl-dest-bento {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: 230px 190px;
  gap: 12px;
}
.wl-dest-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.wl-dest-item:first-child { grid-row: 1 / 3; }
.wl-dest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.wl-dest-item:hover img { transform: scale(1.06); }
.wl-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,21,64,.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.wl-dest-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.wl-dest-item:first-child .wl-dest-name { font-size: 20px; }
.wl-dest-count {
  display: inline-block;
  font-size: 10px;
  color: rgba(255,255,255,.75);
  background: rgba(0,53,128,.55);
  border-radius: 4px;
  padding: 2px 8px;
}

/* ── 15. WHY US ──────────────────────────────────────────────────── */
.wl-why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.wl-why-media { position: relative; }
.wl-why-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.wl-why-img img { width: 100%; height: 100%; object-fit: cover; }
.wl-why-badge {
  position: absolute;
  bottom: 20px;
  left: -16px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.wl-why-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}
.wl-why-badge-text strong { display: block; font-size: 20px; font-weight: 900; color: var(--navy); line-height: 1; }
.wl-why-badge-text small  { font-size: 11px; color: var(--text-3); margin-top: 2px; display: block; }
.wl-why-content h2 { font-size: 26px; font-weight: 900; color: var(--navy); margin: 8px 0 12px; }
.wl-why-content > p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.wl-why-list { display: flex; flex-direction: column; }
.wl-why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.wl-why-item:last-child { border: none; }
.wl-why-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  flex-shrink: 0;
}
.wl-why-item-txt strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.wl-why-item-txt small  { font-size: 12px; color: var(--text-3); }

/* ── 16. ACTIVITIES ──────────────────────────────────────────────── */
.wl-act-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.wl-act-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--bg);
}
.wl-act-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.wl-act-card:hover img { transform: scale(1.06); }
.wl-act-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,21,64,.88) 0%, transparent 50%);
}
.wl-act-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 44px;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.wl-act-cat {
  position: absolute;
  top: 14px;
  right: 12px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.wl-act-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
}
.wl-act-price {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 5px;
  padding: 3px 9px;
  margin-bottom: 6px;
}
.wl-act-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.wl-act-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: rgba(255,255,255,.65); }

/* ── 17. TESTIMONIALS ────────────────────────────────────────────── */
.wl-testi-section { background: var(--navy); padding-block: 64px; }
.wl-testi-hdr { margin-bottom: 36px; }
.wl-testi-hdr .wl-eyebrow { display: block; color: var(--orange); margin-bottom: 8px; }
.wl-testi-hdr h2 { color: #fff; margin-bottom: 6px; }
.wl-testi-hdr p  { color: rgba(255,255,255,.5); font-size: 14px; }
.wl-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.wl-testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--transition);
}
.wl-testi-card:hover { background: rgba(255,255,255,.1); }
.wl-testi-stars    { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.wl-testi-text     { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 14px; }
.wl-testi-trip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
  border-radius: 5px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.wl-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
}
.wl-testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.wl-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wl-testi-name strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.wl-testi-name small  { font-size: 11px; color: rgba(255,255,255,.4); }

.wl-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.wl-trust-item { text-align: center; }
.wl-trust-stars  { color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.wl-trust-val    { font-size: 26px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 3px; }
.wl-trust-lbl    { font-size: 11px; color: rgba(255,255,255,.4); }
.wl-trust-divider{ width: 1px; height: 48px; background: rgba(255,255,255,.12); }

/* ── 18. BLOG ─────────────────────────────────────────────────────── */
.wl-blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}
.wl-blog-feat {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.wl-blog-feat-img { aspect-ratio: 16/9; overflow: hidden; }
.wl-blog-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wl-blog-feat:hover .wl-blog-feat-img img { transform: scale(1.04); }
.wl-blog-feat-body { padding: 24px; }
.wl-blog-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}
.wl-blog-title { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.wl-blog-title a:hover { color: var(--orange); }
.wl-blog-title.--sm  { font-size: 13px; margin-bottom: 6px; }
.wl-blog-excerpt     { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.wl-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.wl-blog-meta i { font-size: 10px; }
.wl-blog-sides { display: flex; flex-direction: column; gap: 14px; }
.wl-blog-card {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.wl-blog-card:hover { box-shadow: var(--shadow-hover); }
.wl-blog-card-img { width: 120px; flex-shrink: 0; overflow: hidden; }
.wl-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.wl-blog-card-body { padding: 14px; flex: 1; }
.wl-blog-card-body .wl-blog-meta { margin-bottom: 0; }

/* ── 19. NEWSLETTER ──────────────────────────────────────────────── */
.wl-nl-inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wl-nl-left {
  background: var(--navy);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wl-nl-left .wl-eyebrow { display: block; margin-bottom: 10px; }
.wl-nl-left h2   { color: #fff; font-size: 24px; font-weight: 900; margin-bottom: 12px; line-height: 1.25; }
.wl-nl-left > p  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.wl-nl-perks     { display: flex; flex-direction: column; gap: 9px; }
.wl-nl-perks li  {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}
.wl-nl-perks li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  flex-shrink: 0;
}
.wl-nl-right {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wl-nl-right h3   { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.wl-nl-right > p  { font-size: 13px; color: var(--text-3); margin-bottom: 22px; }
.wl-nl-field      { margin-bottom: 14px; }
.wl-nl-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-bottom: 5px;
}
.wl-nl-field input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  transition: border-color var(--transition);
}
.wl-nl-field input:focus { border-color: var(--navy); outline: none; }
.wl-nl-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.wl-nl-submit:hover { background: var(--orange-dk); }
.wl-nl-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.wl-nl-note i { color: var(--teal); }

/* ── 20. PLAN MY TRIP MODAL ──────────────────────────────────────── */
.wl-plan-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wl-plan-modal.is-open { display: flex; }
.wl-plan-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
}
.wl-plan-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  padding: 36px;
  box-shadow: var(--shadow-float);
  z-index: 1;
}
.wl-plan-box h3  { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.wl-plan-box > p { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.wl-plan-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
}
.wl-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.wl-plan-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-3);
  margin-bottom: 5px;
}
.wl-plan-field input,
.wl-plan-field select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  transition: border-color var(--transition);
}
.wl-plan-field input:focus,
.wl-plan-field select:focus { border-color: var(--navy); outline: none; }
.wl-plan-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}
.wl-plan-submit:hover { background: var(--orange-dk); }
.wl-plan-submit:disabled { background: var(--text-3); cursor: not-allowed; opacity: .7; }
.wl-plan-submit:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.wl-plan-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.wl-plan-success i { font-size: 40px; color: var(--teal); display: block; margin-bottom: 12px; }
.wl-plan-success h4 { color: var(--navy); margin-bottom: 4px; }

/* ── 20b. MULTI-STEP BOOKING MODAL (Pro) ─────────────────────────── */
.wl-booking-modal-wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wl-booking-modal-wrap.is-open,
.wl-booking-modal-wrap.open { display: flex; }
.wl-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
}
.wl-booking-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px;
  box-shadow: var(--shadow-float);
  z-index: 1;
}
@media (max-width: 600px) {
  .wl-booking-modal-wrap { padding: 12px; }
  .wl-booking-modal-box { padding: 22px 18px; max-height: 94vh; }
  .wl-form-steps { gap: 4px; margin-bottom: 20px; }
  .wl-step { font-size: 10px; gap: 4px; }
  .wl-step span { width: 20px; height: 20px; font-size: 10px; }
  .wl-step-divider { width: 14px; }
}
.wl-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
  border: none;
  z-index: 2;
}

/* Step indicator */
.wl-form-steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 28px; }
.wl-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
}
.wl-step span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}
.wl-step.active span { background: var(--orange); color: #fff; }
.wl-step.active { color: var(--navy); }
.wl-step.done span { background: var(--teal); color: #fff; }
.wl-step-divider { width: 28px; height: 2px; background: var(--border); }

.wl-form-step.hidden { display: none; }
.wl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .wl-form-row { grid-template-columns: 1fr; } }

.wl-form-group select,
.wl-form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
}
.wl-badge-sm {
  display: inline-block;
  background: rgba(13,148,136,.12);
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
}

/* Number input (adults / children) */
.wl-number-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.wl-num-btn {
  width: 38px; height: 38px;
  border: none;
  background: var(--bg);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.wl-num-btn:hover { background: var(--orange); color: #fff; }
.wl-number-input input {
  border: none !important;
  text-align: center;
  flex: 1;
  -moz-appearance: textfield;
}
.wl-number-input input::-webkit-outer-spin-button,
.wl-number-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Payment methods */
.wl-payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 560px) { .wl-payment-methods { grid-template-columns: 1fr; } }
.wl-pm-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.wl-pm-option input { position: absolute; opacity: 0; pointer-events: none; }
.wl-pm-option i { font-size: 18px; color: var(--text-3); }
.wl-pm-option.active,
.wl-pm-option:has(input:checked) { border-color: var(--orange); background: rgba(249,115,22,.06); color: var(--navy); }
.wl-pm-option.active i,
.wl-pm-option:has(input:checked) i { color: var(--orange); }

/* Price preview / review summary */
.wl-price-preview {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 16px 0;
}
.wl-price-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); padding: 5px 0; }
.wl-price-row.wl-price-total {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.wl-review-summary { background: var(--bg); border-radius: var(--radius-sm); padding: 4px 16px; margin-bottom: 20px; }
.wl-review-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.wl-review-row:last-child { border-bottom: none; }
.wl-review-row span { color: var(--text-3); }
.wl-review-row strong { color: var(--text); text-align: right; }

.wl-checkbox-label { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-2); cursor: pointer; }
.wl-checkbox-label input { margin-top: 2px; }
.wl-checkbox-label a { color: var(--orange); text-decoration: underline; }

.wl-form-btn-row { display: flex; gap: 10px; margin-top: 8px; }
.wl-form-btn-row .wl-btn { flex: 1; }
.wl-form-error {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  margin-top: 12px;
}

/* Success modal */
.wl-booking-success { text-align: center; padding: 12px 0; }
.wl-booking-success i { font-size: 48px; color: var(--teal); display: block; margin-bottom: 14px; }
.wl-booking-success h3 { color: var(--navy); margin-bottom: 8px; }
.wl-success-ref-num {
  display: inline-block;
  background: var(--bg);
  border: 1.5px dashed var(--orange);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
  margin: 12px 0;
}

/* ── 21. SITE FOOTER ─────────────────────────────────────────────── */
.wl-site-footer { background: #001226; padding-top: 56px; }
.wl-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.wl-footer-brand .wl-logo { margin-bottom: 14px; color: #fff; }
.wl-footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 20px; }
.wl-footer-socials { display: flex; gap: 8px; }
.wl-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  transition: var(--transition);
}
.wl-social-icon:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.wl-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.wl-footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.wl-footer-col a:hover { color: #fff; }
.wl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wl-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.wl-trust-logos { display: flex; gap: 8px; align-items: center; }
.wl-trust-logo {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(255,255,255,.35);
}

/* ── 22. ARCHIVE PAGES ───────────────────────────────────────────── */
.wl-archive-hero {
  background: var(--navy);
  padding: 48px 24px;
  text-align: center;
}
.wl-archive-hero h1 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.wl-archive-hero p  { color: rgba(255,255,255,.55); font-size: 14px; }
.wl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.wl-breadcrumb a { color: rgba(255,255,255,.6); }
.wl-breadcrumb a:hover { color: #fff; }
.wl-filter-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  position: sticky;
  top: var(--header-h);
  z-index: 99;
}
.wl-filter-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wl-filter-label { font-size: 12px; font-weight: 700; color: var(--text-2); }
.wl-filter-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  cursor: pointer;
  transition: var(--transition);
}
.wl-filter-btn:hover,
.wl-filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.wl-pkg-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-block: 40px;
}
.wl-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-3);
}

/* ── 23. SINGLE PACKAGE PAGE (Travlia style) ─────────────────────── */

/* Gallery strip */
.wl-sp-gallery { background: var(--text); padding-top: 8px; }
.wl-spg-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  height: 360px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.wl-spg-cell { overflow: hidden; position: relative; cursor: pointer; }
.wl-spg-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.wl-spg-cell:hover img { transform: scale(1.04); }
.wl-spg-btns {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.wl-spg-btn {
  background: rgba(255,255,255,.92);
  border: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  transition: background .2s;
  text-decoration: none;
}
.wl-spg-btn:hover { background: #fff; color: var(--text); }

/* Above-fold: breadcrumb + title + meta grid */
.wl-sp-above-fold { padding: 24px 0 0; }
.wl-sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.wl-sp-breadcrumb a { color: var(--text-2); }
.wl-sp-breadcrumb a:hover { color: var(--orange); }
.wl-sp-breadcrumb i { font-size: 9px; color: var(--text-3); }

/* Title row */
.wl-sp-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.wl-sp-title-info { flex: 1; }
.wl-sp-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.wl-sp-cat-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--navy);
  background: rgba(0,53,128,.08);
  border-radius: 4px;
  padding: 3px 10px;
  text-decoration: none;
}
.wl-sp-cat-tag:hover { background: var(--navy); color: #fff; }
.wl-sp-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.25;
}
.wl-sp-title-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wl-sp-meta-pill { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-2); }
.wl-sp-meta-pill i { color: var(--orange); font-size: 11px; }
.wl-sp-stars { color: var(--gold); letter-spacing: 1px; }
.wl-sp-reviews-ct { color: var(--text-3); font-size: 12px; }

/* Days badge (orange square — Travlia style) */
.wl-sp-days-badge {
  background: var(--orange);
  color: #fff;
  width: 80px;
  min-height: 80px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  padding: 10px 6px;
}
.wl-spdb-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  display: block;
}
.wl-spdb-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
  display: block;
}
.wl-sp-days-badge--text .wl-spdb-dur {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1.3;
}

/* 4-column meta details grid */
.wl-sp-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 0;
}
.wl-sp-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wl-sp-meta-icon {
  color: #94A3B8;
  font-size: 1.5rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.wl-sp-meta-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .4px;
  display: block;
  margin-bottom: 4px;
}
.wl-sp-meta-val { font-size: 14px; font-weight: 700; color: var(--text); }

/* Sticky tab nav */
.wl-sp-tabs-wrap {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h));
  z-index: 50;
  background: var(--surface);
  border-bottom: 2px solid var(--border);
}
.wl-sp-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.wl-sp-tabs::-webkit-scrollbar { display: none; }
.wl-sp-tab {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: color .2s;
}
.wl-sp-tab:hover { color: var(--text); }
.wl-sp-tab.active { color: var(--orange); }
.wl-sp-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}

/* 2-column layout */
.wl-sp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
  padding: 36px 0 60px;
}
.wl-sp-main {}

/* Content sections */
.wl-sp-sec {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.wl-sp-sec:last-child { border-bottom: none; margin-bottom: 0; }
.wl-sp-sec-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wl-sp-sec-title i { color: var(--orange); font-size: .9rem; }
.wl-sp-overview-text { font-size: 14px; color: var(--text-2); line-height: 1.75; }
.wl-sp-overview-text p { margin-bottom: 14px; }

/* Essentials row */
.wl-sp-essentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.wl-sp-ess-box {
  background: var(--bg);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
}
.wl-sp-ess-icon { font-size: 1.4rem; color: var(--orange); margin-bottom: 8px; }
.wl-sp-ess-box strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.wl-sp-ess-box span  { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; }

/* Itinerary accordion */
.wl-sp-itin-day {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.wl-sp-itin-day.is-open { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.wl-sp-itin-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.wl-sp-itin-btn:hover { background: var(--bg); }
.wl-sp-day-num {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.wl-sp-day-label { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.wl-sp-itin-btn > i { color: var(--text-3); margin-left: auto; transition: transform .25s; }
.wl-sp-itin-day.is-open .wl-sp-itin-btn > i { transform: rotate(180deg); }
.wl-sp-itin-body {
  display: none;
  padding: 4px 20px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.wl-sp-itin-day.is-open .wl-sp-itin-body { display: block; }

/* Inclusions / Exclusions */
.wl-sp-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wl-sp-inc-col h4, .wl-sp-exc-col h4 {
  font-size: 13px; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.wl-sp-inc-col h4 { color: var(--teal); }
.wl-sp-exc-col h4 { color: #ef4444; }
.wl-sp-inc-col ul, .wl-sp-exc-col ul { list-style: none; padding: 0; }
.wl-sp-inc-col li, .wl-sp-exc-col li {
  font-size: 13px; color: var(--text-2);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.wl-sp-inc-col li:last-child, .wl-sp-exc-col li:last-child { border: none; }
.wl-sp-inc-col li i { color: var(--teal); }
.wl-sp-exc-col li i { color: #ef4444; }

/* Highlights */
.wl-sp-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wl-sp-hl-item { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-2); }
.wl-sp-hl-item i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* Map */
.wl-sp-map-wrap { border-radius: 12px; overflow: hidden; height: 320px; }
.wl-sp-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Sidebar ── */
.wl-sp-sidebar {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 20px);
}

/* Price card */
.wl-sp-price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  overflow: hidden;
  margin-bottom: 14px;
}
.wl-spc-top { padding: 22px 24px 18px; border-bottom: 1px solid var(--border); }
.wl-spc-from {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-3);
  margin-bottom: 4px;
}
.wl-spc-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.wl-spc-amount { font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; }
.wl-spc-per { font-size: 14px; color: var(--text-2); }
.wl-spc-was { font-size: 12px; color: var(--text-3); text-decoration: line-through; margin-top: 4px; }
.wl-spc-save-badge {
  display: inline-flex;
  background: #FEF9C3;
  color: #854D0E;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}
.wl-spc-body { padding: 18px 20px 20px; }
.wl-spc-cta {
  display: block;
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 10px;
}
.wl-spc-cta:hover { background: var(--orange-dk); color: #fff; }
.wl-spc-cta--wa { background: #25D366; }
.wl-spc-cta--wa:hover { background: #1dba58; }
.wl-spc-help { text-align: center; font-size: 12px; color: var(--text-3); margin-bottom: 14px; }
.wl-spc-help a { color: var(--navy); font-weight: 600; }
.wl-spc-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.wl-spc-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-2);
}
.wl-spc-trust-item i { color: var(--teal); font-size: 12px; }

/* Details list card */
.wl-sp-details-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.wl-spd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}
.wl-spd-item:last-child { border-bottom: none; }
.wl-spd-icon { color: #94A3B8; font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; }
.wl-spd-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .4px; display: block; }
.wl-spd-val { font-size: 13px; font-weight: 700; color: var(--text); }

/* Mobile sticky bar */
.wl-sp-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  /* Above the cookie bar (9990) so the booking CTA is never hidden behind it */
  z-index: 9995;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.wl-sp-mb-price { display: flex; flex-direction: column; line-height: 1.3; }
.wl-sp-mb-price span { font-size: 11px; color: var(--text-3); }
.wl-sp-mb-price strong { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.wl-sp-mb-price small { font-size: 11px; color: var(--text-3); }

/* Related packages */
.wl-related-pkgs { padding: 60px 0; background: var(--bg); }

/* ── 24. SIDEBAR WIDGETS ─────────────────────────────────────────── */
.widget {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.widget-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--orange);
  border-radius: 2px;
}
.wl-widget-pkg a {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.wl-widget-pkg a:last-child { border: none; }
.wl-widget-pkg-thumb { width: 60px; height: 48px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.wl-widget-pkg-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wl-widget-pkg-title { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 3px; }
.wl-widget-pkg-price { font-size: 11px; font-weight: 700; color: var(--orange); }
.wl-widget-dest li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.wl-widget-dest li:last-child a { border: none; }
.wl-widget-dest li a:hover { color: var(--orange); }
.wl-widget-dest-count {
  font-size: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 7px;
  color: var(--text-3);
}
.wl-widget-search-form { position: relative; }
.wl-widget-search-form input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 40px 10px 14px;
  font-size: 13px;
  color: var(--text);
}
.wl-widget-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 14px;
  padding: 0;
}
.wl-widget-promo {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.wl-widget-promo-icon { font-size: 32px; color: var(--orange); margin-bottom: 10px; }
.wl-widget-promo h4  { font-size: 15px; font-weight: 800; margin-bottom: 6px; color: #fff; }
.wl-widget-promo p   { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.wl-widget-promo .wl-btn { width: 100%; justify-content: center; }

/* ── 25. BLOG / SINGLE POST / PAGE TEMPLATES ────────────────────── */

/* Page hero header (single.php + page.php) */
.wl-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #001a4d 100%);
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
}
.wl-page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,.12) 0%, transparent 65%);
  pointer-events: none;
}
.wl-page-header-overlay { display: none; }
.wl-page-header .wl-container { position: relative; z-index: 2; }
.wl-page-header h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: 10px 0 0;
  line-height: 1.25;
}

/* Breadcrumb on dark header */
.wl-page-header .wl-breadcrumb { background: none; border: none; padding: 0; margin: 0 0 8px; }
.wl-page-header .wl-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 12px;
}
.wl-page-header .wl-breadcrumb-list li { color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 6px; }
.wl-page-header .wl-breadcrumb-list li::after { content: '›'; color: rgba(255,255,255,.3); }
.wl-page-header .wl-breadcrumb-list li:last-child::after { display: none; }
.wl-page-header .wl-breadcrumb-list li:last-child { color: rgba(255,255,255,.75); }
.wl-page-header .wl-breadcrumb-list a { color: rgba(255,255,255,.7); font-weight: 500; }
.wl-page-header .wl-breadcrumb-list a:hover { color: #fff; }

/* Remove the extra .wl-container inside breadcrumb — it double-wraps */
.wl-page-header .wl-breadcrumb > .wl-container { max-width: none; padding: 0; margin: 0; }

/* Blog post 2-column layout */
.wl-single-post-layout {
  display: grid !important;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  padding: 44px 0 80px !important;
}

/* Post meta bar */
.wl-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.wl-post-meta span { display: flex; align-items: center; gap: 5px; }
.wl-post-meta i { color: var(--orange); font-size: 11px; }
.wl-post-meta a { color: var(--navy); font-weight: 600; }
.wl-post-meta a:hover { color: var(--orange); }

/* Featured image */
.wl-post-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.wl-post-thumb img { width: 100%; height: auto; display: block; }

/* Post body typography */
.wl-post-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
}
.wl-post-content h2 { font-size: 1.45rem; font-weight: 800; color: var(--text); margin: 32px 0 14px; line-height: 1.3; }
.wl-post-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.wl-post-content h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 18px 0 8px; }
.wl-post-content p  { margin-bottom: 18px; }
.wl-post-content ul, .wl-post-content ol { padding-left: 22px; margin-bottom: 18px; }
.wl-post-content li { margin-bottom: 6px; line-height: 1.7; }
.wl-post-content a  { color: var(--orange); text-decoration: underline; text-decoration-color: rgba(255,107,53,.4); }
.wl-post-content a:hover { text-decoration-color: var(--orange); }
.wl-post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 14px 20px;
  background: var(--bg);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
}
.wl-post-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 16px 0; }
.wl-post-content figure { margin: 24px 0; }
.wl-post-content figcaption { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 6px; }
.wl-post-content table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 20px; }
.wl-post-content th, .wl-post-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.wl-post-content th { background: var(--bg); font-weight: 700; color: var(--text); }
.wl-post-content pre { background: #1e2433; color: #e2e8f0; padding: 20px; border-radius: var(--radius); overflow-x: auto; font-size: 13px; margin-bottom: 20px; }
.wl-post-content code { font-family: 'Courier New', monospace; font-size: .88em; background: var(--bg); padding: 2px 6px; border-radius: 4px; color: var(--navy); }
.wl-post-content pre code { background: none; color: inherit; padding: 0; }

/* Post navigation */
.post-navigation { padding: 28px 0 0; margin-top: 28px; border-top: 1px solid var(--border); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 16px; }
.nav-previous, .nav-next { flex: 1; min-width: 0; }
.nav-next { text-align: right; }
.nav-previous .nav-subtitle, .nav-next .nav-subtitle { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-3); margin-bottom: 4px; }
.nav-previous a, .nav-next a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-previous a:hover, .nav-next a:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,53,.04); }

/* Blog sidebar */
.wl-blog-sidebar { position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 20px); }

/* Static page content (page.php) */
.wl-page-content {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 0 80px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
}
.wl-page-content h1, .wl-page-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 28px 0 12px; line-height: 1.3; }
.wl-page-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 22px 0 10px; }
.wl-page-content p  { margin-bottom: 16px; }
.wl-page-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 12px 0; }
.wl-page-content ul, .wl-page-content ol { padding-left: 22px; margin-bottom: 16px; }
.wl-page-content li { margin-bottom: 6px; }
.wl-page-content a  { color: var(--orange); text-decoration: underline; }

/* ── 26. UTILITIES (photo strip removed) ────────────────────────── */
.wl-photo-strip-wrap {
  background: var(--navy);
  padding: 40px 0 48px;
  display: block;
  width: 100%;
}
.wl-photo-strip-head {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
}
.wl-photo-strip-head h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.wl-photo-strip-head p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.wl-photo-strip-outer {
  position: relative;
  width: 100%;
  display: block;
}
/* ── Single-row horizontal scroll strip ── */
.wl-photo-strip {
  display: block;           /* block container */
  white-space: nowrap;      /* keep all children on one line */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding: 6px 40px 14px;
  width: 100%;
  box-sizing: border-box;
  line-height: 0;           /* remove gap below inline-block images */
  font-size: 0;
}
.wl-photo-strip::-webkit-scrollbar { display: none; }
.wl-photo-strip.is-dragging { cursor: grabbing; }
/* Each photo card — inline-block so they sit in one row */
.wl-ps-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;      /* reset white-space for content inside */
  width: 280px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  margin-right: 12px;
  flex-shrink: 0;           /* belt-and-suspenders if flex ever kicks in */
}
.wl-ps-item:last-child { margin-right: 0; }
.wl-ps-item:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.45); }
.wl-ps-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: transform .4s;
}
.wl-ps-item:hover img { transform: scale(1.06); }
.wl-ps-item.wl-ps-add {
  width: 160px;
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.25);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  text-decoration: none;
  line-height: 1.4;
  vertical-align: top;
}
.wl-ps-item.wl-ps-add:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); color: #fff; }
.wl-ps-item.wl-ps-add i { font-size: 24px; display: block; }
/* Arrow buttons */
.wl-ps-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background .2s;
}
.wl-ps-arrow:hover { background: rgba(255,255,255,.35); }
.wl-ps-arrow-left  { left: 4px; }
.wl-ps-arrow-right { right: 4px; }
@media (max-width: 600px) {
  .wl-ps-item { width: 200px; height: 150px; }
  .wl-ps-arrow { display: none; }
  .wl-photo-strip { padding: 4px 16px 12px; }
}

/* ── 27. UTILITIES ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── 26. RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .wl-pkg-grid   { grid-template-columns: repeat(3, 1fr); }
  .wl-act-grid   { grid-template-columns: repeat(3, 1fr); }
  .wl-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }

  .wl-sp-layout { grid-template-columns: 1fr 300px; gap: 24px; }
  .wl-sp-meta-grid { grid-template-columns: repeat(3, 1fr); }
  .wl-sp-essentials { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .wl-topbar { display: none; }
  .wl-main-nav { display: none; }
  .wl-menu-toggle { display: flex; }
  .wl-header-phone { display: none; }

  .wl-hero { min-height: 520px; }
  .wl-hero-search {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .wl-hs-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }
  .wl-hs-btn { padding: 14px 24px; justify-content: center; }

  .wl-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .wl-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }

  .wl-pkg-grid   { grid-template-columns: repeat(2, 1fr); }
  .wl-act-grid   { grid-template-columns: repeat(2, 1fr); }
  .wl-testi-grid { grid-template-columns: 1fr 1fr; }

  .wl-dest-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 160px;
  }
  .wl-dest-item:first-child { grid-row: 1 / 2; grid-column: 1 / 3; }

  .wl-why-inner  { grid-template-columns: 1fr; gap: 32px; }
  .wl-why-badge  { left: 12px; }

  .wl-blog-grid  { grid-template-columns: 1fr; }
  .wl-nl-inner   { grid-template-columns: 1fr; }
  .wl-nl-left, .wl-nl-right { padding: 32px; }

  .wl-pkg-body   { grid-template-columns: 1fr; }
  .wl-pkg-booking-card { position: static; }
  .wl-trust-bar  { flex-wrap: wrap; gap: 24px; }
  .wl-trust-divider { display: none; }

  .wl-spg-strip { grid-template-columns: 2fr 1fr; height: 280px; }
  .wl-spg-strip > .wl-spg-cell:nth-child(3) { display: none; }
  .wl-sp-layout { grid-template-columns: 1fr; }
  .wl-sp-sidebar { position: static; }
  .wl-sp-mobile-bar { display: flex; }

  /* Blog / page responsive */
  .wl-single-post-layout { grid-template-columns: 1fr !important; }
  .wl-blog-sidebar { position: static; }
  .wl-page-content { padding: 32px 0 60px; }
  .wl-sp-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .wl-sp-essentials { grid-template-columns: repeat(2, 1fr); }
  .wl-sp-inc-exc { grid-template-columns: 1fr; }
  .wl-sp-title { font-size: 1.6rem; }
  .wl-sp-days-badge { width: 68px; min-height: 68px; }
  .wl-spdb-num { font-size: 1.9rem; }
}

@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .wl-container  { padding-inline: 16px; }
  .wl-section    { padding-block: 48px; }
  .wl-logo-sub   { display: none; }

  .wl-hero { min-height: 500px; }
  .wl-hero-content { padding: 60px 16px 52px; }
  .wl-hero-trust   { gap: 12px; }

  .wl-plan-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .wl-stats-inner { grid-template-columns: 1fr 1fr; }
  .wl-stat { padding: 16px; }
  .wl-stat strong { font-size: 20px; }

  .wl-section-hdr  { flex-direction: column; align-items: flex-start; }
  .wl-pkg-grid     { grid-template-columns: 1fr; }
  .wl-act-grid     { grid-template-columns: 1fr 1fr; }
  .wl-testi-grid   { grid-template-columns: 1fr; }

  .wl-dest-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }
  .wl-dest-item:first-child { grid-row: 1 / 2; grid-column: 1 / 2; }

  .wl-footer-top   { grid-template-columns: 1fr; }
  .wl-footer-bottom{ flex-direction: column; gap: 12px; text-align: center; }
  .wl-plan-grid    { grid-template-columns: 1fr; }
  .wl-plan-box     { padding: 24px; max-height: 90vh; overflow-y: auto; }
  .wl-plan-modal   { padding: 12px; }

  .wl-blog-card { flex-direction: column; }
  .wl-blog-card-img { width: 100%; height: 160px; }
  .wl-nl-left, .wl-nl-right { padding: 24px; }

  .wl-spg-strip { height: 200px; }
  .wl-sp-meta-grid { grid-template-columns: 1fr 1fr; }
  .wl-sp-highlights { grid-template-columns: 1fr; }
  .wl-sp-essentials { grid-template-columns: 1fr 1fr; }
  .wl-sp-title { font-size: 1.4rem; }
  .wl-sp-days-badge { width: 60px; min-height: 60px; }
  .wl-spdb-num { font-size: 1.6rem; }
}

/* ── 27. PAGE HEADER SUBTITLE + SECTION COMPONENTS ──────────────── */
.wl-page-header p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 10px;
  max-width: 600px;
}
.wl-section-header { text-align: center; margin-bottom: 40px; }
.wl-section-header h2 { font-size: 1.75rem; font-weight: 900; color: var(--navy); line-height: 1.25; margin: 0; }
.wl-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  background: rgba(255,107,53,.1);
  border: 1px solid rgba(255,107,53,.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 10px;
}
.wl-pagination-wrap { margin-top: 40px; }
.wl-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  transition: all .2s;
  margin: 0 3px;
}
.wl-pagination-wrap .page-numbers.current,
.wl-pagination-wrap .page-numbers:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.wl-pagination-wrap .nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; justify-content: center; }
.wl-empty-state { text-align: center; padding: 60px 20px; color: var(--text-3); font-size: 14px; }

/* ── 28. BLOG ARCHIVE ────────────────────────────────────────────── */
.wl-blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.wl-blog-main { min-width: 0; }
.wl-blog-main .wl-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.wl-blog-main .wl-blog-card { flex-direction: column; border-radius: var(--radius-lg); transition: box-shadow .2s, transform .2s; }
.wl-blog-main .wl-blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.wl-blog-media { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.wl-blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wl-blog-main .wl-blog-card:hover .wl-blog-media img { transform: scale(1.04); }
.wl-blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.wl-blog-body h2 { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0 0 10px; line-height: 1.4; }
.wl-blog-body h2 a { color: inherit; }
.wl-blog-body h2 a:hover { color: var(--orange); }
.wl-blog-body p { font-size: 13px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.wl-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--orange); transition: gap .2s; }
.wl-read-more:hover { gap: 10px; }

/* ── 29. 404 PAGE ─────────────────────────────────────────────────── */
.wl-404-content { max-width: 540px; margin: 0 auto; }
.wl-404-graphic { font-size: 72px; color: var(--orange); margin-bottom: 12px; line-height: 1; display: block; }
.wl-404-title {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wl-404-content h2 { font-size: 1.35rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.wl-404-content p { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 420px; margin: 0 auto 24px; }

/* ── 30. FORM COMPONENTS ─────────────────────────────────────────── */
.wl-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.wl-form-group label { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .4px; }
.wl-form-group input,
.wl-form-group select,
.wl-form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
  width: 100%;
}
.wl-form-group input:focus,
.wl-form-group select:focus,
.wl-form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,.1); }
.wl-form-group textarea { resize: vertical; min-height: 120px; }
.wl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── 31. CONTACT PAGE ─────────────────────────────────────────────── */
.wl-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wl-contact-info-col h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.wl-contact-info-col > p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
.wl-contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.wl-contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
}
.wl-contact-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.wl-contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,107,53,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px; flex-shrink: 0;
}
.wl-contact-card-text { display: flex; flex-direction: column; gap: 2px; }
.wl-contact-card-text strong { font-size: 10px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-3); font-weight: 700; }
.wl-contact-card-text a, .wl-contact-card-text span { font-size: 13px; color: var(--text); font-weight: 600; }
.wl-contact-card-text a:hover { color: var(--orange); }
.wl-contact-social h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-3); font-weight: 700; margin-bottom: 12px; }
.wl-map-section { margin-top: 48px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.wl-map-section iframe { display: block; }
.wl-contact-form .wl-btn-block { width: 100%; justify-content: center; }

/* ── 32. ABOUT PAGE ─────────────────────────────────────────────── */
.wl-about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.wl-about-stat { text-align: center; padding: 18px 12px; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); }
.wl-about-stat strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--orange); line-height: 1.15; }
.wl-about-stat span { font-size: 11px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.wl-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 32px; }
.wl-value-card {
  padding: 28px 22px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.wl-value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.wl-value-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,107,53,.1); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 22px; margin: 0 auto 16px; }
.wl-value-card h4 { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.wl-value-card p { font-size: 13px; color: var(--text-2); line-height: 1.65; margin: 0; }
.wl-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 32px; }
.wl-team-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-card); transition: box-shadow .2s, transform .2s; }
.wl-team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.wl-team-photo { width: 100%; aspect-ratio: 1; overflow: hidden; }
.wl-team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wl-team-card:hover .wl-team-photo img { transform: scale(1.06); }
.wl-team-info { padding: 16px 18px; text-align: center; }
.wl-team-info h4 { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.wl-team-role { display: inline-block; font-size: 11px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; }
.wl-team-info p { font-size: 12px; color: var(--text-2); line-height: 1.6; margin-bottom: 10px; }
.wl-team-social { display: flex; gap: 8px; justify-content: center; }
.wl-team-social a { width: 30px; height: 30px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-2); transition: all .2s; }
.wl-team-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── 33. BOOKING CONFIRMATION ────────────────────────────────────── */
.wl-confirmation-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 48px 40px; text-align: center; box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.wl-success-icon { font-size: 56px; color: #22c55e; margin-bottom: 16px; display: block; }
.wl-confirmation-card h1 { font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.wl-confirmation-card h2 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.wl-confirmation-card > p { font-size: 14px; color: var(--text-2); margin-bottom: 28px; }
.wl-booking-summary-table { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; text-align: left; }
.wl-bst-ref { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; background: var(--navy); color: #fff; }
.wl-bst-ref span { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; opacity: .7; }
.wl-bst-ref strong { font-size: 1rem; font-weight: 800; letter-spacing: 1px; }
.wl-bst-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-bottom: 1px solid var(--border); font-size: 13px; }
.wl-bst-row:last-child { border-bottom: none; }
.wl-bst-row span { color: var(--text-3); }
.wl-bst-row strong { color: var(--text); font-weight: 700; }
.wl-confirmation-note { display: flex; gap: 10px; align-items: flex-start; padding: 14px 18px; background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.2); border-radius: var(--radius); font-size: 13px; color: var(--text-2); text-align: left; margin-bottom: 20px; }
.wl-confirmation-note i { color: #22c55e; font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ── 34. ARCHIVE PACKAGE ─────────────────────────────────────────── */
.wl-archive-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; padding: 44px 0 80px; }
.wl-archive-sidebar { position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 20px); }
.wl-archive-main { min-width: 0; }
.wl-filter-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-card); }
.wl-filter-card-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.wl-filter-card-head h3 { font-size: 14px; font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 8px; margin: 0; }
.wl-filter-card-head h3 i { color: var(--orange); }
.wl-filter-reset { font-size: 12px; color: var(--orange); font-weight: 700; padding: 4px 10px; border: 1px solid rgba(255,107,53,.3); border-radius: 100px; transition: all .2s; }
.wl-filter-reset:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.wl-filter-group { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.wl-filter-group:last-of-type { border-bottom: none; }
.wl-filter-group h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--text-3); margin-bottom: 12px; }
.wl-filter-check { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; font-size: 13px; color: var(--text-2); transition: color .15s; }
.wl-filter-check:hover { color: var(--orange); }
.wl-filter-check input { accent-color: var(--orange); width: 14px; height: 14px; cursor: pointer; flex-shrink: 0; }
.wl-filter-check span { flex: 1; }
.wl-filter-check small { font-size: 11px; color: var(--text-3); background: var(--bg); padding: 1px 6px; border-radius: 4px; border: 1px solid var(--border); }
.wl-range-wrap { display: flex; flex-direction: column; gap: 8px; }
.wl-range-wrap input[type=range] { width: 100%; accent-color: var(--orange); cursor: pointer; }
.wl-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-3); }
#wl-budget-val { font-weight: 700; color: var(--orange); }
.wl-archive-pills-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 0; }
.wl-archive-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.wl-arc-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--text-2); background: var(--bg); border: 1.5px solid var(--border); cursor: pointer; transition: all .2s; white-space: nowrap; }
.wl-arc-pill:hover, .wl-arc-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.wl-arc-pill-count { font-size: 10px; border-radius: 4px; padding: 1px 5px; background: rgba(0,0,0,.08); }
.wl-arc-pill.active .wl-arc-pill-count { background: rgba(255,255,255,.25); }
.wl-archive-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.wl-results-count { font-size: 13px; color: var(--text-3); font-weight: 600; }
.wl-controls-right { display: flex; align-items: center; gap: 10px; }
.wl-controls-right select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; font-size: 13px; color: var(--text); background: var(--surface); cursor: pointer; }
.wl-view-toggle { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.wl-view-btn { padding: 7px 12px; font-size: 13px; color: var(--text-3); background: var(--surface); transition: all .15s; cursor: pointer; border: none; }
.wl-view-btn + .wl-view-btn { border-left: 1px solid var(--border); }
.wl-view-btn.active, .wl-view-btn:hover { background: var(--navy); color: #fff; }
.wl-no-results { text-align: center; padding: 80px 20px; color: var(--text-3); grid-column: 1 / -1; }
.wl-no-results i { font-size: 40px; display: block; margin-bottom: 12px; color: var(--border); }
.wl-no-results h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 6px; }
.wl-no-results p { font-size: 13px; }

/* ── 35. ARCHIVE DESTINATION ──────────────────────────────────────── */
.wl-destinations-masonry { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 240px; gap: 16px; margin-bottom: 40px; }
.wl-dest-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.wl-dest-card-lg { grid-column: span 2; }
.wl-dest-link { display: block; width: 100%; height: 100%; }
.wl-dest-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.wl-dest-card:hover .wl-dest-link img { transform: scale(1.06); }
.wl-dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%); display: flex; align-items: flex-end; }
.wl-dest-info { padding: 20px; width: 100%; }
.wl-dest-country { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.9); background: rgba(255,255,255,.15); backdrop-filter: blur(4px); padding: 3px 9px; border-radius: 100px; border: 1px solid rgba(255,255,255,.25); margin-bottom: 6px; }
.wl-dest-info h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 4px; line-height: 1.3; }
.wl-dest-info > span:not(.wl-dest-country):not(.wl-dest-explore) { font-size: 11px; color: rgba(255,255,255,.65); display: block; margin-bottom: 6px; }
.wl-dest-explore { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; color: #fff; opacity: 0; transform: translateY(6px); transition: all .25s; }
.wl-dest-card:hover .wl-dest-explore { opacity: 1; transform: translateY(0); }

/* ── 36. ACTIVITY ARCHIVE CARD SYSTEM ────────────────────────────── */
.wl-packages-grid { display: grid; gap: 24px; }
.wl-packages-grid-3 { grid-template-columns: repeat(3,1fr); }
.wl-packages-grid-2 { grid-template-columns: repeat(2,1fr); }
.wl-package-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.wl-package-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.wl-card-media { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.wl-card-media a { display: block; height: 100%; }
.wl-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wl-package-card:hover .wl-card-media img { transform: scale(1.04); }
.wl-card-excerpt { font-size: 12px; color: var(--text-2); line-height: 1.6; margin-bottom: 10px; }
.wl-card-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-3); }
.wl-card-meta i { color: var(--orange); }
.wl-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-top: 1px solid var(--border); background: var(--bg); }
.wl-card-price { display: flex; align-items: baseline; gap: 4px; }
.wl-card-price small { font-size: 11px; color: var(--text-3); }
.wl-card-price strong { font-size: 1rem; font-weight: 900; color: var(--navy); }
.wl-activity-price-badge { position: absolute; top: 12px; right: 12px; background: var(--orange); color: #fff; border-radius: var(--radius); padding: 6px 12px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,.2); line-height: 1.2; }
.wl-activity-price-badge strong { font-size: 14px; font-weight: 800; }
.wl-activity-price-badge small { font-size: 10px; opacity: .85; }

/* ── 38. TOURIUM-STYLE TOUR CARD ─────────────────────────────────── */
.wl-tour-grid { display: grid; gap: 24px; }
.wl-tour-grid-3 { grid-template-columns: repeat(3,1fr); }
.wl-tour-grid-2 { grid-template-columns: repeat(2,1fr); }

.wl-tour-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.wl-tour-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

/* Image */
.wl-tc-img { position: relative; overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0; }
.wl-tc-img-link { display: block; height: 100%; }
.wl-tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.wl-tour-card:hover .wl-tc-img img { transform: scale(1.06); }

.wl-tc-dur {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; letter-spacing: .3px;
}
.wl-tc-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; font-weight: 800; letter-spacing: .8px;
  padding: 4px 10px; border-radius: 100px; color: #fff;
}
.wl-tc-badge--best { background: var(--orange); }
.wl-tc-badge--hot  { background: var(--red); }
.wl-tc-badge--top  { background: var(--teal); }
.wl-tc-wish {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-2); transition: all .2s; backdrop-filter: blur(4px);
}
.wl-tc-wish:hover { background: #fff; color: var(--red); }

/* Body */
.wl-tc-body { padding: 16px 18px 8px; flex: 1; display: flex; flex-direction: column; gap: 6px; }

.wl-tc-loc {
  font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .6px;
  display: flex; align-items: center; gap: 5px;
}
.wl-tc-loc i { font-size: 10px; }

.wl-tc-title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; margin: 0; }
.wl-tc-title a { color: inherit; }
.wl-tc-title a:hover { color: var(--orange); }

.wl-tc-meta-row {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 8px 0; margin: 2px 0;
}
.wl-tc-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--text-2); font-weight: 500;
}
.wl-tc-meta-item i { color: var(--orange); font-size: 10px; }

.wl-tc-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--text);
}
.wl-tc-stars { display: flex; gap: 2px; color: var(--gold); font-size: 11px; }
.wl-tc-rev-ct { color: var(--text-3); font-weight: 400; font-size: 11px; }

/* Footer */
.wl-tc-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-top: 1px solid var(--border);
  background: var(--bg); gap: 8px; margin-top: auto;
}
.wl-tc-price { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.wl-tc-from  { font-size: 10px; color: var(--text-3); font-weight: 500; }
.wl-tc-was   { font-size: 11px; color: var(--text-3); text-decoration: line-through; }
.wl-tc-now   { font-size: 16px; font-weight: 900; color: var(--navy); display: block; line-height: 1.2; }
.wl-tc-per   { font-size: 10px; color: var(--text-3); }

.wl-tc-cta {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .2px;
  padding: 9px 16px; border-radius: var(--radius-sm);
  transition: background .2s, transform .15s;
}
.wl-tc-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }

/* ── 39. DESTINATION ARCHIVE (Tourium-style grid) ────────────────── */
.wl-dest-archive-wrap { padding: 48px 0 80px; }

.wl-dest-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.wl-dest-filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text-2);
  cursor: pointer; transition: all .2s;
}
.wl-dest-filter-btn:hover,
.wl-dest-filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.wl-dest-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; font-size: 13px; color: var(--text-2); font-weight: 500;
}

.wl-dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.wl-dest-grid .wl-dest-card-v2.hidden { display: none; }

.wl-dest-card-v2 {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.wl-dest-card-v2:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.wl-dc-img { position: relative; overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0; }
.wl-dc-img a { display: block; height: 100%; }
.wl-dc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.wl-dest-card-v2:hover .wl-dc-img img { transform: scale(1.06); }

.wl-dc-pkg-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
}

.wl-dc-body { padding: 16px 18px 10px; flex: 1; display: flex; flex-direction: column; gap: 5px; }

.wl-dc-country {
  font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .6px;
  display: flex; align-items: center; gap: 5px;
}
.wl-dc-country i { font-size: 10px; }

.wl-dc-title { font-size: 16px; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.3; }
.wl-dc-title a { color: inherit; }
.wl-dc-title a:hover { color: var(--orange); }

.wl-dc-excerpt { font-size: 12px; color: var(--text-2); line-height: 1.55; margin: 0; }

.wl-dc-meta-row {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 11px; color: var(--text-2);
  padding-top: 8px; border-top: 1px solid var(--border); margin-top: 6px;
}
.wl-dc-meta-row i { color: var(--orange); font-size: 10px; margin-right: 3px; }

.wl-dc-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-top: 1px solid var(--border);
  background: var(--bg); margin-top: auto; gap: 8px;
}
.wl-dc-pkg-link {
  font-size: 11px; font-weight: 700; color: var(--navy);
  border-bottom: 1.5px solid var(--border-2); transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.wl-dc-pkg-link:hover { color: var(--orange); border-color: var(--orange); }

/* ── 37. RESPONSIVE (new sections) ──────────────────────────────── */
@media (max-width: 1100px) {
  .wl-team-grid { grid-template-columns: repeat(3,1fr); }
  .wl-values-grid { grid-template-columns: repeat(2,1fr); }
  .wl-about-stats { grid-template-columns: repeat(2,1fr); }
  .wl-archive-layout { grid-template-columns: 240px 1fr; gap: 28px; }
  .wl-dest-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .wl-tour-grid-3 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .wl-blog-layout { grid-template-columns: 1fr; }
  .wl-blog-main .wl-blog-grid { grid-template-columns: 1fr; }
  .wl-team-grid { grid-template-columns: repeat(2,1fr); }
  .wl-values-grid { grid-template-columns: repeat(2,1fr); }
  .wl-about-stats { grid-template-columns: repeat(2,1fr); }
  .wl-contact-layout { grid-template-columns: 1fr; }
  .wl-form-row { grid-template-columns: 1fr; }
  .wl-archive-layout { grid-template-columns: 1fr; padding: 32px 0 60px; }
  .wl-archive-sidebar { position: static; }
  .wl-destinations-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .wl-dest-card-lg { grid-column: span 1; }
  .wl-packages-grid-3 { grid-template-columns: repeat(2,1fr); }
  .wl-dest-explore { opacity: 1; transform: none; }
  .wl-dest-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .wl-tour-grid-3 { grid-template-columns: repeat(2,1fr); }
  .wl-dest-archive-wrap { padding: 32px 0 60px; }
}
@media (max-width: 600px) {
  .wl-blog-main .wl-blog-grid { grid-template-columns: 1fr; }
  .wl-team-grid { grid-template-columns: 1fr 1fr; }
  .wl-values-grid { grid-template-columns: 1fr 1fr; }
  .wl-about-stats { grid-template-columns: 1fr 1fr; }
  .wl-destinations-masonry { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .wl-dest-card-lg { grid-column: span 1; }
  .wl-packages-grid-3 { grid-template-columns: 1fr; }
  .wl-confirmation-card { padding: 28px 20px; }
  .wl-archive-pills { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .wl-404-graphic { font-size: 56px; }
  .wl-dest-grid { grid-template-columns: 1fr; }
  .wl-tour-grid-3 { grid-template-columns: 1fr; }
  .wl-dest-filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .wl-dest-pkg-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════
   40. PACKAGES GRID INSIDE DESTINATION SINGLE PAGE
══════════════════════════════════════════════════════════════ */
.wl-dest-pkg-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .wl-dest-pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .wl-dest-pkg-grid { grid-template-columns: 1fr; } }

/* ── Button size additions ──── */
.wl-btn-lg { padding: 14px 32px; font-size: 14px; }

/* ══════════════════════════════════════════════════════════════
   41. FLOATING LEFT SIDEBAR NAV — Glassmorphism
══════════════════════════════════════════════════════════════ */
.wl-float-nav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  z-index: 980;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 14px 6px;

  /* Liquid-crystal glassmorphism */
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-left: none;
  border-radius: 0 18px 18px 0;
  box-shadow:
    4px 0 24px rgba(0, 53, 128, 0.10),
    inset 1px 0 0 rgba(255,255,255,0.6);

  /* Slide in from left */
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
  opacity: 0;
}
.wl-float-nav.wl-fn-visible {
  transform: translate(0, -50%);
  pointer-events: auto;
  opacity: 1;
}

.wl-fn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 11px;
  border-radius: 12px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  min-width: 54px;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.3;
}
.wl-fn-item i {
  font-size: 17px;
  display: block;
  margin-bottom: 2px;
  transition: transform .2s;
}
.wl-fn-item:hover {
  background: rgba(0, 53, 128, 0.08);
  color: var(--orange);
}
.wl-fn-item:hover i { transform: scale(1.15); }
.wl-fn-item.wl-fn-active { color: var(--orange); }
.wl-fn-item.wl-fn-active i { color: var(--orange); }

.wl-fn-plan { color: var(--orange); }
.wl-fn-plan:hover { background: rgba(249,115,22,.1); color: var(--orange-dk); }

.wl-fn-sep {
  width: 32px;
  height: 1px;
  background: rgba(0, 53, 128, 0.12);
  margin: 6px 0;
  flex-shrink: 0;
}

/* Hide on mobile & tablet (they have bottom nav already) */
@media (max-width: 1024px) {
  .wl-float-nav { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   42. PACKAGE CAROUSEL — Cover-page / magazine style
══════════════════════════════════════════════════════════════ */

/* Section header row (title + external arrows side-by-side) */
.wl-sec-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.wl-sec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}
.wl-pkc-ext-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.wl-pkc-ext-prev,
.wl-pkc-ext-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: border-color .2s, background .2s, color .2s;
}
.wl-pkc-ext-prev:hover,
.wl-pkc-ext-next:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.wl-pkc-ext-prev:disabled,
.wl-pkc-ext-next:disabled { opacity: .3; pointer-events: none; }

/* Viewport clips overflow */
.wl-pkg-carousel { position: relative; }
.wl-pkc-viewport {
  overflow: hidden;
  border-radius: 16px;
}

/* Track slides side-by-side */
.wl-pkc-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Each cover-page slide ── */
.wl-pkc-slide {
  position: relative;
  flex: 0 0 calc(50% - 10px);
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Full-cover image */
.wl-pkc-img-wrap {
  display: block;
  position: absolute;
  inset: 0;
}
.wl-pkc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.wl-pkc-slide:hover .wl-pkc-img-wrap img { transform: scale(1.06); }

/* Multi-stop gradient: transparent → dark bottom */
.wl-pkc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)   30%,
    rgba(0,0,0,.25) 55%,
    rgba(0,0,0,.88) 100%
  );
}

/* Duration badge — top-left */
.wl-pkc-dur {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 3;
}

/* Bestseller / HOT badge — top-right */
.wl-pkc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 3;
}
.wl-pkc-badge--best { background: var(--green); color: #fff; }
.wl-pkc-badge--hot  { background: var(--red); color: #fff; }
.wl-pkc-badge--top  { background: var(--teal); color: #fff; }

/* Inclusion pills — above text body */
.wl-pkc-pills {
  position: absolute;
  bottom: 128px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 3;
  flex-wrap: wrap;
}
.wl-pkc-pills span {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Overlaid body */
.wl-pkc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 18px 20px;
  z-index: 3;
}

.wl-pkc-dest {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}

.wl-pkc-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}
.wl-pkc-title a { color: #fff; text-decoration: none; }
.wl-pkc-title a:hover { color: var(--orange); }

.wl-pkc-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.wl-pkc-stars i { font-size: 10px; color: #fbbf24; }
.wl-pkc-rat-num { font-size: 12px; font-weight: 700; color: #fff; }
.wl-pkc-rev-ct  { font-size: 10px; color: rgba(255,255,255,.6); }

.wl-pkc-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.wl-pkc-price { display: flex; flex-direction: column; gap: 1px; }
.wl-pkc-from { font-size: 10px; color: rgba(255,255,255,.7); }
.wl-pkc-was  { font-size: 11px; color: rgba(255,255,255,.45); text-decoration: line-through; }
.wl-pkc-now  { font-size: 21px; font-weight: 800; color: #fff; line-height: 1.15; }
.wl-pkc-per  { font-size: 10px; color: rgba(255,255,255,.7); }

.wl-pkc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.wl-pkc-cta:hover { background: var(--orange-dk,#ea580c); color: #fff; transform: translateY(-1px); }

/* Dots */
.wl-pkc-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}
.wl-pkc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none; padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s, width .25s;
}
.wl-pkc-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .wl-pkc-slide { flex: 0 0 calc(80% - 10px); min-height: 400px; }
}
@media (max-width: 600px) {
  .wl-pkc-slide { flex: 0 0 calc(92% - 10px); min-height: 360px; }
  .wl-pkc-title { font-size: 14px; }
  .wl-pkc-now   { font-size: 17px; }
  .wl-sec-head-row { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════════
   43. DESTINATION ACTIVITIES — Horizontal card list
══════════════════════════════════════════════════════════════ */
.wl-dest-act-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-dest-act-card {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.wl-dest-act-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.13); }

.wl-dac-img {
  position: relative;
  width: 210px;
  min-width: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.wl-dac-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.wl-dest-act-card:hover .wl-dac-img img { transform: scale(1.06); }
.wl-dac-price {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.wl-dac-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.wl-dac-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.wl-dac-diff {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.wl-dac-diff--easy     { background: #dcfce7; color: #15803d; }
.wl-dac-diff--moderate { background: #fef3c7; color: #b45309; }
.wl-dac-diff--hard,
.wl-dac-diff--expert   { background: #fee2e2; color: #b91c1c; }
.wl-dac-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  font-family: var(--font-serif);
}
.wl-dac-title a { color: var(--text-1); text-decoration: none; }
.wl-dac-title a:hover { color: var(--orange); }
.wl-dac-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-2);
}
.wl-dac-meta span { display: flex; align-items: center; gap: 5px; }
.wl-dac-cta {
  margin-top: 4px;
}
.wl-dac-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: gap .2s;
}
.wl-dac-cta a:hover { gap: 10px; }
@media (max-width: 700px) {
  .wl-dest-act-card { flex-direction: column; }
  .wl-dac-img { width: 100%; min-width: 0; height: 200px; }
}

/* ══════════════════════════════════════════════════════════════
   44. PACKAGE FAQ ACCORDION
══════════════════════════════════════════════════════════════ */
.wl-sp-faq { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.wl-faq-item { border-bottom: 1px solid var(--border); }
.wl-faq-item:last-child { border-bottom: 0; }
.wl-faq-q {
  width: 100%;
  background: #fff;
  border: 0;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.wl-faq-q:hover { background: #f8f9fa; }
.wl-faq-q.is-open { background: #f0f7ff; color: var(--navy); }
.wl-faq-q i { font-size: 11px; transition: transform .25s; flex-shrink: 0; }
.wl-faq-q.is-open i { transform: rotate(180deg); }
.wl-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  background: #f0f7ff;
}
.wl-faq-a.is-open { display: block; }

/* ══════════════════════════════════════════════════════════════
   45. v3.8.0 — WhatsApp FAB / Wishlist / Popup / Share / FOMO
══════════════════════════════════════════════════════════════ */

/* ── WhatsApp Floating Action Button ── */
.wl-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wl-wa-pulse 2.5s infinite;
}
.wl-wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); color: #fff; animation: none; }
@keyframes wl-wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Wishlist icon in header nav ── */
.wl-wishlist-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-1);
  font-size: 20px;
  text-decoration: none;
  transition: color .2s;
}
.wl-wishlist-nav:hover { color: var(--orange); }
.wl-wishlist-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Wishlist heart active state on cards ── */
.wl-card-wishlist.is-wishlisted { background: #ffeaea; }
.wl-card-wishlist.is-wishlisted i { color: #e74c3c; }

/* ── Share + Wishlist row on package detail ── */
.wl-sp-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 14px;
}
.wl-share-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wl-share-label {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
  white-space: nowrap;
}
.wl-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
  background: transparent;
}
.wl-share-btn:hover { opacity: .85; transform: translateY(-1px); }
.wl-share-wa  { background: #25D366; color: #fff !important; border-color: #25D366; }
.wl-share-fb  { background: #1877F2; color: #fff !important; border-color: #1877F2; }
.wl-share-copy { border-color: var(--border); color: var(--text-1); }
.wl-share-copy:hover { background: var(--bg-2); }
.wl-sp-wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.wl-sp-wishlist-btn:hover,
.wl-sp-wishlist-btn.is-wishlisted { color: #e74c3c; border-color: #e74c3c; background: #ffeaea; }

/* ── Toast notifications ── */
.wl-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
.wl-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.wl-toast--right {
  left: auto;
  right: 28px;
  transform: translateY(8px);
}
.wl-toast--right.is-visible { transform: translateY(0); }
.wl-toast--heart { background: #e74c3c; }
.wl-toast--pro   { background: linear-gradient(135deg, var(--orange), var(--gold)); }

/* ── Pro upsell notice (locked features in Free edition) ── */
.wl-pro-lock {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: linear-gradient(135deg, rgba(249,115,22,.1), rgba(245,158,11,.1));
  border: 1.5px dashed rgba(249,115,22,.4);
  color: var(--text-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
}
.wl-pro-lock i { color: var(--orange); }
.wl-pro-lock a {
  margin-left: auto;
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
}
.wl-pro-lock a:hover { color: var(--orange-dk); }

/* ── Free-edition footer credit badge ── */
.wl-edition-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.wl-edition-badge a { color: rgba(255,255,255,.75); font-weight: 600; }
.wl-edition-badge a:hover { color: #fff; }

/* ── Social proof strip on package cards ── */
.wl-card-sp {
  padding: 4px 14px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: var(--text-2);
  flex-wrap: wrap;
}
.wl-card-sp i { color: var(--orange); }
.wl-card-sp-booked { color: #e67e22; font-weight: 600; }

/* ── FOMO urgency bar in sidebar ── */
.wl-fomo-bar {
  background: #fffbf0;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wl-fomo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-1);
  font-weight: 500;
}
.wl-fomo-item i { font-size: 15px; color: var(--orange); }
.wl-fomo-item strong { color: var(--orange); }
.wl-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  animation: wl-blink-dot 1.4s infinite;
}
@keyframes wl-blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Newsletter exit-intent popup ── */
.wl-nl-popup { display: none; position: fixed; inset: 0; z-index: 10000; }
.wl-nl-popup.is-open { display: block; }
.wl-nl-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}
.wl-nl-popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: min(90vw, 780px);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.wl-nl-popup-img { position: relative; overflow: hidden; min-height: 360px; }
.wl-nl-popup-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wl-nl-popup-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.wl-nl-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--orange);
  text-transform: uppercase;
}
.wl-nl-popup-body h3 {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.wl-nl-popup-body > p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0; }
.wl-nl-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.12);
  color: var(--text-1);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s;
}
.wl-nl-popup-close:hover { background: rgba(0,0,0,.25); }
#wl-nl-popup-form { display: flex; flex-direction: column; gap: 10px; }
#wl-nl-popup-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  outline: 0;
  box-sizing: border-box;
  transition: border-color .2s;
}
#wl-nl-popup-form input:focus { border-color: var(--orange); }
#wl-nl-popup-form button[type="submit"] {
  width: 100%;
  padding: 13px;
  background: var(--orange);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
#wl-nl-popup-form button:hover { background: var(--navy); transform: translateY(-1px); }
.wl-nl-popup-success {
  display: none;
  text-align: center;
  padding: 20px 0 10px;
  color: #27ae60;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}
.wl-nl-popup-success i { font-size: 40px; }
.wl-nl-popup-success.is-visible { display: flex; }
.wl-nl-popup-fine { font-size: 11px !important; color: var(--text-3, #aaa) !important; text-align: center; }

@media (max-width: 620px) {
  .wl-nl-popup-box { grid-template-columns: 1fr; }
  .wl-nl-popup-img { display: none; }
  .wl-nl-popup-body { padding: 28px 22px; }
  .wl-sp-action-row { flex-direction: column; align-items: flex-start; }
  .wl-wa-fab { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 24px; }
}

/* ══════════════════════════════════════════════════════════════
   46. v3.9.0 — Cookie Consent Bar
══════════════════════════════════════════════════════════════ */
.wl-cookie-bar {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
  transition: bottom .4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.wl-cookie-bar.is-visible { bottom: 0; }
/* Sit above the mobile booking CTA bar on package/activity pages instead of covering it */
@media (max-width: 900px) {
  .single-package-page .wl-cookie-bar.is-visible,
  .single-activity-page .wl-cookie-bar.is-visible { bottom: 64px; }
}
.wl-cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.wl-cookie-inner p { margin: 0; font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.5; }
.wl-cookie-inner a { color: var(--orange); text-decoration: underline; }
.wl-cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.wl-cookie-accept {
  padding: 8px 20px;
  background: var(--orange);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.wl-cookie-accept:hover { background: #e06020; }
.wl-cookie-decline {
  padding: 8px 16px;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.wl-cookie-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }


/* ── Destination Search Autocomplete ──────────────────────── */
.wl-dest-drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  z-index: 9999;
  overflow: hidden;
}
.wl-dest-drop.is-open { display: block; }
.wl-dest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.wl-dest-item:last-child { border-bottom: none; }
.wl-dest-item:hover { background: var(--bg); }
.wl-dest-item i { color: var(--orange); width: 14px; text-align: center; }
.wl-dest-item strong { display: block; font-size: 13px; font-weight: 600; }
.wl-dest-item span   { font-size: 11px; color: var(--text-3); }
