@import url("flight-checkout.css");

/* ============================================================
trivoy – upgraded premium olive green style.css
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Times New Roman MT', 'Times New Roman', Times, Georgia, serif;

  /* Brand */
  --color-primary: #0d2c1e;
  /* Luxury Dark Emerald */
  --color-primary-dark: #071810;
  --color-accent: var(--trivoy-accent, #164e33);
  /* Dynamic Sage/Emerald Accent */
  --color-accent-dark: #0f3925;
  --color-highlight: #3b82f6;
  /* Vibrant Royal Blue */
  --color-highlight-dark: #2563eb;

  /* Surfaces */
  --bg-0: #fafafa;
  --bg-1: #f5f7f5;
  --surface: #ffffff;

  /* Text */
  --ink-0: #121b16;
  --ink-1: #1a2721;
  --muted-0: #5c6e64;

  /* Lines */
  --line-0: #e4eae6;
  --line-1: #dbe3de;

  /* Legacy aliases kept for compatibility with existing rules */
  --accent-0: #2563eb;
  --accent-1: #164e33;
  --footer-card-accent: #164e33;

  /* Motion & shape */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(13, 44, 30, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 44, 30, 0.12);
  --shadow-lg: 0 24px 56px rgba(13, 44, 30, 0.15);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Translucent Green Header */
  --header-bg: rgba(230, 240, 233, 0.8);
  --header-border: rgba(13, 44, 30, 0.08);
}

/* ---------- ULTRA-SMOOTH MOTION SYSTEM ---------- */
.tab, .btn-header, .hotel-card, .modal, .auth-modal-panel, .header-picker, .country-trigger, .btn-search, .search-box {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
}

@keyframes fadeInUpSmooth {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tab-content-anim {
  animation: fadeInUpSmooth 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

/* Base Body Typography */
body, input, select, button, textarea {
  font-family: var(--font-sans);
}

body {
  font-size: 16px;
  background: #f5f5f5;
  color: #1a1a1a;
  min-height: 100vh;
  padding-top: 0;
  position: relative;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

/* Headings Typography */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.logo,
.brand-title,
.auth-title,
.modal-title,
.genius-title,
.footer-col h4 {
  font-family: var(--font-serif);
}

/* Specific overrides for small mobile screens (portrait) */
@media screen and (max-width: 480px) {
  .container {
    width: 100%;
    /* Avoids fixed pixel widths */
    padding: 15px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

header {
  padding-top: env(safe-area-inset-top);
  /* Automatically adds padding below the notch */
}

.skip-link {
  position: absolute;
  top: -44px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #f5f5f5;
  font-weight: 700;
  z-index: 10000;
}

.skip-link:focus {
  top: 12px;
}

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

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font-family: inherit;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none !important;
  outline-style: none !important;
  box-shadow: none !important;
}

#btn-account {
  /* 1. Strictly contain the button size so it doesn't stretch */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;

  /* 2. Setup positioning context for the icon */
  position: relative;

  /* 3. Strip default styling */
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
  /* Keeps it perfectly level with text links */
}

/* Account sidebar drawer - Ultra Glassy Dark Green Spatial */

.sidebar {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;

  /* Ultra Glassy Dark Green Spatial */
  background: 
    radial-gradient(circle at 10% 15%, rgba(46, 160, 105, 0.42) 0%, transparent 65%),
    radial-gradient(circle at 90% 85%, rgba(22, 78, 51, 0.50) 0%, transparent 65%),
    linear-gradient(160deg, rgba(13, 44, 30, 0.94) 0%, rgba(9, 28, 19, 0.97) 100%);
  backdrop-filter: blur(36px) saturate(210%);
  -webkit-backdrop-filter: blur(36px) saturate(210%);

  border-left: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 
    -16px 0 50px rgba(0, 0, 0, 0.55),
    inset 1.5px 0 0 rgba(255, 255, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);

  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px 40px;
  z-index: 2500;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.sidebar.active {
  right: 0;
}

.sidebar-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

/* Glassy Navigation Links - Centered */
.sidebar a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 4px auto;
  padding: 12px 18px;
  width: 92%;

  color: #ffffff;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 650;
  font-family: var(--font-sans);
  text-align: left;

  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);

}

.sidebar a.active {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
  box-shadow: 
    0 8px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sidebar a.active i {
  color: #ffffff;
  opacity: 1;
}

.sidebar a i {
  font-size: 16px;
  color: #ffffff;
  width: 20px;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

/* Glassy Hover - Centered Lift */
.sidebar a:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sidebar a:hover i {
  transform: scale(1.18);
  color: #ffffff;
  opacity: 1;
}

/* Sidebar Group - Sections with dividers */
.sidebar-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sidebar-group:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

/* Section Title */
.sidebar .title {
  display: block;
  width: 92%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 auto 6px auto;
  padding: 0 4px;
  text-align: left;
}


/* Login Card */
.login-card {
  margin: 20px 15px;
  padding: 16px;
  border-radius: 18px;

  background: rgba(0, 113, 194, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  color: #fff;
}

/* Heading */
.login-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* Description */
.login-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Button */
.login-card button {
  width: 100%;
  padding: 12px 18px;

  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #fff;

  border: none;
  border-radius: 12px;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.login-card button:hover {
  background: linear-gradient(135deg, #24411e, #14210f);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 113, 194, 0.35);
}

/* Click */
.login-card button:active {
  transform: scale(0.98);
}


/* The SVG inside the button */
#btn-account::before {
  content: '';
  position: absolute;

  /* Center it perfectly inside the 40px box */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* Force a strict size on the SVG image itself */
  width: 24px;
  height: 24px;

  background-image: url('account.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  /* Smooth interaction curve */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

/* Premium micro-interaction on hover */
#btn-account:hover::before {
  /* Shifts slightly up from the center position */
  transform: translate(-50%, -58%);
  opacity: 0.8;
}

/* Hide SVG icon when logged in and avatar badge is shown */
#btn-account.logged-in::before,
.btn-account.logged-in::before {
  display: none !important;
  content: none !important;
}

#btn-account.logged-in {
  width: auto !important;
  min-width: 32px !important;
  height: 32px !important;
}

#btn-rewards {
  /* 1. Strictly contain the button size so it doesn't stretch */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;

  /* 2. Setup positioning context for the icon */
  position: relative;

  /* 3. Strip default styling */
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
  /* Keeps it perfectly level with text links */
}

/* The SVG inside the button */
#btn-rewards::before {
  content: '';
  position: absolute;

  /* Center it perfectly inside the 40px box */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* Force a strict size on the SVG image itself */
  width: 34px;
  height: 34px;

  background-image: url('goggle-rewards-logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  /* Smooth interaction curve */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

/* Premium micro-interaction on hover */
#btn-rewards:hover::before {
  /* Shifts slightly up from the center position */
  transform: translate(-50%, -58%);
  opacity: 0.8;
}

#btn-notifications {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
  color: var(--color-primary);
  font-size: 20px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

#btn-notifications:hover {
  transform: translateY(-2px);
  color: var(--color-highlight, #237b51);
}

/* Green dot - ONLY visible when there is an active/unread notification */
#btn-notifications .notification-badge-dot {
  display: none;
  position: absolute;
  top: 6px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  border: 1.5px solid var(--header-bg, #ffffff);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  pointer-events: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

#btn-notifications.has-unread .notification-badge-dot {
  display: block;
}

/* Red on hover when there is a notification */
#btn-notifications:hover .notification-badge-dot {
  background-color: #ef4444 !important;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8) !important;
  transform: scale(1.2);
}

body[data-theme="dark"] #btn-notifications {
  color: #e0ece5;
}

body[data-theme="dark"] #btn-notifications .notification-badge-dot {
  border-color: #15241b;
}

body[data-theme="dark"] #btn-notifications:hover .notification-badge-dot {
  background-color: #ef4444 !important;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.9) !important;
}


ul {
  list-style: none;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  /* Roomier feel for luxury layout */
  width: 100%;
}

.logo {
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateX(4px);
}

.logo span {
  color: var(--color-highlight);
}

.logo-img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.btn-burger {
  display: none;
}

.header .logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.header .logo:hover::after {
  transform: scaleX(1);
}

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

.header-picker-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-picker-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-picker {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 44, 30, 0.06);
  border: 1px solid rgba(13, 44, 30, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.header-picker:hover {
  background: rgba(13, 44, 30, 0.12);
  border-color: rgba(13, 44, 30, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 44, 30, 0.12);
}

.header-picker i {
  font-size: 18px;
  color: var(--color-primary);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.header-picker:hover i {
  transform: scale(1.1);
}

.header-picker select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 14px;
  appearance: none;
  z-index: 2;
}

.header-picker select option {
  background: var(--surface);
  color: var(--ink-0);
  font-weight: 600;
}

.language-picker-label,
.mobile-lang-arrow,
.nav-btn-label {
  display: none;
}

.picker-flag, .country-flag {
  font-size: 17px;
  line-height: 1;
  pointer-events: none;
}

.country-picker {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
}

.country-trigger {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 44, 30, 0.06);
  border: 1px solid rgba(13, 44, 30, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s var(--ease);
}

.country-trigger:hover {
  background: rgba(13, 44, 30, 0.12);
  border-color: rgba(13, 44, 30, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 44, 30, 0.12);
}

.country-trigger:hover .country-flag {
  transform: scale(1.1);
}

/* Dark mode overrides for icon buttons */
body[data-theme="dark"] .header-picker,
body[data-theme="dark"] .country-trigger {
  background: rgba(245, 248, 246, 0.08);
  border-color: rgba(245, 248, 246, 0.15);
  color: var(--ink-0);
}

body[data-theme="dark"] .header-picker i {
  color: var(--ink-0);
}

body[data-theme="dark"] .header-picker:hover,
body[data-theme="dark"] .country-trigger:hover {
  background: rgba(245, 248, 246, 0.16);
  border-color: rgba(245, 248, 246, 0.25);
  color: #ffffff;
}

.country-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--surface, #ffffff);
  color: var(--ink-0, #1a1a1a);
  border: 1px solid rgba(13, 44, 30, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 300;
  backdrop-filter: blur(16px);
}

.country-menu[hidden] {
  display: none !important;
}

.country-option {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink-0, #1a1a1a);
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.15s ease;
}

.country-option:hover {
  background: rgba(13, 44, 30, 0.08);
  color: var(--color-primary);
}

.country-option small {
  font-size: 11px;
  font-weight: 750;
  color: var(--color-accent);
  background: rgba(13, 44, 30, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
}

/* ---- Regional Picker Pill (header) ---- */
.btn-regional-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(13, 44, 30, 0.16);
  border-radius: 999px;
  background: rgba(13, 44, 30, 0.06);
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-regional-picker:hover {
  background: rgba(13, 44, 30, 0.12);
  border-color: rgba(13, 44, 30, 0.26);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13, 44, 30, 0.12);
}
.rpill-flag { font-size: 16px; line-height: 1; }
.rpill-cur  { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.rpill-arrow { font-size: 12px; opacity: 0.65; transition: transform 0.2s ease; }
.btn-regional-picker[aria-expanded="true"] .rpill-arrow { transform: rotate(180deg); }

body[data-theme="dark"] .btn-regional-picker {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
body[data-theme="dark"] .btn-regional-picker:hover {
  background: rgba(255,255,255,0.14);
}

/* ============================================================
   REGIONAL MODAL — Booking.com style country & currency picker
   ============================================================ */
.regional-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 12, 0.65);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
.regional-modal-overlay.open { opacity: 1; }
.regional-modal-overlay[hidden] { display: none !important; }

.regional-modal-panel {
  position: relative;
  background: 
    radial-gradient(circle at 10% 10%, rgba(30, 107, 71, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(22, 78, 51, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(240, 248, 244, 0.68) 100%);
  backdrop-filter: blur(40px) saturate(240%);
  -webkit-backdrop-filter: blur(40px) saturate(240%);
  border: none !important;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px -12px rgba(0, 0, 0, 0.42);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.regional-modal-overlay.open .regional-modal-panel {
  transform: scale(1) translateY(0);
}

/* Header */
.regional-modal-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 14px 4px;
  border-bottom: none;
}
.regional-modal-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-0);
  margin: 0;
}
.regional-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.regional-modal-close:hover {
  background: rgba(22, 78, 51, 0.15);
  border-color: rgba(22, 78, 51, 0.25);
}

/* Tabs */
.regional-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px 4px;
  gap: 12px;
}
.regional-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(22, 78, 51, 0.15);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  color: var(--muted-0);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.regional-tab:hover {
  color: var(--color-primary);
  background: rgba(22, 78, 51, 0.12);
  border-color: rgba(22, 78, 51, 0.25);
  transform: scale(1.05);
}
.regional-tab.active {
  color: #ffffff;
  background: var(--color-primary, #164e33);
  border-color: var(--color-primary, #164e33);
  box-shadow: 0 4px 12px rgba(22, 78, 51, 0.35);
}

/* Search */
.regional-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 14px 6px;
}
.regional-search-icon {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-0);
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
}
.regional-search {
  width: 100%;
  padding: 8px 135px 8px 36px;
  border: 1px solid rgba(22, 78, 51, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink-0);
  font: inherit;
  font-size: 13.5px;
  outline: none;
  transition: all 0.2s ease;
}
.regional-search:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.12);
}

/* Tab Content */
.regional-tab-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.regional-tab-content.hidden { display: none; }

.regional-detect-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px dashed rgba(22, 78, 51, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--color-primary);
  font: inherit;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  z-index: 2;
}
.regional-detect-btn:hover {
  background: rgba(22, 78, 51, 0.15);
  border-color: var(--color-primary);
}
.regional-detect-btn:disabled { opacity: 0.6; cursor: wait; }

/* Scrollable list */
.regional-list {
  overflow-y: auto;
  flex: 1;
  padding: 4px 8px 4px;
}
.regional-list::-webkit-scrollbar { width: 5px; }
.regional-list::-webkit-scrollbar-thumb { background: rgba(22, 78, 51, 0.2); border-radius: 99px; }

/* Row item */
.regional-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font: inherit;
  margin-bottom: 2px;
}
.regional-item:hover {
  background: rgba(22, 78, 51, 0.1);
  backdrop-filter: blur(8px);
}
.regional-item.selected {
  background: rgba(22, 78, 51, 0.15);
  border-color: rgba(22, 78, 51, 0.25);
  backdrop-filter: blur(12px);
}

.ri-flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.ri-symbol {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-sans);
}
.ri-name {
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-0);
}
.ri-code {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted-0);
  background: rgba(22, 78, 51, 0.08);
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: 0.04em;
}
.ri-check {
  font-size: 15px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.regional-empty {
  text-align: center;
  color: var(--muted-0);
  font-size: 13.5px;
  padding: 16px 0;
}

/* Footer */
.regional-modal-footer {
  padding: 10px 14px;
  border-top: 1px solid rgba(22, 78, 51, 0.12);
  display: flex;
  justify-content: flex-end;
}
.regional-apply-btn {
  padding: 9px 24px;
  border: none;
  border-radius: 10px;
  background: var(--color-primary);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.regional-apply-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.3);
}

