/* WAYKIT — cabin-class departure board. Navy / signal orange / steel. */
:root {
  --navy: #041226;
  --navy-2: #07182d;
  --navy-3: #0c2444;
  --navy-4: #15365e;
  --ink: #07111f;
  --paper: #f4f7fb;
  --white: #ffffff;
  --steel: #8fa6bd;
  --steel-2: #c5d4e4;
  --steel-3: #e7eef6;
  --signal: #ff3d00;
  --signal-2: #ff6a2a;
  --signal-deep: #d93300;
  --glow: 0 10px 34px rgba(255, 61, 0, 0.38);
  --glow-soft: 0 8px 28px rgba(4, 18, 38, 0.12);
  --radius: 18px;
  --max: 1160px;
  --type-board: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --type-sans: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --type-led: "Share Tech Mono", "IBM Plex Mono", ui-monospace, monospace;
  --tap: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--type-sans);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: 72px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { appearance: none; border: 0; background: none; cursor: pointer; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; background: #fff; color: var(--navy); padding: 10px 14px; z-index: 80; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ——— Header ——— */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: linear-gradient(180deg, #06162b 0%, var(--navy) 100%);
  color: #fff;
  border-bottom: 2px solid var(--signal);
  box-shadow: 0 10px 28px rgba(4, 18, 38, 0.28);
}
.header-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex: 0 0 auto;
  min-height: var(--tap);
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--signal);
  color: #fff;
  font-family: var(--type-board);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  border-radius: 8px;
  box-shadow: var(--glow);
}
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .word {
  font-family: var(--type-board);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.12em;
}
.brand .sub {
  font-family: var(--type-led);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-2);
  margin-top: 3px;
}
.header-search {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  gap: 8px;
  min-width: 0;
  order: 3;
  position: relative;
}
.header-search input {
  flex: 1;
  height: var(--tap);
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: var(--navy);
  min-width: 0;
}
.header-search input::placeholder { color: #7e93a8; }
.header-tools {
  display: flex; align-items: center; gap: 8px; margin-left: auto;
}
.desk-link {
  display: none;
  text-decoration: none;
  height: var(--tap);
  padding: 0 14px;
  align-items: center;
  font-family: var(--type-board);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 16px;
}
.bag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--tap);
  min-width: var(--tap);
  padding: 0 14px;
  border-radius: 12px;
  background: var(--signal);
  color: #fff;
  text-decoration: none;
  font-family: var(--type-board);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 18px;
  box-shadow: var(--glow);
}
.bag-count, [data-bag-count] {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  background: #fff; color: var(--signal-deep);
  border-radius: 999px;
  font-family: var(--type-led);
  font-size: 12px;
}

/* ——— Buttons ——— */
.btn-signal, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--signal-2), var(--signal));
  color: #fff;
  text-decoration: none;
  font-family: var(--type-board);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-signal:hover, .btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-signal.xl { min-height: 56px; padding: 0 28px; font-size: 22px; }
