/* =====================================================================
   LISTING PAGE — one stay, one car, one experience
   (resources/views/frontend/partials/listing/page.blade.php)
   Laid out to the reference listing: title bar, five-photo mosaic, the
   details on the left and a sticky price card on the right, a two-month
   calendar, and "more" cards underneath.
   ===================================================================== */

.lst {
  --lst-ink: #222;
  --lst-text: #3f3f3f;
  --lst-muted: #6a6a6a;
  --lst-line: #dddddd;
  --lst-soft: #ebebeb;
  --lst-bg-soft: #f7f7f7;
  --lst-accent: #e61e4d;
  --lst-accent-2: #d70466;
  --lst-radius: 12px;

  background: #fff;
  color: var(--lst-ink);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
.lst [hidden] { display: none !important; }
.lst *, .lst *::before, .lst *::after { box-sizing: border-box; }
.lst svg { flex: none; }
.lst button { font: inherit; color: inherit; }

.lst-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 40px 56px;
}

/* ------------------------------------------------------------- top */
.lst-crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--lst-muted); margin-bottom: 14px;
}
.lst-crumbs a { color: var(--lst-muted); text-decoration: none; }
.lst-crumbs a:hover { color: var(--lst-ink); text-decoration: underline; }
.lst-crumbs i { font-style: normal; opacity: .7; }
.lst-crumbs i:last-child { display: none; }

.lst-sent {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px; margin: 0 0 18px;
  border: 1px solid #b7e0c4; background: #effaf2; border-radius: var(--lst-radius);
  color: #1d5c33; font-size: .92rem;
}

.lst-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px;
  margin-bottom: 22px;
}
.lst-title {
  margin: 0; font-size: 1.62rem; line-height: 1.25; font-weight: 600; color: var(--lst-ink);
  letter-spacing: -.01em;
}
.lst-title__sep { color: var(--lst-muted); font-weight: 400; }
.lst-title__badge { font-weight: 600; white-space: nowrap; }

.lst-head__acts { display: flex; align-items: center; gap: 4px; flex: none; }
.lst-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 10px; border: 0; border-radius: 8px; background: none; cursor: pointer;
  font-size: .9rem; font-weight: 600; color: var(--lst-ink); text-decoration: underline;
}
.lst-link:hover { background: var(--lst-bg-soft); }
.lst-link svg { width: 16px; height: 16px; }
.lst-link--saved button { border: 0; background: none; cursor: pointer; font-size: 1.1rem; line-height: 1; padding: 0 2px; color: var(--lst-muted); }
.is-added > .lst-link svg, .lst-head__acts.is-added svg { transform: scale(1.15); transition: transform .2s; }

/* ---------------------------------------------------------- photos */
.lst-photos {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: clamp(300px, 36vw, 440px);
  border-radius: var(--lst-radius);
  overflow: hidden;
}
.lst-photos__item {
  position: relative; display: block; padding: 0; margin: 0; border: 0; cursor: pointer;
  overflow: hidden; background: var(--lst-soft); min-height: 0;
}
.lst-photos__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter .2s; }
.lst-photos__item:hover img { filter: brightness(.86); }
.lst-photos__item--0 { grid-row: 1 / 3; grid-column: 1; }

/* Fewer photographs than five: keep the mosaic tidy. */
.lst-photos--1 { grid-template-columns: 1fr; }
.lst-photos--1 .lst-photos__item--0 { grid-column: 1; }
.lst-photos--2 { grid-template-columns: 1fr 1fr; }
.lst-photos--2 .lst-photos__item--1 { grid-row: 1 / 3; }
.lst-photos--3 { grid-template-columns: 2fr 1fr; }
.lst-photos--4 { grid-template-columns: 2fr 1fr 1fr; }
.lst-photos--4 .lst-photos__item--3 { grid-column: 2 / 4; }

.lst-photos__all {
  position: absolute; right: 24px; bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border: 1px solid var(--lst-ink); border-radius: 8px;
  background: #fff; cursor: pointer; font-size: .86rem; font-weight: 600;
}
.lst-photos__all svg { width: 16px; height: 16px; }
.lst-photos__all:hover { background: var(--lst-bg-soft); }

