* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #f4f6f8;
  line-height: 1.5;
  max-width: 100vw;
}

img {
  max-width: 100%;
}

a {
  color: #1466a8;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 300;
  background: #0f2a43;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  max-width: calc(100vw - 24px);
}

.skip-link:focus-visible {
  top: 12px;
  color: #fff;
  outline: 2px solid #ffd34d;
  outline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.narrow {
  max-width: 640px;
}

/* Sticky nav bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0f2a43;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.brand small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9fc6e8;
}

.logo {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

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

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: #ffd34d;
}

.nav .phone {
  font-weight: 700;
  white-space: nowrap;
}

.nav .btn-link {
  background: #ffd34d;
  color: #0f2a43;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid #ffd34d;
  border-bottom: 2px solid #ffd34d;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav .btn-link:hover,
.nav .btn-link:focus-visible {
  background: #ffe08a;
  border-color: #ffe08a;
  outline: 2px solid #fff;
  outline-offset: 1px;
}

/* Hero with overlay headline + search card */
.hero {
  position: relative;
  margin: 0 0 20px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 50, 0.15) 0%, rgba(10, 30, 50, 0.62) 100%);
}

.hero-text {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 56px 28px 28px;
  max-width: 720px;
}

.hero-text .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 211, 77, 0.95);
  color: #0f2a43;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.hero-text h1 {
  margin: 0 0 8px;
  font-size: 40px;
  line-height: 1.1;
}

.hero-text p {
  margin: 0;
  font-size: 17px;
  color: #e8f1f8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  max-width: 100%;
}

.hero-btn {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid #ffd34d;
}

.hero-btn-secondary {
  background: #ffd34d;
  color: #0f2a43;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
  background: #ffe08a;
  border-color: #ffe08a;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.ticket-strip {
  background: #0f2a43;
  border: 1px solid #dde3ea;
  border-radius: 10px;
  margin: 0 0 16px;
  padding: 10px 14px;
  max-width: 100%;
}

.ticket-strip p {
  margin: 0;
  font-size: 14px;
  overflow-wrap: break-word;
}

.ticket-strip a {
  color: #ffd34d;
  font-weight: 700;
}

.booking-nudge {
  background: #fff4d6;
  border: 1px solid #e3b505;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 12px 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.search-card {
  margin: -8px 0 24px;
  position: relative;
  z-index: 2;
}

.search-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

/* Destination card grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
  min-width: 0;
  overflow-wrap: break-word;
  box-shadow: 0 1px 4px rgba(15, 42, 67, 0.08);
}

.grid .card {
  margin: 0;
  padding: 0 0 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  max-width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.grid .card h3,
.grid .card p {
  padding-left: 14px;
  padding-right: 14px;
}

.grid .card h3 {
  margin: 12px 0 4px;
  font-size: 18px;
}

.grid .card p {
  margin: 4px 0;
  font-size: 14px;
  color: #52606d;
}

.dest-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1466a8;
}

.dest {
  min-width: 0;
}

.ticket-page {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  align-items: end;
}

.form-stack {
  display: grid;
  gap: 10px;
}

.sort-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
}

.sort-form label {
  max-width: 100%;
}

.sort-form select {
  width: 100%;
  max-width: 260px;
  padding: 9px 10px;
  font-size: 16px;
  border: 1px solid #bcccdc;
  border-radius: 8px;
  background: #fff;
}

label {
  display: grid;
  gap: 4px;
  font-size: 14px;
  min-width: 0;
}

input {
  width: 100%;
  max-width: 100%;
  padding: 9px 10px;
  font-size: 16px;
  border: 1px solid #bcccdc;
  border-radius: 8px;
}

input:focus {
  outline: 2px solid #1466a8;
  outline-offset: 1px;
}

input[type="date"] {
  min-height: 42px;
  color-scheme: light;
}

.hint {
  margin: 0;
  font-size: 13px;
  color: #52606d;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #ffd34d;
  outline-offset: 2px;
}

button {
  padding: 11px 18px;
  font-size: 16px;
  font-weight: 700;
  background: #1466a8;
  color: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #0f2a43;
}

.banner {
  background: #fff4d6;
  border: 1px solid #e3b505;
  border-radius: 8px;
  padding: 12px;
  margin: 12px 0;
}

.alert {
  color: #8a1f1f;
}

.price {
  font-weight: bold;
  color: #0f2a43;
  font-size: 16px;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.section-title span {
  font-size: 14px;
  color: #52606d;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 20px 0 8px;
}

.trust-row .card {
  text-align: left;
}

/* Footer */
.site-footer {
  margin-top: 32px;
  padding: 28px 0 20px;
  color: #c9d8e5;
  font-size: 14px;
  background: #0f2a43;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.site-footer h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: #ffd34d;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: #9fb3c8;
}

