/* ── Tokens ─────────────────────────────── */
:root {
  --blue: #0057b8;
  --blue-dark: #00409a;
  --blue-light: #e8f2ff;
  --blue-mid: #cce0ff;
  --orange: #f97316;
  --green: #16a34a;
  --white: #ffffff;
  --bg: #f0f4f8;
  --surface: #ffffff;
  --border: #d1dce8;
  --text: #1a2840;
  --muted: #506070;
  --shadow-sm: 0 1px 4px rgba(0, 60, 130, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 60, 130, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 60, 130, 0.16);
  --r: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:"Manrope",sans-serif; font-size:15px; color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
button,input,select,textarea { font:inherit; }
img { max-width:100%; display:block; }

.top-banner {
  background: var(--blue-dark);
  color:#fff;
  text-align:center;
  font-size:.82rem;
  font-weight:700;
  padding:8px 16px;
  letter-spacing:.02em;
}
.top-banner a { color:#ffdd99; text-decoration:underline; }
.top-banner strong { color:#ffdd99; }

.site-header {
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky; top:0; z-index:300;
  box-shadow:var(--shadow-sm);
}
.header-inner {
  max-width:1280px; margin:0 auto;
  padding:0 24px;
  height:68px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand {
  display:flex; align-items:center; gap:10px;
  font-family:"Instrument Serif",serif;
  font-size:1.6rem; font-weight:400;
  color:var(--blue); white-space:nowrap;
}
.brand-plane { font-size:1.4rem; }
.header-phone {
  display:flex; align-items:center; gap:8px;
  background:var(--blue-light);
  border:1px solid var(--blue-mid);
  border-radius:var(--r);
  padding:8px 16px;
  color:var(--blue-dark);
  font-size:.9rem; font-weight:800;
  white-space:nowrap;
}
.header-phone svg { width:18px; height:18px; flex-shrink:0; }
.site-nav { display:flex; align-items:center; gap:4px; }
.site-nav a {
  display:flex; align-items:center; gap:5px;
  padding:7px 12px; border-radius:var(--r);
  font-size:.85rem; font-weight:600; color:var(--muted);
  transition:background .14s, color .14s;
  white-space:nowrap;
}
.site-nav a:hover { background:var(--blue-light); color:var(--blue); }
.site-nav a svg { width:16px; height:16px; }
.site-nav a.active {
  color: var(--accent, #1a6cff);
  font-weight: 700;
  border-bottom: 2px solid var(--accent, #1a6cff);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hero-section {
  background: linear-gradient(145deg, #003880 0%, #0057b8 45%, #0080d0 100%);
  padding: 56px 24px 130px;
  position:relative; overflow:hidden;
}
.hero-section::before {
  content:"";
  position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width:820px; margin:0 auto; text-align:center; position:relative; }
.hero-eyebrow {
  display:inline-block;
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25);
  border-radius:999px; color:rgba(255,255,255,.92);
  font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:5px 16px; margin-bottom:20px;
}
.hero-h1 {
  font-family:"Instrument Serif",serif;
  font-size:clamp(2rem,5vw,3.6rem); font-weight:400;
  color:#fff; line-height:1.12; letter-spacing:-.02em; margin-bottom:12px;
}
.hero-sub { font-size:1.05rem; color:rgba(255,255,255,.75); margin-bottom:0; line-height:1.6; }
.ota-disclosure {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.ota-disclosure a { color: rgba(255,255,255,0.9); text-decoration: underline; }

.search-float {
  max-width:1080px; margin:-88px auto 0;
  padding:0 24px; position:relative; z-index:20;
}
.search-card {
  background:#fff;
  border-radius:var(--r-xl);
  box-shadow:0 8px 48px rgba(0,60,130,.2), 0 0 0 1px rgba(0,60,130,.08);
  overflow:visible;
}
.trip-tabs { display:flex; border-bottom:1px solid var(--border); }
.trip-tab {
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 20px;
  border:none; background:var(--bg);
  font-size:.9rem; font-weight:700; color:var(--muted);
  cursor:pointer; border-right:1px solid var(--border);
  transition:background .14s, color .14s;
}
.trip-tab:last-child { border-right:none; }
.trip-tab svg { width:16px; height:16px; flex-shrink:0; }
.trip-tab:hover { background:var(--blue-light); color:var(--blue); }
.trip-tab.active {
  background:#fff; color:var(--blue);
  border-bottom:3px solid var(--blue);
  margin-bottom:-1px;
}
.search-body { padding:24px 28px 28px; }
.search-fields {
  display:grid;
  grid-template-columns: 1.4fr 40px 1.4fr 1fr 1fr auto;
  gap:0;
  border:1.5px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  margin-bottom:16px;
  align-items:stretch;
}
.sf {
  display:flex; flex-direction:column; justify-content:center;
  padding:14px 18px; gap:3px;
  border-right:1px solid var(--border);
  cursor:text; min-width:0;
  background:#fff; transition:background .14s;
}
.sf:last-child { border-right:none; }
.sf:focus-within { background:var(--blue-light); }
.sf-label {
  display:flex; align-items:center; gap:5px;
  font-size:.7rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase;
  color:var(--muted); margin-bottom:2px;
}
.sf-label svg { width:12px; height:12px; }
.sf input {
  border:none; background:transparent; padding:0; outline:none;
  font-size:1rem; font-weight:600; color:var(--text); width:100%;
}
.sf input::placeholder { color:#b0bec8; font-weight:500; font-size:.92rem; }
.sf-swap {
  display:flex; align-items:center; justify-content:center;
  background:var(--bg); border-right:1px solid var(--border);
  border:none; cursor:pointer; min-width:40px;
  color:var(--muted); transition:all .14s; flex-shrink:0;
}
.sf-swap:hover { background:var(--blue-light); color:var(--blue); }
.sf-swap svg { width:18px; height:18px; }
.sf-date input[type="date"] { cursor:pointer; font-size:.95rem; }
.sf-date.disabled { opacity:.4; pointer-events:none; }
.sf-pax { cursor:pointer; user-select:none; position:relative; }
.pax-display {
  font-size:1rem; font-weight:600; color:var(--text);
  display:flex; align-items:center; gap:6px;
}
.pax-display svg { width:16px; height:16px; color:var(--muted); }
.pax-dropdown {
  position:absolute; top:calc(100% + 8px); left:0;
  background:#fff; border:1px solid var(--border); border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg); padding:16px;
  min-width:280px; z-index:100;
  display:none;
}
.pax-dropdown.open { display:block; }
.pax-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid #eef2f7;
}
.pax-row:last-child { border-bottom:none; }
.pax-info .pax-name { font-size:.9rem; font-weight:700; color:var(--text); }
.pax-info .pax-age  { font-size:.75rem; color:var(--muted); }
.pax-stepper { display:flex; align-items:center; gap:10px; }
.pax-btn {
  width:32px; height:32px; border-radius:50%;
  border:2px solid var(--border); background:#fff;
  font-size:1.1rem; font-weight:700; color:var(--blue);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all .12s;
}
.pax-btn:hover:not(:disabled) { background:var(--blue); color:#fff; border-color:var(--blue); }
.pax-btn:disabled { opacity:.3; cursor:default; }
.pax-count { font-size:1rem; font-weight:700; width:20px; text-align:center; }
.pax-done {
  width:100%; margin-top:14px; padding:10px;
  background:var(--blue); color:#fff; border:none; border-radius:var(--r);
  font-size:.9rem; font-weight:700; cursor:pointer; transition:background .14s;
}
.pax-done:hover { background:var(--blue-dark); }
.cabin-row {
  display:flex; align-items:center; gap:10px; margin-bottom:20px; flex-wrap:wrap;
}
.cabin-label { font-size:.8rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; margin-right:4px; }
.cabin-pill {
  padding:5px 14px; border:1.5px solid var(--border); border-radius:999px;
  background:#fff; color:var(--muted); font-size:.8rem; font-weight:700;
  cursor:pointer; transition:all .13s; white-space:nowrap;
}
.cabin-pill:hover { border-color:var(--blue); color:var(--blue); }
.cabin-pill.active { background:var(--blue); border-color:var(--blue); color:#fff; }
.search-btn {
  width:100%;
  padding:16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color:#fff; border:none; border-radius:var(--r-lg);
  font-size:1.05rem; font-weight:800; letter-spacing:.02em;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:10px;
  box-shadow:0 4px 18px rgba(0,87,184,.38);
  transition:transform .15s, box-shadow .15s, background .15s;
}
.search-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,87,184,.46); background:linear-gradient(135deg,var(--blue-dark),#00317a); }
.search-btn svg { width:20px; height:20px; }
.multicity-form {
  margin-bottom: 20px;
  display: grid;
  gap: 14px;
}
.multicity-leg {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px;
  background: #f8fbff;
}
.multicity-leg .search-fields {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(180px, 0.9fr) auto;
}
.multicity-leg .sf {
  border-right: 1px solid var(--border);
}
.multicity-leg .sf-date {
  border-right: none;
}
.leg-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.remove-leg-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--r);
  padding: 10px 12px;
  color: #b42318;
  font-weight: 700;
  cursor: pointer;
  min-width: 110px;
}

.trust-strip {
  max-width:1080px; margin:20px auto 0;
  padding:0 24px;
  display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap;
}
.trust-badge {
  display:flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--border);
  border-radius:var(--r); padding:8px 14px;
  font-size:.78rem; font-weight:700; color:var(--muted);
  box-shadow:var(--shadow-sm);
}
.trust-badge svg { width:18px; height:18px; color:var(--blue); flex-shrink:0; }
.trust-badge.green svg { color:var(--green); }
.trust-badge.orange svg { color:var(--orange); }
.fare-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: #9aa0b8;
  padding: 4px 24px 8px;
  max-width: 720px;
  margin: 0 auto;
}
.sample-fares-strip {
  background: #f5f7ff;
  border-top: 1px solid #e4e8f5;
  border-bottom: 1px solid #e4e8f5;
  padding: 12px 24px;
  overflow-x: auto;
}
.sample-fares-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sample-fares-label { font-weight: 600; font-size: 0.85rem; color: #3a3f5c; white-space: nowrap; }
.sample-fare-items { display: flex; gap: 12px; flex-wrap: wrap; }
.sample-fare { font-size: 0.82rem; color: #5a6080; white-space: nowrap; }
.sample-fare strong { color: #1a6cff; }
.sample-fares-note { font-size: 0.72rem; color: #9aa0b8; margin-left: auto; white-space: nowrap; }

.search-status-bar {
  max-width:1080px; margin:12px auto 0; padding:0 24px;
}
.status { min-height:20px; font-size:.875rem; font-weight:600; color:var(--blue); }
.status-success { color: var(--green); }
.results-grid { display:flex; flex-direction:column; gap:12px; margin-top:8px; }
.offer-card {
  background:#fff; border:1.5px solid var(--border);
  border-radius:var(--r-lg); padding:20px 24px;
  display:grid; grid-template-columns:1fr auto;
  gap:20px; align-items:center;
  box-shadow:var(--shadow-sm);
  transition:border-color .18s, box-shadow .18s, transform .18s;
}
.offer-main {
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.offer-airline-logo {
  width:44px;
  height:44px;
  flex-shrink:0;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  object-fit:contain;
  padding:8px;
}
.offer-title-wrap {
  min-width:0;
}
.offer-title-wrap h3 {
  font-family:"Instrument Serif",serif;
  font-size:1.2rem;
  color:var(--text);
  margin-bottom:5px;
}
.offer-airline-fallback {
  width:44px;
  height:44px;
  flex-shrink:0;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--blue-light);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.82rem;
  font-weight:800;
}
.offer-card:hover {
  border-color:var(--blue); box-shadow:var(--shadow-md), 0 0 0 1px var(--blue);
  transform:translateY(-2px);
}
.offer-route { font-family:"Instrument Serif",serif; font-size:1.2rem; color:var(--text); margin-bottom:5px; }
.offer-meta { display:flex; gap:12px; flex-wrap:wrap; }
.offer-meta span { font-size:.8rem; font-weight:600; color:var(--muted); }
.offer-price { font-family:"Instrument Serif",serif; font-size:1.9rem; color:var(--blue); line-height:1; }
.offer-price-col { display:flex; flex-direction:column; align-items:flex-end; gap:10px; }

.primary-button {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:linear-gradient(135deg, var(--blue), var(--blue-dark));
  color:#fff; border:none; border-radius:var(--r);
  font-size:.9rem; font-weight:700; height:44px; padding:0 20px;
  cursor:pointer; white-space:nowrap;
  box-shadow:0 3px 12px rgba(0,87,184,.3);
  transition:transform .14s, box-shadow .14s;
}
.primary-button:hover:not(:disabled) { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,87,184,.4); }
.primary-button:disabled { opacity:.6; cursor:progress; }
.wide-button { width:100%; height:52px; font-size:1rem; border-radius:var(--r-lg); }

.main-wrap { max-width:1280px; margin:0 auto; padding:60px 24px 80px; }
.sec-header { margin-bottom:32px; }
.sec-header h2 {
  font-family:"Instrument Serif",serif;
  font-size:clamp(1.6rem,3vw,2.4rem); font-weight:400;
  color:var(--text); letter-spacing:-.02em; margin-bottom:6px;
}
.sec-header p { font-size:.95rem; color:var(--muted); }
.eyebrow {
  font-size:.72rem; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; color:var(--blue); display:block; margin-bottom:6px;
}

.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--r-lg);
  padding:28px; box-shadow:var(--shadow-sm);
  transition:box-shadow .18s, transform .18s;
}
.feature-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.feature-icon {
  width:52px; height:52px; background:var(--blue-light);
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.feature-icon svg { width:26px; height:26px; color:var(--blue); }
.feature-card h3 {
  font-family:"Instrument Serif",serif;
  font-size:1.15rem; font-weight:400; color:var(--text); margin-bottom:8px;
}
.feature-card p { font-size:.87rem; color:var(--muted); line-height:1.65; }

.dest-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.dest-card {
  border-radius:var(--r-lg); overflow:hidden;
  position:relative; cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .18s, transform .18s;
  aspect-ratio:4/3;
  background:#c8d8e8;
}
.dest-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.dest-card img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s;
}
.dest-card:hover img { transform:scale(1.06); }
.dest-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,30,70,.72) 0%, rgba(0,0,0,0) 50%);
}
.dest-label {
  position:absolute; bottom:0; left:0; right:0;
  padding:16px;
}
.dest-label .dest-from {
  font-size:.75rem; font-weight:700; color:rgba(255,255,255,.75);
  text-transform:uppercase; letter-spacing:.06em; display:block;
}
.dest-label .dest-to {
  font-size:1.15rem; font-weight:700; color:#fff;
  font-family:"Instrument Serif",serif;
}
.dest-card.dest-nyc  { background:linear-gradient(135deg,#1a3a5c,#2a6496); }
.dest-card.dest-lon  { background:linear-gradient(135deg,#2d4739,#3d7a52); }
.dest-card.dest-hnl  { background:linear-gradient(135deg,#1a4a5c,#2a8896); }
.dest-card.dest-par  { background:linear-gradient(135deg,#5c2d50,#964a7a); }
.dest-card.dest-las  { background:linear-gradient(135deg,#5c3d1a,#966a2a); }
.dest-card.dest-cun  { background:linear-gradient(135deg,#1a5c4a,#2a9680); }
.dest-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:3rem;
}
.dest-placeholder { display:none; }

.routes-tabs {
  display:flex; gap:4px; margin-bottom:20px; flex-wrap:wrap;
}
.routes-tab {
  padding:8px 18px; border-radius:999px;
  border:1.5px solid var(--border); background:#fff;
  font-size:.83rem; font-weight:700; color:var(--muted);
  cursor:pointer; transition:all .13s;
}
.routes-tab:hover { border-color:var(--blue); color:var(--blue); }
.routes-tab.active { background:var(--blue); border-color:var(--blue); color:#fff; }

.routes-panel { display:none; }
.routes-panel.active { display:block; }

.routes-list {
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
  border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden;
  background:#fff; box-shadow:var(--shadow-sm);
}
.route-link {
  display:block; padding:12px 18px;
  font-size:.87rem; font-weight:600; color:var(--blue);
  border-bottom:1px solid var(--border);
  border-right:1px solid var(--border);
  transition:background .13s;
  cursor:pointer;
}
.route-link:hover { background:var(--blue-light); }
.route-link:nth-child(3n) { border-right:none; }
.route-link:nth-last-child(-n+3) { border-bottom:none; }

.page-shell { max-width:1200px; margin:0 auto; padding:0 24px 80px; }
.narrow-shell { max-width:900px; }

.checkout-layout { display:grid; grid-template-columns:1.7fr .9fr; gap:24px; padding-top:32px; }
.checkout-main { display:flex; flex-direction:column; gap:20px; }
.summary-card { background:#fff; border:1px solid var(--border); border-radius:var(--r-lg); padding:28px; box-shadow:var(--shadow-sm); }
.panel-header { display:flex; justify-content:space-between; align-items:flex-end; gap:16px; margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid #eef2f7; }
.panel-header h1 { font-family:"Instrument Serif",serif; font-size:1.9rem; font-weight:400; color:var(--text); line-height:1.15; }
.panel-header h2 { font-family:"Instrument Serif",serif; font-size:1.3rem; font-weight:400; color:var(--text); }
.traveler-form, .passenger-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.passenger-card { background:var(--bg); border:1px solid var(--border); border-radius:var(--r); padding:20px; }
.passenger-card h3 { font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--muted); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--border); }
label { display:flex; flex-direction:column; gap:6px; font-size:.78rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--muted); }
input,select,textarea { width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:var(--r); background:#fff; color:var(--text); font-size:.9rem; font-weight:500; transition:border-color .14s, box-shadow .14s; appearance:none; }
input:focus,select:focus,textarea:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(0,87,184,.1); }
.checkbox-row input[type="checkbox"],
.filter-radio input[type="radio"],
.filter-check input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.checkbox-row { display:flex; flex-direction:row; align-items:flex-start; gap:12px; padding:12px 0; border-bottom:1px solid #eef2f7; }
.checkbox-row:last-child { border-bottom:none; }
.checkbox-row input[type="checkbox"] { width:18px; height:18px; flex-shrink:0; margin-top:2px; accent-color:var(--blue); }
.checkbox-row span, .checkbox-text { font-size:.88rem; color:var(--muted); line-height:1.55; font-weight:500; text-transform:none; letter-spacing:0; }
.checkbox-text {
  display: block;
  flex: 1 1 auto;
  cursor: pointer;
}
.policy-row {
  cursor: pointer;
}
.policy-row input[type="checkbox"] {
  cursor: pointer;
}
.policy-row .checkbox-text {
  margin: 0;
  display: block;
  flex: 1 1 auto;
  cursor: pointer;
  user-select: none;
}
.policy-row .checkbox-text a {
  position: relative;
  z-index: 1;
}
.checkbox-row a { color:var(--blue); text-decoration:underline; }
.checkout-sidebar { display:flex; flex-direction:column; gap:16px; position:sticky; top:80px; align-self:start; }
.checkout-sidebar h2 { font-family:"Instrument Serif",serif; font-size:1.1rem; font-weight:400; margin-bottom:12px; }
.checkout-sidebar ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.checkout-sidebar li { font-size:.84rem; color:var(--muted); display:flex; gap:8px; line-height:1.5; }
.checkout-sidebar li::before { content:"→"; color:var(--blue); flex-shrink:0; font-weight:700; }
.secure-notice { display:flex; align-items:center; gap:8px; font-size:.8rem; font-weight:600; color:var(--muted); padding:10px 14px; background:#f0fdf4; border:1px solid #bbf7d0; border-radius:var(--r); margin-top:12px; }
.secure-notice svg { width:14px; height:14px; color:var(--green); flex-shrink:0; }
.stripe-card-element {
  border: 1.5px solid #d0d5e8;
  border-radius: 10px;
  padding: 14px 16px;
  background: #fff;
  margin-top: 12px;
}
.payment-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.payment-brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #d8dee9;
  border-radius: 10px;
  background: #ffffff;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 150ms ease, opacity 150ms ease, transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.payment-brand-chip svg {
  width: 64px;
  height: 20px;
}
.payment-brand-chip.active,
.payment-brand-chip.is-active {
  filter: none;
  opacity: 1;
  background: #ffffff;
  transform: translateY(-1px);
  border-color: #c7d6f3;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.payment-intro {
  font-style: normal;
  line-height: 1.6;
}
.card-entry-shell {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #d8e2f5;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8ff 100%);
}
.card-entry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-entry-header h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
}
.card-security-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 87, 184, 0.1);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.payment-verification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.card-fields-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: end;
}
.card-number-field {
  position: relative;
}
.payment-card-status {
  margin-top: 12px;
  min-height: 20px;
}
.payment-card-status-success {
  color: #15803d;
}
.payment-card-status-error {
  color: #b91c1c;
}
.payment-grid-wide {
  grid-column: 1 / -1;
}
.payment-review-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff8e8;
  border: 1px solid #f6d38a;
  color: #8a5d06;
  font-size: 0.84rem;
  line-height: 1.55;
}
.stripe-error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 20px;
}
.ancillaries-actions { margin:12px 0 18px; }
#ancillaries-host { margin-top:12px; }
.seat-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(72px, 1fr));
  gap:10px;
  margin-top:14px;
}
.seat-button {
  border:1.5px solid var(--border);
  background:#fff;
  color:var(--text);
  border-radius:var(--r);
  padding:10px 8px;
  font-size:.82rem;
  font-weight:700;
  cursor:pointer;
}
.seat-button:hover { border-color:var(--blue); color:var(--blue); }
.seat-button.active { background:var(--blue); color:#fff; border-color:var(--blue); }

.legal-page { padding:40px 0 80px; }
.legal-page h1 { font-family:"Instrument Serif",serif; font-size:clamp(2rem,4vw,3rem); font-weight:400; color:var(--text); line-height:1.1; margin-bottom:12px; }
.legal-page h2 { font-family:"Instrument Serif",serif; font-size:1.35rem; font-weight:400; color:var(--text); margin-top:36px; margin-bottom:10px; padding-top:16px; border-top:1px solid #eef2f7; }
.legal-page p, .legal-page li { font-size:.93rem; color:var(--muted); line-height:1.75; margin-bottom:10px; }
.legal-page ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:8px; margin:12px 0 20px; }
.legal-page li { display:flex; align-items:flex-start; gap:10px; margin-bottom:0; }
.legal-page li::before { content:"✓"; color:var(--green); font-weight:800; flex-shrink:0; }
.legal-intro { font-size:1rem; color:var(--muted); border-left:3px solid var(--blue); padding-left:16px; margin:16px 0 32px; line-height:1.7; }

.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin:24px 0 40px; }
.step-card { background:#fff; border:1px solid var(--border); border-radius:var(--r-lg); padding:28px; box-shadow:var(--shadow-sm); }
.step-number { font-family:"Instrument Serif",serif; font-size:3.5rem; font-weight:400; line-height:1; margin-bottom:12px; background:linear-gradient(135deg,var(--blue),#38b2f0); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.step-card h3 { font-family:"Instrument Serif",serif; font-size:1.1rem; font-weight:400; color:var(--text); margin-bottom:8px; }
.step-card p { font-size:.87rem; color:var(--muted); line-height:1.65; }

.identity-card { background:linear-gradient(135deg,#003880,#0057b8); border-radius:var(--r-lg); padding:28px; color:#fff; margin:24px 0 36px; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.identity-card-item strong { font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#99ccff; display:block; margin-bottom:4px; }
.identity-card-item p { font-size:.95rem; color:rgba(255,255,255,.85); line-height:1.5; margin:0; }
.identity-card-item a { color:#99ccff; text-decoration:underline; }
.contact-form { display:grid; gap:18px; max-width:600px; margin-top:24px; }
.contact-form label { font-size:.76rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); }
.contact-form textarea { min-height:130px; resize:vertical; }
.form-success { color:var(--green); font-weight:700; font-size:.9rem; padding:12px 16px; background:#f0fdf4; border:1px solid #bbf7d0; border-radius:var(--r); }
.form-error { color:#dc2626; font-weight:700; font-size:.9rem; padding:12px 16px; background:#fef2f2; border:1px solid #fecaca; border-radius:var(--r); }

.not-found-page { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:55vh; text-align:center; gap:16px; padding:60px 0; }
.not-found-page h1 { font-family:"Instrument Serif",serif; font-size:2.5rem; font-weight:400; color:var(--text); }
.error-code { font-family:"Instrument Serif",serif; font-size:9rem; line-height:1; font-weight:400; background:linear-gradient(135deg,var(--blue),#38b2f0); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.not-found-page p { color:var(--muted); font-size:1rem; max-width:360px; }

.confirmation-page { padding:40px 0 80px; }
.confirmation-page h1 { font-family:"Instrument Serif",serif; font-size:clamp(2rem,4vw,3rem); font-weight:400; color:var(--text); letter-spacing:-.02em; margin-bottom:12px; }

.site-footer { background:#001e3d; color:rgba(255,255,255,.65); margin-top:80px; }
.footer-inner { max-width:1280px; margin:0 auto; padding:52px 24px 36px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; align-items:start; }
.footer-brand-name { font-family:"Instrument Serif",serif; font-size:1.5rem; color:#fff; display:block; margin-bottom:12px; }
.footer-brand p { font-size:.85rem; line-height:1.65; color:rgba(255,255,255,.5); }
.footer-col h4 { font-size:.7rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:#5badff; margin-bottom:14px; }
.footer-links { display:flex; flex-direction:column; gap:9px; }
.footer-links a { font-size:.875rem; color:rgba(255,255,255,.58); transition:color .14s; }
.footer-links a:hover { color:#fff; }
.footer-contact p { font-size:.875rem; color:rgba(255,255,255,.58); line-height:1.75; }
.footer-contact a { color:#5badff; }
.footer-bottom { max-width:1280px; margin:0 auto; padding:18px 24px; border-top:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:space-between; gap:16px; }
.footer-copy { font-size:.78rem; color:rgba(255,255,255,.32); }

.cookie-banner { position:fixed; bottom:20px; left:20px; right:20px; max-width:760px; margin:0 auto; background:#001e3d; border:1px solid rgba(255,255,255,.14); color:rgba(255,255,255,.85); padding:16px 20px; border-radius:var(--r-lg); display:flex; align-items:center; justify-content:space-between; gap:16px; z-index:9999; box-shadow:0 12px 40px rgba(0,0,0,.35); font-size:.875rem; }
.cookie-banner.hidden { display:none !important; }
.cookie-banner a { color:#5badff; text-decoration:underline; }
.cookie-banner-actions { flex-shrink:0; }
.cookie-accept-btn { background:var(--blue); color:#fff; border:none; padding:8px 20px; border-radius:8px; cursor:pointer; font-weight:700; font-size:.85rem; }
.cookie-accept-btn:hover { background:var(--blue-dark); }
.cookie-decline-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.cookie-decline-btn:hover {
  background: rgba(255,255,255,0.1);
}

.hidden { display:none !important; }
.small-note { font-size:.82rem; color:var(--muted); font-style:italic; }
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a6cff;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,108,255,0.4);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
}
.back-to-top.hidden { opacity: 0; pointer-events: none; transform: translateY(8px); display:flex !important; }
.faq-page details {
  border: 1px solid #e0e4ef;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-page details summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-page details summary::-webkit-details-marker { display: none; }
.faq-page details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #1a6cff;
  transition: transform 0.2s;
}
.faq-page details[open] summary::after { transform: rotate(45deg); }
.faq-page details p {
  padding: 0 20px 16px;
  color: #5a6080;
  margin: 0;
}

@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.hero-inner { animation:fadeUp .6s ease both; }
.search-float { animation:fadeUp .55s .18s ease both; }

@media(max-width:1024px) {
  .search-fields { grid-template-columns:1fr 40px 1fr; }
  .sf-pax, .sf-date:last-of-type { grid-column:1/-1; border-top:1px solid var(--border); }
  .search-fields .sf-swap { grid-row:1; grid-column:2; }
  .multicity-leg .search-fields { grid-template-columns:1fr 1fr; }
  .multicity-leg .sf-date,
  .multicity-leg .remove-leg-btn { grid-column:1/-1; border-top:1px solid var(--border); }
  .dest-grid { grid-template-columns:repeat(2,1fr); }
  .routes-list { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:800px) {
  .header-inner { padding:0 16px; height:60px; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 100;
  }
  .site-nav.open { display:flex; }
  .hero-section { padding:40px 16px 110px; }
  .search-float { padding:0 12px; margin-top:-70px; }
  .search-fields { grid-template-columns:1fr; }
  .sf-swap { display:none; }
  .sf { border-right:none; border-bottom:1px solid var(--border); }
  .multicity-leg .search-fields { grid-template-columns:1fr; }
  .multicity-leg .sf,
  .multicity-leg .sf-date { border-right:none; border-bottom:1px solid var(--border); }
  .multicity-leg .remove-leg-btn { width:100%; }
  .features-grid, .steps-grid { grid-template-columns:1fr; }
  .dest-grid { grid-template-columns:1fr 1fr; }
  .routes-list { grid-template-columns:1fr 1fr; }
  .checkout-layout, .traveler-form, .passenger-grid { grid-template-columns:1fr; }
  .identity-card { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:24px; }
  .page-shell { padding:0 12px 60px; }
  .cookie-banner { flex-direction:column; }
  .sample-fares-note { margin-left: 0; }
}
@media(max-width:520px) {
  .dest-grid { grid-template-columns:1fr; }
  .routes-list { grid-template-columns:1fr; }
  .route-link { border-right:none; }
  .footer-inner { grid-template-columns:1fr; }
  .header-phone { display:none; }
}

/* ════════════════════════════════════════════════════════
   PASSENGER DROPDOWN FIX
   Moved outside search-fields (no more overflow:hidden clip)
   ════════════════════════════════════════════════════════ */

/* The search-body is the positioning parent */
.search-body { position: relative; }

/* Remove the old broken position */
.pax-dropdown {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 500;
  display: none;
  min-width: 320px;
  width: min(340px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,87,184,.06);
  animation: dropIn .18s ease;
}

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

.pax-dropdown.open { display: block; }

.pax-dropdown-inner { padding: 16px; }

.pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.pax-row:last-of-type { border-bottom: none; }

.pax-info .pax-name { font-size: .92rem; font-weight: 700; color: var(--text); }
.pax-info .pax-age  { font-size: .75rem; color: var(--muted); margin-top: 2px; }

.pax-stepper { display: flex; align-items: center; gap: 12px; }
.pax-count   { font-size: 1.05rem; font-weight: 700; color: var(--text); min-width: 20px; text-align: center; }

.pax-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  font-size: 1.2rem; font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .12s;
  line-height: 1;
}
.pax-btn:hover:not(:disabled) { background: var(--blue); color: #fff; border-color: var(--blue); }
.pax-btn:disabled { opacity: .3; cursor: default; }

.pax-done {
  width: 100%; margin-top: 14px;
  padding: 11px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-size: .9rem; font-weight: 700;
  cursor: pointer;
  transition: background .14s;
}
.pax-done:hover { background: var(--blue-dark); }

/* ════════════════════════════════════════════════════════
   RESULTS AREA WRAPPER
   ════════════════════════════════════════════════════════ */
.results-area-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ─── Sort bar ───────────────────────────────────────── */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.results-count {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}
.sort-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sort-label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.sort-tab {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all .13s;
  white-space: nowrap;
}
.sort-tab:hover { border-color: var(--blue); color: var(--blue); }
.sort-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ─── Results layout (sidebar + list) ───────────────── */
.results-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

/* ─── Filter sidebar ─────────────────────────────────── */
.filter-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.filter-header h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
}
.filter-reset-btn {
  font-size: .76rem;
  font-weight: 700;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.filter-reset-btn:hover { text-decoration: underline; }

.filter-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f7;
}
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.filter-title {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-value { font-size: .82rem; font-weight: 700; color: var(--blue); text-transform: none; letter-spacing: 0; }

.filter-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  color: var(--text);
  cursor: pointer;
  padding: 5px 0;
}
.filter-radio input { accent-color: var(--blue); width: 16px; height: 16px; }

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px 0;
}
.filter-check input { accent-color: var(--blue); width: 15px; height: 15px; }

.airline-list {
  display: flex;
  flex-direction: column;
  max-height: 180px;
  overflow-y: auto;
}

.filter-slider {
  width: 100%;
  accent-color: var(--blue);
  margin: 8px 0 6px;
}
.filter-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .74rem;
  color: var(--muted);
}

/* departure time pills */
.time-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.time-pill {
  padding: 8px 6px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  transition: all .13s;
  line-height: 1.4;
}
.time-pill small { font-weight: 500; }
.time-pill:hover { border-color: var(--blue); color: var(--blue); }
.time-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.time-pill.active small { color: rgba(255,255,255,.8); }

/* sort pills in sidebar (mobile only) */
.mobile-sort-section { display: none; }
.sort-pills { display: flex; flex-direction: column; gap: 5px; }
.sort-pill {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: all .13s;
}
.sort-pill:hover { border-color: var(--blue); color: var(--blue); }
.sort-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ─── Offer cards ────────────────────────────────────── */
.offer-list { display: flex; flex-direction: column; gap: 12px; }

.offer-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s, box-shadow .18s, transform .15s;
  overflow: hidden;
}
.offer-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--blue);
  transform: translateY(-2px);
}

.offer-card-inner {
  display: grid;
  grid-template-columns: 100px 1fr auto 160px;
  gap: 0;
  align-items: center;
  padding: 20px 22px;
}

/* airline col */
.offer-airline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-right: 16px;
  border-right: 1px solid #eef2f7;
}
.offer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.offer-logo-fallback {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .04em;
}
.offer-airline-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}

/* flight details col */
.offer-details { padding: 0 20px; }

.offer-slice { margin-bottom: 10px; }
.offer-slice:last-child { margin-bottom: 0; }
.offer-slice-return { padding-top: 10px; border-top: 1px dashed var(--border); }
.offer-slice-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 6px; }

.offer-flight-row { display: flex; flex-direction: column; gap: 4px; }

.offer-times {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-time {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: -.02em;
}

.offer-duration-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.offer-dur-text {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
}
.dur-track {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2px;
}
.dur-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.dur-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 1px;
}
.offer-stops-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.offer-stops-badge.nonstop  { background: #dcfce7; color: #15803d; }
.offer-stops-badge.onestop  { background: #fef9c3; color: #854d0e; }
.offer-stops-badge.multistop { background: #fee2e2; color: #991b1b; }

.offer-airports {
  display: flex;
  justify-content: space-between;
}
.offer-airport {
  display: flex;
  flex-direction: column;
}
.offer-airport.right { align-items: flex-end; }
.offer-airport strong { font-size: .85rem; font-weight: 800; color: var(--text); }
.offer-airport span   { font-size: .72rem; color: var(--muted); }

/* baggage col */
.offer-baggage {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px;
  border-left: 1px solid #eef2f7;
  border-right: 1px solid #eef2f7;
}
.baggage-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  white-space: nowrap;
}
.baggage-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.baggage-item.included { color: var(--green); }
.baggage-item.not-included { color: #94a3b8; }
.offer-cabin-tag {
  margin-top: 4px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
  text-align: center;
}

/* price + CTA col */
.offer-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-left: 20px;
}
.offer-price-block { text-align: right; }
.offer-price {
  font-family: "Instrument Serif", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.02em;
}
.offer-price-sub { font-size: .72rem; color: var(--muted); font-weight: 600; margin-top: 2px; }

.book-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,87,184,.3);
  transition: transform .14s, box-shadow .14s;
}
.book-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,87,184,.4); }
.book-btn svg { width: 14px; height: 14px; }

.offer-fare-name {
  font-size: .7rem;
  color: var(--muted);
  text-align: right;
  font-style: italic;
}

/* status variations */
.status-info    { color: var(--blue); }
.status-warning { color: #b45309; }
.status-error   { color: #dc2626; }

.secondary-button {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  color: var(--text);
  font-size: .9rem;
  font-weight: 700;
  height: 44px;
  padding: 0 18px;
  cursor: pointer;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.status-pending_review { background: rgba(249, 115, 22, 0.12); color: #c2410c; }
.status-booked { background: rgba(22, 163, 74, 0.12); color: #15803d; }
.status-rejected { background: rgba(220, 38, 38, 0.12); color: #b91c1c; }

.admin-toolbar,
.inline-form,
.review-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-grid {
  display: grid;
  gap: 16px;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.review-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--muted);
}

.review-meta strong { color: var(--text); }

.review-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.review-note pre {
  white-space: pre-wrap;
  margin: 10px 0 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
}
.approval-panel {
  display: grid;
  gap: 12px;
}
.approval-panel label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.approval-panel input,
.approval-panel textarea {
  width: 100%;
}
.review-verification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-verification-card {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #f8fbff;
}
.review-verification-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}
.review-verification-card span {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

/* Empty state */
.results-empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.results-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.results-empty h3 { font-family: "Instrument Serif",serif; font-size: 1.5rem; font-weight:400; color: var(--text); margin-bottom: 8px; }
.results-empty p  { font-size: .9rem; color: var(--muted); }
.empty-state {
  text-align: center;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.empty-state h3 { font-size: 1.3rem; color: #2a2f45; margin: 0; }
.empty-state p { color: #6b7494; margin: 0; }
.skeleton-block {
  background: linear-gradient(90deg, #e8eaf0 25%, #f4f6fa 50%, #e8eaf0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
}
.skeleton-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Responsive results ─────────────────────────────── */
@media (max-width: 1024px) {
  .results-layout { grid-template-columns: 220px 1fr; }
  .offer-card-inner { grid-template-columns: 80px 1fr auto 140px; }
}

@media (max-width: 800px) {
  .results-area-wrap { padding: 0 12px 48px; }
  .results-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; max-height: none; display: none; }
  .filter-sidebar.mobile-open { display: block; }
  .mobile-sort-section { display: block; }
  .sort-bar { display: flex; }
  .sort-bar-right { display: none; }
  .offer-card-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .offer-airline {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid #eef2f7;
    padding-right: 0;
    padding-bottom: 12px;
  }
  .offer-baggage { border-left: none; border-right: none; border-top: 1px solid #eef2f7; border-bottom: 1px solid #eef2f7; padding: 12px 0; }
  .offer-price-col { align-items: flex-start; padding-left: 0; }
  .book-btn { width: 100%; justify-content: center; }
  /* pax dropdown responsive */
  .pax-dropdown { left: 12px !important; min-width: 260px; width: calc(100vw - 48px); }
  .admin-toolbar,
  .inline-form,
  .review-actions { flex-direction: column; align-items: flex-start; }
  .review-meta { grid-template-columns: 1fr; }
  .payment-verification-grid,
  .review-verification-grid { grid-template-columns: 1fr; }
}