/* ------------------------------------------------------------ body */
.lst-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 0 clamp(40px, 8vw, 96px);
  padding-top: 32px;
}
.lst-main { min-width: 0; }
.lst-main > section { padding: 32px 0; border-bottom: 1px solid var(--lst-line); }
.lst-main > section:first-child { padding-top: 0; }
.lst-main > section:last-child { border-bottom: 0; }

.lst-intro { border-bottom: 0 !important; padding-bottom: 24px !important; }
.lst-type { margin: 0; font-size: 1.36rem; font-weight: 600; line-height: 1.3; }
.lst-facts { margin: 4px 0 0; font-size: 1rem; color: var(--lst-ink); }

.lst-h2 { margin: 0 0 24px; font-size: 1.36rem; font-weight: 600; line-height: 1.3; }

/* guest favourite */
.lst-main > .lst-fav {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 24px; margin-bottom: 0;
  border: 1px solid var(--lst-line); border-radius: var(--lst-radius);
}
.lst-fav__laurel { width: 46px; height: 46px; color: var(--lst-ink); flex: none; display: flex; }
.lst-fav__laurel svg { width: 100%; height: 100%; }
.lst-fav__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lst-fav__txt b { font-size: 1.12rem; font-weight: 600; }
.lst-fav__txt small { font-size: .9rem; color: var(--lst-muted); margin-top: 2px; }
.lst-fav__score, .lst-fav__rev {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 22px; text-align: center;
}
.lst-fav__score:not(:last-child) { border-right: 1px solid var(--lst-line); }
.lst-fav__score b, .lst-fav__rev b { font-size: 1.36rem; font-weight: 600; line-height: 1.1; }
.lst-fav__score i { font-style: normal; font-size: .62rem; letter-spacing: 1px; margin-top: 2px; }
.lst-fav__rev small { font-size: .74rem; font-weight: 600; text-decoration: underline; }
.lst-fav + .lst-host { border-top: 0; }

/* host */
.lst-host { display: flex; align-items: center; gap: 22px; padding: 24px 0 !important; }
.lst-host__avatar {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--lst-ink); color: #fff;
}
.lst-host__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lst-host__avatar svg { width: 22px; height: 22px; }
.lst-host > span:last-child { display: flex; flex-direction: column; }
.lst-host b { font-size: 1rem; font-weight: 600; }
.lst-host small { font-size: .88rem; color: var(--lst-muted); }

/* highlights */
.lst-highs { display: flex; flex-direction: column; gap: 24px; }
.lst-high { display: flex; gap: 24px; align-items: flex-start; }
.lst-high__ic { width: 24px; height: 24px; margin-top: 2px; display: flex; color: var(--lst-ink); }
.lst-high__ic svg { width: 100%; height: 100%; }
.lst-high > span:last-child { display: flex; flex-direction: column; }
.lst-high b { font-size: 1rem; font-weight: 600; }
.lst-high small { font-size: .88rem; color: var(--lst-muted); margin-top: 2px; }

/* description */
.lst-desc__body { color: var(--lst-text); font-size: 1rem; line-height: 1.6; }
.lst-desc__body p { margin: 0 0 12px; }
.lst-desc__body p:last-child { margin-bottom: 0; }
.lst-desc.is-clamped .lst-desc__body {
  max-height: 9.6em; overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 60%, transparent);
          mask-image: linear-gradient(#000 60%, transparent);
}
.lst-desc .lst-more {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; padding: 0;
  border: 0; background: none; cursor: pointer; font-weight: 600; text-decoration: underline; font-size: 1rem;
}

/* where you'll sleep */
.lst-sleep {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px;
  scrollbar-width: thin;
}
.lst-sleep__card { scroll-snap-align: start; display: flex; flex-direction: column; min-width: 0; }
.lst-sleep__img {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3; border-radius: var(--lst-radius); overflow: hidden;
  background: var(--lst-bg-soft); margin-bottom: 12px; color: var(--lst-ink);
}
.lst-sleep__img img { width: 100%; height: 100%; object-fit: cover; }
.lst-sleep__img svg { width: 36px; height: 36px; }
.lst-sleep__card b { font-size: 1rem; font-weight: 600; }
.lst-sleep__card small { font-size: .88rem; color: var(--lst-muted); }