.pay-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 100%;
}

.pay-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #0f2a43;
  background: #fff;
  border: 1px solid #bcccdc;
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
}

.pay-note {
  font-size: 12px;
  color: #9fb3c8;
}

.notfound-search {
  margin: 12px 0;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.eticket-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1466a8;
  margin: 12px 0 0;
}

.booking-ref-line,
.pax-line {
  margin: 4px 0;
}

.bp-card {
  border-top: 4px solid #0f2a43;
}

.bp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.bp-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #0f2a43;
  color: #ffd34d;
  border-radius: 999px;
  padding: 4px 10px;
}

.bp-flight {
  font-weight: 800;
  color: #0f2a43;
}

.bp-route-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0;
}

.bp-timebox {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bp-arrive {
  text-align: right;
}

.bp-time {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #0f2a43;
}

.bp-code {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #52606d;
}

.bp-route-mid {
  flex: 1;
  display: grid;
  gap: 2px;
  text-align: center;
  min-width: 0;
}

.bp-route-line {
  font-weight: 800;
  letter-spacing: 1px;
  border-top: 2px dashed #bcccdc;
  padding-top: 6px;
}

.bp-nonstop {
  font-size: 12px;
  color: #52606d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bp-route-sub {
  margin: 8px 0;
}

.bp-meta {
  margin: 8px 0;
  padding-left: 18px;
  font-size: 14px;
}

.bp-note {
  font-size: 14px;
  background: #eef4fa;
  border-radius: 8px;
  padding: 8px 10px;
  margin: 8px 0 0;
}

.bp-aircraft {
  margin: 8px 0 0;
  font-size: 13px;
  color: #52606d;
}

.manage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.manage-btn {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  background: #0f2a43;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  max-width: 100%;
}

.manage-note {
  font-size: 13px;
  color: #52606d;
  margin: 8px 0 0;
}

.perks-row {
  margin: 12px 0 0;
}

.faq details {
  border-top: 1px solid #dde3ea;
  padding: 8px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

/* Generic content pages (terms, privacy, baggage, seats, insurance, check-in) */
.content-page {
  margin: 16px 0 24px;
  overflow-wrap: break-word;
}

.content-page h1 {
  margin: 4px 0 8px;
  font-size: 28px;
  line-height: 1.2;
  color: #0f2a43;
}

.content-page h2 {
  margin: 20px 0 8px;
  font-size: 19px;
  color: #0f2a43;
}

.content-page p,
.content-page li {
  font-size: 15px;
}

.content-page ul,
.content-page ol {
  padding-left: 20px;
  margin: 8px 0;
}

.content-page li {
  margin: 4px 0;
}

.content-lead {
  font-size: 16px;
  color: #52606d;
  margin: 0 0 8px;
}

.info-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
  display: block;
  overflow-x: auto;
}

.info-table th,
.info-table td {
  border: 1px solid #dde3ea;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.info-table thead th {
  background: #0f2a43;
  color: #fff;
  white-space: nowrap;
}

.info-table tbody tr:nth-child(even) {
  background: #eef4fa;
}

.seat-map {
  background: #eef4fa;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 12px;
  margin: 12px 0;
  max-width: 100%;
}

.seat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}

.seat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #bcccdc;
  font-weight: 800;
  font-size: 14px;
  color: #0f2a43;
}

.seat.exit {
  background: #ffd34d;
  border-color: #e3b505;
}

.seat-aisle {
  font-size: 12px;
  color: #52606d;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 6px;
}

.seat-legend {
  font-size: 13px;
  color: #52606d;
  margin: 4px 0 0;
  text-align: center;
}

.seat.legend {
  width: 28px;
  height: 28px;
  font-size: 12px;
  vertical-align: middle;
}

.seat-legend-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.seat-legend-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seat.available {
  background: #fff;
  border: 2px solid #1466a8;
  cursor: pointer;
}

.seat.exit {
  background: #ffd34d;
  border-color: #e3b505;
}

.seat.occupied {
  background: #c3ccd4;
  border: 1px solid #8b98a5;
  color: #6b7a89;
  cursor: not-allowed;
}

.seat.selected {
  background: #1466a8;
  border-color: #0f2a43;
  color: #fff;
}

button.seat:not(.occupied):hover {
  background: #e0eefb;
}

button.seat.selected:hover {
  background: #0f2a43;
}

button.seat:focus-visible {
  outline: 2px solid #ffd34d;
  outline-offset: 2px;
}

.cabin-scroll {
  overflow-x: auto;
  margin: 12px 0;
  padding: 12px 8px;
  background: #eef4fa;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  max-width: 100%;
}

.fuselage {
  min-width: 400px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #0f2a43;
  border-radius: 180px 180px 40px 40px / 120px 120px 24px 24px;
  padding: 0 16px 20px;
  overflow: hidden;
  position: relative;
}

