:root {
  --blue: #17588A;
  --blue-2: #287BB5;
  --blue-3: #2A81C9;
  --ink: #0f172a;
  --muted: #94a3b8;
  --line: rgba(23, 88, 138, 0.12);
  --card-border: rgba(65, 118, 159, 0.45);
  --bg: #F3F6F9;
  --grad-cta: linear-gradient(135deg, #66B3FF 0%, #7D65FF 100%);
  --grad-blue: linear-gradient(135deg, #17588A, #287BB5);
  --maxw: 1080px;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 380px at 8% -5%, rgba(102, 179, 255, .28), transparent 60%),
    radial-gradient(760px 420px at 100% 0%, rgba(125, 101, 255, .18), transparent 55%),
    linear-gradient(180deg, #eaf2fb 0%, var(--bg) 40%);
}

a { text-decoration: none; color: inherit; }
.container { width: min(var(--maxw), 92vw); margin: 0 auto; }
.muted { color: var(--muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, #012E95 0%, #0b3fb0 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 24px rgba(1, 46, 149, 0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand-logo { display: block; height: 34px; width: auto; }
.header-nav { display: flex; gap: 4px; }
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 10px;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero { padding: 44px 0 8px; text-align: center; }
.hero-title {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 10px;
  color: var(--blue);
}
.hero-sub { max-width: 620px; margin: 0 auto; color: #475569; font-size: clamp(14px, 2vw, 17px); }
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--card-border);
  font-size: 14px;
  color: #475569;
  box-shadow: 0 6px 20px rgba(23, 88, 138, 0.08);
}
.hero-stats b { color: var(--blue); }
.hero-stats .dot { width: 4px; height: 4px; border-radius: 50%; background: #cbd5e1; }

/* ---------- Main ---------- */
.main-content { padding: 26px 0 70px; }

/* ---------- Filter bar ---------- */
.filter-panel {
  margin-bottom: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(23, 88, 138, 0.1);
}
.filter-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 88, 138, 0.08);
}
.filter-quick-label,
.active-filters-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #94a3b8;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(23, 88, 138, 0.18);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: background .15s, border-color .15s;
}
.filter-chip:hover {
  background: rgba(23, 88, 138, 0.06);
  border-color: rgba(23, 88, 138, 0.35);
}
.filterbar { display: flex; flex-direction: column; gap: 12px; }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}
.filter-row-main .fb-grow { flex: 2 1 260px; }
.fb-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 150px;
  min-width: 120px;
}
.fb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .35px;
  color: #94a3b8;
  padding-left: 2px;
}
.fb-field {
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(23, 88, 138, 0.18);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.fb-field:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23, 88, 138, 0.14); }
.fb-search { min-width: 200px; }
.filter-months {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}
.month-quick {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 88, 138, 0.05);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.month-quick:hover { background: rgba(23, 88, 138, 0.1); color: var(--blue); }
.month-quick.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 88, 138, 0.08);
}
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 88, 138, 0.1);
  border: 1px solid rgba(23, 88, 138, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.active-chip:hover { background: rgba(23, 88, 138, 0.16); }
.fb-results {
  margin: -6px 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}
.fb-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(23, 88, 138, 0.18);
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.fb-switch input { width: 17px; height: 17px; accent-color: var(--blue); }
.fb-btn {
  height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: 12px;
  background: var(--grad-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(23, 88, 138, 0.25);
  transition: transform .12s, box-shadow .15s;
}
.fb-btn:hover { box-shadow: 0 10px 22px rgba(23, 88, 138, 0.32); }
.fb-btn:active { transform: translateY(1px); }
.fb-clear { font-weight: 600; font-size: 14px; color: var(--muted); padding: 0 6px; }
.fb-clear:hover { color: var(--blue); }

/* ---------- Ticket list ---------- */
.ticket-list.grid-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 768px) { .ticket-list.grid-mode { grid-template-columns: 1fr; } }

.ticket-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow:
    0 8px 32px rgba(23, 88, 138, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(23, 88, 138, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .2s ease;
}
.ticket-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(23, 88, 138, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.score-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  padding: 7px 18px;
  letter-spacing: .2px;
  white-space: nowrap;
}
.score-strip.score-good { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.score-strip.score-great { background: linear-gradient(135deg, #059669, #0d9488); }
.score-strip.score-hot { background: linear-gradient(135deg, #f97316, #ef4444); }

.chip.score { color: #fff; border: none; font-weight: 700; }
.chip.score.score-good { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.chip.score.score-great { background: linear-gradient(135deg, #059669, #0d9488); }
.chip.score.score-hot { background: linear-gradient(135deg, #f97316, #ef4444); }

.price-band {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.price-band.band-low { background: #ecfdf5; color: #059669; }
.price-band.band-normal { background: #eef4ff; color: #2563eb; }
.price-band.band-high { background: #fef2f2; color: #dc2626; }

.hover-reveal {
  position: absolute;
  right: 0;
  bottom: 12px;
  z-index: 30;
  background: var(--grad-cta);
  color: #fff;
  padding: 8px 16px 8px 14px;
  border-radius: 50px 0 0 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: -4px 4px 15px rgba(23, 88, 138, 0.25);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.ticket-card:hover .hover-reveal { filter: brightness(1.05); box-shadow: -6px 6px 18px rgba(23, 88, 138, 0.32); }
.hover-reveal:hover { transform: translateX(-2px); }

.top-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(23, 88, 138, 0.08);
  position: relative;
  z-index: 20;
}
.info-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.route-area {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  flex-grow: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.route-area::-webkit-scrollbar { display: none; }
.route-area span { white-space: nowrap; }
.arrow-icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--grad-blue);
  box-shadow: 0 4px 10px rgba(23, 88, 138, 0.2);
  border-radius: 50%;
  padding: 7px;
  transition: transform .3s, box-shadow .3s;
}
.ticket-card:hover .arrow-icon { transform: scale(1.06); box-shadow: 0 6px 14px rgba(23, 88, 138, 0.28); }
.action-area { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; padding-left: 10px; }
.price-info { color: var(--blue); }
.amount { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.badge-type {
  background: rgba(23, 88, 138, 0.05);
  color: var(--blue);
  padding: 3px 9px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  border: 1px solid rgba(23, 88, 138, 0.1);
}
.badge-type .direct-dot { color: #059669; font-weight: 700; }
.time-row {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 6px;
  border-top: 1px solid #eef2f6;
}

.marquee-wrapper {
  background: #F8FAFC;
  min-height: 48px;
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 104px 0 22px;
  overflow-x: auto;
  cursor: grab;
  white-space: nowrap;
  user-select: none;
  scrollbar-width: none;
}
.marquee-track::-webkit-scrollbar { display: none; }
.month-tag {
  font-size: 11px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(23, 88, 138, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
  transition: all .2s;
}
.ticket-card:hover .month-tag { border-color: var(--blue); background: rgba(23, 88, 138, 0.05); }
.fade-mask {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to left, #f8fafc, transparent);
  z-index: 15;
  pointer-events: none;
}

@media (max-width: 600px) {
  .info-grid { flex-wrap: wrap; }
  .route-area {
    width: 100%;
    order: 1;
    justify-content: center;
    padding: 10px 14px;
    background: #F8FAFC;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .action-area { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; order: 2; padding-left: 0; }
  .badge-type { order: 1; font-size: 12px; padding: 4px 10px; }
  .price-info { order: 2; }
}

/* ---------- Empty ---------- */
.empty {
  text-align: center;
  padding: 60px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--card-border);
  border-radius: 20px;
}
.empty-icon { font-size: 44px; }
.empty h3 { margin: 12px 0 6px; }
.empty .fb-btn { margin-top: 14px; }

/* ---------- How it works ---------- */
.howto { margin-top: 56px; }
.howto h2 { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 18px; }
.howto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.howto-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(23, 88, 138, 0.08);
}
.howto-num {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-blue);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}
.howto-item h3 { margin: 0 0 6px; font-size: 16px; }
.howto-item p { margin: 0; font-size: 14px; }

/* ---------- Detail page ---------- */
.detail-page { padding: 28px 0 70px; }
.back-link { display: inline-block; margin-bottom: 16px; font-weight: 600; color: #475569; }
.back-link:hover { color: var(--blue); }

.detail-hero {
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(23, 88, 138, 0.14);
}
.detail-hero-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.detail-route { display: flex; align-items: center; gap: 16px; }
.detail-flag {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  font-size: 34px;
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.detail-hero-top h1 { margin: 0; font-size: clamp(20px, 3.2vw, 30px); font-weight: 800; letter-spacing: -.5px; }
.detail-hero-top h1 .swap { color: var(--blue); }
.route-codes { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 1px; }
.detail-price { text-align: right; }
.price.large { font-size: 34px; font-weight: 800; color: var(--blue); line-height: 1; }
.price-note { font-size: 13px; color: var(--muted); }
.deal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.chip {
  font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(23, 88, 138, 0.05);
  border: 1px solid rgba(23, 88, 138, 0.12);
  color: var(--blue);
}
.chip.badge { background: #ecfdf5; color: #059669; border-color: #c7f0dd; }

.month-nav { display: flex; gap: 8px; overflow-x: auto; padding: 20px 0 4px; scrollbar-width: none; }
.month-nav::-webkit-scrollbar { display: none; }
.month-pill {
  flex: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(23, 88, 138, 0.2);
  font-weight: 600; font-size: 14px;
  color: var(--blue);
}
.month-pill:hover { background: rgba(23, 88, 138, 0.06); }

.month-section {
  padding: 20px 22px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(23, 88, 138, 0.08);
}
.month-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.month-head h2 { margin: 0; font-size: 18px; font-weight: 800; color: var(--blue); }
.options-list { display: flex; flex-direction: column; gap: 10px; }
.option-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 88, 138, 0.1);
  border-radius: 14px;
  background: #fcfdff;
  transition: border-color .15s, box-shadow .15s;
}
.option-row:hover { border-color: rgba(23, 88, 138, 0.35); box-shadow: 0 6px 16px rgba(23, 88, 138, 0.08); }
.option-price { font-size: 22px; font-weight: 800; color: var(--blue); }
.trip-days {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}
.date-line { display: flex; align-items: center; gap: 8px; font-size: 15px; margin-bottom: 3px; }
.date-tag { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: .3px; }
.date-tag.out { background: rgba(23, 88, 138, 0.08); color: var(--blue); }
.date-tag.ret { background: #fff4e6; color: #c2670a; }
.option-airline { font-size: 13px; margin: 6px 0 0; }

.booking-tip {
  margin-top: 20px;
  padding: 16px 20px;
  background: #f8fafc;
  border-color: rgba(23, 88, 138, 0.14);
}
.booking-tip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}
.booking-tip strong { color: var(--blue); font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .12s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: 0 6px 16px rgba(23, 88, 138, 0.25); }
.btn-primary:hover { box-shadow: 0 10px 24px rgba(23, 88, 138, 0.34); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: none;
  background: linear-gradient(135deg, #012E95 0%, #0b3fb0 100%);
  padding: 38px 0;
  margin-top: 48px;
  text-align: center;
}
.footer-logo { height: 30px; margin-bottom: 12px; }
.site-footer p { margin: 4px 0; font-size: 13px; color: rgba(255, 255, 255, 0.72); }
.footer-links { margin: 10px 0 !important; }
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover { color: #fff; }
.footer-affiliate { font-size: 12px !important; opacity: 0.85; }

/* ---------- Legal pages ---------- */
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}
.legal-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  color: #64748b;
}
.legal-nav a:hover { border-color: rgba(23, 88, 138, 0.35); color: var(--blue); }
.legal-nav a.active {
  background: rgba(23, 88, 138, 0.08);
  border-color: rgba(23, 88, 138, 0.25);
  color: var(--blue);
}
.legal-page { padding-bottom: 24px; }
.legal-doc {
  padding: 28px 32px;
  margin: 12px 0 24px;
}
.legal-doc h1 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -.4px;
}
.legal-updated {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
}
.legal-doc h2 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}
.legal-doc p,
.legal-doc li {
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
}
.legal-doc ul {
  margin: 8px 0 16px;
  padding-left: 1.25rem;
}
.legal-doc a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-doc a:hover { color: var(--blue-2); }
.legal-doc code {
  font-size: 0.9em;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(23, 88, 138, 0.08);
  color: var(--blue);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: rgba(23, 88, 138, 0.06);
  color: var(--blue);
  font-weight: 700;
  width: 28%;
}
.legal-table thead th { width: auto; }

.affiliate-disclosure {
  margin: 14px 0 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  background: rgba(23, 88, 138, 0.04);
  border: 1px solid rgba(23, 88, 138, 0.1);
  border-radius: 12px;
}
.affiliate-disclosure a { color: var(--blue); text-decoration: underline; }

.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(15, 23, 42, 0.94);
  color: #e2e8f0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}
.cookie-notice-inner {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-notice p {
  margin: 0;
  flex: 1 1 240px;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-notice a { color: #7dd3fc; text-decoration: underline; }
.cookie-notice[hidden] { display: none !important; }

/* ---------- Landing / breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0 8px;
  font-size: 13px;
  color: #64748b;
}
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.landing-intro h2,
.landing-months h2,
.landing-related h2 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--blue);
}
.landing-intro p { margin: 0 0 10px; }
.landing-month-pills { margin-top: 4px; }
.related-list { display: grid; gap: 8px; }
.related-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  transition: border-color .15s, box-shadow .15s;
}
.related-row:hover {
  border-color: rgba(23, 88, 138, 0.35);
  box-shadow: 0 6px 18px rgba(23, 88, 138, 0.08);
}
.related-price { font-weight: 700; color: var(--blue); white-space: nowrap; }
.dest-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(23, 88, 138, 0.25);
  text-underline-offset: 2px;
}
.dest-link:hover { color: var(--blue); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(23, 88, 138, 0.22);
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}
.btn-secondary:hover { background: #f8fbff; }

@media (max-width: 600px) {
  .detail-price { text-align: left; }
  .option-row { grid-template-columns: 1fr; }
  .option-actions .btn { width: 100%; }
}