/* amenities */
.lst-amen {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px;
}
.lst-amen li { display: flex; align-items: center; gap: 16px; font-size: 1rem; color: var(--lst-ink); }
.lst-amen li svg { width: 24px; height: 24px; }
.lst-amen li.is-off span { text-decoration: line-through; color: var(--lst-ink); }
.lst-amen li.is-off svg { opacity: .9; }
.lst-amen--all { grid-template-columns: 1fr; gap: 0; }
.lst-amen--all li { padding: 22px 0; border-bottom: 1px solid var(--lst-soft); }
.lst-amen--all li span { display: flex; flex-direction: column; }
.lst-amen--all li small { font-size: .82rem; color: var(--lst-muted); text-decoration: none; }
.lst-btn-outline {
  display: inline-block; margin-top: 32px; padding: 13px 23px;
  border: 1px solid var(--lst-ink); border-radius: 8px; background: #fff; cursor: pointer;
  font-size: 1rem; font-weight: 600;
}
.lst-btn-outline:hover { background: var(--lst-bg-soft); }

/* calendar */
.lst-cal .lst-h2 { margin-bottom: 4px; }
.lst-cal__sub { margin: 0 0 24px; font-size: .9rem; color: var(--lst-muted); }
.lst-cal__months { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; }
.lst-month__head { display: flex; align-items: center; justify-content: center; position: relative; height: 34px; margin-bottom: 12px; }
.lst-month__head b { font-size: 1rem; font-weight: 600; }
.lst-month__nav {
  position: absolute; top: 0; width: 32px; height: 32px; border-radius: 50%;
  border: 0; background: none; cursor: pointer; font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; color: var(--lst-ink);
}
.lst-month__nav:hover { background: var(--lst-bg-soft); }
.lst-month__nav:disabled { opacity: .25; cursor: default; background: none; }
.lst-month__nav--prev { left: 0; }
.lst-month__nav--next { right: 0; }
.lst-month table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.lst-month th { font-size: .74rem; font-weight: 600; color: var(--lst-muted); padding: 0 0 8px; }
.lst-month td { padding: 1px 0; text-align: center; }
.lst-day {
  width: 100%; max-width: 44px; aspect-ratio: 1; margin: 0 auto; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid transparent; border-radius: 50%; background: none; cursor: pointer;
  font-size: .88rem; font-weight: 600; color: var(--lst-ink);
}
.lst-day:hover:not(:disabled) { border-color: var(--lst-ink); }
.lst-day:disabled { color: #b0b0b0; text-decoration: line-through; cursor: default; font-weight: 400; }
.lst-month td.is-range { background: var(--lst-bg-soft); }
.lst-month td.is-start { background: linear-gradient(90deg, transparent 50%, var(--lst-bg-soft) 50%); }
.lst-month td.is-end { background: linear-gradient(90deg, var(--lst-bg-soft) 50%, transparent 50%); }
.lst-month td.is-start.is-end { background: none; }
.lst-month td.is-start .lst-day, .lst-month td.is-end .lst-day { background: var(--lst-ink); color: #fff; border-color: var(--lst-ink); }
.lst-cal__clear {
  display: block; margin: 16px 0 0 auto; padding: 6px 8px; border: 0; background: none; cursor: pointer;
  font-size: .9rem; font-weight: 600; text-decoration: underline; border-radius: 8px;
}
.lst-cal__clear:hover { background: var(--lst-bg-soft); }

.lst-note { margin: 0; color: var(--lst-text); line-height: 1.6; }

/* --------------------------------------------------------- sidebar */
.lst-side { min-width: 0; }
.lst-side__sticky { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: stretch; gap: 16px; }

.lst-fees {
  align-self: center;
  display: inline-flex; align-items: center; gap: 8px; margin: 0;
  padding: 8px 18px; border-radius: 999px; background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1); border: 1px solid var(--lst-soft);
  font-size: .86rem; font-weight: 600;
}
.lst-fees svg { width: 15px; height: 15px; color: var(--lst-accent); }

.lst-book {
  padding: 24px; border: 1px solid var(--lst-line); border-radius: var(--lst-radius);
  box-shadow: 0 6px 16px rgba(0,0,0,.12); background: #fff;
}
.lst-book__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 6px; margin: 0; }
.lst-book__price b { font-size: 1.4rem; font-weight: 600; }
.lst-book__price span { font-size: 1rem; color: var(--lst-ink); }
.lst-book__price s { font-size: 1rem; color: var(--lst-muted); margin-left: 4px; order: -1; }
.lst-book__rate { margin: 6px 0 0; font-size: .9rem; color: var(--lst-ink); }
.lst-book__rate u { color: var(--lst-muted); }