.nose {
  text-align: center;
  padding: 22px 0 8px;
  background: linear-gradient(180deg, #dbe7f2 0%, #fff 100%);
  border-bottom: 1px solid #dde3ea;
}

.cockpit {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.cockpit span {
  width: 44px;
  height: 30px;
  background: #0f2a43;
  border: 2px solid #52606d;
  border-radius: 8px 8px 14px 14px;
  display: inline-block;
}

.nose-label {
  margin: 6px 0 0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #52606d;
}

.cabin-facilities {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 4px;
  font-size: 13px;
  color: #52606d;
}

.door-sign {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  border: 1px solid #bcccdc;
  border-radius: 4px;
  padding: 2px 6px;
}

.exit-bank {
  display: flex;
  justify-content: space-between;
  padding: 4px 2px;
}

.exit-sign {
  background: #1e7e34;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 4px;
  padding: 2px 8px;
}

.cabin-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 0;
}

.cabin-row.exit-row {
  margin: 14px 0;
  padding: 8px 0;
  border-top: 2px dashed #e3b505;
  border-bottom: 2px dashed #e3b505;
  background: #fff8e1;
  border-radius: 8px;
}

.row-num {
  width: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #52606d;
}

.wings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 0;
}

.wing {
  height: 26px;
  width: 120px;
  background: #bcccdc;
  border: 1px solid #8b98a5;
}

.wing-left {
  clip-path: polygon(100% 20%, 0 0, 0 100%, 100% 80%);
  border-radius: 6px 0 0 6px;
}

.wing-right {
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
  border-radius: 0 6px 6px 0;
}

.wing-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #52606d;
}

.tail {
  margin: 10px auto 0;
  max-width: 220px;
  background: #dbe7f2;
  border: 2px solid #0f2a43;
  border-top: 0;
  border-radius: 0 0 60px 60px / 0 0 40px 40px;
  clip-path: polygon(8% 0, 92% 0, 70% 100%, 30% 100%);
  text-align: center;
  padding: 14px 0 22px;
}

.tail p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #52606d;
}

.selected-summary {
  font-weight: 800;
  color: #0f2a43;
  background: #fff;
  border: 1px solid #bcccdc;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 12px 0 6px;
}

.seat-note {
  font-size: 13px;
  color: #52606d;
  margin: 4px 0 0;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 4px;
}

.print-btn {
  background: #0f2a43;
}

.print-btn:hover {
  background: #1a3d5f;
}

.ticket-actions .manage-btn {
  background: #fff;
  color: #0f2a43;
  border: 2px solid #0f2a43;
}

.pax-list {
  margin: 8px 0 0;
  padding-left: 20px;
}

.pax-list li {
  margin: 2px 0;
  font-size: 15px;
}

.bp-tag {
  margin: 0;
}

.steps-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f2a43;
}

.steps-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.steps-strip li {
  background: #eef4fa;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  align-content: start;
  min-width: 0;
}

.steps-strip strong {
  display: block;
  font-size: 14px;
  color: #0f2a43;
}

.steps-strip span {
  font-size: 13px;
  color: #52606d;
}

.checkin-note {
  background: #fff4d6;
  border: 1px solid #e3b505;
  border-radius: 8px;
  padding: 12px;
  margin: 12px 0;
}

.checkin-note p {
  margin: 4px 0;
}

.checkin-times {
  margin: 8px 0 0;
  padding-left: 20px;
  font-size: 14px;
}

.checkin-times li {
  margin: 2px 0;
}

.countdown-box {
  background: #fff;
  border: 1px solid #dde3ea;
  border-top: 4px solid #0f2a43;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 12px 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.countdown-title {
  margin: 0 0 4px;
  font-size: 15px;
  color: #0f2a43;
}

.countdown-fallback {
  margin: 4px 0;
  font-size: 14px;
  color: #52606d;
}

.countdown-live {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}

.countdown-live[hidden],
.countdown-open[hidden] {
  display: none;
}

.countdown-unit {
  flex: 1 1 64px;
  min-width: 64px;
  max-width: 100%;
  background: #0f2a43;
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  display: grid;
  gap: 2px;
  align-content: center;
}

.countdown-unit strong {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffd34d;
}

.countdown-unit span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9d8e5;
}

.countdown-open {
  margin: 10px 0 4px;
  font-weight: 800;
  font-size: 15px;
  color: #0f2a43;
  background: #eef4fa;
  border: 1px solid #bcccdc;
  border-radius: 8px;
  padding: 10px 12px;
}