.btn-signal.compact { min-height: var(--tap); padding: 0 16px; font-size: 16px; box-shadow: none; }
.btn.ghost, .btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
  border: 1.5px solid var(--navy-4);
}
.btn.ghost:hover, .btn-ghost:hover { background: var(--navy); color: #fff; }
.btn.wide { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  min-width: 84px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-family: var(--type-board);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 16px;
  text-transform: uppercase;
  transition: background .15s ease, transform .15s ease;
}
.btn-add:hover { background: var(--signal); transform: translateY(-1px); }
.btn-add.is-on { background: var(--signal); }

/* ——— Hero board ——— */
.board-hero {
  background:
    linear-gradient(180deg, rgba(255,61,0,0.16), transparent 28%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px),
    radial-gradient(1200px 480px at 80% -10%, rgba(255,61,0,0.22), transparent 55%),
    linear-gradient(180deg, #07182f, var(--navy));
  color: #fff;
  overflow: hidden;
}
.board-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 16px 36px;
  display: grid;
  gap: 22px;
}
.led {
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal-2);
  margin: 0 0 8px;
}
.board-hero h1 {
  font-family: var(--type-board);
  font-weight: 800;
  font-size: clamp(44px, 12vw, 92px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.lede-one {
  margin: 0 0 20px;
  max-width: 28em;
  font-size: 17px;
  color: var(--steel-2);
}
.fids {
  background: rgba(2, 8, 18, 0.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
.fids-head, .fids-row {
  display: grid;
  grid-template-columns: 64px 1fr 52px 52px;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
  min-height: 44px;
}
.fids-head {
  font-family: var(--type-led);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--steel);
  background: rgba(255,61,0,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fids-row {
  text-decoration: none;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--type-board);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  min-height: 48px;
  transition: background .15s ease;
}
.fids-row:hover { background: rgba(255,61,0,0.16); }
.fids-row .code { color: var(--signal-2); font-family: var(--type-led); font-size: 13px; }
.fids-row .stat {
  color: #7dffb3;
  font-family: var(--type-led);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ——— Page chrome ——— */
.wrap { max-width: var(--max); margin: 0 auto; padding: 22px 16px 48px; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 12px; margin: 8px 0 16px;
}
.section-head h2 {
  font-family: var(--type-board);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 42px);
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 0.95;
}
.chips {
  display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap);
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--steel-2);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--type-board);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 16px;
  box-shadow: var(--glow-soft);
}
.chip:hover, .chip.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.chip.is-on { box-shadow: var(--glow); background: var(--signal); border-color: var(--signal); }

/* ——— Ticket stubs ——— */
.stubs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.stub {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(4, 18, 38, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(12, 36, 68, 0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.stub:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(4, 18, 38, 0.16), 0 0 0 2px var(--signal);
}
.stub-photo {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fff, var(--steel-3));
  overflow: hidden;
}
.stub-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.stub:hover .stub-photo img { transform: scale(1.04); }
.stub-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.38), transparent 38%, transparent 72%, rgba(4,18,38,.18));
  pointer-events: none;
}
.stub-gate {
  position: absolute; top: 12px; left: 12px;
  z-index: 1;
  background: var(--signal);
  color: #fff;
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 6px 8px;
  border-radius: 6px;
  box-shadow: var(--glow);
}
.stub-perf {
  height: 18px;
  background:
    radial-gradient(circle at 0 50%, transparent 9px, var(--paper) 10px) left / 18px 18px,
    radial-gradient(circle at 100% 50%, transparent 9px, var(--paper) 10px) right / 18px 18px,
    repeating-linear-gradient(90deg, transparent 0 10px, var(--steel-2) 10px 12px);
  background-color: #fff;
}
.stub-body { padding: 12px 14px 16px; }
.stub-route {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--type-led);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--navy-4);
  margin-bottom: 6px;
}
.stub-route i {
  flex: 0 0 28px; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--signal));
  position: relative;
}
.stub-route i::after {
  content: "";
  position: absolute; right: -3px; top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--signal);
}
.stub-cat { margin-left: auto; color: var(--steel); }
.stub-body h3 { margin: 0 0 10px; font-size: 17px; line-height: 1.25; font-weight: 700; }
.stub-body h3 a { text-decoration: none; }
.stub-fare {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.stub-fare strong {
  font-family: var(--type-board);
  font-size: 26px;
  letter-spacing: 0.03em;
}
.stub-body::after {
  content: "";
  display: block;
  height: 16px;
  margin-top: 12px;
  opacity: 0.22;
  background: repeating-linear-gradient(90deg,
    var(--navy) 0 2px, transparent 2px 5px,
    var(--navy) 5px 6px, transparent 6px 9px,
    var(--navy) 9px 13px, transparent 13px 16px);
}

/* ——— Compact kit list ——— */
.kit-list { display: flex; flex-direction: column; gap: 10px; }
.kit-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--glow-soft);
  border: 1px solid rgba(12, 36, 68, 0.06);
  min-height: 108px;
}
.kit-shot {
  width: 92px; height: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--steel-3);
}
.kit-shot img { width: 100%; height: 100%; object-fit: cover; }
.kit-copy { min-width: 0; }
.kit-meta {
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-deep);
}
.kit-line { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.kit-copy h3 { margin: 4px 0 0; font-size: 15px; line-height: 1.25; flex: 1; min-width: 0; }
.kit-copy h3 a { text-decoration: none; }
.kit-price {
  font-family: var(--type-board);
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}
.kit-row .btn-add { align-self: center; }

.honesty-rail {
  margin-top: 28px;
  background: var(--navy);
  color: var(--steel-2);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--type-led);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.7;
}
.honesty-rail b { color: #fff; }

.page-title {
  font-family: var(--type-board);
  font-weight: 800;
  font-size: clamp(36px, 9vw, 64px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin: 4px 0 10px;
}
.shop-head { margin-bottom: 8px; }
.shop-tools {
  display: flex; flex-direction: column; gap: 8px;
  margin: 8px 0 16px;
}
.shop-tools .find {
  display: flex; gap: 8px;
}
.shop-tools input[type="search"] {
  flex: 1;
  height: var(--tap);
  border: 1.5px solid var(--steel-2);
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  min-width: 0;
}
.meta-count {
  font-family: var(--type-led);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel);
  align-self: center;
}
.pager { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.pager a, .pager span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: var(--tap); min-height: var(--tap);
  padding: 0 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--steel-2);
  font-family: var(--type-board);
  font-weight: 700;
}
.pager .on { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ——— PDP ——— */
.pdp {
  display: grid;
  gap: 20px;
}
.pdp-fig {
  background: linear-gradient(180deg, #fff, var(--steel-3));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(4, 18, 38, 0.12);
  position: relative;
}
.pdp-fig img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pdp-ticket {
  background: #fff;
  border-radius: 20px;
  padding: 18px 16px 20px;
  box-shadow: var(--glow-soft);
}
.pdp-line { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 8px 0 12px; }
.pdp-line .page-title { margin: 0; flex: 1; min-width: 0; font-size: clamp(28px, 7vw, 48px); }
.pdp-ticket .price {
  font-family: var(--type-board);
  font-weight: 800;
  font-size: 18px;
  margin: 0;
  white-space: nowrap;
}
.qty {
  display: flex; align-items: center; gap: 8px; margin: 14px 0;
}
.qty input {
  width: 72px; height: var(--tap);
  border: 1.5px solid var(--steel-2);
  border-radius: 12px;
  padding: 0 10px;
  background: #fff;
  text-align: center;
}
.spec { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.spec th, .spec td {
  text-align: left; padding: 10px 0;
  border-bottom: 1px solid var(--steel-3);
  vertical-align: top;
}
.spec th {
  width: 36%;
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-4);
  font-weight: 400;
}
.note { font-size: 14px; color: #3d4d60; }
.kicker {
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-deep);
}

/* ——— Cart / checkout ——— */
.prose { max-width: 46em; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--type-board);
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.prose h2 { margin-top: 1.5em; }
.prose ul { padding-left: 1.2em; }
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.cart-table th, .cart-table td {
  text-align: left; padding: 14px 12px;
  border-bottom: 1px solid var(--steel-3);
  vertical-align: top;
}
.cart-table th {
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-4);
}
.line-name { font-weight: 700; }
.totals { margin-top: 18px; max-width: 360px; margin-left: auto; }
.totals div {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--steel-3);
}
.totals .grand { font-weight: 800; border-bottom: 2px solid var(--navy); }
.check-grid { display: grid; gap: 18px; }
.panel {
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: var(--glow-soft);
}
.panel h2 {
  font-family: var(--type-board);
  font-size: 28px;
  margin: 0 0 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label {
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-4);
}
.field input, .field select, .field textarea {
  border: 1.5px solid var(--steel-2);
  border-radius: 12px;
  padding: 12px;
  background: var(--paper);
  min-height: var(--tap);
}
.row2 { display: grid; gap: 12px; }
.merchant-country {
  background: var(--navy);
  color: var(--steel-2);
  padding: 14px 16px;
  margin: 16px 0;
  border-radius: 12px;
  font-size: 14px;
}
.merchant-country strong { color: #fff; }
.accept { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin: 14px 0; }
.accept input { margin-top: 6px; width: 22px; height: 22px; }
.flash {
  padding: 12px 14px;
  background: #fff1ea;
  border: 1px solid var(--signal);
  color: var(--signal-deep);
  border-radius: 12px;
  margin-bottom: 16px;
}
.ok {
  padding: 12px 14px;
  background: #e8fff3;
  border: 1px solid #1f9d5b;
  border-radius: 12px;
  margin-bottom: 16px;
}
.legal-block { font-size: 13px; line-height: 1.7; color: #3d4d60; }
.legal-block .placeholders { color: var(--signal-deep); font-family: var(--type-led); }
.empty { padding: 40px 0; }

/* ——— Footer + dock ——— */
footer.site {
  background: var(--navy);
  color: var(--steel-2);
  padding: 36px 16px 96px;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
footer.site a { color: #fff; text-decoration: none; }
footer.site a:hover { color: var(--signal-2); }
footer.site h4 {
  font-family: var(--type-led);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 12px;
}
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site li { margin: 0 0 10px; }
.foot-word {
  font-family: var(--type-board);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.12em;
  color: #fff;
}
.foot-legal {
  max-width: var(--max);
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  line-height: 1.7;
}

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #06162b;
  border-top: 2px solid var(--signal);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
}
.dock a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 56px;
  text-decoration: none;
  color: var(--steel-2);
  font-family: var(--type-board);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 16px;
  text-transform: uppercase;
  gap: 2px;
}
.dock a[aria-current="page"], .dock a:hover { color: #fff; }
.dock .n {
  background: var(--signal); color: #fff;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; font-size: 11px;
  display: inline-grid; place-items: center;
}

@media (min-width: 720px) {
  body { padding-bottom: 0; }
  .dock { display: none; }
  .header-search { display: flex; flex: 1; order: 0; }
  .desk-link { display: inline-flex; }
  .board-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 54px 24px 64px;
  }
  .stubs { grid-template-columns: 1fr 1fr; gap: 20px; }
  .kit-row { grid-template-columns: 120px 1fr auto; }
  .kit-shot { width: 120px; height: 120px; }
  .pdp { grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }
  .check-grid, .row2 { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .wrap { padding: 32px 24px 72px; }
}

@media (min-width: 1100px) {
  .stubs { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.fx-select {
  min-height: 40px; border: 0; border-radius: 10px;
  background: #fff; color: var(--navy); font-weight: 800; padding: 0 8px; font-size: 13px;
}
.header-row { flex-wrap: wrap; }
.suggest-host { position: relative; }
.suggest[hidden] { display: none !important; }
.suggest {
  display: flex; flex-direction: column; align-items: stretch;
  position: fixed; z-index: 9999; isolation: isolate;
  background-color: #0b1c3a; color: #f4f7fb;
  border: 1px solid #1e3a5f; border-radius: 14px;
  box-shadow: 0 18px 40px #041226;
  max-height: min(55vh, 360px); overflow-y: auto;
}
.suggest-row {
  position: relative; display: flex; gap: 8px; align-items: center;
  padding: 10px 12px; text-decoration: none; min-height: 52px;
  color: #f4f7fb;
}
.suggest-row.is-on, .suggest-row:hover { background-color: #15365e; }
.suggest-row img {
  width: 40px; height: 40px; flex: 0 0 40px;
  object-fit: cover; border-radius: 8px; background-color: #15365e;
}
.suggest-name {
  flex: 1 1 auto; min-width: 0;
  font-size: 13px; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.suggest-price {
  flex: 0 0 auto; font-weight: 800; white-space: nowrap; font-family: var(--type-board);
  padding: 4px 8px; border-radius: 999px; background-color: #15365e; color: #ffffff;
}
.suggest-empty { padding: 12px; font-weight: 700; color: #f4f7fb; }

/* We accept + required terms checkbox */
.we-accept { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 10px 0 4px; }
.we-accept-label { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.we-accept-marks { display: flex; align-items: center; gap: 8px; }
.card-mark { width: 54px; height: 36px; display: block; border-radius: 6px; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.terms-agree { display: flex; align-items: flex-start; gap: 12px; margin: 12px 0 6px; font-size: 15px; line-height: 1.45; cursor: pointer; }
.terms-agree input[type="checkbox"] {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  margin: 0; flex: 0 0 44px; cursor: pointer;
}
.terms-agree-err { color: #b42318; font-size: 14px; margin: 0 0 8px; }
.terms-agree-err[hidden] { display: none !important; }
.terms-agree input[type="checkbox"] { accent-color: #e85d04; }