.lst-err {
  margin: 16px 0 0; padding: 10px 14px; border-radius: 8px;
  background: #fff1f1; border: 1px solid #f3c2c2; color: #a3262a; font-size: .86rem;
}
.lst-err ul { margin: 0; padding-left: 18px; }

.lst-book form { margin-top: 20px; }
.lst-book__box { border: 1px solid #b0b0b0; border-radius: 8px; overflow: hidden; }
.lst-book__dates { display: flex; border-bottom: 1px solid #b0b0b0; }
.lst-book__cell { position: relative; display: flex; flex-direction: column; flex: 1; min-width: 0; padding: 10px 12px 8px; cursor: pointer; }
.lst-book__dates .lst-book__cell + .lst-book__cell { border-left: 1px solid #b0b0b0; }
.lst-book__cell span { font-size: .62rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--lst-ink); }
.lst-book__cell input, .lst-book__cell select {
  width: 100%; border: 0; padding: 2px 0 0; margin: 0; background: transparent;
  font: inherit; font-size: .9rem; color: var(--lst-ink); outline: none; min-width: 0;
  -webkit-appearance: none; appearance: none;
}
.lst-book__cell input::-webkit-calendar-picker-indicator { opacity: .55; cursor: pointer; }
.lst-book__cell:focus-within { box-shadow: inset 0 0 0 2px var(--lst-ink); border-radius: 8px; }
.lst-book__cell--full select { padding-right: 24px; cursor: pointer; }
.lst-book__chev { position: absolute; right: 14px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); pointer-events: none; }

.lst-book__sum {
  display: flex; justify-content: space-between; gap: 12px; margin: 16px 0 0;
  font-size: .95rem; color: var(--lst-ink);
}
.lst-book__sum span { text-decoration: underline; }

.lst-book__you { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.lst-book__you input, .lst-book__you textarea {
  width: 100%; padding: 11px 12px; border: 1px solid #b0b0b0; border-radius: 8px;
  font: inherit; font-size: .92rem; color: var(--lst-ink); background: #fff; resize: vertical;
}
.lst-book__you input:focus, .lst-book__you textarea:focus { outline: none; border-color: var(--lst-ink); box-shadow: 0 0 0 1px var(--lst-ink); }

.lst-reserve {
  display: block; width: 100%; margin-top: 16px; padding: 14px 20px;
  border: 0; border-radius: 8px; cursor: pointer;
  background: linear-gradient(to right, var(--lst-accent) 0%, var(--lst-accent-2) 100%);
  color: #fff !important; font-size: 1rem; font-weight: 600;
  transition: filter .15s;
}
.lst-reserve:hover { filter: brightness(1.05); }
.lst-reserve:disabled { opacity: .7; cursor: progress; }

.lst-book__note { margin: 12px 0 0; text-align: center; font-size: .86rem; color: var(--lst-ink); }
.lst-book__cancel {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin: 12px 0 0;
  font-size: .86rem; font-weight: 600; color: #008a05;
}
.lst-book__cancel svg { width: 16px; height: 16px; }

.lst-report {
  align-self: center; display: inline-flex; align-items: center; gap: 10px; margin-top: 8px;
  font-size: .86rem; font-weight: 600; color: var(--lst-muted); text-decoration: underline;
}
.lst-report svg { width: 16px; height: 16px; }
.lst-report:hover { color: var(--lst-ink); }

/* ------------------------------------------------------------ more */
.lst-moresec { padding-top: 48px; margin-top: 16px; border-top: 1px solid var(--lst-line); }
.lst-moresec .lst-more {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
}
.lst-card { display: flex; flex-direction: column; gap: 2px; color: var(--lst-ink); text-decoration: none; min-width: 0; }
.lst-card__img {
  position: relative; display: block; aspect-ratio: 1 / .95; border-radius: var(--lst-radius);
  overflow: hidden; background: var(--lst-soft); margin-bottom: 10px;
}
.lst-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.lst-card:hover .lst-card__img img { transform: scale(1.04); }
.lst-card__badge {
  position: absolute; left: 12px; top: 12px;
  padding: 5px 10px; border-radius: 999px; background: #fff;
  font-style: normal; font-size: .8rem; font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.lst-card__heart { position: absolute; right: 12px; top: 12px; width: 24px; height: 24px; display: flex; }
.lst-card__heart svg { width: 100%; height: 100%; }
.lst-card__row { display: flex; justify-content: space-between; gap: 8px; font-size: .95rem; }
.lst-card__row b { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lst-card__row i { font-style: normal; flex: none; }
.lst-card__place { display: flex; align-items: center; gap: 4px; font-size: .9rem; color: var(--lst-muted); }
.lst-card__place svg { width: 14px; height: 14px; }
.lst-card__price { font-size: .95rem; margin-top: 2px; }
.lst-card__price b { font-weight: 600; }

/* ------------------------------------------------- amenities modal */
.lst-modal { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.lst-modal__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.lst-modal__card {
  position: relative; width: min(780px, 100%); max-height: calc(100vh - 80px); overflow-y: auto;
  background: #fff; border-radius: var(--lst-radius); padding: 64px 32px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.lst-modal__x {
  position: absolute; left: 16px; top: 16px; width: 32px; height: 32px; border-radius: 50%;
  border: 0; background: none; cursor: pointer; font-size: 1.6rem; line-height: 1;
}
.lst-modal__x:hover { background: var(--lst-bg-soft); }

/* ---------------------------------------------------- photo viewer */
.lst-viewer {
  position: fixed; inset: 0; z-index: 1300; background: #000;
  display: flex; align-items: center; justify-content: center;
}
.lst-viewer img { max-width: calc(100% - 160px); max-height: calc(100% - 120px); object-fit: contain; }
.lst-viewer__x {
  position: absolute; left: 24px; top: 20px; padding: 6px 14px; border-radius: 8px;
  border: 0; background: rgba(255,255,255,.12); color: #fff !important; cursor: pointer; font-size: 1.4rem; line-height: 1;
}
.lst-viewer__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5); background: rgba(0,0,0,.3); color: #fff !important; cursor: pointer; font-size: 1.8rem; line-height: 1;
}
.lst-viewer__nav--prev { left: 24px; }
.lst-viewer__nav--next { right: 24px; }
.lst-viewer__count { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); margin: 0; color: #fff; font-size: .9rem; }

/* ------------------------------------------------------ responsive */
@media (max-width: 1128px) {
  .lst-wrap { padding-left: 24px; padding-right: 24px; }
  .lst-grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 0 48px; }
  .lst-moresec .lst-more { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lst-moresec .lst-card:nth-child(n+7) { display: none; }
}

@media (max-width: 900px) {
  .lst-grid { grid-template-columns: 1fr; }
  .lst-side__sticky { position: static; }
  .lst-side { padding-top: 8px; }
  .lst-cal__months { grid-template-columns: 1fr; }
  .lst-cal__months .lst-month + .lst-month { display: none; }
  .lst-moresec .lst-more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lst-sleep { grid-auto-columns: calc((100% - 16px) / 2.2); }
}

@media (max-width: 743px) {
  .lst-wrap { padding: 16px 16px 40px; }
  .lst-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .lst-head__acts { margin-left: -10px; }
  .lst-title { font-size: 1.36rem; overflow-wrap: anywhere; }
  .lst-title__badge { white-space: normal; }
  .lst-main, .lst-side, .lst-grid { max-width: 100%; }
  .lst-photos {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 0; height: 280px;
    margin: 0 -16px; border-radius: 0; scrollbar-width: none;
  }
  .lst-photos::-webkit-scrollbar { display: none; }
  .lst-photos__item { flex: 0 0 100%; scroll-snap-align: start; }
  .lst-photos__all { right: 12px; bottom: 12px; }
  .lst-grid { padding-top: 24px; }
  .lst-type, .lst-h2 { font-size: 1.2rem; }
  .lst-main > .lst-fav { flex-wrap: wrap; gap: 14px; padding: 18px; }
  .lst-fav__txt { flex-basis: calc(100% - 70px); }
  .lst-fav__score, .lst-fav__rev { flex: 1; padding: 8px 0 0; }
  .lst-amen { grid-template-columns: 1fr; }
  .lst-sleep { grid-auto-columns: 72%; }
  .lst-moresec .lst-more { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lst-moresec .lst-card:nth-child(n+5) { display: none; }
  .lst-card__row { flex-direction: column; gap: 0; }
  .lst-btn-outline { width: 100%; text-align: center; }
  .lst-book { padding: 20px; }
  .lst-modal { padding: 0; align-items: flex-end; }
  .lst-modal__card { max-height: 92vh; border-radius: 16px 16px 0 0; padding: 60px 20px 20px; }
  .lst-viewer img { max-width: 100%; }
  .lst-viewer__nav { top: auto; bottom: 24px; transform: none; }
}

/* ------------------------------------------------ mobile spacing rhythm */
/* One column (tablet and phone): the booking card starts its own section. */
@media (max-width: 900px) {
  .lst-main > section:last-child { padding-bottom: 32px; }
  .lst-side { padding-top: 32px; border-top: 1px solid var(--lst-line); }
  .lst-moresec { margin-top: 32px; padding-top: 32px; }
}
/* Phones only: one even rhythm between sections (28px either side of each
   divider, 20px inside a section), nothing touching or overlapping. */
@media (max-width: 743px) {
  .lst-crumbs { margin-bottom: 12px; }
  .lst-head { gap: 8px; margin-bottom: 20px; }
  .lst-sent { margin-bottom: 20px; }
  .lst-grid { padding-top: 24px; }

  .lst-main > section { padding: 28px 0; }
  .lst-main > section:first-child { padding-top: 0; }
  .lst-intro { padding-bottom: 20px !important; }
  .lst-main > .lst-fav { margin-bottom: 0; }
  .lst-host { padding: 24px 0 28px !important; gap: 16px; }
  .lst-h2 { margin-bottom: 20px; }
  .lst-cal .lst-h2 { margin-bottom: 4px; }
  .lst-cal__sub { margin-bottom: 20px; }
  .lst-btn-outline { margin-top: 24px; }

  /* highlights: a fixed icon column, so every line starts at the same x */
  .lst-highs { gap: 20px; }
  .lst-high { gap: 16px; }
  .lst-high__ic { flex: 0 0 24px; width: 24px; height: 24px; }
  .lst-amen { gap: 18px; }
  .lst-sleep__img { margin-bottom: 10px; }

  /* the booking card starts a section of its own */
  .lst-side { padding-top: 28px; border-top: 1px solid var(--lst-line); }
  .lst-side__sticky { gap: 16px; }
  .lst-report { margin-top: 4px; }

  /* more stays */
  .lst-moresec { margin-top: 28px; padding-top: 28px; }
  .lst-moresec .lst-h2 { margin-bottom: 20px; }
  .lst-moresec .lst-more { gap: 24px 14px; }
  .lst-card__img { margin-bottom: 10px; }
  .lst-card__badge {
    left: 8px; top: 8px; max-width: calc(100% - 48px);
    padding: 4px 8px; font-size: .7rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .lst-card__heart { right: 8px; top: 9px; width: 22px; height: 22px; }

  /* room under the last content for the floating chat buttons */
  .lst-wrap { padding-bottom: 88px; }
}