@media (max-width: 480px) {
  .countdown-unit {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero {
    min-height: 300px;
  }
  .hero-text {
    padding: 40px 18px 20px;
  }
  .hero-text h1 {
    font-size: 26px;
  }
  .grid,
  .form-grid,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }
  .bp-time {
    font-size: 28px;
  }
  .manage-btn {
    width: 100%;
    text-align: center;
  }
  .steps-strip {
    grid-template-columns: 1fr;
  }
  .ticket-actions .print-btn,
  .ticket-actions .manage-btn {
    width: 100%;
    text-align: center;
  }
}

.bag-calc {
  background: #eef4fa;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 12px 0;
  max-width: 100%;
}

.bag-calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #dde3ea;
}

.bag-calc-row:first-of-type {
  border-top: 0;
  padding-top: 2px;
}

.bag-calc-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bag-calc-label {
  font-weight: 800;
  color: #0f2a43;
  font-size: 15px;
}

.bag-calc-price {
  font-size: 13px;
  color: #52606d;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.stepper button {
  width: 38px;
  height: 38px;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  border-radius: 8px;
}

.stepper output {
  min-width: 3ch;
  text-align: center;
  font-weight: 800;
  font-size: 17px;
  color: #0f2a43;
}

.bag-calc-total {
  font-weight: 800;
  color: #0f2a43;
  background: #fff;
  border: 1px solid #bcccdc;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 12px 0 6px;
  font-size: 17px;
}

.bag-calc-note {
  font-size: 13px;
  color: #52606d;
  margin: 4px 0 0;
}

@media (max-width: 480px) {
  .bag-calc-row {
    flex-direction: column;
    align-items: stretch;
  }
  .stepper {
    justify-content: flex-start;
  }
}

.plan-picker {
  background: #eef4fa;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 12px 0;
  max-width: 100%;
}

.picker-question {
  background: #fff;
  border: 1px solid #bcccdc;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 8px 0;
  max-width: 100%;
  min-width: 0;
}

.picker-question legend {
  font-weight: 800;
  font-size: 15px;
  color: #0f2a43;
  padding: 0 6px;
}

.picker-question label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 12px 4px 0;
  font-size: 15px;
  cursor: pointer;
}

.picker-question input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #1466a8;
}

.picker-result {
  font-weight: 800;
  color: #0f2a43;
  background: #fff;
  border: 1px solid #bcccdc;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 12px 0 6px;
  font-size: 15px;
  overflow-wrap: break-word;
}

.picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}

@media print {
  body {
    background: #fff;
    color: #000;
    line-height: 1.4;
  }
  .site-header,
  .site-footer,
  .manage-card,
  .no-print,
  .ticket-actions {
    display: none;
  }
  .wrap {
    max-width: 100%;
    padding: 0;
  }
  .narrow {
    max-width: 100%;
  }
  .card,
  .bp-card {
    box-shadow: none;
    border: 1px solid #000;
    border-radius: 0;
    padding: 10px;
    margin: 8px 0;
    break-inside: avoid;
  }
  .bp-card {
    border-top: 2px solid #000;
  }
  .bp-tag {
    background: #fff;
    color: #000;
    border: 1px solid #000;
  }
  .bp-time,
  .bp-flight,
  .content-page h1,
  .content-page h2 {
    color: #000;
  }
  .bp-note,
  .booking-nudge {
    background: #fff;
    border: 1px solid #000;
  }
  a {
    color: #000;
    text-decoration: none;
  }
}

.cookie-banner {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 200;
  width: calc(100vw - 24px);
  max-width: 360px;
  background: #fff;
  border: 1px solid #bcccdc;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 42, 67, 0.25);
  padding: 12px 14px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #0f2a43;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner-actions button {
  padding: 8px 14px;
  font-size: 14px;
}

.cookie-banner-actions a {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border: 2px solid #0f2a43;
  border-radius: 8px;
  text-decoration: none;
  color: #0f2a43;
  background: #fff;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
  }
}

@media print {
  .cookie-banner {
    display: none;
  }
}

.help-chat {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 210;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.help-chat-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f2a43;
  color: #ffd34d;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  border: 2px solid #ffd34d;
  box-shadow: 0 4px 16px rgba(15, 42, 67, 0.35);
  padding: 0;
  cursor: pointer;
}

.help-chat-toggle:hover {
  background: #1a3d5f;
}

.help-chat-panel {
  width: calc(100vw - 24px);
  max-width: 320px;
  background: #fff;
  border: 1px solid #bcccdc;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 42, 67, 0.25);
  padding: 12px 14px;
}

.help-chat-panel[hidden] {
  display: none;
}

.help-chat-panel p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #0f2a43;
}

.help-chat-panel button {
  padding: 8px 14px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .help-chat {
    right: 8px;
    bottom: 8px;
  }
  .help-chat-panel {
    width: calc(100vw - 16px);
  }
}

@media print {
  .help-chat {
    display: none;
  }
}