/* Dark mode */
body[data-theme="dark"] .regional-modal-panel {
  background: 
    radial-gradient(circle at 0% 0%, rgba(30, 107, 71, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(13, 44, 30, 0.45) 0%, transparent 50%),
    linear-gradient(135deg, rgba(16, 28, 22, 0.96) 0%, rgba(9, 18, 14, 0.98) 100%);
  border: none !important;
  box-shadow: 0 32px 96px -12px rgba(0, 0, 0, 0.85);
  color: #f0f4f1;
}
body[data-theme="dark"] .regional-modal-title { color: #f0f4f1; }
body[data-theme="dark"] .regional-modal-header,
body[data-theme="dark"] .regional-tabs,
body[data-theme="dark"] .regional-modal-footer { border-color: rgba(255,255,255,0.1); }
body[data-theme="dark"] .regional-search {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #f0f4f1;
}
body[data-theme="dark"] .regional-item:hover { background: rgba(255,255,255,0.07); }
body[data-theme="dark"] .regional-item.selected { background: rgba(255,255,255,0.1); }
body[data-theme="dark"] .ri-name { color: #e4ede7; }
body[data-theme="dark"] .ri-code { background: rgba(255,255,255,0.08); color: #a0b8a9; }
body[data-theme="dark"] .regional-modal-close { background: rgba(255,255,255,0.08); color: #e0ece5; }

/* Mobile — bottom sheet */
@media (max-width: 640px) {
  .regional-modal-overlay { align-items: flex-end; padding: 0; }
  .regional-modal-panel {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    max-width: 100%;
  }
}


.btn-header {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-primary);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-header:hover {
  background: rgba(13, 44, 30, 0.06);
}

.btn-header.primary {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn-header.primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.tabs {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3.5vw, 68px);
  width: 100%;
  padding: 6px clamp(12px, 2vw, 28px) 14px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 9px 20px;
  color: var(--color-primary);
  font-size: 13.5px;
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  flex-shrink: 0;
}

.tab:hover {
  background: rgba(13, 44, 30, 0.12);
  border-color: rgba(13, 44, 30, 0.22);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.tab i {
  font-size: 16px;
  color: #0066cc;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.tab:hover i {
  color: var(--color-primary);
  transform: scale(1.15);
}

.tab.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  font-weight: 750;
  box-shadow: 0 4px 12px rgba(13, 44, 30, 0.2);
}

.tab.active i {
  color: #ffffff;
}

/* Dark mode overrides for tabs */
body[data-theme="dark"] .tab {
  color: var(--ink-0);
  background: transparent;
  border-color: transparent;
}

body[data-theme="dark"] .tab i {
  color: #4d9eff;
}

body[data-theme="dark"] .tab:hover i {
  color: #26a669;
  transform: scale(1.15);
}

body[data-theme="dark"] .tab:hover {
  background: rgba(245, 248, 246, 0.14);
  border-color: rgba(245, 248, 246, 0.22);
  color: #ffffff;
}

body[data-theme="dark"] .tab.active {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

body[data-theme="dark"] .tab.active i {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .tabs {
    padding: 8px 14px;
    gap: 6px;
  }

  .tab {
    padding: 7px 14px;
    font-size: 12.5px;
  }
}

/* 1. Base state: Fully visible, slightly smaller, sitting at standard position */
.tab i {
  display: inline-block;
  opacity: 0.8;
  /* Keeping it visible before hover */
  transform: translateY(0) scale(0.85);
  /* Slightly scaled down for a clean look */

  /* Ultra-smooth timing curve for entry and exit */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.6s ease;
}

/* 2. Hover state: Scales up to full size and gently rises */
.tab:hover i {
  color: var(--color-highlight);
  transform: translateY(-4px) scale(1.1);
  /* Smoothly rises 4px and pops up slightly bigger */
}

/* 1. Base state: Fully visible, slightly smaller, sitting at standard position */
.tab[data-tab="cars"] i {
  display: inline-block;
  opacity: 0.8;
  /* Keeping it visible before hover */
  transform: translateX(1px) scale(0.85);
  /* Slightly scaled down for a clean look */

  /* Ultra-smooth timing curve for entry and exit */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.6s ease;
}

/* 2. Hover state: Scales up to full size and gently rises */
.tab[data-tab="cars"]:hover i {
  color: var(--color-highlight);
  transform: translateX(5px) scale(1.1);
  /* Smoothly rises 4px and pops up slightly bigger */
}

/* 1. Base state: Keep it clean, visible, and ready */
.tab[data-tab="flights"] i {
  display: inline-block;
  opacity: 0.8;
  transform: translateX(1px) scale(0.85);
  /* Use a smooth transition when the mouse LEAVES the hover state */
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s ease;
}

/* 2. Hover state: Trigger the custom slow-stomp animation */
.tab[data-tab="flights"]:hover i {
  color: var(--color-highlight);
  /* Runs the stomp animation over 0.7 seconds and keeps the final frame */
  animation: slowStomp 0.8s cubic-bezier(0.25, 1, 0.4, 1) forwards;
}

/* 3. The Slow Stomp Choreography */
@keyframes slowStomp {
  0% {
    transform: translateX(1px) translateY(0) scale(0.85);
  }

  /* The Lift: Slowly winds up backward and high in the air */
  45% {
    transform: translateX(-2px) translateY(-6px) scale(1.05);
  }

  /* The Hangtime: Pauses briefly at the peak before bringing the weight down */
  60% {
    transform: translateX(-1px) translateY(-6px) scale(1.05);
  }

  /* The Stomp: Forcefully steps down forward into its final position */
  100% {
    transform: translateX(5px) translateY(0) scale(1.1);
  }
}

/* 1. Base State: Start at normal full size */
.tab[data-tab="attractions"] i {
  display: inline-block;
  opacity: 0.8;

  /* Start at full scale */
  transform: scale(1) translateX(1px);

  /* Ultra-smooth return transition when mouse leaves */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.6s ease,
    opacity 0.4s ease;
}

/* 2. Hover State: Decline/Shrink away into the background */
.tab[data-tab="attractions"]:hover i {
  color: var(--color-highlight);
  opacity: 1;

  /* Deeper zoom out: drops down to 0.75x scale and slides right */
  transform: scale(0.75) translateX(1px);

  /* High-end clean deceleration curve for the hover entry */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 1. Base state: Keep it clean and stationary */
.tab[data-tab="taxis"] i {
  display: inline-block;
  opacity: 0.8;
  transform: translateX(1px) scale(0.85) rotate(0deg);

  /* Smoothly unwinds and returns to normal when the mouse leaves */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s ease;
}

/* 2. Hover state: Trigger the continuous premium spin */
.tab[data-tab="taxis"]:hover i {
  color: var(--color-highlight);

  /* Runs the 'premiumSpin' animation infinitely over 1.5 seconds */
  animation: premiumSpin 5s linear infinite;
}

/* 3. The Continuous Spin Choreography */
@keyframes premiumSpin {
  0% {
    /* Retains your hover spacing and scale, starting at 0 degrees */
    transform: translateX(1px) scale(1.1) rotate(0deg);
  }

  40% {
    /* Completes a full elegant circle while maintaining position */
    transform: translateX(1px) scale(1.1) rotate(180deg);
  }

  60% {
    /* Completes a full elegant circle while maintaining position */
    transform: translateX(1px) scale(1.1) rotate(-180deg);
  }

  100% {
    /* Returns to the original hover position and scale */
    transform: translateX(1px) scale(1.1) rotate(0deg);
  }
}

.tab[data-tab="packages"] i {
  display: inline-block;
  opacity: 0.8;
  /* Keeping it visible before hover */
  transform: translateX(1px) scale(0.85);
  /* Slightly scaled down for a clean look */
  transform-origin: center;

  /* Slower, gentler return when hover ends */
  transition: transform 0.9s cubic-bezier(0.22, 0.8, 0.18, 1),
    color 0.9s ease;
  will-change: transform;
}

/* 2. Hover state: starts a gentle, slow 'swim' motion */
.tab[data-tab="packages"]:hover i {
  color: var(--color-highlight);
  /* slow, smooth zig-zag swim */
  animation: swimZig 3.6s cubic-bezier(0.22, 0.8, 0.18, 1) infinite alternate;
}

/* SwimZig animation: slow zig-zag path with gentle bob and tilt */
@keyframes swimZig {
  0% {
    transform: translateX(1px) translateY(0) rotate(-1deg) scale(0.86);
  }

  5% {
    transform: translateX(1.2px) translateY(0.4px) rotate(-0.8deg) scale(0.87);
  }

  10% {
    transform: translateX(1.5px) translateY(0.9px) rotate(-0.4deg) scale(0.88);
  }

  15% {
    transform: translateX(1.7px) translateY(1.3px) rotate(0.2deg) scale(0.89);
  }

  20% {
    transform: translateX(1.8px) translateY(1.7px) rotate(0.8deg) scale(0.89);
  }

  25% {
    transform: translateX(1.7px) translateY(1.9px) rotate(1.5deg) scale(0.89);
  }

  30% {
    transform: translateX(1.5px) translateY(1.6px) rotate(1.2deg) scale(0.88);
  }

  35% {
    transform: translateX(1.2px) translateY(0.9px) rotate(0.6deg) scale(0.87);
  }

  40% {
    transform: translateX(1.0px) translateY(0.2px) rotate(0.1deg) scale(0.86);
  }

  45% {
    transform: translateX(1.3px) translateY(-0.5px) rotate(-0.7deg) scale(0.86);
  }

  50% {
    transform: translateX(1.8px) translateY(-1.2px) rotate(-1.5deg) scale(0.86);
  }

  55% {
    transform: translateX(2.1px) translateY(-1.0px) rotate(-1.3deg) scale(0.86);
  }

  60% {
    transform: translateX(2.2px) translateY(-0.6px) rotate(-0.9deg) scale(0.86);
  }

  65% {
    transform: translateX(2.0px) translateY(0.1px) rotate(-0.3deg) scale(0.86);
  }

  70% {
    transform: translateX(1.7px) translateY(0.8px) rotate(0.4deg) scale(0.87);
  }

  75% {
    transform: translateX(1.4px) translateY(1.4px) rotate(1.1deg) scale(0.88);
  }

  80% {
    transform: translateX(1.2px) translateY(1.8px) rotate(1.4deg) scale(0.89);
  }

  85% {
    transform: translateX(1.1px) translateY(1.9px) rotate(1.5deg) scale(0.89);
  }

  90% {
    transform: translateX(1.0px) translateY(1.4px) rotate(1.2deg) scale(0.88);
  }

  95% {
    transform: translateX(1.0px) translateY(0.6px) rotate(0.5deg) scale(0.87);
  }

  100% {
    transform: translateX(1px) translateY(0) rotate(-1deg) scale(0.86);
  }
}

.tab[data-tab="list"] i {
  display: inline-block;
  opacity: 0.8;
  transform: translateY(0) scale(0.9);
  transform-origin: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.22, 0.8, 0.18, 1),
    color 0.7s ease,
    opacity 0.7s ease;
  will-change: transform, opacity, clip-path;
}

/* 2. Hover state: reveal as a four-quadrant block build */
.tab[data-tab="list"]:hover i {
  color: var(--color-highlight);
  opacity: 1;
  animation: quadBlockReveal 1.1s cubic-bezier(0.22, 0.8, 0.18, 1) forwards;
}

@keyframes quadBlockReveal {
  0% {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    transform: translate3d(0, 0, 0) scale(0.88);
    opacity: 0;
  }

  25% {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    opacity: 0.4;
  }

  55% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(0.97);
    opacity: 0.75;
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

/* ---------- HERO (Spatial) ---------- */
/* ============================================================
   HERO — Spatial / visionOS-inspired deep-space background
   ============================================================ */
.hero {
  position: relative;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

/* The spatial background — deep midnight with a hint of forest */
.hero-spatial {
  position: relative;
  z-index: 20;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 72px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(22, 78, 51, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 110%, rgba(13, 44, 30, 0.60) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(30, 15, 60, 0.35) 0%, transparent 65%),
    linear-gradient(175deg, #03090a 0%, #040e0f 35%, #060c18 65%, #03080a 100%);
}

/* Star canvas — fills full hero */
.hero-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Floating animated glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(22, 78, 51, 0.45) 0%, transparent 70%);
  top: -120px;
  left: -80px;
  animation-duration: 14s;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 40, 90, 0.40) 0%, transparent 70%);
  bottom: -100px;
  right: -60px;
  animation-duration: 18s;
  animation-delay: -6s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(180, 140, 60, 0.18) 0%, transparent 70%);
  top: 40%;
  right: 25%;
  animation-duration: 22s;
  animation-delay: -11s;
}

@keyframes orbFloat {
  0%   { transform: translateY(0px) scale(1); }
  33%  { transform: translateY(-30px) scale(1.04); }
  66%  { transform: translateY(20px) scale(0.97); }
  100% { transform: translateY(0px) scale(1); }
}

/* Inner content wrapper */
.hero-spatial-inner {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 32px;
}

/* Headline copy */
.hero-spatial-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-spatial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-spatial-title {
  color: #ffffff;
  font-family: var(--font-sans, 'Inter', -apple-system, sans-serif);
  font-size: clamp(22px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow:
    0 0 60px rgba(34, 120, 70, 0.4),
    0 2px 30px rgba(0, 0, 0, 0.5);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-spatial-title {
    white-space: normal;
  }
}

.hero-spatial-sub {
  color: rgba(200, 230, 215, 0.72);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

/* Search card — wide, frosted glass */
.hero-spatial .hero-search-card {
  position: relative;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 20px;
  overflow: visible;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Trust pills row */
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(210, 240, 220, 0.80);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.hero-trust-pill i {
  color: #a8d5b0;
  font-size: 13px;
}

.hero-trust-pill:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
  color: #fff;
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .hero-spatial {
    padding: 48px 16px 56px;
    min-height: 400px;
  }
  .hero-spatial-title {
    font-size: clamp(26px, 8vw, 38px);
  }
  .hero-spatial .hero-search-card {
    padding: 14px;
    border-radius: 16px;
  }
  .hero-trust-pills {
    gap: 8px;
  }
  .hero-trust-pill {
    font-size: 12px;
    padding: 5px 11px;
  }
}

.search-field {
  position: relative;
}




.autocomplete-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(31, 54, 77, 0.1);
  z-index: 200;
  max-height: 250px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.autocomplete-list.open {
  display: block;
}

.autocomplete-list li {
  margin: 0;
}

.autocomplete-option {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #1a1a1a;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.autocomplete-option:hover,
.autocomplete-option:focus-visible {
  background: #f5f5f5;
  color: var(--color-accent);
}

.autocomplete-option:hover {
  background: #e8efe3;
}

.card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ebe6d8;
  box-shadow: 0 14px 40px rgba(24, 38, 51, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(24, 38, 51, 0.14);
}

.card-img-wrap {
  min-height: 220px;
  background: linear-gradient(135deg, #dfead7, #f6efe0);
  display: grid;
  place-items: center;
}

.card-emoji {
  font-size: 56px;
}

.goggle-rewards,
.results-header,
.filters,
.price-filter,
.pagination,
.api-directory,
.integration-notes {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.api-directory {
  margin-top: 18px;
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid #e3ddcc;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4e9 100%);
  box-shadow: 0 16px 38px rgba(24, 38, 51, 0.06);
}

.api-directory-head {
  margin-bottom: 14px;
}

.api-directory-head h2 {
  margin-top: 4px;
  margin-bottom: 6px;
  font-size: 24px;
  color: #162534;
  letter-spacing: -0.02em;
}

.api-directory-head p {
  color: #586654;
  font-size: 14px;
}

.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.api-group {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 14px;
}

.api-group h3 {
  font-size: 16px;
  color: #18293a;
  margin-bottom: 10px;
}

.api-list {
  display: grid;
  gap: 7px;
}

.api-list li {
  display: block;
  border: 1px solid #ede7d9;
  border-radius: 10px;
  padding: 9px 11px;
  background: #f5f5f5;
  color: #2b3a48;
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.integration-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 24px 32px;
}

.integration-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6f3ea);
  border: 1px solid #e7e7e7;
  box-shadow: 0 12px 30px rgba(24, 38, 51, 0.05);
}

.integration-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3e8;
  color: #28415a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.integration-card p {
  color: #556252;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 980px) {

  .hero-shell,
  .integration-notes {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
  }

  .header-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .integration-notes {
    padding-left: 16px;
    padding-right: 16px;
  }

  .api-directory {
    padding: 14px;
    border-radius: 16px;
  }

  .api-list li {
    padding: 10px;
  }
}

.module-shell {
  max-width: 1240px;
  margin: 0 auto 18px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e7e7e7;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2e6 100%);
  box-shadow: 0 18px 34px rgba(24, 38, 51, 0.08);
}

.module-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  gap: 12px;
  margin-bottom: 16px;
  align-items: end;
}

.module-form.module-searchbox {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.module-form.module-attractions {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.module-searchbox {
  padding: 4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(215, 204, 177, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.module-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.module-choice-field,
.module-direct-field {
  align-self: end;
}

.module-choice-group {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.module-choice-btn {
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #374451;
  font-weight: 700;
  padding: 6px 6px;
  white-space: nowrap;
}

.module-choice-btn.is-active {
  background: rgba(38, 67, 95, 0.12);
  color: var(--color-primary);
}

.module-direct-btn {
  width: 100%;
  min-height: 56px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  text-align: left;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  color: #1a1a1a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.module-direct-btn.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(66, 97, 128, 0.12);
  color: var(--color-primary);
}

.module-field label {
  font-size: 12px;
  color: #4f5e4b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.module-field input,
.module-field select {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  color: #1a1a1a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.module-date {
  position: relative;
}

.module-date input {
  padding-right: 48px;
  letter-spacing: 0.01em;
  color-scheme: light;
  font-weight: 600;
}

.module-date::after {
  content: "\1F4C5";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(2px);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(70, 98, 125, 0.12), rgba(70, 98, 125, 0.05));
  font-size: 16px;
  line-height: 1;
  color: #435b73;
  pointer-events: none;
}

.module-date-advanced input {
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 0 1px rgba(215, 204, 177, 0.18), 0 10px 20px rgba(24, 38, 51, 0.04);
  padding-top: 13px;
  padding-bottom: 13px;
}

.module-date-advanced::after {
  color: #24411e;
  border-color: rgba(58, 83, 107, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.module-travelers {
  position: relative;
}

.module-travelers-btn {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  text-align: left;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  color: #1a1a1a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.module-travelers-btn:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(66, 97, 128, 0.12);
  transform: translateY(-1px);
}

.module-travelers-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 260px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(23, 38, 52, 0.14);
  z-index: 220;
  display: none;
}

.module-travelers-dropdown .counter-value {
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  color: #1a1a1a;
}

/* =========================================================================
   TRIVOY SPATIAL DATEPICKER (BIG & LUXURY VISIONOS DESIGN)
   ========================================================================= */

.air-datepicker.trivoy-datepicker,
.air-datepicker {
  --adp-width: 380px;
  --adp-padding: 18px 20px;
  --adp-border-radius: 26px;
  --adp-nav-height: 48px;
  --adp-nav-action-size: 38px;
  --adp-day-cell-height: 44px;
  --adp-month-cell-height: 54px;
  --adp-year-cell-height: 54px;
  --adp-font-size: 15px;
  --adp-cell-border-radius: 12px;
  --adp-btn-height: 40px;
  --adp-accent-color: #164e33;
  --adp-color-current-date: #164e33;
  --adp-nav-arrow-color: #164e33;
  
  width: var(--adp-width);
  max-width: min(390px, 94vw);
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: var(--adp-border-radius) !important;
  box-shadow:
    0 28px 70px -12px rgba(10, 38, 22, 0.25),
    0 12px 32px -4px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.95) !important;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  box-sizing: border-box;
  padding: var(--adp-padding) !important;
  animation: spatialCalendarPop 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999 !important;
}

@keyframes spatialCalendarPop {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pointer / Arrow */
.air-datepicker.trivoy-datepicker .air-datepicker--pointer,
.air-datepicker .air-datepicker--pointer {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
}

/* Navigation Header */
.air-datepicker.trivoy-datepicker .air-datepicker-nav,
.air-datepicker .air-datepicker-nav {
  height: var(--adp-nav-height);
  padding: 0 4px 10px 4px;
  border-bottom: 1px solid rgba(22, 78, 51, 0.09) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--title,
.air-datepicker .air-datepicker-nav--title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #164e33 !important;
  letter-spacing: -0.3px;
  padding: 6px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--title:hover,
.air-datepicker .air-datepicker-nav--title:hover {
  background: rgba(22, 78, 51, 0.08) !important;
  color: #0e3724 !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--title i,
.air-datepicker .air-datepicker-nav--title i {
  color: #64748b;
  font-weight: 600;
  margin-left: 4px;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--action,
.air-datepicker .air-datepicker-nav--action {
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  background: rgba(22, 78, 51, 0.08) !important;
  color: #164e33 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border: 1px solid rgba(22, 78, 51, 0.12) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
  user-select: none !important;
  flex-shrink: 0 !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--action:hover:not(.-disabled-),
.air-datepicker .air-datepicker-nav--action:hover:not(.-disabled-) {
  background: #164e33 !important;
  color: #ffffff !important;
  border-color: #164e33 !important;
  transform: scale(1.08) !important;
  box-shadow: 0 4px 12px rgba(22, 78, 51, 0.25) !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--action:active:not(.-disabled-),
.air-datepicker .air-datepicker-nav--action:active:not(.-disabled-) {
  transform: scale(0.96) !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--action.-disabled-,
.air-datepicker .air-datepicker-nav--action.-disabled- {
  opacity: 0.25 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: rgba(0, 0, 0, 0.03) !important;
  color: #94a3b8 !important;
  border-color: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--action svg,
.air-datepicker .air-datepicker-nav--action svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  margin: auto !important;
  pointer-events: none !important;
  flex-shrink: 0 !important;
}

/* Fallback for un-viewboxed default SVGs if rendered */
.air-datepicker.trivoy-datepicker .air-datepicker-nav--action svg:not([viewBox]),
.air-datepicker .air-datepicker-nav--action svg:not([viewBox]) {
  width: 32px !important;
  height: 32px !important;
  transform: scale(0.65) !important;
  transform-origin: center center !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--action path,
.air-datepicker .air-datepicker-nav--action path {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.5px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: stroke 0.2s ease !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-nav--action:hover:not(.-disabled-) path,
.air-datepicker .air-datepicker-nav--action:hover:not(.-disabled-) path {
  stroke: #ffffff !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-nav--action,
[data-theme="dark"] .air-datepicker .air-datepicker-nav--action {
  background: rgba(52, 211, 153, 0.12) !important;
  color: #34d399 !important;
  border-color: rgba(52, 211, 153, 0.2) !important;
  box-shadow: none !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-nav--action:hover:not(.-disabled-),
[data-theme="dark"] .air-datepicker .air-datepicker-nav--action:hover:not(.-disabled-) {
  background: #34d399 !important;
  color: #062316 !important;
  border-color: #34d399 !important;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3) !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-nav--action:hover:not(.-disabled-) path,
[data-theme="dark"] .air-datepicker .air-datepicker-nav--action:hover:not(.-disabled-) path {
  stroke: #062316 !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-nav--action.-disabled-,
[data-theme="dark"] .air-datepicker .air-datepicker-nav--action.-disabled- {
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.2) !important;
  border-color: transparent !important;
  opacity: 0.25 !important;
  transform: none !important;
}

/* Weekday Names Header */
.air-datepicker.trivoy-datepicker .air-datepicker-body--day-names,
.air-datepicker .air-datepicker-body--day-names {
  margin: 10px 0 6px 0 !important;
  gap: 2px;
}

.air-datepicker.trivoy-datepicker .air-datepicker-body--day-name,
.air-datepicker .air-datepicker-body--day-name {
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cells Grid */
.air-datepicker.trivoy-datepicker .air-datepicker-body--cells,
.air-datepicker .air-datepicker-body--cells {
  gap: 3px;
}

.air-datepicker.trivoy-datepicker .air-datepicker-cell,
.air-datepicker .air-datepicker-cell {
  height: var(--adp-day-cell-height) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  border-radius: var(--adp-cell-border-radius) !important;
  transition: all 0.16s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hover Day */
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-focus-,
.air-datepicker .air-datepicker-cell.-focus- {
  background: rgba(22, 78, 51, 0.1) !important;
  color: #164e33 !important;
  font-weight: 700 !important;
  transform: scale(1.05);
}

/* Current Day */
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-current-,
.air-datepicker .air-datepicker-cell.-current- {
  color: #164e33 !important;
  font-weight: 800 !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-cell.-current-::after,
.air-datepicker .air-datepicker-cell.-current-::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #164e33;
}

/* Selected Day */
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-selected-,
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-selected-.-current-,
.air-datepicker .air-datepicker-cell.-selected-,
.air-datepicker .air-datepicker-cell.-selected-.-current- {
  background: linear-gradient(135deg, #1b5e3f 0%, #164e33 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(22, 78, 51, 0.38) !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-cell.-selected-::after,
.air-datepicker .air-datepicker-cell.-selected-::after {
  background: #ffffff !important;
}

/* Range Selection */
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-in-range-,
.air-datepicker .air-datepicker-cell.-in-range- {
  background: rgba(22, 78, 51, 0.09) !important;
  color: #164e33 !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-cell.-range-from-,
.air-datepicker .air-datepicker-cell.-range-from- {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-cell.-range-to-,
.air-datepicker .air-datepicker-cell.-range-to- {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* Other Months */
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-other-month-,
.air-datepicker .air-datepicker-cell.-other-month- {
  color: #94a3b8 !important;
  opacity: 0.5;
}

/* Month / Year views */
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-month-,
.air-datepicker.trivoy-datepicker .air-datepicker-cell.-year-,
.air-datepicker .air-datepicker-cell.-month-,
.air-datepicker .air-datepicker-cell.-year- {
  height: 52px !important;
  font-size: 14.5px !important;
}

/* Action Buttons (Clear / Today) */
.air-datepicker.trivoy-datepicker .air-datepicker-buttons,
.air-datepicker .air-datepicker-buttons {
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(22, 78, 51, 0.09) !important;
  display: flex !important;
  gap: 8px !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-button,
.air-datepicker .air-datepicker-button {
  height: var(--adp-btn-height) !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  background: rgba(22, 78, 51, 0.06) !important;
  color: #164e33 !important;
  border: 1px solid rgba(22, 78, 51, 0.12) !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
}

.air-datepicker.trivoy-datepicker .air-datepicker-button:hover,
.air-datepicker .air-datepicker-button:hover {
  background: #164e33 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(22, 78, 51, 0.25) !important;
}

/* Dark Mode Spatial Calendar */
[data-theme="dark"] .air-datepicker.trivoy-datepicker,
[data-theme="dark"] .air-datepicker {
  background: rgba(14, 28, 20, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow:
    0 28px 70px -12px rgba(0, 0, 0, 0.7),
    0 12px 32px -4px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-nav--title,
[data-theme="dark"] .air-datepicker .air-datepicker-nav--title {
  color: #34d399 !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-cell,
[data-theme="dark"] .air-datepicker .air-datepicker-cell {
  color: #e2e8f0 !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-cell.-current-,
[data-theme="dark"] .air-datepicker .air-datepicker-cell.-current- {
  color: #34d399 !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-cell.-current-::after,
[data-theme="dark"] .air-datepicker .air-datepicker-cell.-current-::after {
  background: #34d399 !important;
}

[data-theme="dark"] .air-datepicker.trivoy-datepicker .air-datepicker-button,
[data-theme="dark"] .air-datepicker .air-datepicker-button {
  background: rgba(52, 211, 153, 0.12) !important;
  color: #34d399 !important;
  border-color: rgba(52, 211, 153, 0.25) !important;
}

.module-date input::-webkit-calendar-picker-indicator {
  width: 18px;
  height: 18px;
  opacity: 0;
  cursor: pointer;
}

.module-date input::-webkit-inner-spin-button,
.module-date input::-webkit-clear-button {
  display: none;
}

.module-date input::-moz-focus-inner {
  border: 0;
}

.module-field input:focus,
.module-field select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(66, 97, 128, 0.12);
  transform: translateY(-1px);
}

.module-field input::placeholder {
  color: #889486;
}

.module-submit {
  align-self: end;
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #24411e, var(--color-primary));
  color: #fff;
  font-weight: 700;
  padding: 0 18px;
  box-shadow: 0 10px 22px rgba(31, 54, 77, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.module-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(31, 54, 77, 0.22);
  filter: brightness(1.03);
}

.module-submit i {
  font-size: 18px;
}

.module-submit span {
  white-space: nowrap;
}

.module-form.module-searchbox .module-submit {
  grid-column: 1 / -1;
}

.module-form.module-attractions .module-submit {
  grid-column: 1 / -1;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.module-card {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.module-card h4 {
  margin-bottom: 6px;
  font-size: 17px;
}

.module-meta {
  color: #55606a;
  font-size: 13px;
  margin-bottom: 8px;
}

.module-price {
  font-size: 22px;
  font-weight: 800;
  color: #1b2c3d;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .module-form.module-searchbox {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .module-form.module-attractions {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .module-shell {
    padding: 16px;
    border-radius: 18px;
  }

  .module-form.module-searchbox {
    grid-template-columns: 1fr;
  }

  .module-submit {
    width: 100%;
  }
}

.module-detail-btn {
  border: 1px solid var(--color-accent);
  color: #ffffff;
  background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
  border-radius: 9px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-search-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
}

.search-card-header {
  margin-bottom: 16px;
}

.search-card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin: 0;
}

.search-card-label i {
  font-size: 15px;
  color: #3b82f6;
  opacity: 1;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.service-tab {
  border: none;
  background: #f0f4f8;
  color: #3e4b57;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-tab.active,
.service-tab:hover {
  background: var(--color-accent);
  color: #fff;
}

.search-service-copy {
  margin-bottom: 12px;
  color: #6b6b6b;
  font-size: 14px;
}



/* ---------- SEARCH BOX ---------- */
.search-box {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  box-shadow: none;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fbf8;
  border-radius: 12px;
  padding: 12px 16px;
  flex: 1;
  min-width: 200px;
  border: 1.5px solid #e0ebe2;
  position: relative;
  cursor: pointer;
  outline: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.search-field:hover {
  border-color: #b8d4be;
  background: #f2f8f3;
}

.search-field:focus-within {
  border-color: #a8cdb0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12) !important;
  outline: none !important;
  cursor: text;
  z-index: 1200 !important;
}

.search-field > i {
  font-size: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  opacity: 0.75;
}

.search-field-date {
  /* Clean date search field without trailing icon */
}

.search-field-inner {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.search-field-inner label {
  font-size: 11px;
  color: #6b6b6b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.search-field-inner input,
.search-field-inner select,
.search-field-inner .module-toggle-btn,
.search-field-inner .guests-btn {
  border: none !important;
  outline: none !important;
  outline-style: none !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.35;
  color: #1a1a1a;
  background: transparent;
  padding: 2px 0 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.search-field-inner select option {
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 600;
  padding: 8px;
}

.search-field-inner input::placeholder {
  color: #717171;
  font-weight: 500;
  opacity: 0.85;
  font-size: 14px;
}

/* Cabin class selector pills inside flight passenger dropdown */
.cabin-class-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cabin-pill {
  padding: 5px 10px;
  border-radius: 99px;
  border: 1px solid #d0dfd4;
  background: #f4f8f5;
  color: #1a2721;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cabin-pill:hover {
  background: #e2ede5;
  border-color: #b8d4be;
}

.cabin-pill.active {
  background: #164e33;
  color: #ffffff;
  border-color: #164e33;
}

.search-field-inner input:focus,
.search-field-inner input:focus-visible,
.search-field-inner select:focus,
.search-field-inner select:focus-visible,
.search-field-inner button:focus,
.search-field-inner button:focus-visible {
  outline: none !important;
  outline-style: none !important;
  box-shadow: none !important;
  border: none !important;
}

.search-field-inner select {
  cursor: pointer;
  padding-right: 28px;
  border-radius: 8px;
  background-image:
    linear-gradient(45deg, transparent 50%, #4a4a4a 50%),
    linear-gradient(135deg, #4a4a4a 50%, transparent 50%);
  background-position:
    calc(100% - 15px) calc(50% + 1px),
    calc(100% - 10px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.search-field-inner select:focus {
  color: #0e1c29;
}

.search-field-inner .module-toggle-btn {
  cursor: pointer;
  border: 1px solid #d6e0ea;
  border-radius: 9px;
  min-height: 34px;
  padding: 6px 36px 6px 12px;
  background-color: #f5f9fd;
  background-image:
    linear-gradient(45deg, transparent 50%, #4a4a4a 50%),
    linear-gradient(135deg, #4a4a4a 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: #1a1a1a;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.search-field-inner .module-toggle-btn:hover {
  border-color: #7fa8cc;
  background-color: #eaf3e6;
}

.search-field-inner .module-toggle-btn:focus-visible {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(66, 97, 128, 0.16);
}

.search-field-inner .module-toggle-btn[aria-pressed="true"] {
  border-color: var(--color-accent);
  background-color: #dcefdc;
  color: var(--color-primary);
  font-weight: 700;
}

.search-field-inner input::placeholder {
  font-weight: 400;
  color: #8a8a8a;
}

.search-field-date .search-field-inner input {
  padding-right: 6px;
}

/* ---------- CAR SEARCH FORM COMPACT FIT (FIT PLACEHOLDERS) ---------- */
#search-form-cars {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  align-items: stretch;
}

#search-form-cars .search-field {
  padding: 8px 10px;
  gap: 8px;
  border-radius: 10px;
  min-width: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

#search-form-cars .search-field > i {
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.85;
}

#search-form-cars .search-field-inner {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

#search-form-cars .search-field-inner label {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  margin-bottom: 2px;
}

#search-form-cars .search-field-inner input,
#search-form-cars .search-field-inner select {
  font-size: 13.5px;
  font-weight: 700;
  color: #0e1c29;
  height: 20px;
  line-height: 20px;
  padding: 0;
  width: 100%;
  white-space: nowrap;
  overflow: visible;
}

#search-form-cars .search-field-inner input::placeholder {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  opacity: 1;
}

/* Sizing tailored so placeholders and values fit without any clipping */
#search-form-cars .sf-car-pickup {
  flex: 1.35 1 150px;
  min-width: 140px;
}

#search-form-cars .sf-car-dropoff {
  flex: 1.45 1 160px;
  min-width: 145px;
}

#search-form-cars .sf-car-date {
  flex: 1.15 1 130px;
  min-width: 122px;
}

#search-form-cars .sf-car-date input {
  letter-spacing: -0.2px;
}

#search-form-cars .sf-car-time {
  flex: 0.95 0 106px !important;
  min-width: 104px !important;
  max-width: 120px;
  position: relative;
  padding: 8px 8px !important;
  gap: 6px !important;
}

#search-form-cars .sf-car-time input {
  cursor: pointer;
  letter-spacing: -0.2px;
}

#search-form-cars .sf-car-age {
  flex: 0.95 1 108px;
  min-width: 102px;
}

#search-form-cars .sf-car-age select {
  cursor: pointer;
  padding-right: 18px !important;
  background-position: calc(100% - 10px) calc(50% + 1px), calc(100% - 6px) calc(50% + 1px) !important;
}


/* ---------- PREVENT SCROLL CHAINING TO MAIN PAGE ---------- */
body.modal-open {
  overflow: hidden !important;
  touch-action: none;
}

.modal,
.modal-overlay,
.regional-modal-overlay,
.regional-modal-panel,
.auth-modal,
.auth-modal-overlay,
.spatial-reservation-overlay,
.spatial-reservation-modal,
.fl-checkout-overlay,
.fl-checkout-modal,
.pdp-modal,
.drawer,
.drawer-content,
.trivoy-time-popover,
.ttp-col-list,
.air-datepicker,
.trivoy-datepicker,
.dropdown-menu,
.guests-dropdown,
.autocomplete-list,
.flight-autocomplete-list,
.regional-list {
  overscroll-behavior: contain !important;
  overscroll-behavior-y: contain !important;
}

.trivoy-time-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 200px;
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid #e0ebe2;
  box-shadow: 0 14px 34px rgba(14, 28, 41, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
  z-index: 9999;
  padding: 10px 12px;
  box-sizing: border-box;
  animation: ttpFadeIn 0.15s ease-out;
  user-select: none;
  overscroll-behavior: contain !important;
  overscroll-behavior-y: contain !important;
}

@keyframes ttpFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.ttp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
}

.ttp-title {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ttp-ampm-switch {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 6px;
  padding: 2px;
  gap: 2px;
}

.ttp-ampm-btn {
  border: none;
  background: transparent;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  color: #64748b;
  transition: all 0.15s ease;
}

.ttp-ampm-btn.active {
  background: #164e33;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(22, 78, 51, 0.2);
}

.ttp-columns {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  justify-content: center;
}

.ttp-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.ttp-col-label {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.ttp-col-list {
  width: 100%;
  height: 140px;
  overflow-y: auto;
  overscroll-behavior: contain !important;
  overscroll-behavior-y: contain !important;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px;
  box-sizing: border-box;
}

.ttp-col-list::-webkit-scrollbar {
  width: 4px;
}
.ttp-col-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.ttp-col-item {
  padding: 4px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  line-height: 1.3;
}

.ttp-col-item:hover {
  background: #e8f5ec;
  color: #164e33;
}

.ttp-col-item.active {
  background: #164e33;
  color: #ffffff;
  font-weight: 700;
}

.ttp-col-divider {
  font-size: 16px;
  font-weight: 700;
  color: #94a3b8;
  padding-top: 48px;
}

.ttp-footer {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ttp-selected-preview {
  font-size: 12px;
  font-weight: 700;
  color: #164e33;
}

.ttp-btn-done {
  border: none;
  background: #164e33;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ttp-btn-done:hover {
  background: #0e3724;
}


.btn-search {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(13, 44, 30, 0.28);
  transition: all 0.25s var(--ease);
  letter-spacing: 0.01em;
  margin: 8px auto 0 auto;
  width: auto;
  min-width: 170px;
  max-width: 240px;
}

.btn-search:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,44,30,0.35);
}

.btn-search:active {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 2px 10px rgba(13,44,30,0.2);
}


/* Guests dropdown */
.guests-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #e0ebe2;
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.10);
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.guests-dropdown.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Flight Dropdown Split 2-Column Layout */
.flight-dropdown-split {
  width: 520px;
  max-width: calc(100vw - 32px);
}

.fl-split-body {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.fl-split-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.fl-split-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(22, 78, 51, 0.04) 0%, rgba(22, 78, 51, 0.22) 30%, rgba(22, 78, 51, 0.22) 70%, rgba(22, 78, 51, 0.04) 100%);
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .flight-dropdown-split {
    width: 320px;
  }
  .fl-split-body {
    flex-direction: column;
    gap: 14px;
  }
  .fl-split-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(22, 78, 51, 0.04) 0%, rgba(22, 78, 51, 0.22) 30%, rgba(22, 78, 51, 0.22) 70%, rgba(22, 78, 51, 0.04) 100%);
  }
}

.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 15px;
  color: #4a4a4a;
}

.counter-row:last-of-type {
  border-bottom: none;
}

.counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  background: #fff;
  color: var(--color-accent);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.counter-btn:hover:not(:disabled) {
  background: #f0f4ef;
  transform: scale(1.05);
}

.counter-btn:disabled {
  border-color: #e7e7e7;
  color: #cfe3c9;
  cursor: not-allowed;
}

#adults-count,
#children-count,
#rooms-count {
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  color: #1a1a1a;
}

.btn-done {
  width: auto;
  min-width: 140px;
  max-width: 180px;
  margin: 14px auto 0 auto;
  display: block;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.22);
}

.btn-done:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 78, 51, 0.3);
}


/* ---------- MAIN LAYOUT ---------- */
.main {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ---------- Goggle Rewards ---------- */
.goggle-rewards {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 255, 0.96) 100%);
  border-radius: 18px;
  padding: 16px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1.5px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 10px 30px rgba(22, 78, 51, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
  flex-wrap: wrap;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-theme="dark"] .goggle-rewards {
  background: linear-gradient(135deg, rgba(16, 28, 21, 0.95) 0%, rgba(13, 35, 26, 0.98) 100%);
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.goggle-rewards:hover {
  border-color: #164e33;
  box-shadow: 0 14px 40px rgba(22, 78, 51, 0.18);
  transform: translateY(-3px);
}

.goggle-icon {
  background: linear-gradient(135deg, #164e33 0%, #0e3724 100%);
  color: #ffffff;
  border: none;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.goggle-rewards:hover .goggle-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(22, 78, 51, 0.45);
}

.goggle-text {
  flex: 1;
}

.goggle-text strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--ink-0, #111827);
  letter-spacing: -0.01em;
}

.goggle-text span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted-0, #4b5563);
}

.btn-goggle-cta {
  background: linear-gradient(135deg, #164e33 0%, #0e3724 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(22, 78, 51, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-goggle-cta:hover {
  background: linear-gradient(135deg, #0e3724 0%, #072216 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 78, 51, 0.42);
}


/* ---------- RESULTS HEADER ---------- */
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-0, rgba(0, 0, 0, 0.06));
}

.section-label {
  font-family: var(--font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--ink-0, #111827) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  display: inline-block !important;
}

.dest-highlight {
  color: #164e33 !important;
  font-weight: 800 !important;
}

body[data-theme="dark"] .dest-highlight {
  color: #34d399 !important;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted-0, #6b7280);
}

.sort-wrap select {
  border: 1.5px solid var(--line-1, rgba(0, 0, 0, 0.12));
  border-radius: 12px;
  padding: 9px 36px 9px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-0, #111827);
  background: var(--surface, #ffffff) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23164e33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.sort-wrap select:hover {
  border-color: #164e33;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.15);
}

.sort-wrap select:focus {
  border-color: #164e33;
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.2);
}

@media (max-width: 720px) {
  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sort-wrap {
    width: 100%;
    justify-content: space-between;
  }
}

/* ---------- FILTERS ---------- */
.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px 2px;
  margin-bottom: 20px;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  background: var(--surface, #ffffff);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-1, #374151);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-chip i {
  font-size: 14px;
}

body[data-theme="dark"] .filter-chip {
  background: var(--surface, #171d1a);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e5e7eb;
}

.filter-chip:hover {
  border-color: #164e33;
  color: #164e33;
  background: rgba(22, 78, 51, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 78, 51, 0.18);
}

.filter-chip.active {
  border: none;
  color: #ffffff;
  background: linear-gradient(135deg, #164e33 0%, #0e3724 100%);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(22, 78, 51, 0.35);
  transform: translateY(-1px);
}

.filter-chip.active:hover {
  background: linear-gradient(135deg, #0e3724 0%, #072216 100%);
  box-shadow: 0 8px 24px rgba(22, 78, 51, 0.45);
}

/* ---------- PRICE FILTER ---------- */
.price-filter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px 24px;
  background: var(--surface, #ffffff);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  font-size: 14px;
  color: var(--ink-0, #111827);
  flex-wrap: wrap;
  transition: border-color 0.25s ease;
}

body[data-theme="dark"] .price-filter {
  background: var(--surface, #171d1a);
  border-color: rgba(255, 255, 255, 0.12);
}

.price-filter label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-0, #111827);
  white-space: nowrap;
}

.price-filter strong {
  color: #164e33;
  font-weight: 800;
  font-size: 16px;
}

body[data-theme="dark"] .price-filter strong {
  color: #34d399;
}

.price-filter input[type="range"] {
  flex: 1;
  max-width: 280px;
  accent-color: #164e33;
  cursor: pointer;
}

/* ---------- LOADING / ERROR ---------- */
.loading {
  text-align: center;
  padding: 64px 16px;
  color: #6b6b6b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3.5px solid #e7e7e7;
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-banner {
  background: #f5f5f5;
  border: 1px solid #f3e5c8;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #614a1a;
}

.error-banner i {
  font-size: 22px;
  color: #af892f;
}

/* ---------- 2-COLUMN RESULTS LAYOUT CONTAINER ---------- */
.results-layout-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}

@media (max-width: 992px) {
  .results-layout-container {
    grid-template-columns: 1fr;
  }
  
  .sidebar-filters {
    display: none; /* Collapsible on tablet/mobile */
  }
}

/* ---------- LEFT SIDEBAR FILTERS ---------- */
/* ---------- LEFT SIDEBAR FILTERS PREMIUM UI ---------- */
.sidebar-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-box {
  background: var(--surface, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body[data-theme="dark"] .sidebar-box {
  background: var(--surface, #171d1a);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.sidebar-box:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sidebar-box h3,
.sidebar-box h4 {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-0, #111827);
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

body[data-theme="dark"] .sidebar-box h3,
body[data-theme="dark"] .sidebar-box h4 {
  color: var(--ink-0, #f3f4f6);
}

.sidebar-box h3:hover .filter-toggle-icon,
.sidebar-box h4:hover .filter-toggle-icon {
  color: #164e33;
}

.sidebar-box-content {
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-top 0.3s ease, padding 0.3s ease;
  max-height: 1200px;
  opacity: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
}

.sidebar-box.collapsed .sidebar-box-content {
  max-height: 0 !important;
  opacity: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

.filter-toggle-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  color: var(--ink-3, #9ca3af);
}

.sidebar-box.collapsed .filter-toggle-icon {
  transform: rotate(-180deg);
}

.sidebar-filters .sidebar-box.filter-card-hidden {
  display: none !important;
}

.sidebar-filters.all-filters-expanded .sidebar-box.filter-card-hidden {
  display: flex !important;
}

.btn-show-more-filters {
  background: var(--surface, #ffffff);
  border: 1px solid rgba(13, 44, 30, 0.15);
  border-radius: 12px;
  padding: 12px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-primary, #0d2c1e);
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  width: 100%;
  margin-top: 4px;
}

body[data-theme="dark"] .btn-show-more-filters {
  background: var(--surface, #171d1a);
  border-color: rgba(255, 255, 255, 0.15);
  color: #86efac;
}

.btn-show-more-filters:hover {
  border-color: var(--color-primary, #0d2c1e);
  background: var(--color-primary, #0d2c1e);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13, 44, 30, 0.15);
}

body[data-theme="dark"] .btn-show-more-filters:hover {
  border-color: #164e33;
  background: #164e33;
  color: #ffffff;
}

.smart-filters-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: none !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

body[data-theme="dark"] .smart-filters-box {
  background: linear-gradient(135deg, #0d2136 0%, #1e3a8a 100%);
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.smart-filters-box label {
  font-size: 13.5px;
  font-weight: 800;
  color: #164e33;
  display: flex;
  align-items: center;
  gap: 6px;
}

body[data-theme="dark"] .smart-filters-box label {
  color: #34d399;
}

.smart-filters-box textarea {
  width: 100%;
  border: 1px solid rgba(22, 78, 51, 0.25);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  resize: none;
  background: #ffffff;
  color: var(--ink-0, #111827);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-theme="dark"] .smart-filters-box textarea {
  background: #0f172a;
  color: #f3f4f6;
  border-color: rgba(52, 211, 153, 0.4);
}

.smart-filters-box textarea:focus {
  border-color: #164e33;
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.2);
}

.btn-sidebar-prompt {
  width: 100%;
  background: linear-gradient(135deg, #164e33 0%, #072216 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-sidebar-prompt:hover {
  background: linear-gradient(135deg, #072216 0%, #03120b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 34, 22, 0.45);
}

.filter-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1, #374151);
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
}

.filter-check:hover {
  background: rgba(22, 78, 51, 0.08);
  color: #164e33;
}

body[data-theme="dark"] .filter-check:hover {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.filter-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  accent-color: #164e33;
  cursor: pointer;
}

.filter-check span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-0, #6b7280);
  background: rgba(0, 0, 0, 0.04);
  padding: 2px 8px;
  border-radius: 999px;
}

body[data-theme="dark"] .filter-check span {
  background: rgba(255, 255, 255, 0.08);
  color: #9ca3af;
}

.counter-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-1, #374151);
}

.counter-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-counter,
.btn-counter-plus,
.btn-counter-minus {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(13, 44, 30, 0.18) !important;
  background: rgba(13, 44, 30, 0.05) !important;
  color: var(--color-primary, #0d2c1e) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

.counter-value,
#bedrooms-val,
#bathrooms-val {
  font-size: 15px !important;
  font-weight: 700 !important;
  min-width: 18px !important;
  text-align: center !important;
  color: var(--ink-0, #111827) !important;
  margin: 0 4px !important;
  flex-shrink: 0 !important;
  user-select: none !important;
}

body[data-theme="dark"] .counter-value,
body[data-theme="dark"] #bedrooms-val,
body[data-theme="dark"] #bathrooms-val {
  color: var(--ink-0, #f3f4f6) !important;
}

body[data-theme="dark"] .btn-counter,
body[data-theme="dark"] .btn-counter-plus,
body[data-theme="dark"] .btn-counter-minus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #86efac;
}

.btn-counter:hover,
.btn-counter-plus:hover,
.btn-counter-minus:hover {
  background: var(--color-primary, #0d2c1e);
  color: #ffffff;
  border-color: var(--color-primary, #0d2c1e);
  transform: scale(1.1);
}

body[data-theme="dark"] .btn-counter:hover,
body[data-theme="dark"] .btn-counter-plus:hover,
body[data-theme="dark"] .btn-counter-minus:hover {
  background: #164e33;
  border-color: #164e33;
  color: #ffffff;
}

.show-more-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #164e33;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  transition: color 0.15s ease;
}

.show-more-link:hover {
  text-decoration: underline;
  color: #0e3724;
}

body[data-theme="dark"] .show-more-link {
  color: #34d399;
}

/* ---------- BOOKING.COM HOTEL CARD CSS GRID LAYOUT ---------- */
.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hotel-card {
  background: var(--surface, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  align-items: stretch;
  min-height: 220px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  cursor: pointer;
}

body[data-theme="dark"] .hotel-card {
  background: var(--surface, #171d1a);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
}

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

.hotel-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: #f3f4f6;
  overflow: hidden;
}

@media (max-width: 992px) {
  .hotel-card-media {
    height: 220px;
  }
}

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

.hotel-card:hover .hotel-card-img {
  transform: scale(1.06);
}

.btn-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-card-wishlist:hover {
  transform: scale(1.1);
  color: #ef4444;
}

.btn-card-wishlist.saved {
  color: #ef4444;
}

.btn-card-wishlist.saved i {
  color: #ef4444;
}

.hotel-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 0;
  overflow: hidden;
}

body[data-theme="dark"] .hotel-card-body {
  border-right-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
  .hotel-card-body {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

.hotel-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hotel-card-title {
  font-family: var(--font-sans, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #164e33 !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  transition: color 0.2s ease;
}

body[data-theme="dark"] .hotel-card-title {
  color: #34d399 !important;
}

.hotel-card-title:hover {
  text-decoration: underline;
  color: #0e3724 !important;
}

.hotel-card-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hotel-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: -1px;
}

.badge-thumbs {
  background: #feefc3;
  color: #b45309;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.badge-featured {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink-1, #374151);
}

.hotel-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.score-box {
  background: #164e33;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px 6px 6px 0;
  line-height: 1;
}

body[data-theme="dark"] .score-box {
  background: #0d2c1e;
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
}

.score-text-wrap {
  font-size: 13px;
  color: var(--ink-0, #111827);
  display: inline-flex;
  gap: 4px;
}

.score-quality {
  font-weight: 700;
}

.score-count {
  color: var(--muted-0, #6b7280);
}

.comfort-link,
.comfort-link a {
  font-size: 12px;
  color: #164e33;
  font-weight: 600;
  text-decoration: none;
}

body[data-theme="dark"] .comfort-link,
body[data-theme="dark"] .comfort-link a {
  color: #34d399;
}

.hotel-location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-1, #374151);
  flex-wrap: wrap;
}

.hotel-location-row i {
  color: #164e33;
  font-size: 14px;
}

.map-link-inline {
  color: #164e33;
  font-weight: 700;
  text-decoration: underline;
}

body[data-theme="dark"] .map-link-inline {
  color: #34d399;
}

.subway-tag {
  color: var(--muted-0, #6b7280);
}

.sustainability-tag {
  font-size: 12px;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.deal-badge-green {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #008009;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}

.room-spec-block {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.room-spec-title {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-0, #111827);
}

.room-spec-details {
  font-size: 12px;
  color: var(--muted-0, #6b7280);
  line-height: 1.4;
}

/* Right Price & Action Column */
.hotel-card-price-side {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  background: rgba(0, 0, 0, 0.015);
}

body[data-theme="dark"] .hotel-card-price-side {
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 992px) {
  .hotel-card-price-side {
    align-items: stretch;
    text-align: left;
    gap: 12px;
  }
}

.urgency-tag {
  font-size: 11.5px;
  font-weight: 800;
  color: #cc0000;
}

.card-price-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
}

@media (max-width: 992px) {
  .card-price-footer {
    align-items: flex-start;
    text-align: left;
  }
}

.stay-nights-info {
  font-size: 12px;
  color: var(--muted-0, #6b7280);
}

.price-numbers-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.orig-price {
  font-size: 13px;
  color: #dc2626;
  text-decoration: line-through;
  font-weight: 600;
}

.cur-price {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink-0, #111827);
}

.cur-price i {
  font-size: 13px;
  color: var(--muted-0, #9ca3af);
}

.taxes-info {
  font-size: 11.5px;
  color: var(--muted-0, #6b7280);
}

.btn-hotel-see-availability {
  width: 100%;
  background: linear-gradient(135deg, #164e33 0%, #0e3724 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(22, 78, 51, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hotel-see-availability:hover {
  background: linear-gradient(135deg, #0e3724 0%, #072216 100%);
  box-shadow: 0 6px 18px rgba(22, 78, 51, 0.38);
  transform: translateY(-1px);
}

/* ---------- SPECIALIZED SERVICE CARD ELEMENTS ---------- */
.flight-route-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 6px 0;
  padding: 8px 12px;
  background: rgba(0, 108, 228, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(0, 108, 228, 0.12);
}

body[data-theme="dark"] .flight-route-info {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.route-city-block {
  display: flex;
  flex-direction: column;
}

.route-time {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-0, #111827);
  line-height: 1;
}

.route-code {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-0, #6b7280);
  letter-spacing: 0.04em;
}

.route-flight-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.flight-dur {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-0, #6b7280);
}

.line-bar {
  width: 100%;
  height: 2px;
  background: #164e33;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-bar i {
  background: #ffffff;
  color: #164e33;
  font-size: 12px;
  padding: 0 4px;
}

body[data-theme="dark"] .line-bar i {
  background: #171d1a;
}

.flight-stop-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #059669;
}

.flight-stop-label.stop-nonstop {
  color: #059669;
}

.flight-stop-label.stop-direct {
  color: #d97706;
  background: #fef3c7;
  padding: 1px 5px;
  border-radius: 4px;
}

.flight-stop-label.stop-layover {
  color: #334155;
}

.flight-stop-label.stop-stopover {
  color: #6d28d9;
  background: #ede9fe;
  padding: 1px 5px;
  border-radius: 4px;
}

/* Flight Itinerary Hierarchy (Slice -> Segment -> Stop) */
.flight-itinerary-hierarchy {
  margin-top: 10px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  font-size: 12px;
}

.itin-slice-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.itin-segment-card {
  padding: 8px 10px;
  background: #f8fafc;
  border-radius: 6px;
  border-left: 3px solid #164e33;
  margin-bottom: 6px;
}

.itin-segment-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.itin-touchdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}

.itin-layover-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  margin: 5px 0;
  font-size: 11px;
  color: #475569;
  background: #f1f5f9;
  border-radius: 4px;
}

.itin-stopover-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  margin: 5px 0;
  font-size: 11px;
  color: #5b21b6;
  background: #ede9fe;
  border-radius: 4px;
  font-weight: 600;
}

/* Flight Conditions & Flexibility Panel */
.flight-conditions-panel {
  margin-top: 10px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
}

.flight-conditions-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.flight-conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 640px) {
  .flight-conditions-grid {
    grid-template-columns: 1fr;
  }
}

.condition-box {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.condition-box.cond-free {
  border-color: #a7f3d0;
  background: #ecfdf5;
}
.condition-box.cond-free .cond-status {
  color: #065f46;
  font-weight: 600;
}

.condition-box.cond-penalty {
  border-color: #fde68a;
  background: #fffbeb;
}
.condition-box.cond-penalty .cond-status {
  color: #92400e;
  font-weight: 600;
}

.condition-box.cond-restricted {
  border-color: #e2e8f0;
  background: #f8fafc;
}
.condition-box.cond-restricted .cond-status {
  color: #475569;
  font-weight: 600;
}

.cond-box-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #1e293b;
  margin-bottom: 3px;
}

.cond-status {
  font-size: 11.5px;
  margin-bottom: 2px;
}

.cond-desc {
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.3;
}

.slice-conditions-note {
  margin-top: 6px;
  padding: 6px 8px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 11px;
  color: #334155;
  line-height: 1.3;
}

/* Extra Bags & Ancillaries in Checkout */
.fl-ancillaries-panel {
  margin-top: 14px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 12px 14px;
}

.fl-ancillaries-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.fl-ancillaries-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  margin-bottom: 6px;
}

.fl-ancillaries-desc {
  font-size: 12px;
  color: #0f172a;
}

.fl-ancillaries-price {
  font-size: 11.5px;
  color: #059669;
  font-weight: 600;
}

.fl-ancillaries-qty-select {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
}

/* ==========================================================================
   Interactive Aircraft Seat Map
   ========================================================================== */
.fl-seatmap-panel {
  margin-top: 14px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 14px;
}

.fl-seatmap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.fl-seatmap-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.fl-seatmap-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 9999px;
  background: #ecfdf5;
  color: #059669;
  font-weight: 600;
  border: 1px solid #a7f3d0;
}

.fl-seatmap-toggle-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.fl-seatmap-toggle-btn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.fl-seatmap-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  font-size: 11px;
  color: #475569;
  margin-bottom: 12px;
  align-items: center;
}

.fl-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.fl-legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}

.fl-legend-swatch.swatch-avail {
  background: #ffffff;
  border: 1.5px solid #3b82f6;
}

.fl-legend-swatch.swatch-selected {
  background: #059669;
  border: 1.5px solid #047857;
}

.fl-legend-swatch.swatch-occupied {
  background: #e2e8f0;
  border: 1.5px solid #cbd5e1;
}

.fl-legend-swatch.swatch-exit {
  background: #fef3c7;
  border: 1.5px solid #f59e0b;
}

/* Aircraft Fuselage */
.fl-fuselage-container {
  max-height: 380px;
  overflow-y: auto;
  overflow-x: auto;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  padding: 16px 12px;
  position: relative;
}

.fl-fuselage {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.fl-fuselage-nose {
  width: 70%;
  padding: 8px;
  background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 100%);
  border-radius: 40px 40px 8px 8px;
  border: 2px solid #cbd5e1;
  border-bottom: none;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fl-fuselage-tail {
  width: 60%;
  padding: 6px;
  background: linear-gradient(180deg, #f1f5f9 0%, #cbd5e1 100%);
  border-radius: 6px 6px 30px 30px;
  border: 2px solid #cbd5e1;
  border-top: none;
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  margin-top: 10px;
}

.fl-seat-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.fl-row-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fl-wing-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #64748b;
  font-weight: 700;
  letter-spacing: -0.5px;
  pointer-events: none;
}

.fl-wing-indicator.left-wing {
  left: -28px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.fl-wing-indicator.right-wing {
  right: -28px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.fl-seat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.fl-row-num {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  width: 26px;
  text-align: center;
  font-family: monospace;
}

.fl-seat-section {
  display: flex;
  gap: 4px;
}

.fl-aisle-gap {
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 10px;
}

/* Seats */
.fl-seat-btn {
  width: 34px;
  height: 38px;
  border-radius: 6px 6px 4px 4px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 2px 1px;
  transition: all 0.15s ease;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.fl-seat-btn.available:hover {
  transform: translateY(-2px);
  border-color: #2563eb;
  box-shadow: 0 3px 6px rgba(37, 99, 235, 0.15);
  background: #eff6ff;
}

.fl-seat-btn.selected {
  background: #059669 !important;
  border-color: #047857 !important;
  color: #ffffff !important;
  transform: scale(1.06);
  box-shadow: 0 4px 8px rgba(5, 150, 105, 0.3);
  z-index: 2;
}

.fl-seat-btn.occupied {
  background: #f1f5f9;
  border-color: #e2e8f0;
  cursor: not-allowed;
  opacity: 0.55;
}

.fl-seat-btn.occupied .fl-seat-num {
  color: #94a3b8;
}

.fl-seat-num {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
}

.fl-seat-btn.selected .fl-seat-num {
  color: #ffffff;
}

.fl-seat-fee {
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  margin-top: 1px;
  color: #059669;
}

.fl-seat-btn.selected .fl-seat-fee {
  color: #a7f3d0;
}

/* Facility Elements */
.fl-facility-elem {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 28px;
}

.fl-elem-lavatory {
  background: #f0f9ff;
  border: 1px dashed #7dd3fc;
  color: #0284c7;
}

.fl-elem-galley {
  background: #fefce8;
  border: 1px dashed #fde047;
  color: #ca8a04;
}

.fl-elem-exit {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 100%;
  padding: 3px 6px;
  text-align: center;
}

.fl-selected-seat-banner {
  margin-top: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.fl-selected-seat-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #065f46;
}

.fl-seat-disclosures-alert {
  margin-top: 6px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Price Transparency & Payment Surcharges
   ========================================================================== */
.fl-payment-selection-panel {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
}

.fl-payment-panel-header {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.fl-order-type-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.fl-order-type-btn {
  padding: 8px 10px;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  transition: all 0.15s ease;
}

.fl-order-type-btn.active {
  border-color: #2563eb;
  background: #eff6ff;
}

.fl-order-type-title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fl-order-type-btn.active .fl-order-type-title {
  color: #1d4ed8;
}

.fl-order-type-desc {
  font-size: 10.5px;
  color: #64748b;
  text-align: left;
}

.fl-card-surcharge-selector {
  margin-top: 8px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 8px 10px;
}

.fl-payment-methods-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.fl-pay-method-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  color: #334155;
  transition: all 0.15s;
}

.fl-pay-method-opt:hover {
  border-color: #94a3b8;
}

.fl-pay-method-opt input[type="radio"] {
  margin-right: 8px;
}

.fl-pay-method-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fl-surcharge-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 1px 6px;
  border-radius: 4px;
}

.fl-surcharge-tag.warn {
  color: #b45309;
  background: #fef3c7;
}

/* Price Transparency Breakdown */
.price-transparency-card {
  margin-top: 14px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 14px;
}

.price-transparency-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}

.price-transparency-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-transparency-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #475569;
}

.price-transparency-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-transparency-row.total-row {
  border-top: 1.5px dashed #cbd5e1;
  margin-top: 6px;
  padding-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.surcharge-notice-pill {
  font-size: 10.5px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 4px;
  padding: 4px 8px;
  margin-top: 6px;
  line-height: 1.3;
}

/* ==========================================================================
   Order Cancellations & Airline Credits
   ========================================================================== */
.cancellation-quote-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.cancellation-flight-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
}

.cancellation-refund-card {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cancellation-refund-header {
  font-size: 12px;
  font-weight: 600;
  color: #1e40af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cancellation-refund-val {
  font-size: 26px;
  font-weight: 800;
  color: #1e3a8a;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.cancellation-refund-dest {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dbeafe;
  color: #1e40af;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  width: fit-content;
}

.cancellation-fee-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: #475569;
}

.cancellation-expiry-pill {
  font-size: 11px;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cancellation-actions-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.btn-confirm-cancel {
  flex: 1;
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s;
}

.btn-confirm-cancel:hover {
  background: #b91c1c;
}

.btn-keep-booking {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-keep-booking:hover {
  background: #e2e8f0;
}

/* Airline Credits Voucher Card */
.airline-credit-box {
  background: #fdf4ff;
  border: 1.5px dashed #f0abfc;
  border-radius: 10px;
  padding: 14px;
  margin-top: 10px;
}

.airline-credit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #86198f;
  margin-bottom: 8px;
}

.airline-credit-code-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #f5d0fe;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: monospace;
  font-size: 15px;
  font-weight: 700;
  color: #701a75;
  letter-spacing: 1.5px;
}

.btn-copy-credit-code {
  background: #fae8ff;
  border: 1px solid #e879f9;
  color: #86198f;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Order Changes
   ========================================================================== */
.order-change-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.order-change-header-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
}

.change-slice-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.change-slice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.15s;
}

.change-slice-item.selected {
  border-color: #2563eb;
  background: #eff6ff;
}

.change-offers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  overflow-y: auto;
  padding: 2px;
}

.change-offer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 14px;
  transition: all 0.15s;
}

.change-offer-card:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
}

.change-offer-itinerary {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.change-offer-times {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.change-offer-carrier {
  font-size: 11.5px;
  color: #64748b;
}

.change-offer-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.change-diff-price {
  font-size: 14px;
  font-weight: 800;
  color: #059669;
}

.change-diff-price.extra {
  color: #1e293b;
}

.change-penalty-note {
  font-size: 10px;
  color: #64748b;
}

.btn-select-change-offer {
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-select-change-offer:hover {
  background: #2563eb;
}

.change-confirmation-card {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   Post-Booking Baggage Services
   ========================================================================== */
.post-booking-bags-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.post-booking-bags-header {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
}

.post-booking-bag-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding: 2px;
}

.post-booking-bag-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.15s ease;
}

.post-booking-bag-card:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.post-booking-bag-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-booking-bag-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 22px;
  flex-shrink: 0;
}

.post-booking-bag-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.post-booking-bag-sub {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 2px;
}

.post-booking-bag-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.post-booking-bag-price {
  font-size: 13px;
  font-weight: 700;
  color: #059669;
}

.bag-qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #f8fafc;
  overflow: hidden;
}

.btn-bag-qty {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  transition: background 0.15s;
}

.btn-bag-qty:hover:not(:disabled) {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-bag-qty:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bag-qty-display {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.post-booking-bag-summary {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
}

.post-booking-bag-summary-row {
  display: flex;
  justify-content: space-between;
  color: #475569;
}

.post-booking-bag-summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed #cbd5e1;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.post-booking-bags-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

/* ==========================================================================
   Airline Credits
   ========================================================================== */
.badge-airline-credit {
  background: rgba(168, 85, 247, 0.12);
  color: #7e22ce;
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.airline-credits-checkout-panel {
  background: #faf5ff;
  border: 1.5px solid #e9d5ff;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.airline-credit-card-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #d8b4fe;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.15s;
}

.airline-credit-card-opt:hover {
  border-color: #9333ea;
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.1);
}

.airline-credit-card-opt.selected {
  background: #f3e8ff;
  border-color: #7e22ce;
}

.credit-wallet-ticket {
  background: linear-gradient(135deg, #581c87 0%, #3b0764 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(88, 28, 135, 0.25);
  margin-bottom: 12px;
}

.credit-wallet-ticket::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.credit-ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.credit-ticket-amount {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #f5d0fe;
}

.credit-ticket-code {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.credit-ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  opacity: 0.9;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  margin-top: 6px;
}

/* Stays Integration Styles */
.badge-stays {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 4px rgba(79, 70, 229, 0.25);
}

.stays-rates-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.stays-room-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stays-room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.stays-room-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.stays-room-beds {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stays-rate-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.stays-rate-card:hover {
  border-color: #6366f1;
  background: #f5f3ff;
}

.stays-rate-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stays-board-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}

.stays-board-breakfast {
  background: #fef3c7;
  color: #92400e;
}

.stays-board-roomonly {
  background: #f1f5f9;
  color: #475569;
}

.stays-cancel-policy {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stays-cancel-free {
  color: #059669;
  font-weight: 600;
}

.stays-cancel-nonref {
  color: #94a3b8;
}

.stays-rate-pricing {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.stays-rate-amount {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.stays-rate-taxes {
  font-size: 11px;
  color: #64748b;
}

.btn-stays-quote {
  background: #4f46e5;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-stays-quote:hover {
  background: #4338ca;
}

.stays-quote-badge {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #3730a3;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.key-collection-banner {
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px 0;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #065f46;
}

.key-collection-banner i {
  font-size: 24px;
  color: #059669;
  flex-shrink: 0;
  margin-top: 2px;
}

.key-collection-banner strong {
  display: block;
  font-size: 13.5px;
  color: #047857;
  margin-bottom: 4px;
}

.key-collection-banner p {
  margin: 0;
  font-size: 12.5px;
  color: #065f46;
  line-height: 1.5;
}

.flight-amenities-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-1, #374151);
  margin-top: 4px;
  flex-wrap: wrap;
}

.flight-amenities-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.flight-amenities-row i {
  color: #2563eb;
}

/* ---------- PROPERTY LISTING EMAIL FORM ---------- */
.property-listing-container {
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  width: 100%;
}

.property-listing-card {
  background: var(--surface, #ffffff);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body[data-theme="dark"] .property-listing-card {
  background: var(--surface, #171d1a);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.property-listing-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.listing-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 4px;
}

body[data-theme="dark"] .listing-icon-wrap {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.property-listing-header h2 {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-0, #111827);
  margin: 0;
  letter-spacing: -0.02em;
}

.property-listing-header p {
  font-size: 13.5px;
  color: var(--muted-0, #6b7280);
  margin: 0;
  line-height: 1.45;
}

.property-listing-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-single {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group-single label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-1, #374151);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group-single label i {
  color: #2563eb;
}

.listing-input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  color: var(--ink-0, #111827);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-theme="dark"] .listing-input {
  background: #0f172a;
  color: #f3f4f6;
  border-color: rgba(255, 255, 255, 0.15);
}

.listing-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-row-dual {
  display: flex;
  gap: 14px;
}

@media (max-width: 520px) {
  .form-row-dual {
    flex-direction: column;
  }
}

.btn-submit-listing {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit-listing:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.42);
  transform: translateY(-2px);
}

.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.benefit-item {
  font-size: 12.5px;
  font-weight: 600;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- GREEN SPATIAL SLIDES PAGINATION ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(30, 107, 71, 0.22) 0%, transparent 65%),
    radial-gradient(circle at 90% 80%, rgba(13, 44, 30, 0.18) 0%, transparent 65%),
    linear-gradient(135deg, rgba(235, 247, 240, 0.85) 0%, rgba(220, 240, 228, 0.80) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(22, 78, 51, 0.25);
  box-shadow: 
    0 14px 36px -4px rgba(13, 44, 30, 0.18),
    inset 0 1.5px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1.5px 1px rgba(22, 78, 51, 0.15);
  margin: 36px auto 60px auto;
  width: fit-content;
  max-width: 90vw;
  transition: all 0.3s ease;
}

body[data-theme="dark"] .pagination {
  background: 
    radial-gradient(circle at 10% 20%, rgba(30, 107, 71, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(13, 44, 30, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, rgba(16, 28, 22, 0.92) 0%, rgba(9, 18, 14, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 40px -4px rgba(0, 0, 0, 0.6);
}

.btn-page-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(22, 78, 51, 0.25);
  background: rgba(255, 255, 255, 0.7);
  color: #164e33;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

body[data-theme="dark"] .btn-page-arrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e0ece5;
}

.btn-page-arrow:hover:not(:disabled) {
  background: #164e33;
  color: #ffffff;
  border-color: #164e33;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.35);
}

.btn-page-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-pills {
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #164e33;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 750;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

body[data-theme="dark"] .page-num {
  color: #c0d8c8;
}

.page-num:hover:not(.active) {
  background: rgba(22, 78, 51, 0.18);
  color: #164e33;
}

.page-num.active {
  background: #164e33;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.4);
  transform: scale(1.08);
}

/* ---------- FOOTER ---------- */
.footer {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 68%, #f5f5f5 100%);
  color: #1a1a1a;
  padding: 34px 20px 44px;
  border-top: 1px solid #e7e7e7;
}

.footer-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

/* ============================================================
   CLASSIC PREMIUM FOOTER
   ============================================================ */
.footer.classic-footer {
  background: #071810;
  color: #e4ebe6;
  padding: 56px 0 36px;
  border-top: 3px solid var(--color-highlight);
  position: relative;
  overflow: hidden;
}

.footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 1. Newsletter Banner */
.classic-footer-newsletter {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-copy h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.newsletter-copy h3 i {
  color: var(--color-highlight);
}

.newsletter-copy p {
  font-size: 14px;
  color: #a8c0b2;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 480px;
  min-width: 280px;
}

.newsletter-form input {
  flex: 1;
  height: 48px;
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  outline: none !important;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-highlight);
}

.btn-newsletter-sub {
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--color-highlight);
  color: #071810;
  border: none;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-newsletter-sub:hover {
  background: #60a5fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* 2. Classic 5-Column Navigation Grid */
.classic-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.classic-col-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 8px;
}

.classic-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-highlight);
}

.classic-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.classic-footer-links a {
  color: #b0c4b6;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.classic-footer-links a:hover {
  color: var(--color-highlight);
  transform: translateX(3px);
  text-decoration: none;
}

.classic-footer-links a.footer-discovery-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #c9e4d4;
  font-weight: 500;
}

.classic-footer-links a.footer-discovery-link:hover {
  color: #34D399;
  transform: translateX(4px);
}

.classic-footer-links a.footer-discovery-link .footer-disc-arrow {
  font-size: 11px;
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.classic-footer-links a.footer-discovery-link:hover .footer-disc-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* 3. Regional Controls Bar */
.classic-footer-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  flex-wrap: wrap;
}

.classic-control-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.classic-control-group label {
  font-size: 13px;
  font-weight: 600;
  color: #a8c0b2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.classic-control-group select {
  height: 40px;
  border-radius: 10px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  outline: none !important;
}

.classic-control-group select option {
  background: #071810;
  color: #ffffff;
}

.classic-flags-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.classic-flags-label {
  font-size: 13px;
  font-weight: 600;
  color: #a8c0b2;
}

.footer-flag-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-flag-chip:hover,
.footer-flag-chip.active {
  background: var(--color-highlight);
  border-color: var(--color-highlight);
  color: #071810;
}

/* 4. Bottom Copyright & Trust Bar */
.classic-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.classic-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.classic-bottom-left .footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
}

.footer-logo-link .footer-logo-voy-blur {
  filter: blur(1.5px);
  opacity: 0.65;
  display: inline-block;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.footer-logo-link:hover .footer-logo-voy-blur {
  filter: blur(0px);
  opacity: 1;
}

.classic-bottom-left .footer-logo-img,
.footer-logo-img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1) !important;
}

#footer-copyright {
  font-size: 13px;
  color: #8aa494;
  margin-left: auto;
  text-align: right;
}

.classic-trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #a8c0b2;
  font-weight: 500;
}

.payment-icons-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: #b0c4b6;
}

.payment-icons-group i {
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.payment-icons-group i:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.trust-badge i {
  color: var(--color-highlight);
  font-size: 15px;
}

/* Responsive Classic Footer */
@media (max-width: 1024px) {
  .classic-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .classic-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .classic-footer-newsletter {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form {
    max-width: 100%;
    flex-direction: column;
  }
  .newsletter-form input,
  .btn-newsletter-sub {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .classic-footer-grid {
    grid-template-columns: 1fr;
  }
  .classic-footer-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .classic-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer-copyright {
    margin-left: 0;
    text-align: left;
  }
}

.footer-card:nth-child(1) {
  --footer-card-accent: var(--color-accent);
}

.footer-card:nth-child(2) {
  --footer-card-accent: var(--color-accent);
}

.footer-card:nth-child(3) {
  --footer-card-accent: #496683;
}

.footer-card:nth-child(4) {
  --footer-card-accent: #5a9fe0;
}

.footer-card:nth-child(5) {
  --footer-card-accent: #8a6f2f;
}

.footer-card:nth-child(6) {
  --footer-card-accent: var(--color-accent);
}

.footer-card:nth-child(7) {
  --footer-card-accent: #1a1a1a;
}

.footer-card-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 18px 18px 14px;
  background: transparent;
  border: 0;
  text-align: left;
  color: inherit;
}

.footer-card-toggle i {
  color: #4b5d78;
  font-size: 16px;
  transition: transform 0.2s ease;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.footer-card-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.footer-card-kicker {
  grid-column: 1 / 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-card-accent);
}

.footer-card-heading-wrap {
  display: grid;
  gap: 6px;
}

.footer-card-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.footer-card-title {
  display: block;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--footer-card-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.footer-card-summary {
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.5;
}

.footer-card-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  color: #6b6b6b;
  background: #f5f5f5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.footer-card-panel {
  padding: 0 18px 18px;
}

.footer-link-list {
  display: grid;
  gap: 6px;
}

.footer-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  border-radius: 12px;
  padding: 4px 10px;
  margin-left: -10px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease, text-decoration-color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: var(--color-accent);
  background: #f5f5f5;
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 2px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 12px 24px rgba(31, 54, 77, 0.05);
  display: grid;
  gap: 18px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 800;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1) !important;
}

#footer-copyright {
  margin: 0;
  color: #6b6b6b;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e7e7e7;
  background: #f5f5f5;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-icon-btn:hover,
.footer-icon-btn:focus-visible {
  transform: translateY(-2px);
  background: #f5f5f5;
  border-color: #cfcfcf;
}

.footer-store-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-chip-btn {
  border: 1px solid #e0e0e0;
  background: #f5f5f5;
  color: var(--color-accent);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-chip-btn:hover,
.footer-chip-btn:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.footer-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 16px;
  padding: 10px 14px;
  text-align: left;
  background: linear-gradient(180deg, #f5f5f5 0%, #f5f5f5 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.footer-store-badge i {
  font-size: 22px;
  color: #1a1a1a;
  flex-shrink: 0;
}

.footer-store-badge-copy {
  display: grid;
  gap: 1px;
}

.footer-store-badge-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.footer-store-badge-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-meta-card {
  border-radius: 18px;
  background: #f5f5f5;
  padding: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid #e7e7e7;
}

.footer-meta-card strong {
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-meta-card p {
  margin: 0;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.55;
}

.footer-payments-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-payments-icons i {
  font-size: 18px;
  color: var(--color-accent);
}

.footer-payments-icons span {
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 11px;
  color: #6b6b6b;
}

.footer-resource-page {
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  padding: 24px;
  box-shadow: 0 20px 34px rgba(24, 38, 51, 0.08);
  animation: footerPageEnter 0.24s ease;
}

.footer-resource-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-resource-breadcrumb {
  color: #6b6b6b;
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-resource-head h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(26px, 3vw, 34px);
  font-family: "Fraunces", Georgia, serif;
}

.footer-resource-head p {
  margin: 8px 0 0;
  color: #6b6b6b;
  max-width: 780px;
  line-height: 1.55;
}

.footer-resource-grid {
  display: grid;
  gap: 12px;
}

@keyframes footerPageEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

body[data-theme="dark"] .footer {
  background:
    linear-gradient(180deg, #1f1f1f 0%, #141414 100%);
}

body[data-theme="dark"] {
  --color-primary: #121f19;
  --color-primary-dark: #0a110d;
  --color-accent: var(--trivoy-accent, #1e5f43);
  --color-accent-dark: #164631;
  --color-highlight: #3b82f6;
  --color-highlight-dark: #2563eb;

  --bg-0: #0a0d0b;
  --bg-1: #101512;
  --surface: #171d1a;

  --ink-0: #f5f8f6;
  --ink-1: #e2e8e5;
  --muted-0: #8ba094;

  --line-0: #29332e;
  --line-1: #34423b;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.5);

  --header-bg: rgba(18, 31, 25, 0.8);
  --header-border: rgba(245, 248, 246, 0.12);

  background: var(--bg-0);
  color: var(--ink-0);
}

body[data-theme="dark"] .hero {
  background: linear-gradient(135deg, rgba(10, 17, 13, 0.9) 0%, rgba(5, 8, 6, 0.95) 100%), url('https://picsum.photos/seed/trivoy-hero/1600/900') no-repeat center center / cover;
  color: var(--ink-0);
}

body[data-theme="dark"] .card,
body[data-theme="dark"] .module-card,
body[data-theme="dark"] .footer-card {
  background: var(--surface);
  border-color: var(--line-0);
  color: var(--ink-0);
}

body[data-theme="dark"] .card-name,
body[data-theme="dark"] .footer-card-title,
body[data-theme="dark"] .footer-resource-head h3,
body[data-theme="dark"] .footer-resource-head p,
body[data-theme="dark"] .card-price-block .price {
  color: var(--ink-0);
}

body[data-theme="dark"] .footer-resource-page {
  background: var(--surface);
  border-color: var(--line-0);
}

body[data-theme="dark"] .modal {
  background: var(--surface);
  border-color: var(--line-0);
}

body[data-theme="dark"] .modal-header {
  background: var(--surface);
  border-bottom-color: var(--line-0);
}

body[data-theme="dark"] .modal-header h2 {
  color: var(--ink-0);
}

body[data-theme="dark"] .search-card,
body[data-theme="dark"] .price-filter,
body[data-theme="dark"] .filter-chip {
  background: var(--surface);
  border-color: var(--line-0);
  color: var(--ink-1);
}

body[data-theme="dark"] .autocomplete-list {
  background: var(--surface);
  border-color: var(--line-0);
}

body[data-theme="dark"] .autocomplete-option {
  color: var(--ink-0);
}

body[data-theme="dark"] .autocomplete-option:hover {
  background: var(--line-0);
  color: var(--color-highlight);
}

body[data-theme="dark"] .tab {
  color: rgba(245, 248, 246, 0.72);
}

body[data-theme="dark"] .tab:hover {
  color: var(--ink-0);
  background: rgba(245, 248, 246, 0.06);
}

body[data-theme="dark"] .tab.active {
  color: var(--ink-0);
}

body[data-theme="dark"] .logo {
  color: var(--ink-0);
}

body[data-theme="dark"] .logo-img {
  filter: brightness(0) invert(1);
}

body[data-theme="dark"] .btn-burger {
  color: var(--ink-0);
}

body[data-theme="dark"] .btn-header {
  color: var(--ink-0);
}

body[data-theme="dark"] .btn-header:hover {
  background: rgba(245, 248, 246, 0.08);
}

body[data-theme="dark"] .btn-header.primary {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

body[data-theme="dark"] .btn-header.primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

body[data-theme="dark"] .header-picker {
  border-color: rgba(245, 248, 246, 0.2);
  background: rgba(245, 248, 246, 0.05);
  color: var(--ink-0);
}

body[data-theme="dark"] .header-picker:hover {
  background: rgba(245, 248, 246, 0.1);
  border-color: rgba(245, 248, 246, 0.45);
}

body[data-theme="dark"] .header-picker i,
body[data-theme="dark"] .header-picker select {
  color: var(--ink-0);
}

body[data-theme="dark"] .country-trigger {
  border-color: rgba(245, 248, 246, 0.2);
  background: rgba(245, 248, 246, 0.05);
  color: var(--ink-0);
}

body[data-theme="dark"] .country-trigger:hover {
  background: rgba(245, 248, 246, 0.1);
  border-color: rgba(245, 248, 246, 0.45);
}

@media (max-width: 1240px) {
  .footer-directory-top {
    grid-template-columns: 1fr;
  }

  .footer-directory-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {

  .footer-directory-controls,
  .footer-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-directory-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 28px 14px 32px;
  }

  .footer-directory-top,
  .footer-bottom {
    padding: 18px;
  }

  .footer-directory-controls,
  .footer-bottom-grid,
  .footer-directory-nav {
    grid-template-columns: 1fr;
  }

  .footer-card {
    border-radius: 16px;
  }

  .footer-card-toggle {
    padding: 16px;
  }

  .footer-card-panel {
    padding: 0 16px 16px;
  }

  .footer-card-title-row {
    align-items: center;
  }
}



/* ---------- MODALS ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 26, 12, 0.42);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  border-radius: 28px;
  overflow-y: auto;
  padding-bottom: 32px;
  border: 1px solid rgba(224, 224, 224, 0.9);
  box-shadow: 0 32px 70px rgba(9, 19, 8, 0.24);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid #e7e7e7;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.modal-header h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: #1a1a1a;
}

.btn-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #6b6b6b;
  padding: 6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.btn-close:hover {
  background: #eaf3e6;
  color: var(--color-primary);
}

/* Hotel detail modal */
.modal-img-strip {
  display: flex;
  gap: 10px;
  height: 240px;
  padding: 0 24px;
  margin-top: 16px;
}

.modal-img-main {
  flex: 2;
  background: linear-gradient(160deg, #e7e7e7 0%, #f5f5f5 100%);
  border-radius: 18px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.modal-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-icon-hero i {
  font-size: 58px;
  color: var(--color-accent);
}

.modal-img-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.modal-img-side>div {
  flex: 1;
  background: #eeeeee;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 24px;
}

.modal-detail-sheet {
  display: grid;
  gap: 12px;
}

.detail-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.detail-row strong {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-row span {
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.55;
}

.modal-empty-copy {
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed #d0d0d0;
  color: #6b6b6b;
  background: #ffffff;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 24px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4a4a4a;
}

.amenity-item i {
  color: #274460;
  font-size: 18px;
}

.room-card {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.room-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(31, 54, 77, 0.06);
}

.room-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.room-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.room-price {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
}

.room-price small {
  font-size: 12px;
  font-weight: 400;
  color: #6b6b6b;
  display: block;
}

.btn-reserve {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-reserve:hover {
  background: var(--color-primary);
}

/* Auth modal & Full-page Glassmorphic Styling */
.auth-modal-panel,
.auth-page-panel {
  max-width: 480px;
  border-radius: var(--radius-lg);
  max-height: unset;
  margin: auto;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--header-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.auth-close-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 44, 30, 0.1);
}

.auth-close-center {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 44, 30, 0.08);
  border: 1px solid rgba(13, 44, 30, 0.15);
  font-size: 22px;
  line-height: 1;
  color: var(--color-primary);
  cursor: pointer;
  opacity: 0.9;
  transition: all 0.25s var(--ease);
}

.auth-close-center:hover {
  opacity: 1;
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.08);
}

body[data-theme="dark"] .auth-close-wrap {
  border-top-color: var(--line-0);
}

body[data-theme="dark"] .auth-close-center {
  background: rgba(245, 248, 246, 0.1);
  border-color: rgba(245, 248, 246, 0.15);
  color: var(--ink-0);
}

body[data-theme="dark"] .auth-close-center:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.auth-header-bg {
  background: linear-gradient(135deg, var(--color-primary) 0%, #164e33 100%);
  padding: 28px 28px 20px;
  color: #ffffff;
  position: relative;
}

.auth-header-bg h2 {
  font-size: 24px;
  font-weight: 850;
  color: var(--color-highlight);
  margin-bottom: 4px;
}

.auth-header-bg p {
  font-size: 13.5px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.auth-tabs {
  display: flex;
  background: rgba(13, 44, 30, 0.06);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(13, 44, 30, 0.12);
}

.auth-tab {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  border: none;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.auth-tab.active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.auth-field {
  margin-bottom: 16px;
}

.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-field input,
.auth-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(13, 44, 30, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-primary);
  font-size: 14.5px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.auth-field input:focus,
.auth-field select:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.15);
}

.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrap input {
  padding-right: 44px;
}

.btn-eye-toggle {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-eye-toggle:hover {
  color: var(--color-accent);
}

.social-auth-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.btn-social {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-primary);
  border: 1.5px solid rgba(13, 44, 30, 0.15);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.btn-social:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.auth-divider {
  text-align: center;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  margin: 20px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: rgba(13, 44, 30, 0.15);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .auth-form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LUXURY EDITORIAL AUTHENTICATION EXPERIENCE (SIGN UP & SIGN IN)
   Boutique Travel Concierge Aesthetic: Ivory • Forest Green • Charcoal
   ========================================================================== */
.auth-luxury-page {
  min-height: calc(100vh - 74px);
  width: 100%;
  background: #FAF8F5; /* Warm Luxury Ivory */
  display: flex;
  flex-direction: column;
}

.auth-luxury-container {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: calc(100vh - 74px);
  animation: luxuryFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Left Editorial Travel Experience Panel --- */
.auth-luxury-editorial {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 28, 18, 0.28) 0%, rgba(8, 28, 18, 0.45) 45%, rgba(6, 20, 13, 0.90) 100%),
              url('https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1600&q=88') center center/cover no-repeat;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
  border-right: 1px solid rgba(12, 46, 31, 0.08);
  box-sizing: border-box;
}

.auth-editorial-brand {
  display: flex;
  align-items: center;
}

.auth-editorial-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 38, 25, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 18px 7px 10px;
  border-radius: 999px;
  user-select: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.auth-editorial-pill img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.auth-editorial-pill span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
}

.auth-editorial-footer {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.auth-editorial-headline {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
}

.auth-editorial-subtext {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px;
}

.auth-editorial-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 22px;
}

.auth-editorial-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
  flex-wrap: wrap;
}

.auth-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-trust-item i {
  font-size: 17px;
  color: #34D399; /* Subtle warm emerald */
}

/* --- Right Private Registration Form Panel --- */
.auth-luxury-form-panel {
  background: #FAF8F5; /* Warm Luxury Ivory */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  box-sizing: border-box;
}

.auth-luxury-form-wrapper {
  max-width: 440px;
  width: 100%;
  box-sizing: border-box;
}

.auth-form-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #0C2E1F;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.auth-form-title-luxury {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.6px;
  color: #0C2E1F;
  margin: 0 0 10px;
}

.auth-form-subtitle-luxury {
  font-size: 14.5px;
  line-height: 1.55;
  color: #586B61;
  margin: 0 0 32px;
}

.auth-form-luxury {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-fields-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.auth-field-luxury {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.auth-field-luxury label {
  font-size: 13px;
  font-weight: 600;
  color: #163324;
  letter-spacing: 0.1px;
}

.auth-field-luxury input {
  height: 52px;
  border-radius: 8px;
  border: 1px solid #DCD6CC;
  background: #FFFFFF;
  padding: 0 16px;
  font-size: 14.5px;
  color: #0C2E1F;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.auth-field-luxury input::placeholder {
  color: #9AA8A0;
  font-size: 14px;
}

.auth-field-luxury input:focus {
  border-color: #0C2E1F;
  box-shadow: 0 0 0 3px rgba(12, 46, 31, 0.08);
  outline: none;
  background: #FFFFFF;
}

.auth-pass-wrap-luxury {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.auth-pass-wrap-luxury input {
  padding-right: 46px;
}

.auth-eye-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #7B8A81;
  font-size: 18px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease;
}

.auth-eye-btn:hover {
  color: #0C2E1F;
}

/* Compact Password Strength Meter */
.pass-strength-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 12px;
  color: #6A7B72;
}

.strength-bars-track {
  display: flex;
  gap: 4px;
  flex: 1;
  max-width: 120px;
}

.strength-bar-unit {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: #E5E0D8;
  transition: background 0.2s ease;
}

.pass-strength-meter.weak .strength-bar-unit:nth-child(1) { background: #EF4444; }
.pass-strength-meter.medium .strength-bar-unit:nth-child(1),
.pass-strength-meter.medium .strength-bar-unit:nth-child(2) { background: #F59E0B; }
.pass-strength-meter.strong .strength-bar-unit { background: #10B981; }

.auth-options-luxury {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-top: -4px;
}

.auth-remember-luxury {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4A5D52;
  cursor: pointer;
  font-weight: 500;
  user-select: none;
}

.auth-forgot-luxury {
  background: none;
  border: none;
  color: #0C2E1F;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-forgot-luxury:hover {
  color: #164e33;
}

/* Primary Luxury Submit Button */
.btn-luxury-submit {
  width: 100%;
  height: 52px;
  border-radius: 8px;
  background: #0C2E1F;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(12, 46, 31, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 4px;
}

.btn-luxury-submit:hover:not(:disabled) {
  background: #082115;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(12, 46, 31, 0.18);
}

.btn-luxury-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-luxury-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.btn-luxury-submit .spinner-luxury {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spinAuth 0.7s linear infinite;
  display: inline-block;
}

@keyframes spinAuth {
  to { transform: rotate(360deg); }
}

/* Luxury Divider */
.auth-luxury-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #8C9C92;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 12px 0;
  gap: 16px;
}

.auth-luxury-divider::before,
.auth-luxury-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E5E0D8;
}

/* Social Buttons Grid */
.auth-social-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-social-luxury {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #DCD6CC;
  background: #FFFFFF;
  color: #163324;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.15s ease;
}

.btn-social-luxury:hover {
  background: #F5F2EC;
  border-color: #B8ADA0;
  transform: translateY(-1px);
}

.btn-social-luxury:active {
  transform: translateY(0);
}

/* Legal Microcopy */
.auth-legal-microcopy {
  font-size: 12px;
  line-height: 1.55;
  color: #7B8A81;
  text-align: center;
  margin-top: 18px;
}

.auth-legal-microcopy a {
  color: #0C2E1F;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-legal-microcopy a:hover {
  color: #164e33;
}

/* Switch Auth Link */
.auth-switch-luxury {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #586B61;
}

.btn-switch-luxury {
  background: none;
  border: none;
  font-weight: 750;
  color: #0C2E1F;
  cursor: pointer;
  padding: 0 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
  font-size: 14px;
}

.btn-switch-luxury:hover {
  color: #164e33;
}

/* Responsive Rules for Luxury Auth Layout */
@media (max-width: 1080px) {
  .auth-luxury-editorial {
    padding: 44px 36px;
  }
  .auth-luxury-form-panel {
    padding: 44px 36px;
  }
  .auth-form-title-luxury {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .auth-luxury-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .auth-luxury-editorial {
    padding: 36px 28px;
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid rgba(12, 46, 31, 0.08);
  }
  .auth-editorial-subtext,
  .auth-editorial-divider,
  .auth-editorial-trust {
    display: none;
  }
  .auth-editorial-headline {
    font-size: 28px;
    margin: 0;
  }
  .auth-luxury-form-panel {
    padding: 40px 24px 60px;
  }
}

@media (max-width: 520px) {
  .auth-split-row {
    grid-template-columns: 1fr;
  }
  .auth-social-grid-luxury {
    grid-template-columns: 1fr;
  }
  .auth-luxury-form-wrapper {
    max-width: 100%;
  }
  .auth-form-title-luxury {
    font-size: 30px;
  }
}

/* Dark mode overrides for auth card */
body[data-theme="dark"] .auth-tabs {
  background: rgba(245, 248, 246, 0.05);
  border-color: rgba(245, 248, 246, 0.12);
}

body[data-theme="dark"] .auth-tab {
  color: var(--ink-0);
}

body[data-theme="dark"] .auth-tab.active {
  background: var(--color-accent);
  color: #ffffff;
}

body[data-theme="dark"] .auth-field label {
  color: var(--ink-0);
}

body[data-theme="dark"] .auth-field input,
body[data-theme="dark"] .auth-field select {
  background: rgba(23, 29, 26, 0.8);
  color: var(--ink-0);
  border-color: var(--line-0);
}

body[data-theme="dark"] .btn-eye-toggle {
  color: var(--ink-0);
}

body[data-theme="dark"] .btn-social {
  background: rgba(23, 29, 26, 0.8);
  color: var(--ink-0);
  border-color: var(--line-0);
}

body[data-theme="dark"] .btn-social:hover {
  background: var(--surface);
  border-color: var(--line-1);
}

body[data-theme="dark"] .auth-divider {
  color: var(--muted-0);
}

body[data-theme="dark"] .auth-divider::before,
body[data-theme="dark"] .auth-divider::after {
  background: var(--line-0);
}

body[data-theme="dark"] .btn-auth {
  background: var(--color-accent);
  color: #ffffff;
}

body[data-theme="dark"] .btn-auth:hover {
  background: var(--color-accent-dark);
}

.auth-divider {
  text-align: center;
  color: #8a8a8a;
  font-size: 13px;
  margin: 18px 0;
  position: relative;
}

.btn-google {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #4a4a4a;
  border: 1.5px solid #cfcfcf;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}

.btn-google:hover {
  background: #f5f5f5;
  border-color: #cfcfcf;
}

/* Map modal */
.map-modal-panel {
  max-width: 960px;
  border-radius: 16px;
  margin: auto;
}

/* ---------- PREMIUM GLASSY TOAST (TOP RIGHT) ---------- */
.toast-host,
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}

.toast {
  pointer-events: auto;
  position: relative;
  background: rgba(10, 32, 22, 0.82);
  color: #ffffff;
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 8px 20px rgba(16, 185, 129, 0.14);
  padding: 13px 20px;
  border-radius: 16px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 440px;
  word-break: break-word;
  animation: toastSlideInTopRight 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.hide {
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  pointer-events: none;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.toast-icon {
  color: #34d399;
  font-size: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.5));
}

@keyframes toastSlideInTopRight {
  from {
    opacity: 0;
    transform: translateX(45px) translateY(-10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@media (max-width: 576px) {
  .toast-host,
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    align-items: stretch;
    max-width: 100%;
  }
  .toast {
    min-width: 0;
    max-width: 100%;
  }
}


/* Hide Google Translate top bar frame banner */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Hide translation utility tooltips on text hover */
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 680px) {
  .hero h1 {
    font-size: 26px;
  }

  .search-box {
    flex-direction: column;
    margin-top: -16px;
  }

  .search-field {
    min-width: unset;
    width: 100%;
  }

  .btn-search {
    width: auto;
    min-width: 170px;
    max-width: 240px;
    margin: 8px auto 0 auto;
    justify-content: center;
    padding: 12px 24px;
  }

  .card-img-wrap {
    width: 120px;
    min-height: 140px;
  }

  .card-price-block .price {
    font-size: 22px;
  }

  .modal-img-strip {
    height: 160px;
    padding: 0 16px;
  }

  .tabs {
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 16px;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .card {
    flex-direction: column;
  }

  .card-img-wrap {
    width: 100%;
    height: 200px;
  }

  .card-top {
    flex-direction: column;
    gap: 8px;
  }

  .card-price-block {
    text-align: left;
    width: 100%;
    margin-top: 12px;
  }
}

/* ============================================================
Refinement layer — typography, buttons, cards, footer polish
============================================================ */

.header-picker,
.country-trigger {
  background: rgba(255, 255, 255, 0.08);
}

.hero-search-card {
  border-radius: 22px;
}

.search-box {
  border-radius: 16px;
}

.search-field {
  border-radius: 12px;
}

.search-field:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 194, 0.14);
}

.btn-search {
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.main {
  max-width: 1240px;
  padding-top: 40px;
}

.goggle-rewards {
  border-radius: 18px;
  border: 1px solid var(--line-1);
  background: linear-gradient(165deg, #ffffff, #f5f5f5);
  box-shadow: 0 12px 28px rgba(0, 24, 61, 0.06);
}

.module-shell,
.api-directory,
.integration-card,
.card,
.price-filter {
  border-color: var(--line-1);
}

.section-label {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  color: #1a1a1a;
}

.sort-wrap select,
.filter-chip,
.price-filter,
.module-field input,
.module-field select {
  border-color: var(--line-1);
}

.card {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 24, 61, 0.08);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 24, 61, 0.14);
}

.card-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.score-box {
  border-radius: 4px 4px 4px 0;
}

.btn-book,
.btn-reserve,
.btn-auth,
.btn-goggle-cta,
.module-submit,
.module-detail-btn {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.btn-book:hover,
.btn-reserve:hover,
.btn-auth:hover,
.btn-goggle-cta:hover,
.module-submit:hover,
.module-detail-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.api-directory {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 24, 61, 0.06);
}

.api-group {
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f5f5f5);
}

.api-group h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
}

.api-list li {
  background: #ffffff;
}

.integration-notes {
  padding-bottom: 44px;
}

.integration-card {
  border-radius: 16px;
}

.footer {
  background: linear-gradient(160deg, #14210f 0%, #0f1a0c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.modal-header h2,
#modal-title {
  font-family: "Fraunces", Georgia, serif;
}

@media (max-width: 980px) {
  .hero-shell {
    padding: 20px;
    border-radius: 22px;
  }

  .header-inner {
    padding: 14px 16px;
    position: relative;
  }

  .section-label {
    font-size: 28px;
  }

  .btn-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 44, 30, 0.04);
    border: 1px solid var(--line-0, #e0ebe2);
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.2s ease;
  }

  .btn-burger:hover {
    background: rgba(13, 44, 30, 0.08);
    border-color: var(--color-primary);
  }

  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    border-top: 1px solid #e2ece4;
    border-bottom: 1px solid #e2ece4;
    gap: 12px;
    align-items: stretch;
    z-index: 9999;
    max-height: calc(85vh - 60px);
    overflow-y: auto;
    box-sizing: border-box;
  }

  body[data-theme="dark"] .header-nav {
    background: #0e1812;
    border-top-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  }

  .header-nav.active {
    display: flex;
    animation: headerNavSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .header-picker-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  /* Reset regional picker & language picker on mobile to crisp 12px pills */
  .header-picker-group .btn-regional-picker,
  .header-picker-group .header-picker {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    padding: 0 16px;
    background: #f4f8f5;
    border: 1px solid #d0e2d5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
  }

  body[data-theme="dark"] .header-picker-group .btn-regional-picker,
  body[data-theme="dark"] .header-picker-group .header-picker {
    background: #15241b;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .language-picker-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    flex: 1;
    margin-left: 10px;
    text-align: left;
  }

  body[data-theme="dark"] .language-picker-label {
    color: #e0f2e5;
  }

  .mobile-lang-arrow {
    display: inline-block;
    font-size: 14px;
    color: var(--color-primary);
  }

  /* Header action buttons inside mobile nav */
  .header-nav #btn-rewards,
  .header-nav #btn-account,
  .header-nav #btn-notifications {
    width: 100% !important;
    height: 48px !important;
    border-radius: 12px !important;
    padding-left: 56px !important;
    padding-right: 16px !important;
    background: #f4f8f5 !important;
    border: 1px solid #d0e2d5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  body[data-theme="dark"] .header-nav #btn-rewards,
  body[data-theme="dark"] .header-nav #btn-account,
  body[data-theme="dark"] .header-nav #btn-notifications {
    background: #15241b !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
  }

  #btn-notifications i {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 22px !important;
    color: var(--color-primary) !important;
  }

  body[data-theme="dark"] #btn-notifications i {
    color: #e0f2e5 !important;
  }

  #btn-notifications .notification-badge-dot {
    top: 13px !important;
    left: 32px !important;
    right: auto !important;
  }

  .nav-btn-label {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }

  body[data-theme="dark"] .nav-btn-label {
    color: #e0f2e5 !important;
  }

  #btn-rewards::before {
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    opacity: 1 !important;
  }

  #btn-account::before {
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 22px !important;
    height: 22px !important;
    opacity: 1 !important;
  }

  #btn-account.logged-in::before,
  .btn-account.logged-in::before {
    display: none !important;
    content: none !important;
  }

  #btn-rewards:hover::before,
  #btn-account:hover::before {
    transform: translateY(-50%) !important;
    opacity: 1 !important;
  }

  /* Primary sign-in CTA button on mobile nav */
  .header-nav #btn-signin-header {
    width: 100% !important;
    height: 50px !important;
    border-radius: 12px !important;
    background: var(--color-primary) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
    position: relative !important;
  }

  .header-nav #btn-signin-header .nav-btn-label {
    margin-left: 0 !important;
    color: #ffffff !important;
  }

  .country-menu {
    width: 100%;
    left: 0;
    right: auto;
  }
}

@keyframes headerNavSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 640px) {
  .hero {
    padding: 24px 14px 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-highlights span {
    font-size: 12px;
  }

  .api-directory {
    padding: 14px;
    border-radius: 16px;
  }

  .card-name {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(28px, 5vw, 40px);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: none;
    padding-top: 0;
    margin-top: 20px;
  }

  .hero-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 14px !important;
    border-right: none;
  }

  .hero-search-card {
    padding: 18px;
  }
}

/* ============================================================
Hotel cards (app.js live classes) — Booking-inspired layout
============================================================ */
.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}



/* ============================================================
Module result cards - align with stays card style
============================================================ */
.module-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.module-search-box+.module-grid {
  margin-top: 16px;
}

.module-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 8px 18px;
  align-items: start;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  padding: 18px 20px;
  box-shadow: 0 16px 30px rgba(24, 38, 51, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.module-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 22px 38px rgba(24, 38, 51, 0.1);
  transform: translateY(-2px);
}

.module-card h4 {
  grid-column: 1;
  margin: 0;
  color: #1a1a1a;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.module-card h4:hover {
  color: var(--color-accent);
}

.module-meta {
  grid-column: 1;
  margin: 0;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.5;
}

.module-price {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  justify-self: end;
  margin: 0;
  color: #1a1a1a;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  text-align: right;
}

.module-detail-btn {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  margin-top: 2px;
  min-width: 180px;
  min-height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(24, 38, 51, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 14px;
}

.module-detail-btn:hover {
  background: linear-gradient(180deg, var(--color-primary), #14210f);
}

@media (max-width: 980px) {
  .module-card {
    grid-template-columns: 1fr;
  }

  .module-price,
  .module-detail-btn {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .module-price {
    grid-row: auto;
    margin-top: 6px;
    font-size: 34px;
  }

  .module-detail-btn {
    width: 100%;
    margin-top: 6px;
  }
}

.btn-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #dfeada;
  background: rgba(255, 255, 255, 0.95);
  color: #526178;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-card-wishlist.saved {
  color: #cf2e5e;
  border-color: #f2b6c8;
  background: #fff4f8;
}



/* ==========================================================================
   SPATIAL STAY RESERVATION PAGE & CHECKOUT
   Trivoy VisionOS Depth, Glassmorphism & Dark Green Brand (#164e33)
   ========================================================================== */

.modal.modal-spatial-reservation {
  max-width: 880px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(28px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
  border: 1px solid rgba(22, 78, 51, 0.18) !important;
  box-shadow: 0 28px 80px rgba(13, 44, 30, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  padding-bottom: 24px !important;
  overflow: hidden !important;
}

body[data-theme="dark"] .modal.modal-spatial-reservation {
  background: rgba(13, 26, 19, 0.94) !important;
  border-color: rgba(52, 211, 153, 0.22) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.modal.modal-spatial-reservation .modal-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(22, 78, 51, 0.1) !important;
  padding: 18px 24px !important;
}

body[data-theme="dark"] .modal.modal-spatial-reservation .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* Spatial Reservation Container */
.spatial-res-wrapper {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Top Spatial Property Preview Banner */
.spatial-res-banner {
  background: linear-gradient(135deg, rgba(22, 78, 51, 0.07) 0%, rgba(14, 55, 36, 0.03) 100%);
  border: 1px solid rgba(22, 78, 51, 0.15);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
}

body[data-theme="dark"] .spatial-res-banner {
  background: linear-gradient(135deg, rgba(22, 78, 51, 0.25) 0%, rgba(13, 35, 25, 0.4) 100%);
  border-color: rgba(52, 211, 153, 0.25);
}

.spatial-res-prop-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.spatial-res-hotel-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #ffffff;
}

body[data-theme="dark"] .spatial-res-hotel-thumb {
  border-color: rgba(255, 255, 255, 0.15);
}

.spatial-res-hotel-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-0, #0f172a);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spatial-res-room-name {
  font-size: 13px;
  color: var(--muted-0, #64748b);
  font-weight: 600;
}

.spatial-res-badges-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.spatial-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  background: #e8f4ed;
  color: #164e33;
  border: 1px solid rgba(22, 78, 51, 0.2);
}

body[data-theme="dark"] .spatial-pill-badge {
  background: rgba(22, 78, 51, 0.4);
  color: #4ade80;
  border-color: rgba(52, 211, 153, 0.3);
}

/* Two-Column Spatial Grid */
.spatial-res-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 768px) {
  .spatial-res-grid {
    grid-template-columns: 1fr;
  }
}

/* Spatial Card Container */
.spatial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  transition: all 0.25s ease;
}

body[data-theme="dark"] .spatial-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.spatial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body[data-theme="dark"] .spatial-card-header {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.spatial-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-0, #0f172a);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.spatial-card-title i {
  color: #164e33;
  font-size: 17px;
}

body[data-theme="dark"] .spatial-card-title i {
  color: #34d399;
}

/* Floating Spatial Input Fields */
.spatial-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.spatial-field label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-1, #475569);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spatial-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.spatial-input-wrap i {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
  transition: color 0.2s ease;
}

.spatial-input-wrap input {
  width: 100%;
  height: 42px;
  padding: 8px 12px 8px 38px;
  border-radius: 11px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-0, #0f172a);
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-theme="dark"] .spatial-input-wrap input {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}

.spatial-input-wrap input:focus {
  border-color: #164e33;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.15);
}

body[data-theme="dark"] .spatial-input-wrap input:focus {
  background: #0f172a;
  border-color: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.spatial-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Spatial Ticket Summary Card */
.spatial-ticket-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(22, 78, 51, 0.2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(22, 78, 51, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 10px;
}

body[data-theme="dark"] .spatial-ticket-card {
  background: rgba(19, 32, 25, 0.7);
  border-color: rgba(52, 211, 153, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.spatial-ticket-header {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #164e33;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body[data-theme="dark"] .spatial-ticket-header {
  color: #34d399;
}

.spatial-ticket-stay-info {
  margin-bottom: 14px;
}

.spatial-stay-dates-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-0, #1e293b);
  font-weight: 700;
  margin-bottom: 4px;
}

.spatial-ticket-divider {
  border-top: 1.5px dashed rgba(22, 78, 51, 0.2);
  margin: 14px 0;
}

body[data-theme="dark"] .spatial-ticket-divider {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.spatial-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted-0, #64748b);
  margin-bottom: 7px;
}

.spatial-breakdown-row.total {
  font-size: 17px;
  font-weight: 900;
  color: #164e33;
  margin-top: 10px;
}

body[data-theme="dark"] .spatial-breakdown-row.total {
  color: #4ade80;
}

.spatial-rewards-pill {
  background: linear-gradient(135deg, rgba(22, 78, 51, 0.1) 0%, rgba(14, 55, 36, 0.04) 100%);
  border: 1px solid rgba(22, 78, 51, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #164e33;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 12px;
}

body[data-theme="dark"] .spatial-rewards-pill {
  background: rgba(22, 78, 51, 0.3);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.3);
}

.btn-spatial-confirm {
  width: 100%;
  background: linear-gradient(135deg, #164e33 0%, #0e3724 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(22, 78, 51, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 12px;
}

.btn-spatial-confirm:hover {
  background: linear-gradient(135deg, #0e3724 0%, #072216 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 78, 51, 0.45);
}

.spatial-security-note {
  font-size: 11px;
  color: var(--muted-0, #94a3b8);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Spatial Success State */
.spatial-success-wrap {
  text-align: center;
  padding: 36px 20px 24px;
}

.spatial-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f4ed;
  color: #164e33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(22, 78, 51, 0.2);
}

body[data-theme="dark"] .spatial-success-icon {
  background: rgba(22, 78, 51, 0.4);
  color: #4ade80;
}

.spatial-success-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-0, #0f172a);
  margin-bottom: 6px;
}

.spatial-ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 12px 0 20px;
}

body[data-theme="dark"] .spatial-ref-badge {
  background: #1e293b;
  border-color: #334155;
  color: #f8fafc;
}

.spatial-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.booking-row-actions {
  grid-column: 2;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.bookings-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-filter-chip {
  border: 1px solid #dfeada;
  background: #fff;
  color: #2b3f60;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
}

.booking-filter-chip.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.booking-status {
  grid-column: 1;
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 10px;
}

.booking-status-upcoming,
.booking-status-checked-in {
  background: #e9f3e2;
  color: #274c23;
}

.booking-status-completed {
  background: #e9f8ed;
  color: #1c7c39;
}

.booking-status-cancelled {
  background: #fdeced;
  color: #b92838;
}

.btn-module-book {
  grid-column: 2;
  justify-self: end;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2d435f;
}

.btn-link {
  border: none;
  background: transparent;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 0;
}

.account-card {
  align-items: stretch;
}

/* ---------- MY ACCOUNT DASHBOARD ---------- */
.account-dashboard-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 60px auto;
  padding: 10px 0;
}

.account-hero-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 20px;
  background: 
    radial-gradient(circle at 10% 10%, rgba(30, 107, 71, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(22, 78, 51, 0.16) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 244, 0.9) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(22, 78, 51, 0.22);
  box-shadow: 0 16px 40px -6px rgba(13, 44, 30, 0.12);
  flex-wrap: wrap;
}

body[data-theme="dark"] .account-hero-card {
  background: 
    radial-gradient(circle at 10% 10%, rgba(30, 107, 71, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, rgba(16, 28, 22, 0.95) 0%, rgba(9, 18, 14, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px -6px rgba(0, 0, 0, 0.5);
}

.account-user-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #164e33 0%, #257e53 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(22, 78, 51, 0.35);
  flex-shrink: 0;
}

.account-vip-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f59e0b;
  color: #ffffff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.account-user-info {
  flex: 1;
  min-width: 240px;
}

.account-user-info h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-0);
  margin: 0 0 4px 0;
}

.account-user-info p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: var(--muted-0);
}

.account-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 650;
}
.account-tag.gold { background: #fef3c7; color: #b45309; }
.account-tag.region { background: #e8f4ed; color: #164e33; }
.account-tag.verified { background: #dbeafe; color: #1d4ed8; }

body[data-theme="dark"] .account-tag.gold { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }
body[data-theme="dark"] .account-tag.region { background: rgba(22, 78, 51, 0.3); color: #a3e635; }
body[data-theme="dark"] .account-tag.verified { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }

.account-grid-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 860px) {
  .account-grid-body { grid-template-columns: 1fr; }
}

.account-card-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(22, 78, 51, 0.16);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body[data-theme="dark"] .account-card-panel {
  background: rgba(16, 28, 22, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.account-panel-header h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-0);
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-panel-header h3 i { color: #164e33; }
.account-panel-header p {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted-0);
}

.account-form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted-0);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input {
  padding: 10px 14px;
  border: 1px solid rgba(22, 78, 51, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-0);
  font: inherit;
  font-size: 13.5px;
  outline: none;
  transition: all 0.2s ease;
}
.form-group input:focus {
  border-color: #164e33;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.12);
}

body[data-theme="dark"] .form-group input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f0f4f1;
}

.btn-save-profile {
  padding: 11px 24px;
  border-radius: 10px;
  border: none;
  background: #164e33;
  color: #ffffff;
  font: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-save-profile:hover {
  background: #103b26;
  transform: translateY(-1px);
}

.booking-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(22, 78, 51, 0.15);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}
.booking-item-card:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #164e33;
}
body[data-theme="dark"] .booking-item-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.booking-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e8f4ed;
  color: #164e33;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-item-thumb.flight {
  background: #dbeafe;
  color: #1d4ed8;
}

.booking-item-details {
  flex: 1;
  min-width: 0;
}
.booking-item-details h4 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-0);
}
.booking-item-details p {
  margin: 0 0 4px 0;
  font-size: 11.5px;
  color: var(--muted-0);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
}
.booking-status.confirmed { color: #164e33; }
.booking-status.upcoming { color: #1d4ed8; }

.btn-booking-act {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(22, 78, 51, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: #164e33;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-booking-act:hover {
  background: #164e33;
  color: #ffffff;
}

.account-sec-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  gap: 10px;
}
body[data-theme="dark"] .sec-row {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.sec-row strong {
  display: block;
  font-size: 13px;
  color: var(--ink-0);
}
.sec-row p {
  margin: 2px 0 0 0;
  font-size: 11.5px;
  color: var(--muted-0);
}

.btn-sec-action {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(22, 78, 51, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #164e33;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-sec-action:hover {
  background: #164e33;
  color: #ffffff;
}
.btn-sec-action.danger {
  border-color: rgba(220, 38, 38, 0.3);
  color: #dc2626;
}
.btn-sec-action.danger:hover {
  background: #dc2626;
  color: #ffffff;
}

.settings-center {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  min-height: 520px;
}

.settings-nav {
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  padding: 16px;
  box-shadow: 0 14px 26px rgba(24, 38, 51, 0.05);
}

.settings-nav-head h3 {
  margin: 0;
  font-size: 24px;
  color: #1a1a1a;
  font-family: "Fraunces", Georgia, serif;
}

.settings-nav-head p {
  margin: 3px 0 12px;
  color: #6b6b6b;
  font-size: 12px;
}

.settings-nav nav {
  display: grid;
  gap: 6px;
}

.settings-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: #4a4a4a;
  padding: 11px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.settings-nav-item.active {
  background: linear-gradient(180deg, var(--color-accent), #192a3a);
  border-color: var(--color-accent);
  color: #fff;
}

.settings-content {
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 16px 28px rgba(24, 38, 51, 0.06);
}

.settings-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.settings-breadcrumb {
  color: #6b6b6b;
  font-size: 13px;
  font-weight: 600;
}

.settings-top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.settings-search {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 9px 10px;
  min-width: 220px;
  background: #ffffff;
}

.settings-status-row {
  font-size: 12px;
  color: #8a6f2f;
  font-weight: 700;
}

.settings-panel {
  border-top: 1px solid #e7e7e7;
  padding-top: 16px;
}

.settings-field-grid {
  display: grid;
  gap: 10px;
}

.settings-field,
.settings-toggle {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  display: grid;
  gap: 6px;
}

.settings-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.settings-field span,
.settings-toggle span {
  font-size: 12px;
  color: #6b6b6b;
  font-weight: 700;
}

.settings-field input,
.settings-field select {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 14px;
  background: #ffffff;
}

.settings-field-color input {
  width: 100%;
  height: 42px;
  padding: 0;
}

.settings-account-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.settings-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eaf3e6, #dcefdc);
  color: var(--color-accent);
  font-weight: 800;
  font-size: 24px;
  border: 1px solid #e0e0e0;
}

.settings-account-head h3 {
  margin: 0;
  font-size: 20px;
}

.settings-account-head p {
  margin: 2px 0;
  color: #6b6b6b;
  font-size: 13px;
}

.settings-card-grid {
  display: grid;
  gap: 10px;
}

.settings-card {
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.settings-card h4 {
  margin: 0 0 6px;
  color: #1a1a1a;
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
}

.settings-inline-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

body[data-theme="dark"] {
  filter: saturate(0.96) contrast(1.01);
}

body.compact-mode .module-card,
body.compact-mode .hotel-card {
  padding-top: 10px;
  padding-bottom: 10px;
}

body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
}

body.high-contrast {
  filter: contrast(1.1) saturate(0.88);
}

body.larger-text {
  font-size: 18px;
}

body.focus-indicators :focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .settings-center {
    grid-template-columns: 1fr;
  }

  .settings-nav nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .settings-nav nav {
    grid-template-columns: 1fr;
  }

  .settings-search {
    min-width: 100%;
  }
}

.reward-progress {
  margin-top: 8px;
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: #e7e7e7;
  overflow: hidden;
}

.reward-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8a6f2f 0%, var(--color-accent) 100%);
}

@media (max-width: 720px) {
  .detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    border-radius: 24px 24px 0 0;
    max-height: 92vh;
  }

  .footer-resource-page {
    padding: 18px;
    border-radius: 18px;
  }
}

@media (max-width: 980px) {
  .booking-row-actions {
    grid-column: 1;
    width: 100%;
    justify-items: stretch;
  }

  .btn-module-book {
    grid-column: 1;
    justify-self: stretch;
  }

  .booking-row-actions .btn-page,
  .booking-row-actions .module-detail-btn {
    width: 100%;
  }
}

/* =========================================================================
   PROPERTY DETAILS PAGE (pdp)
   ========================================================================= */
.pdp-breadcrumb {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.pdp-breadcrumb a {
  color: var(--color-accent);
  font-weight: 600;
}

.pdp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pdp-title {
  font-family: "Fraunces", serif;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.pdp-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #4a4a4a;
  font-size: 14px;
}

.pdp-sub .stars {
  color: var(--color-highlight);
}

.pdp-actions {
  display: flex;
  gap: 10px;
}

.pdp-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.2s;
  cursor: pointer;
}

.pdp-icon-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pdp-icon-btn.saved {
  color: #c0392b;
  border-color: #c0392b;
}

/* Gallery */
.pdp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}

.pdp-gallery-tile {
  background: linear-gradient(160deg, #eef3ea 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
}

.pdp-gallery-tile:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1;
  font-size: 72px;
}

.pdp-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-gallery-tile .pdp-tile-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pdp-gallery-more {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26, 26, 26, 0.78);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Lightbox */
.lightbox-panel {
  max-width: 960px;
  background: #111;
  border-radius: 16px;
}

.lightbox-stage {
  position: relative;
  height: 66vh;
  max-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: #eee;
  overflow: hidden;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav.prev {
  left: 16px;
}

.lightbox-nav.next {
  right: 16px;
}

.lightbox-caption {
  text-align: center;
  color: #ccc;
  font-size: 13px;
  padding: 12px;
  letter-spacing: 0.02em;
}

.lightbox-panel .btn-close {
  color: #ddd;
}

.lightbox-panel .btn-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Layout: content + sticky booking widget */
.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.pdp-section {
  margin-bottom: 30px;
}

.pdp-section h3 {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e7e7e7;
}

.pdp-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #4a4a4a;
}

/* Ratings breakdown */
.pdp-ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-rating-row span:first-child {
  flex: 0 0 110px;
  font-size: 13px;
  color: #4a4a4a;
  font-weight: 600;
}

.pdp-rating-bar {
  flex: 1;
  height: 7px;
  border-radius: 6px;
  background: #e7e7e7;
  overflow: hidden;
}

.pdp-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  border-radius: 6px;
}

.pdp-rating-row strong {
  flex: 0 0 30px;
  text-align: right;
  font-size: 13px;
  color: #1a1a1a;
}

/* Reviews */
.pdp-review-card {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: #fff;
}

.pdp-review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.pdp-reviewer {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}

.pdp-reviewer small {
  display: block;
  font-weight: 400;
  color: #8a8a8a;
  font-size: 12px;
  margin-top: 2px;
}

.pdp-review-score {
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  border-radius: 6px;
  padding: 3px 9px;
  height: fit-content;
}

.pdp-review-text {
  font-size: 13.5px;
  color: #4a4a4a;
  line-height: 1.6;
}

.pdp-review-date {
  font-size: 11.5px;
  color: #a0a0a0;
  margin-top: 6px;
}

/* Availability calendar */
.pdp-cal-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pdp-cal-month-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.pdp-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.pdp-cal-dow {
  font-size: 10.5px;
  text-align: center;
  color: #a0a0a0;
  font-weight: 700;
  padding-bottom: 4px;
}

.pdp-cal-day {
  aspect-ratio: 1;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a4a;
  background: #f5f5f5;
}

.pdp-cal-day.blank {
  background: transparent;
}

.pdp-cal-day.available {
  background: #e6f0e3;
  color: #24411e;
}

.pdp-cal-day.limited {
  background: #fbf1da;
  color: #8a6f2f;
}

.pdp-cal-day.soldout {
  background: #f4e6e6;
  color: #a44;
  text-decoration: line-through;
}

.pdp-cal-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 12px;
  color: #6b6b6b;
  flex-wrap: wrap;
}

.pdp-cal-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

/* House rules & policy */
.pdp-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pdp-rule-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #4a4a4a;
  padding: 12px 14px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  background: #fafafa;
}

.pdp-rule-item i {
  color: var(--color-accent);
  font-size: 17px;
  margin-top: 1px;
}

.pdp-policy-box {
  border: 1px solid #d7ecd2;
  background: #f2f8ef;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 13.5px;
  color: #24411e;
  line-height: 1.65;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pdp-policy-box.strict {
  border-color: #f0dede;
  background: #fbf2f2;
  color: #7a2b2b;
}

.pdp-policy-box i {
  font-size: 20px;
  margin-top: 1px;
}

/* Map + nearby */
.pdp-map-box {
  height: 220px;
  border-radius: 14px;
  background: #d8e8d4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #4a5a44;
  margin-bottom: 16px;
}

.pdp-attraction-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid #eee;
  font-size: 13.5px;
  color: #4a4a4a;
}

.pdp-attraction-row:last-child {
  border-bottom: none;
}

.pdp-attraction-row span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1a1a1a;
}

.pdp-attraction-row span:first-child i {
  color: var(--color-highlight);
}

.pdp-attraction-dist {
  font-size: 12.5px;
  color: #8a8a8a;
}

/* Similar properties */
.pdp-similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pdp-similar-card {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}

.pdp-similar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pdp-similar-img {
  height: 100px;
  background: linear-gradient(160deg, #eef3ea 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.pdp-similar-body {
  padding: 12px 14px;
}

.pdp-similar-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.pdp-similar-loc {
  font-size: 11.5px;
  color: #8a8a8a;
  margin-bottom: 8px;
}

.pdp-similar-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-accent);
}

.pdp-similar-price small {
  font-weight: 400;
  color: #8a8a8a;
  font-size: 11px;
}

/* Sticky booking widget */
.pdp-booking-widget {
  position: sticky;
  top: 156px;
  border: 1px solid rgba(22, 78, 51, 0.18);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(13, 44, 30, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 20;
}

body[data-theme="dark"] .pdp-booking-widget {
  background: rgba(13, 26, 19, 0.88);
  border-color: rgba(52, 211, 153, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pdp-bw-price {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
}

.pdp-bw-price small {
  font-size: 13px;
  font-weight: 500;
  color: #8a8a8a;
}

.pdp-bw-dates {
  display: flex;
  border: 1px solid #d8d3cb;
  border-radius: 12px;
  margin: 14px 0;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.2s ease;
  position: relative;
}

.pdp-bw-dates:hover {
  border-color: #0c2e1f;
  box-shadow: 0 4px 14px rgba(12, 46, 31, 0.06);
}

.pdp-bw-date-col {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  user-select: none;
}

.pdp-bw-date-col:hover {
  background: #faf8f5;
}

.pdp-bw-date-col:first-child {
  border-right: 1px solid #e5dfd5;
}

.pdp-bw-date-col strong {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #718076;
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}

.pdp-date-display {
  font-size: 13.5px;
  font-weight: 600;
  color: #12291d;
  white-space: nowrap;
}

.pdp-date-hidden-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
}

/* Guests & Rooms Button & Popover */
.pdp-bw-guests-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.pdp-bw-guests {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #d8d3cb;
  border-radius: 12px;
  padding: 11px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.pdp-bw-guests:hover {
  border-color: #0c2e1f;
  background: #faf8f5;
  box-shadow: 0 4px 14px rgba(12, 46, 31, 0.06);
}

.pdp-bw-guests-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-bw-guests-content i {
  color: #164e33;
  font-size: 16px;
}

.pdp-bw-guests-chevron {
  color: #718076;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.pdp-bw-guests[aria-expanded="true"] .pdp-bw-guests-chevron {
  transform: rotate(180deg);
}

.pdp-guests-popover {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(22, 78, 51, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(12, 46, 31, 0.15);
  padding: 16px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-guests-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pdp-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

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

.pdp-counter-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0c2e1f;
}

.pdp-counter-sub {
  font-size: 11.5px;
  color: #718076;
}

.pdp-counter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #faf8f5;
  border: 1.5px solid #d8cfc2;
  color: #0c2e1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.15s ease;
}

.pdp-counter-btn:hover:not(:disabled) {
  background: #0c2e1f;
  color: #ffffff;
  border-color: #0c2e1f;
}

.pdp-counter-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pdp-counter-val {
  font-size: 14px;
  font-weight: 750;
  color: #0c2e1f;
  min-width: 18px;
  text-align: center;
}

.pdp-guests-popover-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
  border-top: 1px solid #ebe5dc;
}

.pdp-guests-done-btn {
  background: #0c2e1f;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pdp-guests-done-btn:hover {
  background: #164e33;
}

.pdp-bw-breakdown {
  font-size: 13px;
  color: #4a4a4a;
  margin-bottom: 14px;
}

.pdp-bw-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.pdp-bw-row.total {
  border-top: 1px solid #e7e7e7;
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 800;
  color: #1a1a1a;
  font-size: 15px;
}

.pdp-bw-cta {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #164e33 0%, #0e3724 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(22, 78, 51, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-bw-cta:hover {
  background: linear-gradient(135deg, #0e3724 0%, #072216 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 78, 51, 0.4);
}

.pdp-bw-note {
  font-size: 11.5px;
  color: #8a8a8a;
  text-align: center;
  margin-top: 10px;
}

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

  .pdp-booking-widget {
    position: static;
  }

  .pdp-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: 420px;
  }

  .pdp-gallery-tile:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    font-size: 54px;
  }

  .pdp-ratings-grid,
  .pdp-rules-grid,
  .pdp-cal-wrap {
    grid-template-columns: 1fr;
  }

  .pdp-similar-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Genius Loyalty Dashboard ---------- */
.genius-hero-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #164e33 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.genius-hero-card::after {
  content: 'Rewards';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 110px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  letter-spacing: -2px;
}

.genius-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.genius-title-wrap h2 {
  font-size: 28px;
  font-weight: 850;
  margin: 0;
  color: var(--color-highlight);
  letter-spacing: -0.5px;
}

.genius-points-badge {
  background: var(--color-highlight);
  color: var(--color-primary);
  font-weight: 850;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.genius-progress-wrap {
  margin-top: 24px;
}

.genius-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.genius-progress-track {
  background: rgba(255, 255, 255, 0.15);
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.genius-progress-bar {
  background: var(--color-highlight);
  height: 100%;
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.genius-perks-section {
  margin-top: 36px;
}

.genius-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-0);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.genius-section-title i {
  color: var(--color-highlight);
  font-size: 22px;
}

.genius-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .genius-perks-grid {
    grid-template-columns: 1fr;
  }
}

.perk-card {
  background: var(--surface);
  border: 1px solid var(--line-0);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.perk-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.perk-card.active-tier {
  border: 2.5px solid var(--color-highlight);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(59, 130, 246, 0.03) 100%);
}

.perk-tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.perk-card.active-tier .perk-tier-badge {
  background: var(--color-highlight);
  color: var(--color-primary);
}

.perk-card:not(.active-tier) .perk-tier-badge {
  background: var(--line-0);
  color: var(--muted-0);
}

.perk-card h3 {
  font-size: 18px;
  font-weight: 750;
  color: var(--ink-0);
  margin-bottom: 14px;
}

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

.perk-item {
  font-size: 13.5px;
  color: var(--ink-1);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.perk-item i {
  font-size: 15px;
  margin-top: 1px;
}

.perk-card.active-tier .perk-item i {
  color: var(--color-accent);
}

.perk-card:not(.active-tier) .perk-item {
  opacity: 0.65;
}

.perk-card:not(.active-tier) .perk-item i {
  color: var(--muted-0);
}

.rewards-history-section {
  margin-top: 40px;
  margin-bottom: 32px;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-row {
  background: var(--surface);
  border: 1px solid var(--line-0);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.history-row:hover {
  background: var(--bg-1);
  border-color: var(--line-1);
}

.history-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.history-reason {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
}

.history-date {
  font-size: 12px;
  color: var(--muted-0);
}

.history-points {
  font-size: 15.5px;
  font-weight: 850;
  color: var(--color-accent);
}

/* ==========================================================================
   MOBILE PHONE READINESS OVERHAUL SYSTEM (<640px)
   ========================================================================== */

/* App-Grade Mobile Bottom-Sheet Overlay */
@media screen and (max-width: 640px) {
  .modal-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.65) !important;
  }

  .modal, .auth-modal-panel {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px 24px 0 0 !important;
    max-height: 86vh !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 24px 18px !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3) !important;
  }

  .auth-form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Fluid Hero Search & Mobile Header Layout */
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }

  .tabs {
    padding: 6px 14px 10px;
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    padding: 7px 14px;
    font-size: 12.5px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .hero-inner {
    padding: 20px 16px 28px;
  }

  .hero-title {
    font-size: clamp(22px, 6.5vw, 32px);
    line-height: 1.2;
  }

  .search-box {
    padding: 12px;
    border-radius: 14px;
  }

  .search-row {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .search-field {
    width: 100% !important;
    min-width: 100% !important;
  }

  .search-field input, .search-field select {
    font-size: 14px;
    padding: 12px 14px;
    width: 100%;
  }

  .btn-search {
    width: auto !important;
    min-width: 170px !important;
    max-width: 240px !important;
    margin: 8px auto 0 auto !important;
    padding: 12px 24px !important;
    font-size: 14.5px !important;
    font-weight: 750 !important;
    border-radius: 12px !important;
    justify-content: center !important;
  }

  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media screen and (max-width: 480px) {
  .header-inner {
    padding: 8px 12px;
  }

  .logo {
    font-size: 18px;
    gap: 8px;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }

  .picker-label {
    display: none !important;
  }

  .header-picker {
    padding: 4px 8px;
  }

  .btn-header {
    padding: 6px 12px;
    font-size: 12px;
  }

  .tabs {
    padding: 4px 10px 8px;
    gap: 8px;
  }

  .tab {
    padding: 6px 12px;
    font-size: 12px;
  }

  .search-box {
    padding: 10px;
  }

  .section-title {
    font-size: 20px;
  }
}

/* ============================================================
   MODULE DETAIL PAGE — Dedicated full-page detail view
   ============================================================ */
.module-detail-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  animation: fadeInUpSmooth 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.detail-page-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.btn-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d0e2d5;
  color: var(--color-primary);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-detail-back:hover {
  background: #f0f7f2;
  border-color: var(--color-primary);
  transform: translateX(-2px);
}

.detail-page-crumb {
  font-size: 13px;
  color: var(--muted-0);
  font-weight: 500;
}

.detail-page-hero {
  background: linear-gradient(145deg, #ffffff 0%, #f6faf7 100%);
  border: 1px solid #d0e2d5;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 12px 36px rgba(13, 44, 30, 0.06);
}

body[data-theme="dark"] .detail-page-hero {
  background: linear-gradient(145deg, #101c15 0%, #0a140e 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.detail-page-hero-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.detail-page-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(13, 44, 30, 0.08);
  border: 1px solid rgba(13, 44, 30, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 28px;
  flex-shrink: 0;
}

body[data-theme="dark"] .detail-page-icon-badge {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--color-highlight);
}

.detail-page-hero-info {
  flex: 1;
  min-width: 260px;
}

.detail-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.detail-page-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--ink-0);
  margin-bottom: 8px;
  line-height: 1.2;
}

body[data-theme="dark"] .detail-page-title {
  color: #ffffff;
}

.detail-page-sub {
  font-size: 15px;
  color: var(--muted-0);
  line-height: 1.5;
}

.detail-page-hero-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid #d0e2d5;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .detail-page-hero-price {
  background: #15241b;
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-price-kicker {
  font-size: 12px;
  color: var(--muted-0);
  font-weight: 600;
}

.hero-price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-sans);
}

body[data-theme="dark"] .hero-price-amount {
  color: var(--color-highlight);
}

.hero-price-taxes {
  font-size: 11.5px;
  color: var(--muted-0);
}

.detail-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.detail-page-main-specs {
  background: #ffffff;
  border: 1px solid #d0e2d5;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .detail-page-main-specs {
  background: #101c15;
  border-color: rgba(255, 255, 255, 0.1);
}

.detail-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body[data-theme="dark"] .detail-section-heading {
  color: var(--color-highlight);
}

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

.detail-page-spec-card {
  background: #f8fbf8;
  border: 1px solid #e0ebe2;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body[data-theme="dark"] .detail-page-spec-card {
  background: #16261c;
  border-color: rgba(255, 255, 255, 0.08);
}

.spec-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-0);
  letter-spacing: 0.06em;
}

.spec-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
}

body[data-theme="dark"] .spec-value {
  color: #ffffff;
}

.detail-booking-card {
  background: #ffffff;
  border: 1.5px solid var(--color-primary);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(13, 44, 30, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body[data-theme="dark"] .detail-booking-card {
  background: #101c15;
  border-color: var(--color-highlight);
}

.detail-booking-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

body[data-theme="dark"] .detail-booking-card h3 {
  color: var(--color-highlight);
}

.detail-booking-card p {
  font-size: 14px;
  color: var(--muted-0);
  line-height: 1.5;
}

.detail-booking-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-booking-perks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

body[data-theme="dark"] .detail-booking-perks span {
  color: #d0f0d8;
}

.btn-detail-book-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(13, 44, 30, 0.25);
  transition: all 0.25s var(--ease);
}

.btn-detail-book-now:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 44, 30, 0.35);
}

@media (max-width: 860px) {
  .detail-page-grid {
    grid-template-columns: 1fr;
  }
  .detail-page-hero-top {
    flex-direction: column;
  }
  .detail-page-hero-price {
    width: 100%;
    align-items: flex-start;
  }
}

/* ============================================================
   PIXEL-SPECIFIC DARK LOGO GREEN HOVER EFFECT FOR ALL BLUE ELEMENTS
   ============================================================ */

/* Blue Buttons & Active Badges Turn Logo Dark Green on Hover with Radial Spotlight */
.btn-hotel-see-availability:hover,
.btn-search:hover,
.btn-submit-listing:hover,
.btn-sidebar-prompt:hover,
.btn-service-book:hover {
  background: radial-gradient(circle 80px at var(--mouse-x, 50%) var(--mouse-y, 50%), #1e6b47 0%, #0d2c1e 100%), linear-gradient(135deg, #164e33 0%, #0d2c1e 100%) !important;
  box-shadow: 0 6px 20px rgba(13, 44, 30, 0.5) !important;
  border-color: #164e33 !important;
  color: #ffffff !important;
}

.filter-chip.active:hover {
  background: radial-gradient(circle 70px at var(--mouse-x, 50%) var(--mouse-y, 50%), #1e6b47 0%, #0d2c1e 100%), linear-gradient(135deg, #164e33 0%, #0d2c1e 100%) !important;
  box-shadow: 0 6px 20px rgba(13, 44, 30, 0.45) !important;
}

.score-box:hover {
  background: radial-gradient(circle 60px at var(--mouse-x, 50%) var(--mouse-y, 50%), #1e6b47 0%, #0d2c1e 100%), #164e33 !important;
  box-shadow: 0 4px 12px rgba(13, 44, 30, 0.4) !important;
}

/* Blue Titles, Links & Highlights Turn Logo Dark Green on Hover */
.hotel-card-title:hover {
  color: #164e33 !important;
}

.dest-highlight:hover,
.map-link-inline:hover,
.comfort-link a:hover,
.show-more-link:hover {
  color: #164e33 !important;
}

.filter-check:hover {
  background: rgba(22, 78, 51, 0.08) !important;
  color: #164e33 !important;
}

.filter-check:hover input[type="checkbox"] {
  accent-color: #164e33 !important;
}

.filter-check:hover span {
  background: rgba(22, 78, 51, 0.15) !important;
  color: #0d2c1e !important;
}

/* Checkboxes & Radios Hover */
input[type="checkbox"]:hover {
  accent-color: #164e33 !important;
}

/* Tab Hover Effect */
.tab:hover {
  color: #164e33 !important;
}

.tab.active:hover {
  background: rgba(22, 78, 51, 0.12) !important;
  color: #164e33 !important;
}

/* Icon & Badge Hover */
.listing-icon-wrap:hover {
  background: rgba(22, 78, 51, 0.15) !important;
  color: #164e33 !important;
}

.line-bar:hover {
  background: #164e33 !important;
}

.line-bar:hover i {
  color: #164e33 !important;
}

/* =========================================================================
   FOOTER DESTINATION PAGES CSS (Phases 2-7 Premium Redesign)
   ========================================================================= */

/* Hero Banner & Search */
.fp-hero, .fp-hero-gradient {
  background: linear-gradient(135deg, #092e1e 0%, #164e33 60%, #0d3824 100%);
  padding: 48px 32px;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(9, 46, 30, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-hero h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 4vw, 36px);
  color: #ffffff !important;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.fp-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto;
}

.fp-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: none;
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  margin: 24px auto 0;
  max-width: 580px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.2s;
}

.fp-search-bar:focus-within {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  border: none;
}

.fp-search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: #1b2c3d;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}

.fp-search-bar input::placeholder {
  color: #8c9ba5;
}

.fp-search-bar i {
  color: #164e33;
  font-size: 18px;
}

.fp-search-bar .btn-search {
  background: #ffffff;
  color: #092014;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.fp-search-bar .btn-search:hover {
  background: #164e33;
  color: #ffffff;
  border-color: #164e33;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 78, 51, 0.4);
}

/* Link Lists inside cards */
.fp-link-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-link-list li {
  margin: 0;
}

.fp-link-list a {
  color: #164e33;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s, transform 0.15s;
}

.fp-link-list a::before {
  content: "→";
  font-size: 13px;
  opacity: 0.7;
  transition: transform 0.15s;
}

.fp-link-list a:hover {
  color: #0a2e1d;
  text-decoration: underline;
}

.fp-link-list a:hover::before {
  transform: translateX(3px);
}

/* Contact Support Banner */
.fp-contact-banner {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #f0f7f3 0%, #e4f0e9 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid #d2e4d8;
}

.fp-contact-banner h3 {
  font-family: "Fraunces", Georgia, serif;
  color: #0d3824;
  font-size: 22px;
  margin-bottom: 8px;
}

.fp-contact-banner p {
  color: #4a5568;
  font-size: 14.5px;
  margin-bottom: 18px;
}

/* FAQ Accordion */
.faq-container {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-accordion:hover {
  border-color: #c8d8ce;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.08);
}

.faq-accordion summary {
  font-weight: 600;
  font-size: 15.5px;
  color: #122017;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
  user-select: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: #164e33;
}

.faq-accordion[open] summary::after {
  content: "−";
}

.faq-content {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  color: #4a5d6e;
  line-height: 1.6;
  font-size: 14px;
}

/* Form Styles */
.fp-form-container {
  max-width: 620px;
  margin: 28px auto 0;
}

.fp-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.fp-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d5dadf;
  color: #1b2c3d;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.fp-input:focus {
  outline: none;
  border-color: #164e33;
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.14);
}

/* Notification & Career Items */
.fp-notif-item, .fp-career-card {
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}

.fp-notif-item:hover, .fp-career-card:hover {
  transform: translateY(-2px);
  border-color: #164e33;
  box-shadow: 0 6px 18px rgba(22, 78, 51, 0.1);
}

/* Legal Layout & Luxury Editorial Styling */
.fp-legal-layout {
  border-top: 1px solid rgba(22, 78, 51, 0.12);
  padding-top: 32px;
  display: flex;
  gap: 48px;
}

.fp-legal-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 6px;
  background: #f4f6f4;
  border: 1px solid rgba(22, 78, 51, 0.1);
  border-radius: 12px;
  width: fit-content;
  flex-wrap: wrap;
}

.fp-legal-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 650;
  color: #435b4d;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.fp-legal-tab:hover {
  color: #0c2e1f;
  background: rgba(255, 255, 255, 0.6);
}

.fp-legal-tab.active {
  background: #0c2e1f;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(12, 46, 31, 0.15);
}

.fp-legal-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 20px;
}

.fp-legal-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(22, 78, 51, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #384e40;
}

.fp-legal-meta-pill i {
  color: #164e33;
}

.fp-legal-toc {
  flex: 0 0 260px;
  position: sticky;
  top: 100px;
  height: max-content;
  background: #ffffff;
  border: 1px solid rgba(22, 78, 51, 0.12);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(12, 46, 31, 0.03);
}

.fp-legal-toc-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0c2e1f;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(22, 78, 51, 0.08);
}

.fp-legal-toc ul.fp-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-legal-toc ul.fp-link-list a {
  color: #4a5d52;
  font-size: 13.5px;
  font-weight: 550;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: all 0.15s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.fp-legal-toc ul.fp-link-list a:hover {
  color: #0c2e1f;
  background: #f3f7f5;
  padding-left: 12px;
}

.fp-legal-content {
  flex: 1;
  line-height: 1.75;
  color: #2c3e34;
  font-size: 15px;
}

.fp-legal-content h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 750;
  color: #0c2e1f;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(22, 78, 51, 0.12);
  scroll-margin-top: 110px;
}

.fp-legal-content h4:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.fp-legal-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #163826;
  margin: 20px 0 8px;
}

.fp-legal-content p {
  color: #3d5045;
  margin-bottom: 16px;
  line-height: 1.75;
}

.fp-legal-content ul,
.fp-legal-content ol {
  margin: 12px 0 20px 24px;
  padding: 0;
  color: #3d5045;
}

.fp-legal-content li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.fp-legal-content strong {
  color: #0c2e1f;
}

.fp-legal-callout {
  background: #f5f8f6;
  border-left: 4px solid #164e33;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-size: 14.5px;
}

.fp-legal-callout p {
  margin: 0;
  color: #1b3827;
}

.fp-legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid rgba(22, 78, 51, 0.14);
  border-radius: 10px;
  background: #ffffff;
}

.fp-legal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.fp-legal-table th {
  background: #edf3ef;
  color: #0c2e1f;
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(22, 78, 51, 0.12);
}

.fp-legal-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(22, 78, 51, 0.08);
  color: #2e4336;
  vertical-align: top;
  line-height: 1.6;
}

.fp-legal-table tr:last-child td {
  border-bottom: none;
}

.fp-badge-mandatory {
  display: inline-block;
  background: rgba(22, 78, 51, 0.12);
  color: #0c2e1f;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

.fp-badge-optional {
  display: inline-block;
  background: #eef2ff;
  color: #3730a3;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Dark Mode Overrides */
body[data-theme="dark"] .fp-search-bar {
  background: #182820;
  border-color: rgba(255, 255, 255, 0.15);
}

body[data-theme="dark"] .fp-search-bar input {
  color: #ffffff;
}

body[data-theme="dark"] .fp-link-list a {
  color: #4ade80;
}

body[data-theme="dark"] .fp-link-list a:hover {
  color: #86efac;
}

body[data-theme="dark"] .fp-contact-banner {
  background: rgba(22, 78, 51, 0.2);
  border-color: rgba(22, 78, 51, 0.4);
}

body[data-theme="dark"] .fp-contact-banner h3 {
  color: #ffffff;
}

body[data-theme="dark"] .fp-contact-banner p {
  color: rgba(255, 255, 255, 0.8);
}

body[data-theme="dark"] .faq-accordion {
  background: #111e18;
  border-color: #1e3328;
}

body[data-theme="dark"] .faq-accordion summary {
  color: #ffffff;
}

body[data-theme="dark"] .faq-content {
  color: rgba(255, 255, 255, 0.8);
  border-top-color: #1e3328;
}

body[data-theme="dark"] .fp-form {
  background: #111e18;
  border-color: #1e3328;
}

body[data-theme="dark"] .fp-input {
  background: #182820;
  border-color: #284436;
  color: #ffffff;
}

body[data-theme="dark"] .fp-legal-content h4 {
  color: #ffffff;
}

body[data-theme="dark"] .fp-legal-content p {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .fp-hero {
    padding: 32px 18px;
  }
  .fp-search-bar {
    flex-direction: column;
    border-radius: 16px;
    padding: 10px;
  }
  .fp-search-bar .btn-search {
    width: 100%;
  }
  .fp-legal-layout {
    flex-direction: column;
  }
  .fp-legal-toc {
    position: static;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px;
  }
}

/* =========================================================================
   PROPER PREMIUM HELP CENTER DESIGN (Spatial & Theme Compatible)
   ========================================================================= */

.hc-container {
  max-width: 1080px;
  margin: 20px auto 60px auto;
  padding: 40px 36px 60px 36px;
  color: #0f172a;
  background: 
    radial-gradient(circle at 10% 10%, rgba(30, 107, 71, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(22, 78, 51, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 248, 244, 0.78) 100%);
  backdrop-filter: blur(40px) saturate(220%);
  -webkit-backdrop-filter: blur(40px) saturate(220%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 70px -15px rgba(6, 28, 18, 0.15), 0 2px 6px rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .hc-container {
  background: 
    radial-gradient(circle at 10% 10%, rgba(30, 107, 71, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(22, 78, 51, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(14, 38, 26, 0.95) 0%, rgba(8, 22, 15, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6);
}

/* Premium Spatial Hero Header */
.hc-hero-banner {
  background: linear-gradient(135deg, #072216 0%, #164e33 60%, #0c3b25 100%);
  border-radius: var(--radius-lg, 20px);
  padding: 44px 36px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 34, 22, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #ffffff;
}



.hc-hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.hc-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 24px;
}

.hc-search-wrapper {
  display: flex;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}

.hc-search-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.2s, background 0.2s;
}

.hc-search-input-box:focus-within {
  background: #ffffff;
  border: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.hc-search-icon {
  font-size: 18px;
  color: #64748b;
}

.hc-search-input-box input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #0f172a;
  font-family: inherit;
}

.hc-search-input-box input::placeholder {
  color: #64748b;
}

.hc-search-btn {
  background: #ffffff;
  color: #092014;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.hc-search-btn:hover {
  background: #164e33;
  color: #ffffff;
  border-color: #164e33;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(7, 34, 22, 0.3);
}

/* Center Sign-In Encouragement Card */
.hc-custom-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px 26px;
  max-width: 380px;
  margin: 0 auto 44px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hc-custom-card:hover {
  box-shadow: 0 14px 40px rgba(22, 78, 51, 0.08);
}

.hc-custom-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
}

.hc-cowboy-icon {
  font-size: 56px;
  color: #164e33;
  transition: color 0.2s, transform 0.2s;
}

.hc-custom-card:hover .hc-cowboy-icon {
  transform: scale(1.08) rotate(-4deg);
}

body[data-theme="dark"] .hc-cowboy-icon {
  color: #a3e635;
}

.hc-custom-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px 0;
  line-height: 1.4;
}

.hc-signin-btn {
  width: 100%;
  background: #164e33;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 0;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(22, 78, 51, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-signin-btn:hover {
  background: #072216;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 34, 22, 0.4);
}

.hc-notnow-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s;
}

.hc-notnow-btn:hover {
  color: #164e33;
  text-decoration: underline;
}

/* Explore Help Articles Section */
.hc-section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  color: #0f172a;
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

body[data-theme="dark"] .hc-section-title {
  color: #ffffff;
}

.hc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.hc-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0f172a;
  font-size: 15.5px;
  font-weight: 600;
}

.hc-card-left i {
  font-size: 22px;
  color: #164e33;
}

.hc-arrow {
  font-size: 16px;
  color: #94a3b8;
  transition: transform 0.2s, color 0.2s;
}

.hc-card:hover {
  background: rgba(22, 78, 51, 0.12);
  border-color: rgba(22, 78, 51, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 78, 51, 0.15);
}

.hc-card:hover .hc-card-left {
  color: #164e33;
}

.hc-card:hover .hc-arrow {
  color: #164e33;
  transform: translateX(4px);
}

body[data-theme="dark"] .hc-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .hc-card-left {
  color: #ffffff;
}

body[data-theme="dark"] .hc-card-left i {
  color: #a3e635;
}

body[data-theme="dark"] .hc-card:hover {
  background: rgba(163, 230, 53, 0.15);
  border-color: rgba(163, 230, 53, 0.35);
}

/* Floating Help Button */
.hc-floating-help-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
  transition: all 0.2s ease;
}

.hc-floating-help-btn:hover {
  background: #164e33;
  color: #ffffff;
  border-color: #164e33;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 78, 51, 0.35);
}

/* Spatial Dark Mode Overrides */
body[data-theme="dark"] .hc-custom-card,
body[data-theme="dark"] .hc-card {
  background: rgba(18, 56, 38, 0.55);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .hc-custom-card:hover,
body[data-theme="dark"] .hc-card:hover {
  background: rgba(24, 75, 50, 0.8);
  border-color: rgba(163, 230, 53, 0.5);
  box-shadow: 0 16px 44px rgba(163, 230, 53, 0.2);
}

body[data-theme="dark"] .hc-custom-card h3,
body[data-theme="dark"] .hc-section-title,
body[data-theme="dark"] .hc-card-left span {
  color: #ffffff !important;
}

body[data-theme="dark"] .hc-card-left i {
  color: #ffffff;
}

body[data-theme="dark"] .hc-arrow {
  color: #a3e635;
}

body[data-theme="dark"] .hc-floating-help-btn {
  background: rgba(18, 56, 38, 0.9);
  color: #ffffff;
  border-color: rgba(163, 230, 53, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .hc-floating-help-btn:hover {
  background: #10b981;
  color: #092014;
  border-color: #a3e635;
}

/* =========================================================================
   TRAVEL FAQS SPATIAL UI (Matching Currency, Country & Language Selector Theme)
   ========================================================================= */

.faq-spatial-container {
  max-width: 1080px;
  margin: 20px auto 60px auto;
  padding: 40px 36px 60px 36px;
  color: #0f172a;
  background: 
    radial-gradient(circle at 10% 10%, rgba(30, 107, 71, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(22, 78, 51, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 248, 244, 0.78) 100%);
  backdrop-filter: blur(40px) saturate(220%);
  -webkit-backdrop-filter: blur(40px) saturate(220%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 70px -15px rgba(6, 28, 18, 0.15), 0 2px 6px rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .faq-spatial-container {
  background: 
    radial-gradient(circle at 10% 10%, rgba(30, 107, 71, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(22, 78, 51, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(14, 38, 26, 0.95) 0%, rgba(8, 22, 15, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6);
}

.faq-hero-box {
  background: linear-gradient(135deg, #072216 0%, #164e33 60%, #0c3b25 100%);
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 32px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(7, 34, 22, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff !important;
}

.faq-hero-sub {
  font-size: 16px;
  opacity: 0.9;
  max-width: 680px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.9);
}

.faq-hero-desc {
  font-size: 14px;
  opacity: 0.75;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.faq-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}

.faq-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-pill-btn:hover,
.faq-pill-btn.active {
  background: rgba(22, 78, 51, 0.14);
  border-color: rgba(22, 78, 51, 0.3);
  color: #164e33;
  transform: translateY(-1px);
}

body[data-theme="dark"] .faq-pill-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body[data-theme="dark"] .faq-pill-btn:hover,
body[data-theme="dark"] .faq-pill-btn.active {
  background: rgba(163, 230, 53, 0.15);
  border-color: rgba(163, 230, 53, 0.35);
  color: #a3e635;
}

.faq-section-block {
  margin-bottom: 36px;
}

.faq-cat-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #164e33;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(22, 78, 51, 0.15);
}

body[data-theme="dark"] .faq-cat-heading {
  color: #a3e635;
  border-bottom-color: rgba(163, 230, 53, 0.2);
}

.faq-accordion-spatial {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-accordion-spatial summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-accordion-spatial summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-spatial summary::after {
  content: '↓';
  font-size: 16px;
  color: #164e33;
  transition: transform 0.2s ease;
}

.faq-accordion-spatial[open] summary::after {
  transform: rotate(180deg);
}

.faq-accordion-spatial[open] {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(22, 78, 51, 0.1);
  border-color: rgba(22, 78, 51, 0.25);
}

.faq-body-content {
  padding: 0 24px 22px 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
}

.faq-body-content ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.faq-body-content li {
  margin-bottom: 6px;
}

body[data-theme="dark"] .faq-accordion-spatial {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .faq-accordion-spatial summary {
  color: #ffffff;
}

body[data-theme="dark"] .faq-accordion-spatial summary::after {
  color: #a3e635;
}

body[data-theme="dark"] .faq-accordion-spatial[open] {
  background: rgba(18, 56, 38, 0.7);
  border-color: rgba(163, 230, 53, 0.35);
}

body[data-theme="dark"] .faq-body-content {
  color: #e2e8f0;
}

.faq-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.faq-checklist-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 18px;
}

.faq-checklist-card h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #164e33;
}

.faq-checklist-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
  color: #475569;
}

body[data-theme="dark"] .faq-checklist-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .faq-checklist-card h5 {
  color: #a3e635;
}

body[data-theme="dark"] .faq-checklist-card ul {
  color: #cbd5e1;
}

.faq-cta-banner {
  background: linear-gradient(135deg, #164e33 0%, #072216 100%);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  color: #ffffff;
  margin-top: 48px;
  box-shadow: 0 16px 40px rgba(7, 34, 22, 0.3);
}

.faq-cta-banner h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  margin: 0 0 8px 0;
  color: #ffffff !important;
}

.faq-cta-banner p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 248, 244, 0.92) 100%);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  color: #072216;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 15px 34px;
  font-size: 16.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, sans-serif;
  letter-spacing: -0.01em;
}

.faq-cta-btn i {
  font-size: 20px;
  color: #164e33;
}

.faq-cta-btn:hover {
  background: #ffffff;
  color: #164e33;
  border-color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

/* =========================================================================
   PREMIUM SPATIAL SUPPORT MODAL (Matching Attached Screenshot 100%)
   ========================================================================= */

#support-regional-modal .regional-modal-panel {
  max-width: 560px;
  background: linear-gradient(135deg, rgba(204, 220, 212, 0.96) 0%, rgba(184, 204, 194, 0.94) 100%);
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  color: #0c281c;
}

body[data-theme="dark"] #support-regional-modal .regional-modal-panel {
  background: linear-gradient(135deg, rgba(14, 38, 26, 0.96) 0%, rgba(8, 22, 15, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hc-topic-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 700;
  color: #0c281c;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.hc-topic-pill.active {
  background: rgba(22, 78, 51, 0.16);
  border: 1.5px solid #164e33;
  color: #164e33;
}

body[data-theme="dark"] .hc-topic-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body[data-theme="dark"] .hc-topic-pill.active {
  background: rgba(163, 230, 53, 0.18);
  border-color: #a3e635;
  color: #a3e635;
}

.hc-support-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: #0c281c;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.hc-support-input:focus {
  background: #ffffff;
  border-color: #164e33;
  box-shadow: 0 0 0 3px rgba(22, 78, 51, 0.15);
}

body[data-theme="dark"] .hc-support-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hc-support-submit-btn {
  width: 100%;
  padding: 15px 0;
  border-radius: 999px;
  background: #092c1d;
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(9, 44, 29, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.hc-support-submit-btn:hover {
  background: #04170e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(9, 44, 29, 0.5);
}

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

@media (max-width: 600px) {
  .hc-grid {
    grid-template-columns: 1fr;
  }
  .hc-search-wrapper {
    flex-direction: column;
  }
  .hc-search-btn {
    width: 100%;
  }
  .hc-hero-banner {
    padding: 32px 20px;
  }
}

/* =========================================================================
   HELP ARTICLES MODAL (Matching Country & Currency Regional Picker UI)
   ========================================================================= */

.hc-regional-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #0f172a;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.hc-regional-item:hover {
  background: rgba(22, 78, 51, 0.12);
  border-color: rgba(22, 78, 51, 0.25);
  color: #164e33;
  transform: translateX(2px);
}

.hc-regional-item i {
  font-size: 14px;
  color: #164e33;
  transition: transform 0.2s;
}

.hc-regional-item:hover i {
  transform: translateX(4px);
}

body[data-theme="dark"] .hc-regional-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body[data-theme="dark"] .hc-regional-item:hover {
  background: rgba(163, 230, 53, 0.15);
  border-color: rgba(163, 230, 53, 0.35);
  color: #a3e635;
}

body[data-theme="dark"] .hc-regional-item i {
  color: #a3e635;
}

/* =========================================================================
   HELP CENTER THEMED FOOTER PAGES
   ========================================================================= */

.hc-theme-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 40px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body[data-theme="dark"] .hc-theme-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hc-theme-card-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #164e33;
}

body[data-theme="dark"] .hc-theme-card-title {
  color: #a3e635;
}

.hc-theme-card p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.hc-theme-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hc-theme-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
}

.hc-theme-card-list li i {
  font-size: 18px;
  color: #164e33;
}

body[data-theme="dark"] .hc-theme-card-list li i {
  color: #a3e635;
}

/* ---------- JOURNEY PLANNER & RECENT SEARCHES ---------- */
.journey-planner-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
}

.journey-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.journey-title {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-0, #111827);
  letter-spacing: -0.025em;
  margin: 0;
}

body[data-theme="dark"] .journey-title {
  color: #ffffff;
}

.journey-subtitle {
  font-size: 13.5px;
  color: var(--muted-0, #5c6e64);
  margin: 0;
}

body[data-theme="dark"] .journey-subtitle {
  color: #9ca3af;
}

.journey-cards-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 16px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.journey-cards-scroll::-webkit-scrollbar {
  display: none;
}

.journey-card {
  width: 240px;
  height: 142px;
  border-radius: 16px;
  padding: 16px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 44, 30, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.journey-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
  transition: transform 0.5s ease;
  z-index: 1;
}

.journey-card:hover .journey-card-glow {
  transform: translate(10%, 10%);
}

.journey-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.journey-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.25s ease;
}

.journey-card:hover .journey-card-icon {
  background: rgba(255, 255, 255, 0.25);
}

.journey-card-badge {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 8px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.journey-card-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  margin-top: auto;
}

.journey-card-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.journey-card-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1px;
}

.journey-card-city {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.journey-card-date {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.journey-card-price-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.journey-card-price-value {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* ---------- COOKIE CONSENT BANNER & CONTROLS ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 44, 30, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(13, 44, 30, 0.15);
  z-index: 9999;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0;
  box-sizing: border-box;
}

body[data-theme="dark"] .cookie-banner {
  background: rgba(18, 31, 25, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.cookie-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-1, #374151);
  margin: 0;
  text-align: left;
}

body[data-theme="dark"] .cookie-text {
  color: #d1d5db;
}

.cookie-link {
  color: var(--color-primary, #0d2c1e);
  text-decoration: underline;
  font-weight: 600;
}

body[data-theme="dark"] .cookie-link {
  color: #86efac;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-save {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: var(--color-primary, #0d2c1e);
  color: #ffffff;
}

body[data-theme="dark"] .btn-cookie-accept,
body[data-theme="dark"] .btn-cookie-save {
  background: #164e33;
}

.btn-cookie-accept:hover,
.btn-cookie-save:hover {
  background: var(--color-primary-dark, #071810);
  transform: translateY(-1px);
}

.btn-cookie-manage,
.btn-cookie-back {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(13, 44, 30, 0.2);
  background: transparent;
  color: var(--color-primary, #0d2c1e);
}

body[data-theme="dark"] .btn-cookie-manage,
body[data-theme="dark"] .btn-cookie-back {
  border-color: rgba(255, 255, 255, 0.2);
  color: #86efac;
}

.btn-cookie-manage:hover,
.btn-cookie-back:hover {
  background: rgba(13, 44, 30, 0.05);
}

body[data-theme="dark"] .btn-cookie-manage:hover,
body[data-theme="dark"] .btn-cookie-back:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Preference Options */
.cookie-pref-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-0, #111827);
  margin: 0;
  text-align: left;
  letter-spacing: -0.01em;
}

body[data-theme="dark"] .cookie-pref-title {
  color: #ffffff;
}

.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(13, 44, 30, 0.08);
}

body[data-theme="dark"] .cookie-pref-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-pref-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.cookie-pref-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-0, #111827);
}

body[data-theme="dark"] .cookie-pref-name {
  color: #ffffff;
}

.cookie-pref-desc {
  font-size: 11.5px;
  color: var(--muted-0, #5c6e64);
}

body[data-theme="dark"] .cookie-pref-desc {
  color: #9ca3af;
}

.cookie-pref-status-always {
  font-size: 12px;
  font-weight: 700;
  color: #0d2c1e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body[data-theme="dark"] .cookie-pref-status-always {
  color: #86efac;
}

/* Switch styling */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

body[data-theme="dark"] .cookie-slider {
  background-color: #4b5563;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: #0d2c1e;
}

body[data-theme="dark"] .cookie-switch input:checked + .cookie-slider {
  background-color: #1e5f43;
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

/* ---------- REWARDS EXCLUSIVES STYLE SYSTEM ---------- */
.ex-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 4px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.ex-header-card {
  background: linear-gradient(135deg, #0d2c1e 0%, #173627 100%);
  border-radius: 16px;
  padding: 24px 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(13, 44, 30, 0.12);
}

.ex-header-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ex-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

.ex-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.ex-header-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 60%, #fef08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ex-header-subtitle {
  font-size: 13.5px;
  color: #a4bea8;
  margin: 0;
}

.ex-points-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.ex-points-label {
  font-size: 10px;
  font-weight: 700;
  color: #a4bea8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.ex-points-val {
  font-size: 18px;
  font-weight: 850;
  color: #facc15;
  letter-spacing: -0.01em;
}

/* Category Filters */
.ex-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
  padding-bottom: 2px;
}

.ex-filter-bar::-webkit-scrollbar {
  display: none;
}

.ex-filter-chip {
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid var(--line-0, #e7e7e7);
  background: #ffffff;
  color: var(--muted-0, #5c6e64);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

body[data-theme="dark"] .ex-filter-chip {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
  color: #9ca3af;
}

.ex-filter-chip.active {
  background: var(--color-primary, #0d2c1e);
  border-color: var(--color-primary, #0d2c1e);
  color: #ffffff;
}

body[data-theme="dark"] .ex-filter-chip.active {
  background: #1e5f43;
  border-color: #1e5f43;
  color: #ffffff;
}

/* Exclusives Grid */
.ex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.ex-card {
  background: #ffffff;
  border: 1px solid var(--line-0, #e7e7e7);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(24, 38, 51, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

body[data-theme="dark"] .ex-card {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ex-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(13, 44, 30, 0.08);
}

body[data-theme="dark"] .ex-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.ex-card-media {
  height: 160px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ex-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ex-card:hover .ex-card-img {
  transform: scale(1.04);
}

.ex-card-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(13, 44, 30, 0.85);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

body[data-theme="dark"] .ex-card-cat-badge {
  background: rgba(30, 95, 67, 0.85);
}

.ex-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ex-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-0, #111827);
  line-height: 1.35;
  margin: 0;
}

body[data-theme="dark"] .ex-card-title {
  color: #ffffff;
}

.ex-card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted-0, #5c6e64);
  margin: 0;
  flex: 1;
}

body[data-theme="dark"] .ex-card-desc {
  color: #9ca3af;
}

.ex-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-0, #e7e7e7);
  padding-top: 12px;
  margin-top: auto;
}

body[data-theme="dark"] .ex-card-footer {
  border-color: var(--line-0, #29332e);
}

.ex-card-price-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ex-card-price-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted-0, #5c6e64);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ex-card-price-val {
  font-size: 13.5px;
  font-weight: 850;
  color: var(--ink-0, #111827);
}

body[data-theme="dark"] .ex-card-price-val {
  color: #ffffff;
}

.btn-ex-action {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-ex-buy {
  background: var(--color-primary, #0d2c1e);
  color: #ffffff;
}

body[data-theme="dark"] .btn-ex-buy {
  background: #1e5f43;
}

.btn-ex-buy:hover {
  background: var(--color-primary-dark, #071810);
  transform: translateY(-1px);
}

.btn-ex-bid {
  border: 1px solid var(--color-primary, #0d2c1e);
  background: transparent;
  color: var(--color-primary, #0d2c1e);
}

body[data-theme="dark"] .btn-ex-bid {
  border-color: #86efac;
  color: #86efac;
}

.btn-ex-bid:hover {
  background: rgba(13, 44, 30, 0.05);
}

body[data-theme="dark"] .btn-ex-bid:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Legal Disclaimer */
.ex-disclaimer {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted-0, #5c6e64);
  margin-top: 12px;
  text-align: center;
  border-top: 1px solid var(--line-0, #e7e7e7);
  padding-top: 16px;
}

body[data-theme="dark"] .ex-disclaimer {
  border-color: var(--line-0, #29332e);
  color: #9ca3af;
}

/* ---------- PREMIUM EXCLUSIVES MODALS ---------- */
.ex-modal-wrap {
  text-align: center;
  padding: 8px;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.ex-modal-title {
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 8px;
  color: var(--color-primary, #0d2c1e);
  letter-spacing: -0.02em;
}

body[data-theme="dark"] .ex-modal-title {
  color: #86efac;
}

.ex-modal-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-0, #5c6e64);
  margin-bottom: 20px;
}

body[data-theme="dark"] .ex-modal-desc {
  color: #9ca3af;
}

.ex-modal-box {
  background: rgba(13, 44, 30, 0.04);
  border: 1px solid rgba(13, 44, 30, 0.08);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body[data-theme="dark"] .ex-modal-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.ex-modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-1, #374151);
}

body[data-theme="dark"] .ex-modal-row {
  color: #d1d5db;
}

.ex-modal-row strong {
  font-weight: 750;
}

.ex-modal-row .points-gold {
  color: #ca8a04;
  font-weight: 800;
}

.ex-modal-divider {
  border: 0;
  border-top: 1px solid rgba(13, 44, 30, 0.08);
  margin: 4px 0;
}

body[data-theme="dark"] .ex-modal-divider {
  border-color: rgba(255, 255, 255, 0.08);
}

.ex-modal-input-group {
  margin-bottom: 24px;
  text-align: left;
}

.ex-modal-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-0, #111827);
  display: block;
  margin-bottom: 8px;
}

body[data-theme="dark"] .ex-modal-label {
  color: #ffffff;
}

.ex-modal-input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(13, 44, 30, 0.2);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  box-sizing: border-box;
  background: #ffffff;
  color: var(--ink-0, #111827);
}

body[data-theme="dark"] .ex-modal-input {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface, #171d1a);
  color: #ffffff;
}

.ex-modal-error {
  font-size: 11.5px;
  color: #ef4444;
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

body[data-theme="dark"] .module-shell {
  background: linear-gradient(180deg, #171d1a 0%, #101512 100%);
  border-color: var(--line-0, #29332e);
}

/* ---------- EDITORIAL PORTFOLIO SYSTEM ---------- */
body.editorial-mode-active {
  background: #fdfcf7 !important;
}

body.editorial-mode-active .main {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

body.editorial-mode-active #results-label,
body.editorial-mode-active #journey-planner-container {
  display: none !important;
}

.header.editorial-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-bottom 0.35s ease;
}

.header.editorial-header.scrolled {
  background: rgba(253, 252, 247, 0.95); /* Ivory blurred */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 44, 30, 0.08);
}

.header.editorial-header .logo,
.header.editorial-header .btn-header,
.header.editorial-header .rpill-cur,
.header.editorial-header .rpill-flag,
.header.editorial-header .rpill-arrow {
  color: #ffffff !important;
}

.header.editorial-header.scrolled .logo,
.header.editorial-header.scrolled .btn-header,
.header.editorial-header.scrolled .rpill-cur,
.header.editorial-header.scrolled .rpill-flag,
.header.editorial-header.scrolled .rpill-arrow {
  color: #1a1a1a !important;
}

.edit-container {
  background: #fdfcf7; /* Ivory background */
  color: #1a1a1a;      /* Charcoal text */
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.edit-serif {
  font-family: "Fraunces", Georgia, serif;
}

/* 1. Hero Section */
.edit-hero {
  position: relative;
  height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 24px;
  box-sizing: border-box;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)), url('https://images.unsplash.com/photo-1530841377377-3ff06c0ca713?auto=format&fit=crop&w=1800&q=80'); /* Amalfi landscape */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.edit-hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
  max-width: 800px;
}

.edit-hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: #e5e7eb;
  margin-bottom: 32px;
  max-width: 600px;
  font-weight: 350;
  line-height: 1.6;
}

.btn-edit-gold {
  background: transparent;
  color: #fef08a;
  border: 1px solid #fef08a;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-edit-gold:hover {
  background: #fef08a;
  color: #0d2c1e;
  transform: translateY(-2px);
}

.edit-hero-badges {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
  justify-content: center;
}

/* Account info bar styling */
.edit-account-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  background: #fbfbf6;
  border-bottom: 1px solid rgba(13, 44, 30, 0.06);
  font-size: 13px;
  color: #4b5563;
}

@media (max-width: 768px) {
  .edit-account-bar {
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.btn-edit-signout {
  background: transparent;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-edit-signout:hover {
  background: rgba(239, 68, 68, 0.05);
  border-color: #ef4444;
}

/* 2. Brand Story Section */
.edit-story-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .edit-story-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
}

.edit-story-img-wrap {
  width: 100%;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.edit-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edit-story-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.edit-story-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ca8a04;
  font-weight: 700;
  margin-bottom: 12px;
}

.edit-story-quote {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 300;
}

.edit-story-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 0;
}

/* 3. Why Choose Us Section */
.edit-why-section {
  background: #fbfbf6;
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(13, 44, 30, 0.05);
  border-bottom: 1px solid rgba(13, 44, 30, 0.05);
}

.edit-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.edit-why-card {
  background: #ffffff;
  border: 1px solid rgba(13, 44, 30, 0.06);
  padding: 40px 24px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.01);
  transition: all 0.3s ease;
}

.edit-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.03);
}

.edit-why-icon {
  font-size: 24px;
  color: #ca8a04;
  margin-bottom: 18px;
}

.edit-why-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.edit-why-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6e64;
}

/* 4. The People Section */
.edit-team-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.edit-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.edit-team-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  height: 400px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.edit-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.edit-team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  text-align: left;
  transition: all 0.4s ease;
}

.edit-team-card:hover .edit-team-img {
  transform: scale(1.04);
}

.edit-team-name {
  font-size: 18px;
  font-weight: 750;
  margin: 0 0 2px 0;
}

.edit-team-role {
  font-size: 11px;
  text-transform: uppercase;
  color: #fcd34d;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.edit-team-inspiration {
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.edit-team-fav {
  font-size: 12.5px;
  font-weight: 800;
  color: #facc15;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.edit-team-card:hover .edit-team-fav {
  opacity: 1;
  transform: translateY(0);
}

/* 5. Signature Destinations */
.edit-destinations-section {
  padding: 100px 24px;
  background: #fbfbf6;
  text-align: center;
}

.edit-destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.edit-dest-card {
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

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

.edit-dest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #ffffff;
  text-align: left;
}

.edit-dest-card:hover .edit-dest-img {
  transform: scale(1.05);
}

.edit-dest-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* 6. Timeline Section */
.edit-experience-section {
  padding: 100px 24px;
  text-align: center;
}

.edit-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 64px auto 0;
  position: relative;
  flex-wrap: wrap;
  gap: 40px;
}

@media (max-width: 768px) {
  .edit-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    gap: 32px;
  }
}

.edit-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .edit-timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
}

.edit-step-num {
  font-size: 13px;
  font-weight: 800;
  color: #ca8a04;
  margin-bottom: 8px;
}

.edit-step-name {
  font-size: 15px;
  font-weight: 750;
  color: #1a1a1a;
}

/* 7. Testimonials */
.edit-testimonial-section {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.45)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80'); /* beach backdrop */
  background-size: cover;
  background-position: center;
  padding: 120px 24px;
  color: #ffffff;
  text-align: center;
}

.edit-testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.edit-test-quote {
  font-size: clamp(20px, 3.5vw, 30px);
  line-height: 1.45;
  font-weight: 300;
  margin-bottom: 32px;
}

.edit-test-author {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fcd34d;
}

/* 8. Trust Section */
.edit-trust-section {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}

.edit-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.edit-trust-val {
  font-size: 32px;
  font-weight: 300;
  color: #ca8a04;
  font-family: "Fraunces", Georgia, serif;
}

.edit-trust-lbl {
  font-size: 10.5px;
  font-weight: 750;
  color: #5c6e64;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 9. Final CTA */
.edit-final-cta {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=80'); /* mountain backdrop */
  background-size: cover;
  background-position: center;
  padding: 120px 24px;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.edit-cta-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.btn-edit-white {
  background: #ffffff;
  color: #0d2c1e;
  border: none;
  padding: 14px 36px;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-edit-white:hover {
  background: #fef08a;
  color: #0d2c1e;
  transform: translateY(-2px);
}

/* Fade-in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.edit-hero-title, .edit-hero-sub, .btn-edit-gold, .edit-hero-badges {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.edit-hero-sub {
  animation-delay: 0.15s;
}

.btn-edit-gold {
  animation-delay: 0.3s;
}

.edit-hero-badges {
  animation-delay: 0.45s;
}

/* 10. Travel Curation Library (Weekend Getaways, Travel Guides, Destination Articles) */
.edit-curation-section {
  background: #fdfcf7;
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(13, 44, 30, 0.05);
}

.edit-curation-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 48px;
  background: #f5f4ee;
  padding: 6px;
  border-radius: 40px;
  border: 1px solid rgba(13, 44, 30, 0.04);
}

.edit-curation-tab-btn {
  background: transparent;
  color: #5c6e64;
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.edit-curation-tab-btn:hover {
  color: #0d2c1e;
}

.edit-curation-tab-btn.active {
  background: #0d2c1e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(13, 44, 30, 0.15);
}

.edit-curation-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.edit-curation-grid.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.edit-curation-card {
  background: #ffffff;
  border: 1px solid rgba(13, 44, 30, 0.05);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 20px rgba(13, 44, 30, 0.01);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.edit-curation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 44, 30, 0.06);
  border-color: rgba(13, 44, 30, 0.12);
}

.edit-curation-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #e2e8f0;
}

.edit-curation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.edit-curation-card:hover .edit-curation-img {
  transform: scale(1.06);
}

.edit-curation-info {
  padding: 28px;
}

.edit-curation-category {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ca8a04;
  font-weight: 800;
  margin-bottom: 10px;
  display: inline-block;
}

.edit-curation-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.edit-curation-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5c6e64;
  margin-bottom: 24px;
}

.edit-curation-btn {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: #0d2c1e;
  border-bottom: 1px solid #0d2c1e;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.edit-curation-btn:hover {
  color: #ca8a04;
  border-color: #ca8a04;
}

/* ---------- PREMIUM BOOKINGS SYSTEM ---------- */
.pb-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  text-align: left;
}

.pb-header-left h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px 0;
  position: relative;
}

body[data-theme="dark"] .pb-header-left h1 {
  color: #ffffff;
}

.pb-header-left h1::after {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background-color: #137333;
  margin-top: 4px;
  border-radius: 2px;
}

.pb-header-left p {
  font-size: 14px;
  color: #5c6e64;
  margin: 0;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

body[data-theme="dark"] .secure-badge {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
}

.secure-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

body[data-theme="dark"] .secure-badge-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.secure-badge-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 12px;
}

.secure-badge-title {
  font-weight: 700;
  color: #111827;
}

body[data-theme="dark"] .secure-badge-title {
  color: #ffffff;
}

.secure-badge-desc {
  color: #6b7280;
}

.bookings-stats-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.bookings-stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

body[data-theme="dark"] .bookings-stat-card {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
}

.bookings-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.bookings-stat-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bookings-stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Color Themes for Circles */
.bookings-stat-card.sc-green .bookings-stat-icon { background: #e6f4ea; color: #137333; }
.bookings-stat-card.sc-blue .bookings-stat-icon { background: #e8f0fe; color: #1a73e8; }
.bookings-stat-card.sc-orange .bookings-stat-icon { background: #fef7e0; color: #b06000; }
.bookings-stat-card.sc-purple .bookings-stat-icon { background: #f3e8fd; color: #7627cb; }

body[data-theme="dark"] .bookings-stat-card.sc-green .bookings-stat-icon { background: rgba(19, 115, 51, 0.2); color: #86efac; }
body[data-theme="dark"] .bookings-stat-card.sc-blue .bookings-stat-icon { background: rgba(26, 115, 232, 0.2); color: #93c5fd; }
body[data-theme="dark"] .bookings-stat-card.sc-orange .bookings-stat-icon { background: rgba(176, 96, 0, 0.2); color: #fde047; }
body[data-theme="dark"] .bookings-stat-card.sc-purple .bookings-stat-icon { background: rgba(118, 39, 203, 0.2); color: #d8b4fe; }

.bookings-stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

.bookings-stat-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.bookings-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

body[data-theme="dark"] .bookings-stat-value {
  color: #ffffff;
}

.bookings-stat-desc {
  font-size: 11.5px;
  color: #6b7280;
}

.bookings-stat-chevron {
  color: #9ca3af;
  font-size: 16px;
}

.bookings-toolbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 12px 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  gap: 16px;
  flex-wrap: wrap;
}

body[data-theme="dark"] .bookings-toolbar-container {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
}

.bookings-search-input-wrapper {
  position: relative;
  flex: 1;
  max-width: 420px;
  min-width: 280px;
  display: flex;
  align-items: center;
}

.bookings-search-input-wrapper i.ti-search {
  position: absolute;
  left: 14px;
  color: #9ca3af;
  font-size: 18px;
}

.bookings-search-input-wrapper input {
  width: 100%;
  padding: 12px 46px 12px 42px;
  border-radius: 99px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

body[data-theme="dark"] .bookings-search-input-wrapper input {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-0, #29332e);
  color: #ffffff;
}

.bookings-search-input-wrapper input:focus {
  border-color: #137333;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(19, 115, 51, 0.08);
}

body[data-theme="dark"] .bookings-search-input-wrapper input:focus {
  border-color: #86efac;
  background: var(--surface, #171d1a);
}

.btn-search-adjustments {
  position: absolute;
  right: 14px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}

.btn-search-adjustments:hover {
  color: #111827;
}

body[data-theme="dark"] .btn-search-adjustments:hover {
  color: #ffffff;
}

.bookings-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.booking-filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

body[data-theme="dark"] .booking-filter-chip {
  border-color: var(--line-0, #29332e);
  color: #d1d5db;
}

.booking-filter-chip:hover {
  background: #f9fafb;
  border-color: #cbd5e1;
}

body[data-theme="dark"] .booking-filter-chip:hover {
  background: rgba(255, 255, 255, 0.04);
}

.booking-filter-chip.active {
  background: #0d2c1e;
  border-color: #0d2c1e;
  color: #ffffff;
}

body[data-theme="dark"] .booking-filter-chip.active {
  background: #86efac;
  border-color: #86efac;
  color: #0d2c1e;
}

.premium-booking-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  margin-bottom: 24px;
  overflow: hidden;
  text-align: left;
}

body[data-theme="dark"] .premium-booking-card {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
}

.pb-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

body[data-theme="dark"] .pb-card-header {
  background: rgba(255, 255, 255, 0.01);
  border-bottom-color: var(--line-0, #29332e);
}

.pb-ref-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pb-ref-badge {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

body[data-theme="dark"] .pb-ref-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-0, #29332e);
  color: #d1d5db;
}

.btn-copy-ref {
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  padding: 2px;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.btn-copy-ref:hover {
  color: #111827;
}

body[data-theme="dark"] .btn-copy-ref:hover {
  color: #ffffff;
}

.pb-status-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pb-status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pb-status-badge.pb-status-upcoming { background: #eff6ff; color: #2563eb; }
.pb-status-badge.pb-status-checked-in { background: #ecfdf5; color: #059669; }
.pb-status-badge.pb-status-completed { background: #f3f4f6; color: #4b5563; }
.pb-status-badge.pb-status-cancelled { background: #fef2f2; color: #dc2626; }

body[data-theme="dark"] .pb-status-badge.pb-status-upcoming { background: rgba(37, 99, 235, 0.15); color: #60a5fa; }
body[data-theme="dark"] .pb-status-badge.pb-status-checked-in { background: rgba(5, 150, 105, 0.15); color: #34d399; }
body[data-theme="dark"] .pb-status-badge.pb-status-completed { background: rgba(75, 85, 99, 0.15); color: #9ca3af; }
body[data-theme="dark"] .pb-status-badge.pb-status-cancelled { background: rgba(220, 38, 38, 0.15); color: #f87171; }

.pb-three-dots {
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.pb-card-body {
  display: grid;
  grid-template-columns: 240px 160px 1fr 180px;
  gap: 24px;
  padding: 24px;
  align-items: start;
}

@media (max-width: 1024px) {
  .pb-card-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pb-image-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

body[data-theme="dark"] .pb-image-wrapper {
  border-color: var(--line-0, #29332e);
}

.pb-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-photos-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pb-timeline-col {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
}

.pb-timeline-col::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  bottom: 14px;
  width: 1.5px;
  border-left: 2px dotted #d1d5db;
}

body[data-theme="dark"] .pb-timeline-col::before {
  border-left-color: #4b5563;
}

.pb-timeline-node {
  position: relative;
  margin-bottom: 24px;
  text-align: left;
}

.pb-timeline-node:last-child {
  margin-bottom: 12px;
}

.pb-timeline-node::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 2px solid #ffffff;
}

body[data-theme="dark"] .pb-timeline-node::before {
  border-color: var(--surface, #171d1a);
  background: #4b5563;
}

.pb-timeline-node.active::before {
  background: #10b981;
}

.pb-timeline-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 2px;
  display: block;
}

.pb-timeline-date {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

body[data-theme="dark"] .pb-timeline-date {
  color: #ffffff;
}

.pb-timeline-time {
  font-size: 11px;
  color: #6b7280;
}

.pb-duration-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 99px;
  margin-top: 4px;
}

body[data-theme="dark"] .pb-duration-pill {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
}

.pb-details-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pb-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.pb-hotel-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

body[data-theme="dark"] .pb-hotel-name {
  color: #ffffff;
}

.pb-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
}

body[data-theme="dark"] .pb-premium-badge {
  background: rgba(180, 83, 9, 0.2);
  color: #fcd34d;
}

.pb-room-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 8px;
}

body[data-theme="dark"] .pb-room-name {
  color: #34d399;
}

.pb-location {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.pb-facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pb-facility-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

body[data-theme="dark"] .pb-facility-tag {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-0, #29332e);
  color: #d1d5db;
}

.pb-cost-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
  height: 100%;
}

@media (max-width: 1024px) {
  .pb-cost-col {
    align-items: flex-start;
    text-align: left;
  }
}

.pb-price-display {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.pb-price-val {
  font-size: 32px;
  font-weight: 850;
  color: #111827;
  line-height: 1;
}

body[data-theme="dark"] .pb-price-val {
  color: #ffffff;
}

.pb-price-lbl {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.pb-price-toggle {
  background: transparent;
  border: none;
  color: #137333;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

body[data-theme="dark"] .pb-price-toggle {
  color: #86efac;
}

.pb-price-toggle i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.pb-price-toggle.expanded i {
  transform: rotate(180deg);
}

.pb-price-breakdown {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 11.5px;
  text-align: left;
  color: #4b5563;
  box-sizing: border-box;
}

body[data-theme="dark"] .pb-price-breakdown {
  background: rgba(255, 255, 255, 0.01);
  border-color: var(--line-0, #29332e);
  color: #9ca3af;
}

.pb-price-breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.pb-price-breakdown-row:last-child {
  margin-bottom: 0;
}

.pb-primary-action-btn {
  width: 100%;
  min-height: 40px;
  background: #0d2c1e;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(13, 44, 30, 0.16);
  transition: all 0.25s ease;
}

body[data-theme="dark"] .pb-primary-action-btn {
  background: #86efac;
  color: #0d2c1e;
  box-shadow: 0 4px 12px rgba(134, 239, 172, 0.16);
}

.pb-primary-action-btn:hover {
  background: #173b2a;
}

body[data-theme="dark"] .pb-primary-action-btn:hover {
  background: #a7f3d0;
}

.pb-card-footer {
  border-top: 1px solid #e5e7eb;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

body[data-theme="dark"] .pb-card-footer {
  border-top-color: var(--line-0, #29332e);
}

.pb-action-btn {
  background: transparent;
  border: none;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

body[data-theme="dark"] .pb-action-btn {
  color: #d1d5db;
}

.pb-action-btn:hover {
  background: #f3f4f6;
  color: #111827;
}

body[data-theme="dark"] .pb-action-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.pb-action-btn.btn-danger {
  color: #dc2626;
}

body[data-theme="dark"] .pb-action-btn.btn-danger {
  color: #f87171;
}

.pb-action-btn.btn-danger:hover {
  background: #fef2f2;
}

body[data-theme="dark"] .pb-action-btn.btn-danger:hover {
  background: rgba(220, 38, 38, 0.1);
}

.pb-help-banner {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

body[data-theme="dark"] .pb-help-banner {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
}

.pb-help-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pb-help-headset {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6f4ea;
  color: #137333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

body[data-theme="dark"] .pb-help-headset {
  background: rgba(19, 115, 51, 0.2);
  color: #86efac;
}

.pb-help-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pb-help-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

body[data-theme="dark"] .pb-help-title {
  color: #ffffff;
}

.pb-help-desc {
  font-size: 13.5px;
  color: #4b5563;
  margin-top: 2px;
}

body[data-theme="dark"] .pb-help-desc {
  color: #d1d5db;
}

.pb-help-desc strong {
  color: #111827;
}

body[data-theme="dark"] .pb-help-desc strong {
  color: #ffffff;
}

.pb-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

body[data-theme="dark"] .pb-contact-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-0, #29332e);
  color: #ffffff;
}

.pb-contact-btn:hover {
  background: #f9fafb;
  border-color: #cbd5e1;
}

body[data-theme="dark"] .pb-contact-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pb-contact-btn i {
  font-size: 14px;
}

.pb-footer-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: #6b7280;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Digital Voucher */
.digital-voucher {
  max-width: 620px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line-0, #e7e7e7);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(13, 44, 30, 0.08);
  overflow: hidden;
}

body[data-theme="dark"] .digital-voucher {
  background: var(--surface, #171d1a);
  border-color: var(--line-0, #29332e);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.dv-header {
  background: linear-gradient(135deg, #0d2c1e 0%, #173627 100%);
  color: #ffffff;
  padding: 24px;
  text-align: center;
  position: relative;
}

.dv-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 4px 0;
}

.dv-ref {
  font-family: monospace;
  font-size: 13px;
  opacity: 0.8;
}

.dv-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.dv-body::before,
.dv-body::after {
  content: '';
  position: absolute;
  top: 180px;
  width: 16px;
  height: 16px;
  background: var(--bg-primary, #e6f0e9);
  border-radius: 50%;
  border: 1px solid var(--line-0, #e7e7e7);
}

body[data-theme="dark"] .dv-body::before,
body[data-theme="dark"] .dv-body::after {
  background: #090e0b;
  border-color: var(--line-0, #29332e);
}

.dv-body::before { left: -9px; }
.dv-body::after { right: -9px; }

.dv-divider {
  border-top: 1px dashed var(--line-0, #e7e7e7);
  margin: 10px 0;
}

body[data-theme="dark"] .dv-divider {
  border-top-color: var(--line-0, #29332e);
}

/* QR Code Mock */
.dv-qrcode-container {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.dv-qrcode {
  width: 140px;
  height: 140px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #c0d2c5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: #0d2c1e;
}

/* Star reviews */
.rating-stars {
  display: inline-flex;
  gap: 6px;
  font-size: 24px;
  cursor: pointer;
  color: #cbd5e1;
}

.rating-stars i.active {
  color: #facc15;
}

/* Printable layout styling */
@media print {
  body * {
    visibility: hidden;
  }
  .digital-voucher,
  .digital-voucher * {
    visibility: visible;
  }
  .digital-voucher {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    box-shadow: none;
  }
  .dv-actions-row {
    display: none !important;
  }
}

/* ==========================================================================
   PROFILE DROPDOWN & DEDICATED MY ACCOUNT DASHBOARD
   ========================================================================== */
.header-account-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-avatar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-highlight, #237b51);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-right: 6px;
  box-shadow: 0 2px 6px rgba(35, 123, 81, 0.25);
  overflow: hidden;
}

.header-avatar-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 270px;
  background: #ffffff;
  border: 1px solid rgba(22, 78, 51, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(7, 26, 18, 0.15), 0 4px 12px rgba(7, 26, 18, 0.08);
  padding: 12px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 14px;
}

.profile-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #164e33, #237b51);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 78, 51, 0.2);
}

.profile-avatar-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-dropdown-userinfo {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-user-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--color-primary, #071a12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-user-email {
  font-size: 12px;
  color: #6a7b72;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-user-tier {
  font-size: 11px;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.profile-dropdown-divider {
  height: 1px;
  background: rgba(22, 78, 51, 0.08);
  margin: 6px 0;
}

.profile-dropdown-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-dropdown-links li a,
.profile-dropdown-links li button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334a3e;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.profile-dropdown-links li a:hover,
.profile-dropdown-links li button:hover {
  background: rgba(22, 78, 51, 0.05);
  color: var(--color-highlight, #237b51);
}

.profile-dropdown-links li a i,
.profile-dropdown-links li button i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #8da396;
}

.profile-dropdown-links li a:hover i,
.profile-dropdown-links li button:hover i {
  color: var(--color-highlight, #237b51);
}

.profile-dropdown-signout {
  color: #ef4444 !important;
}

.profile-dropdown-signout i {
  color: #ef4444 !important;
}

.profile-dropdown-signout:hover {
  background: rgba(239, 68, 68, 0.06) !important;
}

/* Account Dashboard Container */
.account-dashboard-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.account-hero-card {
  background: linear-gradient(135deg, #071a12 0%, #164e33 60%, #0d3823 100%);
  border-radius: 20px;
  padding: 36px 40px;
  color: #ffffff;
  margin-bottom: 28px;
  box-shadow: 0 16px 40px rgba(7, 26, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.account-hero-profile {
  display: flex;
  align-items: center;
  gap: 24px;
}

.account-hero-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #237b51, #10b981);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.account-hero-details h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

.account-hero-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.account-hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.account-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #facc15;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.account-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 18px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.account-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.account-stat-val {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

.account-stat-lbl {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Account Navigation Tabs */
.account-nav-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(22, 78, 51, 0.12);
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.account-nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #5c6e64;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.account-nav-tab:hover {
  color: var(--color-primary, #071a12);
  background: rgba(22, 78, 51, 0.04);
}

.account-nav-tab.active {
  color: var(--color-highlight, #237b51);
  border-bottom-color: var(--color-highlight, #237b51);
  background: rgba(22, 78, 51, 0.05);
}

/* Account Tab Content Panels */
.account-panel {
  display: none;
  animation: fadeInPanel 0.3s ease;
}

.account-panel.active {
  display: block;
}

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

.account-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.account-section-card {
  background: #ffffff;
  border: 1px solid rgba(22, 78, 51, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px -2px rgba(7, 26, 18, 0.04);
}

.account-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary, #071a12);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   ABOUT TRIVOY WHITE BLUR SPATIAL EDITORIAL STYLES
   ========================================================================== */
.footer-resource-page.fp-about-page {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  border-radius: 32px !important;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.88) 0%, rgba(246, 250, 248, 0.82) 50%, rgba(238, 246, 242, 0.78) 100%) !important;
  color: #1e293b !important;
  padding: 44px !important;
  box-shadow: 0 30px 80px -20px rgba(12, 46, 31, 0.1), 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1.5px 2px rgba(255, 255, 255, 0.95) !important;
  overflow: hidden;
  backdrop-filter: blur(40px) saturate(190%);
  -webkit-backdrop-filter: blur(40px) saturate(190%);
}

.footer-resource-page.fp-about-page::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 15%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.footer-resource-page.fp-about-page::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.fp-about-page .footer-resource-breadcrumb {
  color: #059669 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.95;
}

.fp-about-page .footer-resource-head h3 {
  color: #0c2e1f !important;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 42px);
  margin: 0;
  letter-spacing: -0.02em;
}

.fp-about-page .fp-legal-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 26px;
}

.fp-about-page .fp-legal-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  color: #334155 !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(12, 46, 31, 0.05), inset 0 1px 1px #ffffff !important;
}

.fp-about-page .fp-legal-meta-pill i {
  color: #059669 !important;
  font-size: 14px;
}

.fp-about-page .fp-legal-meta-pill strong {
  color: #0c2e1f;
}

/* Hero Spatial White Blur Chamber */
.fp-about-hero {
  background: rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 20px 50px -12px rgba(12, 46, 31, 0.08), 0 4px 16px rgba(0, 0, 0, 0.02), inset 0 1.5px 2px #ffffff !important;
  border-radius: 26px;
  padding: 44px 38px;
  margin-bottom: 38px;
  position: relative;
  overflow: hidden;
}

.fp-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #065f46 !important;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.08);
}

.fp-about-hero h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #0c2e1f !important;
  letter-spacing: -0.02em;
}

.fp-about-hero .fp-about-sub {
  font-size: 18px;
  font-weight: 600;
  color: #047857 !important;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.fp-about-lead {
  font-size: 16px;
  line-height: 1.75;
  color: #334155 !important;
  max-width: 860px;
  margin: 0;
}

.fp-about-lead p + p {
  margin-top: 14px;
}

/* Sections */
.fp-about-section {
  margin-bottom: 42px;
}

.fp-about-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #0c2e1f !important;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.fp-about-section-sub {
  font-size: 15px;
  color: #475569 !important;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Feature Cards (What We Do) */
.fp-about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.fp-about-card {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 22px !important;
  padding: 26px !important;
  box-shadow: 0 16px 36px -8px rgba(12, 46, 31, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02), inset 0 1px 1.5px #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.fp-about-card:hover {
  transform: translateY(-4px) scale(1.01) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 24px 50px -10px rgba(12, 46, 31, 0.12), 0 0 24px rgba(16, 185, 129, 0.08), inset 0 1px 2px #ffffff !important;
}

.fp-about-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.08) 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  color: #059669 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12) !important;
}

.fp-about-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #0c2e1f !important;
  margin: 0 0 8px;
}

.fp-about-card p {
  font-size: 14px;
  color: #475569 !important;
  line-height: 1.6;
  margin: 0;
}

/* Quote Bar */
.fp-about-quote-bar {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-left: 4px solid #059669 !important;
  border-radius: 0 18px 18px 0 !important;
  padding: 18px 24px !important;
  font-size: 15px !important;
  font-weight: 500;
  color: #065f46 !important;
  line-height: 1.6;
  box-shadow: 0 12px 30px rgba(12, 46, 31, 0.05), inset 0 1px 1px #ffffff !important;
}

/* Pillars (Why Choose Trivoy) */
.fp-about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fp-about-pillar-row {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 20px !important;
  padding: 22px 26px !important;
  align-items: flex-start;
  box-shadow: 0 12px 32px -8px rgba(12, 46, 31, 0.05), inset 0 1px 1.5px #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.fp-about-pillar-row:hover {
  transform: translateY(-3px) scale(1.008) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 20px 45px -8px rgba(12, 46, 31, 0.1), inset 0 1px 2px #ffffff !important;
}

.fp-about-pillar-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0c2e1f 0%, #164e33 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(12, 46, 31, 0.25) !important;
}

.fp-about-pillar-body h4 {
  font-size: 17.5px;
  font-weight: 700;
  color: #0c2e1f !important;
  margin: 0 0 6px;
}

.fp-about-pillar-body p {
  font-size: 14.5px;
  color: #475569 !important;
  line-height: 1.65;
  margin: 0;
}

/* Mission Box Spatial White-Emerald */
.fp-about-mission-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(236, 253, 245, 0.82) 100%) !important;
  backdrop-filter: blur(32px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 24px !important;
  padding: 38px 36px !important;
  margin-bottom: 42px;
  box-shadow: 0 24px 60px -15px rgba(16, 185, 129, 0.12), inset 0 1px 2px #ffffff !important;
}

.fp-about-mission-box h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: #064e3b !important;
  margin: 0 0 12px;
}

.fp-about-mission-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #047857 !important;
  margin: 0 0 10px;
}

.fp-about-mission-box p:last-child {
  margin-bottom: 0;
  color: #0c2e1f !important;
  font-weight: 700;
}

/* Contact Cards */
.fp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.fp-contact-card {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  box-shadow: 0 12px 30px rgba(12, 46, 31, 0.05), inset 0 1px 1.5px #ffffff !important;
  transition: all 0.25s ease !important;
}

.fp-contact-card:hover {
  transform: translateY(-3px) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 18px 40px rgba(12, 46, 31, 0.08), inset 0 1px 2px #ffffff !important;
}

.fp-contact-card-label {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b !important;
  margin-bottom: 8px;
}

.fp-contact-card-val {
  font-size: 15.5px;
  font-weight: 700;
  color: #0c2e1f !important;
}

.fp-contact-card-val a {
  color: #059669 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fp-contact-card-val a:hover {
  color: #047857 !important;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-resource-page.fp-about-page {
    padding: 24px 18px !important;
    border-radius: 22px !important;
  }
  .fp-about-hero {
    padding: 28px 20px !important;
  }
  .fp-about-pillar-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================================================
   SPATIAL NOTIFICATION CENTRE (Apple VisionOS / Spatial UI)
   ========================================================================== */
.ios-notif-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ios-notif-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Spatial Window */
.ios-notif-drawer {
  position: fixed;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: 460px;
  max-width: calc(100vw - 28px);
  height: calc(100vh - 28px);
  border-radius: 30px;
  background: radial-gradient(130% 120% at 50% 0%, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 248, 0.88) 50%, rgba(238, 246, 242, 0.84) 100%) !important;
  backdrop-filter: blur(48px) saturate(210%);
  -webkit-backdrop-filter: blur(48px) saturate(210%);
  border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 32px 80px -15px rgba(12, 46, 31, 0.18), 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 2px 2px rgba(255, 255, 255, 0.95) !important;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  overflow: hidden;
  color: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Ambient Spatial Depth Glow Orbs */
.ios-notif-drawer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.16) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(45px);
  z-index: 0;
}

.ios-notif-drawer::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(45px);
  z-index: 0;
}

body[data-theme="dark"] .ios-notif-drawer {
  background: radial-gradient(130% 120% at 50% 0%, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.92) 60%, rgba(10, 15, 28, 0.96) 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 32px 80px -15px rgba(0, 0, 0, 0.65), inset 0 1.5px 1.5px rgba(255, 255, 255, 0.2) !important;
  color: #f8fafc;
}

.ios-notif-drawer.open {
  transform: translateX(0);
}

/* Header */
.ios-notif-header {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

body[data-theme="dark"] .ios-notif-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ios-notif-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.ios-notif-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}

.ios-notif-title-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #0c2e1f !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 3px 10px rgba(12, 46, 31, 0.25);
  flex-shrink: 0;
}

body[data-theme="dark"] .ios-notif-title-icon {
  background: #0c2e1f !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
  color: #a7f3d0 !important;
}

.ios-notif-title-wrap h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: #0c2e1f;
  white-space: nowrap;
  line-height: 1.2;
}

body[data-theme="dark"] .ios-notif-title-wrap h2 {
  color: #ffffff;
}

/* Precision Unread Badge - strictly NO wrapping */
.ios-notif-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #0c2e1f !important;
  color: #ffffff !important;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(12, 46, 31, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

body[data-theme="dark"] .ios-notif-badge {
  background: #0c2e1f !important;
  border-color: rgba(52, 211, 153, 0.35);
  color: #a7f3d0 !important;
}

.ios-notif-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ios-notif-btn-read {
  height: 28px;
  padding: 0 10px;
  border-radius: 9px;
  background: rgba(12, 46, 31, 0.08) !important;
  border: 1px solid rgba(12, 46, 31, 0.2) !important;
  color: #0c2e1f !important;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(12, 46, 31, 0.06);
}

.ios-notif-btn-read:hover {
  background: #0c2e1f !important;
  border-color: #0c2e1f !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 46, 31, 0.25);
}

body[data-theme="dark"] .ios-notif-btn-read {
  background: rgba(12, 46, 31, 0.45) !important;
  border-color: rgba(52, 211, 153, 0.3) !important;
  color: #a7f3d0 !important;
}

body[data-theme="dark"] .ios-notif-btn-read:hover {
  background: #0c2e1f !important;
  border-color: #34d399 !important;
  color: #ffffff !important;
}

.ios-notif-btn-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(12, 46, 31, 0.06);
  border: 1px solid rgba(12, 46, 31, 0.15);
  color: #0c2e1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ios-notif-btn-close:hover {
  background: #0c2e1f;
  border-color: #0c2e1f;
  color: #ffffff;
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(12, 46, 31, 0.25);
}

body[data-theme="dark"] .ios-notif-btn-close {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
}

body[data-theme="dark"] .ios-notif-btn-close:hover {
  background: #0c2e1f;
  border-color: #34d399;
  color: #ffffff;
}

/* iOS Spatial Segmented Pill Tabs */
.ios-segmented-control {
  display: flex;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 3px;
  border-radius: 14px;
  gap: 3px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .ios-segmented-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.ios-segment-pill {
  flex: 1;
  height: 34px;
  background: transparent;
  border: none;
  padding: 0 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  border-radius: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

body[data-theme="dark"] .ios-segment-pill {
  color: #94a3b8;
}

.ios-segment-pill.active {
  background: #0c2e1f !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(12, 46, 31, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
}

body[data-theme="dark"] .ios-segment-pill.active {
  background: #0c2e1f !important;
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* High-Contrast Crisp Count Pill (Fixes muddy badge smudge) */
.ios-segment-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(12, 46, 31, 0.08);
  color: #0c2e1f;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

body[data-theme="dark"] .ios-segment-count {
  background: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.ios-segment-pill.active .ios-segment-count {
  background: #ffffff !important;
  color: #0c2e1f !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .ios-segment-pill.active .ios-segment-count {
  background: #ffffff !important;
  color: #0c2e1f !important;
}

/* Spatial Feed List */
.ios-notif-feed {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 10;
}

.ios-notif-section-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #64748b;
  margin: 0 0 10px 4px;
}

body[data-theme="dark"] .ios-notif-section-title {
  color: #94a3b8;
}

.ios-notif-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Spatial Floating Card */
.ios-notif-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 22px !important;
  padding: 16px 18px !important;
  box-shadow: 0 10px 28px -6px rgba(12, 46, 31, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03), inset 0 1px 1.5px #ffffff !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ios-notif-card:hover {
  transform: translateY(-3px) scale(1.012) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(12, 46, 31, 0.3) !important;
  box-shadow: 0 20px 45px -8px rgba(12, 46, 31, 0.14), inset 0 1.5px 2px #ffffff !important;
}

body[data-theme="dark"] .ios-notif-card {
  background: rgba(30, 41, 59, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

body[data-theme="dark"] .ios-notif-card:hover {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.5), inset 0 1.5px 1.5px rgba(255, 255, 255, 0.18) !important;
}

.ios-notif-card.is-unread {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(12, 46, 31, 0.35) !important;
  box-shadow: 0 12px 32px -4px rgba(12, 46, 31, 0.15), inset 0 1px 2px #ffffff !important;
}

body[data-theme="dark"] .ios-notif-card.is-unread {
  background: rgba(30, 41, 59, 0.95) !important;
  border-color: rgba(52, 211, 153, 0.45) !important;
}

.ios-notif-card-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Spatial Icon Pod */
.ios-notif-icon-pod {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.ios-notif-icon-flight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: #d97706;
  border-color: rgba(245, 158, 11, 0.25);
}

.ios-notif-icon-hotel {
  background: linear-gradient(135deg, rgba(12, 46, 31, 0.15) 0%, rgba(12, 46, 31, 0.06) 100%);
  color: #0c2e1f;
  border-color: rgba(12, 46, 31, 0.2);
}

.ios-notif-icon-deal {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.08) 100%);
  color: #4f46e5;
  border-color: rgba(99, 102, 241, 0.25);
}

.ios-notif-icon-tour {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0.08) 100%);
  color: #0d9488;
  border-color: rgba(20, 184, 166, 0.25);
}

.ios-notif-icon-security {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.2) 0%, rgba(100, 116, 139, 0.08) 100%);
  color: #475569;
  border-color: rgba(100, 116, 139, 0.25);
}

body[data-theme="dark"] .ios-notif-icon-flight {
  color: #fbbf24;
}
body[data-theme="dark"] .ios-notif-icon-hotel {
  color: #34d399;
}
body[data-theme="dark"] .ios-notif-icon-deal {
  color: #818cf8;
}
body[data-theme="dark"] .ios-notif-icon-tour {
  color: #2dd4bf;
}
body[data-theme="dark"] .ios-notif-icon-security {
  color: #94a3b8;
}

.ios-notif-card-content {
  flex: 1;
  min-width: 0;
}

.ios-notif-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}

.ios-notif-card-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2.5px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  color: #475569;
}

body[data-theme="dark"] .ios-notif-card-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.ios-notif-card-time {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
}

.ios-notif-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #0c2e1f;
  margin: 0 0 3px;
  line-height: 1.35;
}

body[data-theme="dark"] .ios-notif-card-title {
  color: #ffffff;
}

.ios-notif-card-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 9px;
}

body[data-theme="dark"] .ios-notif-card-desc {
  color: #cbd5e1;
}

.ios-notif-card-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 9px;
}

.ios-notif-meta-pill {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2.5px 8px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.04);
  color: #334155;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .ios-notif-meta-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.ios-notif-meta-pill.highlight {
  background: rgba(12, 46, 31, 0.08);
  border-color: rgba(12, 46, 31, 0.2);
  color: #0c2e1f;
  font-weight: 700;
}

body[data-theme="dark"] .ios-notif-meta-pill.highlight {
  background: rgba(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 0.35);
  color: #34d399;
}

/* PROPER PIXEL DARK GREEN ACTION BUTTON */
.ios-notif-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  border-radius: 11px;
  background: #0c2e1f !important;
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(12, 46, 31, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.ios-notif-card-btn:hover {
  background: #164e33 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(12, 46, 31, 0.35);
}

.ios-notif-card-btn:active {
  background: #071a12 !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(12, 46, 31, 0.2);
}

body[data-theme="dark"] .ios-notif-card-btn {
  background: #0c2e1f !important;
  border: 1px solid rgba(52, 211, 153, 0.35) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .ios-notif-card-btn:hover {
  background: #164e33 !important;
  border-color: #34d399 !important;
}

/* Card quick action bar on hover */
.ios-notif-quick-bar {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 3px 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

body[data-theme="dark"] .ios-notif-quick-bar {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(255, 255, 255, 0.15);
}

.ios-notif-card:hover .ios-notif-quick-bar {
  display: flex;
}

.ios-notif-quick-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: 50%;
  color: #64748b;
  cursor: pointer;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.ios-notif-quick-btn:hover {
  background: #0c2e1f !important;
  color: #ffffff !important;
}

body[data-theme="dark"] .ios-notif-quick-btn:hover {
  background: #0c2e1f !important;
  color: #ffffff !important;
}

.ios-notif-quick-btn.danger:hover {
  color: #ffffff !important;
  background: #b91c1c !important;
}

/* Empty State Spatial */
.ios-notif-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  margin: auto 0;
}

.ios-notif-empty-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.18);
}

.ios-notif-empty h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0c2e1f;
}

body[data-theme="dark"] .ios-notif-empty h4 {
  color: #ffffff;
}

.ios-notif-empty p {
  font-size: 13px;
  color: #64748b;
  max-width: 260px;
  margin: 0;
  line-height: 1.55;
}

/* Footer Status Bar Spatial */
.ios-notif-footer {
  padding: 14px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 10;
}

body[data-theme="dark"] .ios-notif-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.5);
  color: #94a3b8;
}

.ios-notif-radar-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: #0c2e1f;
}

body[data-theme="dark"] .ios-notif-radar-status {
  color: #e2e8f0;
}

.ios-notif-radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.ios-notif-swipe-hint {
  font-size: 11px;
  opacity: 0.8;
}

@media (max-width: 480px) {
  .ios-notif-drawer {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    border-radius: 24px;
  }
}

/* ==========================================================================
   GOGGLE CASH: ULTRA-LUXURY SWISS / SCANDINAVIAN FINTECH LOYALTY ENGINE
   Apple Pay / Linear / Stripe inspired minimal aesthetic.
   Tabular monospace figures, hairline borders, obsidian accents.
   ========================================================================== */

.footer-resource-page.fp-goggles-page,
.footer-resource-page.fp-goggles-fintech {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 48px;
  padding: 40px !important;
  background: #FAFAF9 !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-radius: 24px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 20px 40px -15px rgba(0, 0, 0, 0.03) !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Inter", -system-ui, sans-serif;
  color: #0F172A !important;
  -webkit-font-smoothing: antialiased;
}

body[data-theme="dark"] .footer-resource-page.fp-goggles-page,
body[data-theme="dark"] .footer-resource-page.fp-goggles-fintech {
  background: #090A0D !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  color: #F8FAFC !important;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5) !important;
}

/* Header & Value Proposition */
.goggle-ft-header {
  margin-bottom: 32px;
}

.goggle-ft-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.goggle-ft-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
}

body[data-theme="dark"] .goggle-ft-brand-badge {
  color: #94A3B8;
}

.goggle-ft-header h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.2;
}

body[data-theme="dark"] .goggle-ft-header h1 {
  color: #F8FAFC;
}

.goggle-ft-header p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #64748B;
  margin: 0;
  max-width: 680px;
}

body[data-theme="dark"] .goggle-ft-header p {
  color: #94A3B8;
}

/* Master Balance Card */
.goggle-ft-master-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 36px 36px 32px;
  margin-bottom: 36px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body[data-theme="dark"] .goggle-ft-master-card {
  background: #111318;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.goggle-ft-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Live Peg Indicator */
.goggle-ft-peg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.18);
  color: #059669;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
}

body[data-theme="dark"] .goggle-ft-peg-badge {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: #34D399;
}

.goggle-ft-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  position: relative;
  display: inline-block;
}

.goggle-ft-pulse-dot::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.5);
  animation: gogglePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes gogglePulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.goggle-ft-balance-title {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
  margin-bottom: 6px;
}

body[data-theme="dark"] .goggle-ft-balance-title {
  color: #94A3B8;
}

/* Extralight 56px font */
.goggle-ft-balance-display {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #0F172A;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

body[data-theme="dark"] .goggle-ft-balance-display {
  color: #F8FAFC;
}

.goggle-ft-balance-display .currency-label {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #64748B;
}

body[data-theme="dark"] .goggle-ft-balance-display .currency-label {
  color: #94A3B8;
}

.goggle-ft-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .goggle-ft-card-bottom {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.goggle-ft-trust-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #64748B;
  letter-spacing: -0.01em;
}

body[data-theme="dark"] .goggle-ft-trust-note {
  color: #94A3B8;
}

.goggle-ft-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Fintech Buttons */
.btn-ft-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  background: #0F172A !important;
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid #0F172A;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}

.btn-ft-primary:hover {
  background: #1E293B !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
}

.btn-ft-primary:active {
  transform: translateY(0);
}

body[data-theme="dark"] .btn-ft-primary {
  background: #F8FAFC !important;
  color: #0F172A !important;
  border-color: #F8FAFC;
}

body[data-theme="dark"] .btn-ft-primary:hover {
  background: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.btn-ft-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: transparent !important;
  color: #0F172A !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-ft-secondary:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.22) !important;
}

body[data-theme="dark"] .btn-ft-secondary {
  color: #F8FAFC !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body[data-theme="dark"] .btn-ft-secondary:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Sections */
.goggle-ft-section {
  margin-bottom: 36px;
}

.goggle-ft-section-header {
  margin-bottom: 16px;
}

.goggle-ft-section-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin: 0 0 4px;
}

body[data-theme="dark"] .goggle-ft-section-title {
  color: #F8FAFC;
}

.goggle-ft-section-desc {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

body[data-theme="dark"] .goggle-ft-section-desc {
  color: #94A3B8;
}

/* Trip Stacking: 2-Column Grid */
.goggle-ft-two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

/* 4-Item Grid */
.goggle-ft-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.goggle-ft-item-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
}

body[data-theme="dark"] .goggle-ft-item-card {
  background: #111318;
  border-color: rgba(255, 255, 255, 0.07);
}

.goggle-ft-item-card:hover {
  border-color: rgba(15, 23, 42, 0.25);
}

body[data-theme="dark"] .goggle-ft-item-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.goggle-ft-item-card.active {
  border-color: #0F172A;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

body[data-theme="dark"] .goggle-ft-item-card.active {
  border-color: #F8FAFC;
  background: #141720;
}

.goggle-ft-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.goggle-ft-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0F172A;
}

body[data-theme="dark"] .goggle-ft-item-icon {
  background: rgba(255, 255, 255, 0.06);
  color: #F8FAFC;
}

.goggle-ft-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  color: #FFFFFF;
  font-size: 11px;
}

body[data-theme="dark"] .goggle-ft-checkbox {
  border-color: rgba(255, 255, 255, 0.25);
}

.goggle-ft-item-card.active .goggle-ft-checkbox {
  background: #0F172A;
  border-color: #0F172A;
}

body[data-theme="dark"] .goggle-ft-item-card.active .goggle-ft-checkbox {
  background: #F8FAFC;
  border-color: #F8FAFC;
  color: #0F172A;
}

.goggle-ft-item-name {
  font-size: 13.5px;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: 4px;
}

body[data-theme="dark"] .goggle-ft-item-name {
  color: #F8FAFC;
}

.goggle-ft-item-cost {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
  font-size: 13px;
  color: #64748B;
}

body[data-theme="dark"] .goggle-ft-item-cost {
  color: #94A3B8;
}

/* Audit Summary Panel */
.goggle-ft-audit-panel {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body[data-theme="dark"] .goggle-ft-audit-panel {
  background: #111318;
  border-color: rgba(255, 255, 255, 0.07);
}

.goggle-ft-audit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .goggle-ft-audit-header {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.goggle-ft-audit-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 11px;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, monospace;
  color: #0F172A;
}

body[data-theme="dark"] .goggle-ft-audit-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #F8FAFC;
}

.goggle-ft-audit-tag.highlight {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

body[data-theme="dark"] .goggle-ft-audit-tag.highlight {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.goggle-ft-audit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.goggle-ft-audit-label {
  font-size: 13px;
  color: #64748B;
}

body[data-theme="dark"] .goggle-ft-audit-label {
  color: #94A3B8;
}

.goggle-ft-audit-value {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
  font-size: 13.5px;
  font-weight: 500;
  color: #0F172A;
}

body[data-theme="dark"] .goggle-ft-audit-value {
  color: #F8FAFC;
}

.goggle-ft-audit-value.emerald {
  color: #059669;
  font-size: 18px;
  font-weight: 600;
}

body[data-theme="dark"] .goggle-ft-audit-value.emerald {
  color: #10B981;
}

.goggle-ft-audit-formula {
  font-size: 11.5px;
  color: #94A3B8;
  font-family: ui-monospace, SFMono-Regular, monospace;
  margin: 8px 0 20px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .goggle-ft-audit-formula {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  color: #64748B;
}

/* Dynamic Checkout Slider Card */
.goggle-ft-slider-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

body[data-theme="dark"] .goggle-ft-slider-card {
  background: #111318;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.goggle-ft-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.goggle-ft-stay-title {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 3px;
}

body[data-theme="dark"] .goggle-ft-stay-title {
  color: #F8FAFC;
}

.goggle-ft-stay-sub {
  font-size: 12.5px;
  color: #64748B;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-feature-settings: "tnum";
}

body[data-theme="dark"] .goggle-ft-stay-sub {
  color: #94A3B8;
}

/* Minimalist Range Input */
.goggle-ft-range-wrap {
  margin: 20px 0 26px;
}

.goggle-ft-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}

body[data-theme="dark"] .goggle-ft-range {
  background: rgba(255, 255, 255, 0.12);
}

.goggle-ft-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0F172A;
  border: 2px solid #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.goggle-ft-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

body[data-theme="dark"] .goggle-ft-range::-webkit-slider-thumb {
  background: #F8FAFC;
  border-color: #090A0D;
}

.goggle-ft-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0F172A;
  border: 2px solid #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

/* Dynamic Receipt Card */
.goggle-ft-receipt-box {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

body[data-theme="dark"] .goggle-ft-receipt-box {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.goggle-ft-receipt-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.goggle-ft-receipt-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
}

body[data-theme="dark"] .goggle-ft-receipt-label {
  color: #94A3B8;
}

.goggle-ft-receipt-amt {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
  font-size: 18px;
  font-weight: 500;
  color: #0F172A;
}

body[data-theme="dark"] .goggle-ft-receipt-amt {
  color: #F8FAFC;
}

.goggle-ft-receipt-amt.rose {
  color: #E11D48;
}

body[data-theme="dark"] .goggle-ft-receipt-amt.rose {
  color: #FB7185;
}

.goggle-ft-receipt-amt.obsidian-bold {
  font-weight: 700;
}

/* Bank-Grade Activity Ledger */
.goggle-ft-ledger-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 8px 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

body[data-theme="dark"] .goggle-ft-ledger-card {
  background: #111318;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.goggle-ft-ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .goggle-ft-ledger-row {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.goggle-ft-ledger-row:last-child {
  border-bottom: none;
}

.goggle-ft-ledger-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.goggle-ft-ledger-title {
  font-size: 13.5px;
  font-weight: 500;
  color: #0F172A;
}

body[data-theme="dark"] .goggle-ft-ledger-title {
  color: #F8FAFC;
}

.goggle-ft-ledger-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #64748B;
}

body[data-theme="dark"] .goggle-ft-ledger-meta {
  color: #94A3B8;
}

.goggle-ft-ledger-ref {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
  font-weight: 600;
  color: #475569;
}

body[data-theme="dark"] .goggle-ft-ledger-ref {
  color: #CBD5E1;
}

.goggle-ft-ledger-delta {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
  font-size: 14.5px;
  font-weight: 600;
}

.goggle-ft-ledger-delta.credit {
  color: #059669;
}

body[data-theme="dark"] .goggle-ft-ledger-delta.credit {
  color: #10B981;
}

.goggle-ft-ledger-delta.debit {
  color: #E11D48;
}

body[data-theme="dark"] .goggle-ft-ledger-delta.debit {
  color: #FB7185;
}

/* Responsive */
@media (max-width: 860px) {
  .footer-resource-page.fp-goggles-page,
  .footer-resource-page.fp-goggles-fintech {
    padding: 24px 18px !important;
  }
  .goggle-ft-two-col {
    grid-template-columns: 1fr;
  }
  .goggle-ft-items-grid {
    grid-template-columns: 1fr;
  }
  .goggle-ft-receipt-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================================================================
   LUXURY DISCOVERY SECTIONS: SEASONAL RELEASES & WEEKEND ESCAPES
   Editorial Quiet Luxury · Conde Nast Traveler / Aman Resorts Aesthetic
   ========================================================================= */

/* Hero Discovery Quick Jump Links */
.hero-discovery-quick-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-disc-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-disc-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

.hero-disc-link:hover i {
  transform: translate(2px, 2px);
}

.hero-disc-link i {
  font-size: 12px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.hdl-badge {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #F8FAFC;
  display: inline-flex;
  align-items: center;
}

.hdl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  display: inline-block;
  margin-right: 5px;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
}

.hdl-text {
  letter-spacing: -0.01em;
}

/* Home Discovery Sections Showcase Container */
.home-discovery-sections {
  width: 100%;
  margin: 48px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Individual Luxury Section Canvas: Soft Warm Off-White (#FAFAF9) */
.luxury-disc-section {
  background: #FAFAF9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 46px 42px 50px;
  box-shadow: 0 4px 30px -10px rgba(0, 0, 0, 0.03);
  position: relative;
  scroll-margin-top: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-theme="dark"] .luxury-disc-section {
  background: #0E131C;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Section Header Typography */
.disc-section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.disc-header-meta {
  max-width: 680px;
}

.disc-micro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 12px;
}

body[data-theme="dark"] .disc-micro-tag {
  color: #94A3B8;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
  position: relative;
}

.live-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #10B981;
  opacity: 0.75;
  animation: discPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes discPulse {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.disc-section-title {
  font-family: "Fraunces", -apple-system, BlinkMacSystemFont, "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.15;
}

body[data-theme="dark"] .disc-section-title {
  color: #F8FAFC;
}

.disc-section-sub {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
  font-weight: 400;
}

body[data-theme="dark"] .disc-section-sub {
  color: #94A3B8;
}

.disc-peg-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

body[data-theme="dark"] .disc-peg-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #94A3B8;
}

/* SECTION 1: SEASONAL DEALS GRID */
.seasonal-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.luxury-deal-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

body[data-theme="dark"] .luxury-deal-card {
  background: #151C28;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.luxury-deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

body[data-theme="dark"] .luxury-deal-card:hover {
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.16);
}

.deal-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E2E8F0;
}

.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-deal-card:hover .deal-img {
  transform: scale(1.05);
}

.deal-glass-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0F172A;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

body[data-theme="dark"] .deal-glass-pill {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
  color: #F8FAFC;
}

.deal-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deal-meta-destination {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748B;
  margin-bottom: 6px;
}

body[data-theme="dark"] .deal-meta-destination {
  color: #94A3B8;
}

.deal-property-name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.28;
}

body[data-theme="dark"] .deal-property-name {
  color: #F8FAFC;
}

.deal-highlights {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 20px;
  flex: 1;
}

body[data-theme="dark"] .deal-highlights {
  color: #94A3B8;
}

.deal-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

body[data-theme="dark"] .deal-pricing-row {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.deal-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.deal-original-fare {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 13.5px;
  color: #94A3B8;
  text-decoration: line-through;
}

.deal-privileged-rate {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 21px;
  font-weight: 700;
  color: #0F172A;
}

body[data-theme="dark"] .deal-privileged-rate {
  color: #F8FAFC;
}

.deal-rate-unit {
  font-size: 12.5px;
  color: #64748B;
  font-weight: 400;
}

body[data-theme="dark"] .deal-rate-unit {
  color: #94A3B8;
}

.deal-goggle-yield {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

body[data-theme="dark"] .deal-goggle-yield {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border-color: rgba(52, 211, 153, 0.3);
}

.deal-card-footer {
  margin-top: auto;
}

.btn-luxury-reserve {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid #0F172A;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury-reserve:hover {
  background: #1E293B;
  border-color: #1E293B;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.btn-luxury-reserve:hover i {
  transform: translateX(3px);
}

.btn-luxury-reserve i {
  transition: transform 0.2s ease;
}

body[data-theme="dark"] .btn-luxury-reserve {
  background: #F8FAFC;
  color: #0F172A;
  border-color: #F8FAFC;
}

body[data-theme="dark"] .btn-luxury-reserve:hover {
  background: #E2E8F0;
  border-color: #E2E8F0;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.18);
}

/* SECTION 2: WEEKEND GETAWAYS ENGINE */
.escape-filter-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body[data-theme="dark"] .escape-filter-tabs {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.escape-filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #64748B;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

body[data-theme="dark"] .escape-filter-btn {
  color: #94A3B8;
}

.escape-filter-btn:hover {
  color: #0F172A;
}

body[data-theme="dark"] .escape-filter-btn:hover {
  color: #F8FAFC;
}

.escape-filter-btn.active {
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

body[data-theme="dark"] .escape-filter-btn.active {
  background: #182230;
  color: #F8FAFC;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.weekend-escapes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.escape-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.02);
}

body[data-theme="dark"] .escape-card {
  background: #151C28;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.escape-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

body[data-theme="dark"] .escape-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.escape-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E2E8F0;
}

.escape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.escape-card:hover .escape-img {
  transform: scale(1.05);
}

.escape-transit-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.escape-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.escape-meta-location {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748B;
  margin-bottom: 5px;
}

body[data-theme="dark"] .escape-meta-location {
  color: #94A3B8;
}

.escape-title {
  font-size: 17px;
  font-weight: 600;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.3;
}

body[data-theme="dark"] .escape-title {
  color: #F8FAFC;
}

.escape-highlights {
  font-size: 12.5px;
  color: #64748B;
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.5;
}

body[data-theme="dark"] .escape-highlights {
  color: #94A3B8;
}

.escape-footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .escape-footer-row {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.escape-rate-wrap {
  display: flex;
  flex-direction: column;
}

.escape-price {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
}

body[data-theme="dark"] .escape-price {
  color: #F8FAFC;
}

.escape-unit {
  font-size: 11.5px;
  color: #64748B;
  font-weight: 400;
}

body[data-theme="dark"] .escape-unit {
  color: #94A3B8;
}

.escape-goggle-sub {
  font-size: 10.5px;
  color: #059669;
  font-weight: 600;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

body[data-theme="dark"] .escape-goggle-sub {
  color: #34D399;
}

.btn-direct-reserve {
  padding: 8px 16px;
  border-radius: 10px;
  background: #0F172A;
  border: 1px solid #0F172A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-direct-reserve:hover {
  background: #1E293B;
  border-color: #1E293B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

body[data-theme="dark"] .btn-direct-reserve {
  background: #F8FAFC;
  color: #0F172A;
  border-color: #F8FAFC;
}

body[data-theme="dark"] .btn-direct-reserve:hover {
  background: #E2E8F0;
  border-color: #E2E8F0;
}

/* Focus Glow Animation when navigating to section */
@keyframes sectionFocusPulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.1); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.section-focus-glow {
  border-radius: 28px;
  animation: sectionFocusPulse 1.8s ease-in-out 2;
}

/* =========================================================================
   TRIVOY PREMIUM FLIGHT INTEGRATION COMPONENTS
   ========================================================================= */

/* --- Shimmer Loading Skeletons --- */
.flight-skeleton-card {
  background: var(--card-bg, #ffffff);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
body[data-theme="dark"] .flight-skeleton-card {
  background: #171d1a;
  border-color: rgba(255, 255, 255, 0.08);
}
.skeleton-bone {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 37%, #f1f5f9 63%);
  background-size: 400% 100%;
  animation: skeletonPulse 1.4s ease infinite;
  border-radius: 8px;
}
body[data-theme="dark"] .skeleton-bone {
  background: linear-gradient(90deg, #1e293b 25%, #334155 37%, #1e293b 63%);
  background-size: 400% 100%;
}
@keyframes skeletonPulse {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
.skeleton-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* --- Airport Autocomplete Spatial Pop-up (Scrollable) --- */
.flight-autocomplete-list {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  min-width: 380px !important;
  width: max-content !important;
  max-width: min(440px, 92vw) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border: 1.5px solid rgba(22, 78, 51, 0.2) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 60px -10px rgba(10, 38, 22, 0.3), 0 10px 24px rgba(0, 0, 0, 0.08) !important;
  max-height: 380px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  z-index: 99999 !important;
  display: none;
  padding: 0 0 8px 0 !important;
  list-style: none !important;
  margin: 0 !important;
  overscroll-behavior: contain !important;
  overscroll-behavior-y: contain !important;
  animation: ttpFadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.flight-autocomplete-list.open {
  display: block !important;
}

/* Custom smooth luxury scrollbar */
.flight-autocomplete-list::-webkit-scrollbar {
  width: 6px;
}
.flight-autocomplete-list::-webkit-scrollbar-track {
  background: transparent;
}
.flight-autocomplete-list::-webkit-scrollbar-thumb {
  background: rgba(22, 78, 51, 0.25);
  border-radius: 8px;
}
.flight-autocomplete-list::-webkit-scrollbar-thumb:hover {
  background: rgba(22, 78, 51, 0.5);
}

.flight-autocomplete-header {
  padding: 12px 18px 8px 18px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  color: #164e33 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-bottom: 1px solid rgba(22, 78, 51, 0.09) !important;
  position: sticky !important;
  top: 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 10 !important;
}

.flight-autocomplete-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 14px !important;
  margin: 2px 8px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  text-align: left !important;
  gap: 12px !important;
}

.flight-autocomplete-item:hover,
.flight-autocomplete-item.active {
  background: rgba(22, 78, 51, 0.08) !important;
}

.airport-item-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: left !important;
  min-width: 0 !important;
  flex: 1 !important;
}

.airport-item-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  background: rgba(22, 78, 51, 0.08) !important;
  color: #164e33 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
}

.airport-item-info {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  text-align: left !important;
}

.airport-item-title {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #0c2e1f !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

.airport-item-sub {
  font-size: 11.5px !important;
  color: #64748b !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-top: 2px !important;
  text-align: left !important;
}

.airport-iata-badge {
  background: rgba(22, 78, 51, 0.12) !important;
  color: #164e33 !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", "Fira Code", monospace !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  padding: 4px 9px !important;
  border-radius: 7px !important;
  letter-spacing: 0.5px !important;
  flex-shrink: 0 !important;
}

.flight-autocomplete-empty {
  padding: 24px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  color: #64748b !important;
  font-size: 13px !important;
}

/* Dark mode */
body[data-theme="dark"] .flight-autocomplete-list {
  background: rgba(18, 30, 24, 0.98) !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.7) !important;
}
body[data-theme="dark"] .flight-autocomplete-header {
  background: rgba(18, 30, 24, 0.96) !important;
  color: #34d399 !important;
  border-bottom-color: rgba(52, 211, 153, 0.18) !important;
}
body[data-theme="dark"] .flight-autocomplete-item:hover,
body[data-theme="dark"] .flight-autocomplete-item.active {
  background: rgba(52, 211, 153, 0.14) !important;
}
body[data-theme="dark"] .airport-item-icon {
  background: rgba(52, 211, 153, 0.16) !important;
  color: #34d399 !important;
}
body[data-theme="dark"] .airport-item-title {
  color: #f1f5f9 !important;
}
body[data-theme="dark"] .airport-item-sub {
  color: #94a3b8 !important;
}
body[data-theme="dark"] .airport-iata-badge {
  background: rgba(52, 211, 153, 0.2) !important;
  color: #34d399 !important;
}
body[data-theme="dark"] .flight-autocomplete-list::-webkit-scrollbar-thumb {
  background: rgba(52, 211, 153, 0.3);
}

/* --- Multi-city Builder --- */
.fl-multicity-builder {
  margin-top: 14px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
  border: 1px dashed rgba(15, 23, 42, 0.15);
}
body[data-theme="dark"] .fl-multicity-builder {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}
.fl-multicity-leg-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.fl-leg-index {
  font-size: 12px;
  font-weight: 700;
  color: #059669;
}
.btn-remove-leg {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 6px;
  font-size: 16px;
  border-radius: 6px;
}
.btn-remove-leg:hover {
  background: rgba(239, 68, 68, 0.1);
}
.btn-add-leg {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-add-leg:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

/* --- Flights Results Header & Sort Bar --- */
.flights-results-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--card-bg, #ffffff);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
body[data-theme="dark"] .flights-results-header-bar {
  background: #171d1a;
  border-color: rgba(255, 255, 255, 0.08);
}
.flights-header-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-0, #0f172a);
  display: flex;
  align-items: center;
  gap: 8px;
}
.flights-header-count .badge-verified {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 11px;
}
.flights-sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}
.flights-sort-select {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: var(--card-bg, #ffffff);
  color: var(--ink-0, #0f172a);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
body[data-theme="dark"] .flights-sort-select {
  background: #202722;
  border-color: rgba(255, 255, 255, 0.15);
}

/* --- Dynamic Filter Sidebar Styles --- */
.dyn-filter-box {
  margin-bottom: 20px;
}
.dyn-filter-box h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dyn-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink-0, #1e293b);
}
.dyn-filter-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.dyn-filter-item .count-badge {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}
.dyn-range-slider {
  width: 100%;
  accent-color: #059669;
  cursor: pointer;
}
.dyn-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  margin-top: 4px;
}

/* --- Flight Card Actions --- */
.flight-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
}
.btn-flight-details {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--ink-0, #1e293b);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s;
}
body[data-theme="dark"] .btn-flight-details {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-flight-details:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.2);
}
body[data-theme="dark"] .btn-flight-details:hover {
  background: rgba(255, 255, 255, 0.1);
}

.flight-card-actions .btn-flight-book,
.btn-hotel-see-availability.btn-flight-book {
  background: linear-gradient(135deg, #164e33 0%, #0e3724 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(22, 78, 51, 0.28) !important;
}

.flight-card-actions .btn-flight-book:hover,
.btn-hotel-see-availability.btn-flight-book:hover {
  background: linear-gradient(135deg, #0e3724 0%, #072216 100%) !important;
  box-shadow: 0 6px 18px rgba(22, 78, 51, 0.38) !important;
  transform: translateY(-1px);
}

/* --- Flight Details Drawer Component --- */
.flight-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.flight-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.flight-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 580px;
  background: var(--card-bg, #ffffff);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
body[data-theme="dark"] .flight-drawer-panel {
  background: #141a17;
  color: #f1f5f9;
}
.flight-drawer-backdrop.open .flight-drawer-panel {
  transform: translateX(0);
}
.flight-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg, #ffffff);
}
body[data-theme="dark"] .flight-drawer-header {
  background: #141a17;
  border-color: rgba(255, 255, 255, 0.08);
}
.drawer-title-area h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--ink-0, #0f172a);
}
.drawer-route-sub {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
}
.btn-close-drawer {
  background: rgba(15, 23, 42, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: background 0.2s;
}
.btn-close-drawer:hover {
  background: rgba(15, 23, 42, 0.1);
  color: #0f172a;
}
body[data-theme="dark"] .btn-close-drawer {
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}
body[data-theme="dark"] .btn-close-drawer:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.flight-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.flight-drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--card-bg, #ffffff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
body[data-theme="dark"] .flight-drawer-footer {
  background: #141a17;
  border-color: rgba(255, 255, 255, 0.08);
}
.drawer-footer-price {
  display: flex;
  flex-direction: column;
}
.drawer-total-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}
.drawer-total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #059669;
}
.btn-drawer-book {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-drawer-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

/* Timeline Components */
.drawer-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 18px 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.drawer-timeline-card {
  background: rgba(15, 23, 42, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 16px;
  margin-bottom: 14px;
}
body[data-theme="dark"] .drawer-timeline-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}
.timeline-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.timeline-point-time {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-0, #0f172a);
  min-width: 50px;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2.5px solid #059669;
  background: #ffffff;
  margin-top: 4px;
  flex-shrink: 0;
}
body[data-theme="dark"] .timeline-dot {
  background: #141a17;
}
.timeline-point-info {
  flex: 1;
}
.timeline-airport-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-0, #0f172a);
}
.timeline-terminal-badge {
  display: inline-block;
  font-size: 11px;
  color: #64748b;
  background: rgba(15, 23, 42, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
}
body[data-theme="dark"] .timeline-terminal-badge {
  background: rgba(255, 255, 255, 0.08);
}
.timeline-flight-leg-bar {
  margin: 10px 0 10px 6px;
  padding-left: 18px;
  border-left: 2px dashed #059669;
}
.flight-leg-details {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.drawer-layover-box {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  color: #b45309;
  border-radius: 8px;
  padding: 10px 14px;
  margin: 10px 0;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
body[data-theme="dark"] .drawer-layover-box {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.25);
  color: #f59e0b;
}

/* --- Upsell Fare Options Grid --- */
.upsell-selector-container {
  margin: 16px 0;
  padding: 14px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
body[data-theme="dark"] .upsell-selector-container {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.upsell-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.upsell-brand-card {
  background: var(--card-bg, #ffffff);
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
body[data-theme="dark"] .upsell-brand-card {
  background: #1c2420;
  border-color: rgba(255, 255, 255, 0.1);
}
.upsell-brand-card:hover {
  border-color: #059669;
}
.upsell-brand-card.selected {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.05);
  box-shadow: 0 0 0 1px #059669;
}
.upsell-brand-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink-0, #0f172a);
}
.upsell-brand-price {
  font-size: 14px;
  font-weight: 800;
  color: #059669;
}
.upsell-feature-item {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- Price Update Warning Banner --- */
.fare-change-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  animation: fadeInDown 0.3s ease;
}
body[data-theme="dark"] .fare-change-banner {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}
.fare-change-accept-btn {
  background: #dc2626;
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* --- Multi-Passenger Tabs --- */
.pax-tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pax-tab-btn {
  padding: 8px 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  color: #475569;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
body[data-theme="dark"] .pax-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}
.pax-tab-btn.active {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
}

/* ==========================================================================
   Trivoy Flight Checkout - Dedicated Modern Experience
   ========================================================================== */

.module-shell:has(.flight-checkout-page),
.module-shell.flight-checkout-active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.flight-checkout-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 80px;
  font-family: inherit;
  color: var(--text-primary, #0f172a);
}

/* Compact Checkout Header */
.fl-checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  margin-bottom: 24px;
  background: var(--card-bg, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

body[data-theme="dark"] .fl-checkout-header {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.08);
}

.fl-checkout-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fl-checkout-brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.fl-checkout-brand:hover {
  opacity: 0.9;
}

.fl-checkout-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

body[data-theme="dark"] .fl-checkout-back-btn {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.fl-checkout-back-btn:hover {
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-primary, #0f172a);
}

/* Stepper */
.fl-checkout-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fl-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.fl-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: rgba(148, 163, 184, 0.2);
  color: #64748b;
}

.fl-step-item.active {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
}

.fl-step-item.active .fl-step-num {
  background: #059669;
  color: #ffffff;
}

.fl-step-item.completed {
  color: #047857;
}

.fl-step-item.completed .fl-step-num {
  background: #10b981;
  color: #ffffff;
}

.fl-step-divider {
  width: 16px;
  height: 1px;
  background: #cbd5e1;
}

body[data-theme="dark"] .fl-step-divider {
  background: #334155;
}

.fl-checkout-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fl-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 5px 10px;
  border-radius: 999px;
}

body[data-theme="dark"] .fl-secure-badge {
  background: rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.3);
  color: #34d399;
}

/* Two-Column Grid */
.fl-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 960px) {
  .fl-checkout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Left Column Cards */
.fl-checkout-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s;
}

body[data-theme="dark"] .fl-checkout-card {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.fl-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body[data-theme="dark"] .fl-card-header {
  border-color: rgba(255, 255, 255, 0.06);
}

.fl-card-title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary, #0f172a);
}

.fl-card-subtitle {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

/* Flight Summary Hero */
.fl-hero-route-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.fl-hero-route-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.fl-hero-route-meta {
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fl-segments-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 18px;
}

body[data-theme="dark"] .fl-segments-flow {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.fl-segment-item {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  gap: 16px;
}

@media (max-width: 640px) {
  .fl-segment-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }
}

.fl-endpoint {
  display: flex;
  flex-direction: column;
}

.fl-endpoint.end {
  text-align: right;
}

@media (max-width: 640px) {
  .fl-endpoint.end {
    text-align: center;
  }
}

.fl-time {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.fl-iata {
  font-size: 15px;
  font-weight: 700;
  color: #059669;
}

.fl-city-name {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.fl-timeline-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.fl-timeline-duration {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
}

.fl-timeline-bar {
  width: 100%;
  height: 2px;
  background: #cbd5e1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

body[data-theme="dark"] .fl-timeline-bar {
  background: #475569;
}

.fl-timeline-icon {
  background: var(--card-bg, #ffffff);
  border: 1px solid #cbd5e1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 12px;
  z-index: 2;
}

body[data-theme="dark"] .fl-timeline-icon {
  background: #141a24;
  border-color: #475569;
}

.fl-timeline-stops {
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  margin-top: 6px;
}

.fl-connection-banner {
  background: #fffbeb;
  border: 1px dashed #f59e0b;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 8px 0;
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

body[data-theme="dark"] .fl-connection-banner {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

/* Fare Details Pill Row */
.fare-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.fare-perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #334155;
}

body[data-theme="dark"] .fare-perk-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.fare-perk-pill.included {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

body[data-theme="dark"] .fare-perk-pill.included {
  background: rgba(5, 150, 105, 0.12);
  border-color: rgba(5, 150, 105, 0.25);
  color: #34d399;
}

.fare-perk-pill.fee-applies {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #64748b;
}

body[data-theme="dark"] .fare-perk-pill.fee-applies {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}

.btn-view-rules {
  background: none;
  border: none;
  color: #059669;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  text-decoration: underline;
}

.btn-view-rules:hover {
  color: #047857;
}

/* Passenger Forms UX */
.fl-pax-accordion {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--card-bg, #ffffff);
}

body[data-theme="dark"] .fl-pax-accordion {
  border-color: rgba(255, 255, 255, 0.08);
  background: #141a24;
}

.fl-pax-accordion-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.02);
  user-select: none;
}

body[data-theme="dark"] .fl-pax-accordion-header {
  background: rgba(255, 255, 255, 0.02);
}

.fl-pax-accordion-title {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fl-pax-accordion-body {
  padding: 20px;
}

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

.fl-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fl-field-group label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

body[data-theme="dark"] .fl-field-group label {
  color: #94a3b8;
}

.fl-field-group input,
.fl-field-group select {
  height: 48px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: var(--card-bg, #ffffff);
  color: var(--text-primary, #0f172a);
  font-size: 14px;
  transition: all 0.2s ease;
}

body[data-theme="dark"] .fl-field-group input,
body[data-theme="dark"] .fl-field-group select {
  background: #0f141d;
  border-color: rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
}

.fl-field-group input:focus,
.fl-field-group select:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.fl-field-group.has-error input {
  border-color: #ef4444;
}

.fl-field-error {
  font-size: 11px;
  font-weight: 600;
  color: #ef4444;
  margin-top: 2px;
}

/* Contact Info Card */
.contact-info-note {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

/* Seat Map Container */
.checkout-seatmap-wrapper {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

body[data-theme="dark"] .checkout-seatmap-wrapper {
  background: #0d1219;
  border-color: rgba(255, 255, 255, 0.08);
}

.seatmap-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
}

.seatmap-swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.swatch-std { background: #ffffff; border: 2px solid #cbd5e1; }
.swatch-pref { background: #e0e7ff; border: 2px solid #6366f1; }
.swatch-legroom { background: #ecfdf5; border: 2px solid #059669; }
.swatch-sel { background: #059669; border: 2px solid #059669; }
.swatch-occ { background: #e2e8f0; border: 2px solid #cbd5e1; opacity: 0.5; }

.seatmap-fuselage {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 80px 80px 40px 40px;
  padding: 28px 20px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

body[data-theme="dark"] .seatmap-fuselage {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.1);
}

.fuselage-nose {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.seat-row-number {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  width: 24px;
  text-align: center;
}

.seat-cluster {
  display: flex;
  gap: 6px;
}

.checkout-seat-btn {
  width: 38px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 2px;
  font-family: inherit;
}

body[data-theme="dark"] .checkout-seat-btn {
  background: #1c2432;
  border-color: #334155;
  color: #f1f5f9;
}

.checkout-seat-btn.type-preferred {
  border-color: #818cf8;
  background: #eef2ff;
}

body[data-theme="dark"] .checkout-seat-btn.type-preferred {
  background: rgba(99, 102, 241, 0.15);
  border-color: #6366f1;
}

.checkout-seat-btn.type-legroom {
  border-color: #34d399;
  background: #ecfdf5;
}

body[data-theme="dark"] .checkout-seat-btn.type-legroom {
  background: rgba(5, 150, 105, 0.15);
  border-color: #059669;
}

.checkout-seat-btn:hover:not(:disabled) {
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

.checkout-seat-btn.selected {
  background: #059669 !important;
  border-color: #059669 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.checkout-seat-btn.selected .seat-tag {
  color: #ffffff !important;
}

.checkout-seat-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.seat-code {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.seat-tag {
  font-size: 9px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}

.seat-aisle {
  width: 20px;
}

.selected-seat-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #065f46;
}

body[data-theme="dark"] .selected-seat-banner {
  background: rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.3);
  color: #34d399;
}

/* Add-ons & Baggage */
.addons-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.addon-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
  background: var(--card-bg, #ffffff);
}

body[data-theme="dark"] .addon-card {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.08);
}

.addon-card.selected {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.02);
  box-shadow: 0 0 0 1px #059669;
}

body[data-theme="dark"] .addon-card.selected {
  background: rgba(5, 150, 105, 0.1);
}

.addon-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.addon-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.addon-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
}

.addon-desc {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.4;
}

.addon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body[data-theme="dark"] .addon-footer {
  border-color: rgba(255, 255, 255, 0.06);
}

.addon-price {
  font-size: 15px;
  font-weight: 800;
  color: #059669;
}

.btn-addon-toggle {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
}

body[data-theme="dark"] .btn-addon-toggle {
  background: #1c2432;
  border-color: #334155;
  color: #cbd5e1;
}

.btn-addon-toggle.active {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
}

/* Baggage Stepper */
.baggage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  margin-bottom: 10px;
}

body[data-theme="dark"] .baggage-row {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.baggage-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-step {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

body[data-theme="dark"] .btn-step {
  background: #1c2432;
  border-color: #334155;
  color: #cbd5e1;
}

.step-count {
  font-weight: 700;
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

/* Payment Section */
.payment-tabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.pay-tab-btn {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  background: var(--card-bg, #ffffff);
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

body[data-theme="dark"] .pay-tab-btn {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.pay-tab-btn.active {
  border-color: #059669;
  color: #059669;
  background: rgba(5, 150, 105, 0.04);
}

.card-input-with-badge {
  position: relative;
}

.card-brand-badge {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}

.terms-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}

body[data-theme="dark"] .terms-checkbox-wrap {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}

.terms-checkbox-wrap.error {
  border-color: #ef4444;
  background: #fef2f2;
}

/* Sticky Right Column Summary */
.fl-sticky-summary {
  position: sticky;
  top: 96px;
  background: var(--card-bg, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .fl-sticky-summary {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.summary-flight-snippet {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body[data-theme="dark"] .summary-flight-snippet {
  border-color: rgba(255, 255, 255, 0.06);
}

.summary-route {
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-meta {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.price-line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px;
}

body[data-theme="dark"] .price-line-item {
  color: #94a3b8;
}

.price-line-item.total-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
}

body[data-theme="dark"] .price-line-item.total-line {
  border-color: rgba(255, 255, 255, 0.1);
}

.total-figure {
  color: #059669;
  font-size: 22px;
}

.btn-pay-checkout {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
}

.btn-pay-checkout:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

.btn-pay-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.secure-payment-subtext {
  text-align: center;
  font-size: 11px;
  color: #64748b;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Step Navigation Buttons */
.step-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body[data-theme="dark"] .step-actions-row {
  border-color: rgba(255, 255, 255, 0.06);
}

.btn-step-prev {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: transparent;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-step-prev:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary, #0f172a);
}

.btn-step-next {
  padding: 12px 24px;
  border-radius: 10px;
  background: #059669;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-step-next:hover {
  background: #047857;
  transform: translateY(-1px);
}

/* Confirmation Card */
.checkout-confirmation-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--card-bg, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

body[data-theme="dark"] .checkout-confirmation-card {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.08);
}

.confirmation-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

body[data-theme="dark"] .confirmation-success-icon {
  background: rgba(5, 150, 105, 0.15);
  color: #34d399;
}

.confirmation-pnr-banner {
  display: inline-block;
  background: rgba(15, 23, 42, 0.03);
  border: 1px dashed rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 12px 24px;
  margin: 20px 0 28px;
}

body[data-theme="dark"] .confirmation-pnr-banner {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.pnr-code {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #059669;
  font-family: monospace;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn-conf-action {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-conf-action.primary {
  background: #059669;
  color: #ffffff;
  border: none;
}

.btn-conf-action.primary:hover {
  background: #047857;
}

.btn-conf-action.secondary {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #334155;
}

body[data-theme="dark"] .btn-conf-action.secondary {
  border-color: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

/* Fare Rules Side Drawer */
.fare-rules-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.fare-rules-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.fare-rules-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  width: 500px;
  max-width: 90vw;
  height: 100vh;
  background: var(--card-bg, #ffffff);
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  z-index: 1001;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body[data-theme="dark"] .fare-rules-drawer {
  background: #141a24;
}

.fare-rules-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body[data-theme="dark"] .drawer-header {
  border-color: rgba(255, 255, 255, 0.08);
}

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.drawer-rule-section {
  margin-bottom: 24px;
}

.drawer-rule-title {
  font-size: 14px;
  font-weight: 700;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

/* Mobile Sticky Action Bar */
.fl-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg, #ffffff);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px 20px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  z-index: 95;
  align-items: center;
  justify-content: space-between;
}

body[data-theme="dark"] .fl-mobile-bar {
  background: #141a24;
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .fl-mobile-bar {
    display: flex;
  }
}


