:root {
  --navy: #0B2447;
  --navy-deep: #081A33;
  --teal: #146C6B;
  --teal-light: #DCEBEA;
  --brass: #df9a11;
  --brass-light: #F4E9D2;
  --rust: #B8442C;
  --paper: #ffffff;
  --paper-line: #E4DDCC;
  --ink: #1C2530;
  --ink-soft: #5B6472;
  --line: #D8D0BC;
  --green: #2E6B4F;
  --card: #ffffff;
  --ok: #2E6B4F;
  --off: #B8442C;
  --blue: #6ab3f8;
  --gold: #B8892B;
  --muted: #5B6472;
  --radius: 5px;
  --shadow: 0 14px 30px -18px rgba(8,26,51,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow: hidden; }
body {
  background: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  background: #eff1f4;
  border-bottom: 2px solid #dde0e6;
  padding: 52px 0 40px;
  position: relative;
  overflow: visible;
}

.hero-inner {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: #2B7DC9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

h1 {
  font-family: Tahoma, Geneva, sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1a2540;
  margin: 0 0 12px;
}

h1 em { font-style: normal; font-weight: 700; color: #f5a623; }

.sub {
  font-size: 15px;
  color: #5a6478;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

/* ---- WRAP ---- */
.wrap { max-width: 1170px; margin: 0 auto; padding: 24px 24px 40px; }

/* ---- SEARCH PANEL (hotel-style) ---- */
.search-panel {
  position: relative;
  background: #fff;
  border: 1px solid #d8e2ee;
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  text-align: left;
}

form.filters {
  display: block;
  padding: 0;
  background: transparent;
  border: none; border-radius: 0; box-shadow: none;
  max-width: 100%; margin: 0;
}

/* ---- FORM LOADER OVERLAY ---- */
.form-loader {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: opacity .25s ease;
}
.form-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.form-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-loader-spin {
  width: 40px; height: 40px;
  animation: formSpinRot 1s linear infinite;
}
@keyframes formSpinRot {
  to { transform: rotate(360deg); }
}
.form-loader-text {
  font-size: 13px;
  font-weight: 600;
  color: #5a6478;
  letter-spacing: .03em;
}

/* Row layout */
.filters-row {
  display: flex;
  align-items: stretch;
}

.filters-row-main {
  border-bottom: 1px solid #e6ebf4;
}

.filters-row-secondary {
  align-items: center;
}

.filters-row-secondary .field {
  padding: 12px 18px;
}

.filters-row-spacer { flex: 1; }

.filters-row-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px;
  flex-shrink: 0;
}

.field {
  flex: 1;
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px 8px;
  border-right: 1px solid #e6ebf4;
  position: relative;
  background: none;
  cursor: pointer;
  min-width: 0;
}

.filters-row-main .field:last-child { border-right: none; }

.field:hover { background: #f5f7fb; }
.field:focus-within { background: #f5f7fb; }

/* Loading state — spinners removed, fields stay interactive while data loads */
.field-spinner { display: none; }

.field label {
  font-size: 11px;
  font-weight: 700;
  color: #8a96aa;
  text-transform: uppercase;
  letter-spacing: .9px;
  white-space: nowrap;
  line-height: 1;
}

.field::after { display: none; }

/* Icon + select row (matches hotel's search-bar-val-row) */
.field-val-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.field-icon {
  flex-shrink: 0;
  display: block;
}

.field input, .field select {
  font-family: inherit;
  font-size: 14px; font-weight: 700; color: #0d1b2a;
  padding: 0 16px 0 7px;
  border: none;
  border-radius: 0;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 9px 5px;
  -webkit-appearance: none; appearance: none;
  box-shadow: none;
  cursor: pointer;
  width: 100%;
  flex: 1;
  min-width: 0;
  outline: none;
  line-height: 1.4;
}

.field input:focus, .field select:focus { outline: none; box-shadow: none; color: #1a2540; }

/* Hide legacy elements */
.search-panel-top { display: none; }
.search-actions { display: none; }
form.filters .actions { display: none; }

button.go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #2872cc;
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 700; font-size: 14px;
  padding: 0 18px;
  min-height: 50px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s;
}

button.go:hover { background: #1a5fb8; box-shadow: 0 4px 18px rgba(40,114,204,.35); }
button.go:active { background: #1552a0; }
button.go:disabled { opacity: .5; cursor: not-allowed; }

button.reset {
  font-size: 13px; color: #8a96aa;
  background: none; border: none;
  text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer; padding: 0; border-radius: 0;
  letter-spacing: .01em; white-space: nowrap;
}

button.reset:hover { color: #333; }

/* Trust bar — matches hotel trust-badges */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
}

.trust-item svg { flex-shrink: 0; }

/* ---- STATUS / RESULTS HEAD ---- */
.status {
  font-family: inherit;
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: #8a96aa;
  font-weight: 600;
  padding: 0;
  margin: 24px 0 0;
}

.status.error { color: #c0392b; text-transform: none; font-weight: 500; }

.status.has-results {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  margin: 24px 0 16px;
}

.count-found {
  color: #2872cc;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
}

/* ---- RESULTS GRID ---- */
.results { display: grid; gap: 12px; margin-top: 0; max-width: 100%; }

.loadmore-bar { display: flex; justify-content: center; margin: 24px 0 30px; }

.loadmore-btn {
  font-family: inherit;
  font-size: 14px; font-weight: 700; color: #fff;
  background: #2872cc; border: none; border-radius: 10px;
  padding: 12px 32px; cursor: pointer;
  transition: background .2s, box-shadow .2s;
  letter-spacing: .6px; text-transform: uppercase;
}

.loadmore-btn:hover { background: #1a5fb8; box-shadow: 0 4px 18px rgba(40,114,204,.35); }
.loadmore-btn:active { transform: scale(.98); }

/* ---- CRUISE CARD ---- */
.cruise {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,46,74,.08);
  transition: box-shadow .2s, transform .2s;
  animation: fadeUp .3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cruise:hover {
  box-shadow: 0 8px 32px rgba(26,46,74,.13);
  transform: translateY(-2px);
}

.cruise .top {
  display: grid;
  grid-template-columns: 220px 1fr 250px;
  align-items: stretch;
}

.cruise .photo {
  position: relative;
  min-height: 210px;
  background: #1a2540;
  overflow: hidden;
}

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

.cruise .body {
  flex: unset;
  min-width: 0;
  padding: 16px 20px;
}

.tagrow { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }

.tag {
  display: inline-block;
  font-family: inherit;
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: #146C6B; background: #e0f0ef;
  padding: 3px 8px; border-radius: 4px; font-weight: 600;
}

.tag.river { color: #8a5500; background: #fef3dc; }

.cruise h3 {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 18px; font-weight: 700;
  color: #14293e; margin: 0 0 4px; line-height: 1.3;
  letter-spacing: -.2px;
}

.meta { color: #5a6478; font-size: 14px; line-height: 1.55; }

.meta strong { color: #1a2540; font-weight: 600; }

.meta .op { color: #2B7DC9; font-weight: 700; font-size: 14px; }

.ship-name { font-size: 13px; color: #5a6478; margin: 2px 0 6px; font-weight: 500; }

.specs { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 4px 20px; font-size: 14px; color: #5a6478; }

.specs strong { color: #1a2540; font-weight: 600; }

.route { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 14px; color: #5a6478; }

.route .arrow { color: #f5a623; }

/* Price rail */
.pricewrap {
  display: flex; flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-left: 1px solid #e2e8f0;
  background: linear-gradient(160deg, #f8fafc 0%, #eef3fb 100%);
  padding: 0;
}

.price-info {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 18px 18px;
  gap: 0;
}

.pricewrap .lead {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: #8a96aa; margin-bottom: 10px; font-weight: 700;
}

.pricewrap .big {
  font-size: 34px; font-weight: 700;
  color: #14293e; line-height: 1;
  letter-spacing: -.5px;
}

.pricewrap .big span { font-size: 14px; font-weight: 600; color: #8a96aa; margin-left: 1px; }

.pricewrap .onreq { font-size: 16px; color: #14293e; font-weight: 700; }

.pernight { font-size: 12px; color: #8a96aa; margin: 6px 0 10px; }

.tiers { margin-top: 6px; font-size: 13px; line-height: 1.9; color: #5a6478; width: 100%; }

.tiers .t { display: flex; justify-content: space-between; gap: 8px; }

.tiers .t b { color: #1a2540; font-weight: 600; }

.dates-badge {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  background: rgba(20,41,62,.82);
  color: #f5a623;
  font-family: inherit;
  font-size: 11px; letter-spacing: .03em;
  padding: 4px 8px; border-radius: 4px; font-weight: 600;
  text-align: center;
}

.giftcard {
  margin-top: 10px; background: #fff8e8; color: #92600a;
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px;
  display: inline-block; text-align: center;
  border: 1px solid #f5d98e;
  letter-spacing: .02em;
}

/* Toggle button — View Dates & Itinerary */
.toggle {
  width: 100%; text-align: center; font-size: 12px; font-weight: 700;
  color: #fff; background: #2872cc; border: none;
  padding: 15px 14px; cursor: pointer;
  display: flex; justify-content: center; align-items: center; gap: 6px;
  user-select: none; letter-spacing: .6px;
  flex-shrink: 0;
  border-radius: 0;
  transition: background .2s;
  text-transform: uppercase;
  font-family: inherit;
  border-top: 1px solid rgba(255,255,255,.15);
}

.toggle:hover { background: #1a5fb8; }

.toggle .chev {
  transition: transform .2s ease;
  display: inline; font-size: 11px;
}

.toggle.open .chev { transform: rotate(180deg); }

/* ── Expand panel ─────────────────────────────────────────── */
.expand {
  padding: 0 20px;
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease-in, padding .3s ease;
  background: #f4f7fb;
}

.expand.open {
  border-top: 2px solid #2872cc;
  max-height: 8000px;
  padding: 20px 24px 28px;
}

/* Route / duration summary rows */
.meta.route-line {
  font-size: 14px;
  margin-bottom: 4px;
  color: #5a6478;
}

.route-chain .sep { color: #f5a623; }

/* ── Section card wrapper (itinerary, dates, fares each get one) ── */
.expand-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
}

.expand-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a96aa;
  margin: 0 0 14px;
}

/* ── Itinerary timeline ───────────────────────────────────── */
.itin {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px 16px;
  margin-top: 16px;
}

.itin h4 {
  width: 100%;
  font-family: inherit;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: #8a96aa; margin: 0 0 14px; font-weight: 700;
}

.stop {
  position: relative;
  padding-top: 24px;
  padding-right: 32px;
  min-width: 120px;
  display: block;
  border-bottom: none;
}

.stop::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #f5a623;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #f5a623;
}

.stop:not(:last-child)::after {
  content: "";
  position: absolute; left: 14px; top: 9px; right: 0; height: 1px;
  background-image: linear-gradient(to right, #ccd6e8 55%, transparent 0%);
  background-size: 7px 1px;
}

.stop .day {
  font-size: 11px; color: #2872cc; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; display: block;
}

.stop .day small {
  display: inline; color: #8a96aa; font-weight: 400;
  font-size: 11px; margin-left: 4px; text-transform: none; letter-spacing: 0;
}

.stop .pname { font-size: 13px; font-weight: 700; color: #14293e; margin-top: 3px; display: block; }

.stop .pmeta { color: #8a96aa; font-size: 12px; display: block; }

/* ── Departure date chips ─────────────────────────────────── */
.dates-list {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  margin-bottom: 0;
}

.dates-list strong {
  display: block;
  font-family: inherit;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: #8a96aa; margin-bottom: 12px; font-weight: 700;
}

.date-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.date-chip {
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-family: inherit;
  color: #14293e;
  cursor: pointer;
  background: #f8fafc;
  display: inline-flex; align-items: center;
  font-weight: 600;
  transition: border-color .12s, background .12s, color .12s;
}

.date-chip::before { content: none; }

button.date-chip:hover { border-color: #2872cc; background: #eff5ff; color: #2872cc; }

.date-chip.selected { background: #2872cc; color: #fff; border-color: #2872cc; }

/* ── Cabin / stateroom groups ────────────────────────────── */
.fares {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
}

.fares h4 {
  font-family: inherit;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: #8a96aa; margin: 0 0 14px; font-weight: 700;
}

.cabin-groups { display: flex; flex-direction: column; gap: 8px; }

.cabin-group { border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; }

.cabin-group > summary {
  list-style: none; cursor: pointer;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  background: #f8fafc; font-size: 14px; font-weight: 600;
  transition: background .12s;
}

.cabin-group > summary:hover { background: #f0f4fa; }
.cabin-group > summary::-webkit-details-marker { display: none; }

.cabin-group > summary::after {
  content: "▾"; color: #8a96aa; font-size: 12px;
  transition: transform .15s; flex-shrink: 0; margin-left: auto;
}

.cabin-group[open] > summary::after { transform: rotate(180deg); }
.cabin-group .cg-name { font-weight: 700; color: #14293e; }
.cabin-group .cg-count { color: #8a96aa; font-size: 12px; }
.cabin-group .cg-from { font-weight: 700; color: #2872cc; font-size: 14px; white-space: nowrap; }

.fare-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.fare-table td {
  text-align: left; padding: 11px 16px;
  border-top: 1px solid #f0f4f8; color: #5a6478;
}

.fare-table .fare-price { color: #5a6478; }

.avail { font-weight: 600; }
.avail.y  { color: #16a34a; }
.avail.n  { color: #dc2626; }
.avail.lim { color: #d97706; }

.fare-note {
  margin-top: 12px; font-size: 12px; color: #8a96aa;
  padding: 0 2px;
}

.fare-row.selectable { cursor: pointer; transition: background .12s; }
.fare-row.selectable:hover { background: #f0f6ff; }

.fare-row .pick-dot {
  display: inline-block; width: 14px; height: 14px; margin-right: 9px;
  border: 2px solid #d8e2ee; border-radius: 50%; vertical-align: -2px; flex-shrink: 0;
}

.fare-row.selected { background: #eff5ff; }
.fare-row.selected .pick-dot { border-color: #2872cc; background: #2872cc; box-shadow: inset 0 0 0 2px #fff; }
.fare-row.selected td:first-child { font-weight: 700; color: #2872cc; }

/* Faretable (legacy path) */
.faretable { width: 100%; border-collapse: collapse; font-size: 13px; }
.faretable th, .faretable td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #e2e8f0; }
.faretable th { color: #8a96aa; font-weight: 600; }

/* ── Quote box ───────────────────────────────────────────── */
.quote-box {
  margin-top: 16px;
  background: linear-gradient(135deg, #eff6ff 0%, #e8f0fd 100%);
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.quote-summary {
  font-size: 14px; color: #1e40af;
  margin-bottom: 0; line-height: 1.5;
}

.quote-summary strong { color: #1e3a8a; }

.request-quote-btn {
  font-size: 13px; font-weight: 700; color: #fff;
  background: #2872cc; border: none; border-radius: 8px;
  padding: 11px 22px; cursor: pointer;
  transition: background .2s, opacity .2s;
  white-space: nowrap; text-transform: uppercase; letter-spacing: .5px;
  font-family: inherit;
}

.request-quote-btn:hover:not(:disabled) { background: #1a5fb8; }
.request-quote-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Gift card note ──────────────────────────────────────── */
.gift-note {
  margin-top: 14px;
  background: #fffbeb;
  border: 1px solid #f5d98e;
  color: #92600a;
  font-size: 13px; line-height: 1.6;
  padding: 12px 16px; border-radius: 8px;
}

.gift-note strong { color: #7c4c04; }

.empty {
  text-align: center;
  padding: 52px 24px;
  background: #fafbfc;
  border: 1px solid #e6ebf4;
  border-radius: 10px;
}

.empty-icon {
  display: block;
  margin: 0 auto 18px;
}

.empty-title {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a2540;
  margin: 0 0 10px;
}

.empty-msg {
  font-size: 15px;
  color: #5a6478;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

.empty-reset {
  background: none;
  border: none;
  color: #2872cc;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.empty-reset:hover { color: #1a5fb8; }

/* ── Cabin tier chips ─────────────────────────────────────── */
.cabin-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cabin-chip {
  display: flex;
  flex-direction: column;
  padding: 7px 11px;
  border-radius: 8px;
  min-width: 76px;
  border: 1px solid;
}
.cc-inside  { background: #eff6ff; border-color: #bfdbfe; }
.cc-inside  .cc-label { color: #2563eb; }
.cc-outside { background: #f0fdf4; border-color: #bbf7d0; }
.cc-outside .cc-label { color: #16a34a; }
.cc-balcony { background: #f0fdfa; border-color: #99f6e4; }
.cc-balcony .cc-label { color: #0d9488; }
.cc-suite   { background: #fffbeb; border-color: #fde68a; }
.cc-suite   .cc-label { color: #d97706; }
.cc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.cc-price {
  font-size: 15px;
  font-weight: 700;
  color: #14293e;
  line-height: 1.2;
}
.cc-pp {
  font-size: 10px;
  color: #8a96aa;
  font-weight: 500;
}

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(11,36,71,.2);
  border-top-color: var(--navy);
  border-radius: 50%; display: inline-block;
  animation: spin .7s linear infinite;
  vertical-align: -3px; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ports helper */
.ports { font-size: 13px; color: var(--ink-soft); margin: 8px 0; line-height: 1.6; }
.ports strong { color: var(--ink); display: block; margin-bottom: 2px; }
.ports .sep { color: var(--brass); }

@media (max-width: 720px) {

  .wrap {
    padding: 0 12px 10px;
  }
  .hero-text { margin-left: 30px; margin-right: 15px; }
  .eyebrow { font-size: 15px; }

  /* Hero */
  .hero { padding: 32px 0 24px; }
  .hero-inner { padding: 0 16px; }
  h1 { font-size: 26px; }
  .sub { font-size: 14px; margin-bottom: 20px; }

  /* Search panel rows stack vertically on mobile */
  .search-panel { padding: 4px 6px; }
  .filters-row { flex-direction: column; }
  .filters-row-main { border-bottom: none; }
  .field { border-right: none; border-bottom: 1px solid #e6ebf4; padding: 12px 14px; }
  .filters-row-secondary .field { padding: 10px 14px; }
  .filters-row-secondary { align-items: stretch; }
  .filters-row-spacer { display: none; }
  .filters-row-actions { padding: 12px 14px; border-top: 1px solid #e6ebf4; justify-content: space-between; }
  .trust-bar { gap: 12px; margin-top: 16px; justify-content: center; }

  .cruise .top { grid-template-columns: 1fr; }
  .cruise .photo { height: 200px; min-height: unset; }
  .cruise .photo img { position: relative; height: 200px; }
  .cruise .body { border-right: none; border-bottom: 1px dashed var(--line); }
  .pricewrap { border-left: none; border-top: 1px solid var(--line); }
  .price-info { align-items: flex-start; text-align: left; justify-content: flex-start; }
  .hero-stat { display: none !important; }

  /* Card body — bump all text up for mobile readability */
  .cruise h3 { font-size: 22px; }
  .meta { font-size: 16px; }
  .meta .op { font-size: 16px; }
  .ship-name { font-size: 16px; }
  .specs { font-size: 15px; }
  .route { font-size: 15px; }
  .tag { font-size: 11px; }

  /* Price column */
  .pricewrap .lead { font-size: 14px; }
  .pricewrap .big { font-size: 30px; }
  .pricewrap .big span { font-size: 14px; }
  .pricewrap .onreq { font-size: 18px; }
  .pernight { font-size: 14px; }
  .tiers { font-size: 16px; }

  /* Toggle button */
  .toggle { font-size: 15px; padding: 14px 16px; }

  /* Expand panel */
  .meta.route-line { font-size: 17px; }
  .stop .day { font-size: 15px; }
  .stop .day small { font-size: 14px; }
  .stop .pname { font-size: 16px; }
  .stop .pmeta { font-size: 15px; }
  .date-chip { font-size: 14px; padding: 8px 14px; }
  .cabin-group > summary { font-size: 16px; }
  .cabin-group .cg-from { font-size: 16px; }
  .fare-table { font-size: 16px; }
  .fare-note { font-size: 15px; }
  .quote-summary { font-size: 15px; }
  .request-quote-btn { font-size: 16px; }
}

@media (max-width: 480px) {
  .expand.open { padding: 14px 12px 20px; }
  .itin, .dates-list, .fares, .quote-box { padding: 12px 14px; margin-top: 12px; }
  .cabin-group > summary { font-size: 15px; }
  .cabin-group .cg-count { display: none; }
  .fare-table { table-layout: fixed; width: 100%; }
  .fare-table tr { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 8px; padding: 8px 6px; border-bottom: 1px solid var(--line); }
  .fare-table td { display: block; border: none; padding: 0; font-size: 14px; }
  .fare-table td:first-child  { grid-column: 1; grid-row: 1; font-weight: 600; color: var(--navy); }
  .fare-table td.fare-price   { grid-column: 1; grid-row: 2; color: var(--muted); font-size: 13px; margin-top: 2px; }
  .fare-table td.avail        { grid-column: 2; grid-row: 1 / 3; align-self: center; text-align: right; font-size: 13px; font-weight: 600; }
  .fare-row .pick-dot { width: 11px; height: 11px; margin-right: 5px; }
  .date-chips { gap: 6px; }
  .date-chip { padding: 7px 12px; font-size: 13px; }
  .quote-box { padding: 10px 12px; flex-direction: column; align-items: flex-start; }
  .quote-summary { font-size: 14px; }
}
