/* Додаткові стани для реального API (не змінюють базовий дизайн прототипу) */

.search-results-state {
  padding: 48px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #5b6470;
  background: #f6f8fb;
  border-radius: 16px;
}
.search-results-state--loading { color: #1f6feb; }
.search-results-state--error { color: #c0392b; background: #fdecea; }
.search-results-state--empty { color: #6a7280; }

.search-results-state--loading::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: -3px;
  border: 2.5px solid #c9d6ee;
  border-top-color: #1f6feb;
  border-radius: 50%;
  animation: atsp-spin 0.8s linear infinite;
}
@keyframes atsp-spin { to { transform: rotate(360deg); } }

body.atsp-search-busy .ps-submit {
  opacity: 0.92;
  cursor: wait;
}

.search-results-main.is-searching {
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.search-results-main.atsp-results-updated {
  animation: atsp-results-flash 1.2s ease;
}

.search-results-main.atsp-results-updated .search-results-count {
  animation: atsp-count-pop 0.55s ease;
}

@keyframes atsp-results-flash {
  0% { box-shadow: inset 0 0 0 0 transparent; }
  25% { box-shadow: inset 0 0 0 2px rgba(31, 111, 235, 0.35); }
  100% { box-shadow: inset 0 0 0 0 transparent; }
}

@keyframes atsp-count-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.02); color: #1f6feb; }
  100% { transform: scale(1); }
}

.search-results-note {
  margin: 0 0 14px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #8a5a00;
  background: #fff6e5;
  border: 1px solid #ffe2ad;
  border-radius: 12px;
}

.search-result-img--empty {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, #e9eef6, #d7e0ee);
}
.search-result-price-na { font-size: 14px; font-weight: 700; color: #8a93a3; }

.tm-slide--empty { background: linear-gradient(135deg, #e9eef6, #d7e0ee); min-height: 320px; }
.tm-price--na { font-size: 16px; font-weight: 700; color: #6a7280; }

/* бейдж «схожий варіант» на картці */
.search-result-similar-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(31, 111, 235, .92);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(15, 23, 38, .25);
  pointer-events: none;
}

/* короткий підпис ціни у картці */
.search-result-price-note {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1f9d55;
}

/* підпис ціни у попапі */
.tm-price-note { margin: 4px 0 0; font-size: 12.5px; font-weight: 600; color: #1f9d55; }
.tm-meta--addr { color: #7a8395; font-size: 13px; }
.tm-muted { color: #8a93a3; font-size: 13.5px; margin: 6px 0 0; }
.tm-muted--loading::before {
  content: ""; display: inline-block; width: 14px; height: 14px; margin-right: 8px; vertical-align: -2px;
  border: 2px solid #c9d6ee; border-top-color: #1f6feb; border-radius: 50%; animation: atsp-spin 0.8s linear infinite;
}

/* рейси / трансфер */
.tm-flights-note { margin: 0 0 12px; font-size: 13.5px; color: #5b6470; }
.tm-flights { display: grid; gap: 10px; }
.tm-flight {
  display: grid; gap: 2px; padding: 12px 14px;
  background: #f6f8fb; border: 1px solid #e6ebf3; border-radius: 12px;
}
.tm-flight__dir { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #1f6feb; }
.tm-flight__route { font-size: 14px; font-weight: 600; color: #2a3340; }
.tm-flight__route b { color: #111; }
.tm-flight__sub { font-size: 12.5px; color: #7a8395; }

/* ───────── попап заявки ───────── */
.atsp-booking {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  padding: 18px; opacity: 0; transition: opacity .24s ease;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}
.atsp-booking.is-open { opacity: 1; }
.atsp-booking[hidden] { display: none; }
.atsp-booking__backdrop {
  position: absolute; inset: 0; background: rgba(15, 23, 38, .56);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.atsp-booking__dialog {
  position: relative; width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 20px; padding: 26px 26px 24px;
  box-shadow: 0 30px 80px rgba(15, 23, 38, .35);
  transform: translateY(14px) scale(.98); transition: transform .26s ease;
}
.atsp-booking.is-open .atsp-booking__dialog { transform: translateY(0) scale(1); }
.atsp-booking__x {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%; background: #f1f4f9; color: #5b6470; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.atsp-booking__x:hover { background: #e6ebf3; color: #1a2233; }
.atsp-booking__badge {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: #1f6feb; background: #eaf2ff; padding: 5px 11px; border-radius: 999px;
}
.atsp-booking__title { margin: 12px 0 4px; font-size: 22px; font-weight: 800; color: #111; line-height: 1.2; }
.atsp-booking__sub { margin: 0; font-size: 13.5px; color: #7a8395; }
.atsp-booking__summary {
  margin: 16px 0 4px; padding: 14px 16px; background: #f6f8fb; border-radius: 14px;
  display: grid; gap: 8px;
}
.atsp-booking__summary:empty { display: none; }
.atsp-booking__row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.atsp-booking__row span { color: #7a8395; }
.atsp-booking__row strong { color: #1a2233; font-weight: 700; text-align: right; }
.atsp-booking__form { display: grid; gap: 12px; margin-top: 16px; }
.atsp-booking__field { display: grid; gap: 5px; }
.atsp-booking__field span { font-size: 12.5px; font-weight: 600; color: #5b6470; }
.atsp-booking__field input,
.atsp-booking__field textarea {
  width: 100%; box-sizing: border-box; padding: 11px 13px; font-size: 14.5px; color: #1a2233;
  border: 1.5px solid #dde3ec; border-radius: 11px; background: #fff; font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.atsp-booking__field textarea { resize: vertical; min-height: 64px; }
.atsp-booking__field input:focus,
.atsp-booking__field textarea:focus {
  outline: none; border-color: #1f6feb; box-shadow: 0 0 0 3px rgba(31, 111, 235, .14);
}
.atsp-booking__submit {
  margin-top: 4px; padding: 14px 18px; border: 0; border-radius: 12px; cursor: pointer;
  font-size: 15px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #2575fc, #1f6feb); box-shadow: 0 12px 26px rgba(31, 111, 235, .3);
  transition: transform .12s ease, box-shadow .15s ease, opacity .15s ease;
}
.atsp-booking__submit:hover { transform: translateY(-1px); box-shadow: 0 16px 32px rgba(31, 111, 235, .38); }
.atsp-booking__submit:disabled { opacity: .65; cursor: default; transform: none; }
.atsp-booking__status { margin: 4px 0 0; font-size: 13px; font-weight: 600; min-height: 18px; text-align: center; }
.atsp-booking__status.is-loading { color: #1f6feb; }
.atsp-booking__status.is-ok { color: #1f9d55; }
.atsp-booking__status.is-error { color: #c0392b; }
.atsp-booking__phone { margin: 6px 0 0; font-size: 13px; text-align: center; color: #7a8395; }
.atsp-booking__phone a { color: #1f6feb; font-weight: 700; text-decoration: none; }
@media (max-width: 520px) {
  .atsp-booking__dialog { padding: 22px 18px 20px; border-radius: 16px; }
  .atsp-booking__title { font-size: 19px; }
}

/* ─── Кнопка «на карті» над фото ─── */
.tm-media { position: relative; }
.tm-mapbtn {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px; max-width: calc(100% - 24px);
  padding: 8px 13px; font-size: 13px; font-weight: 700; line-height: 1.1;
  color: #1a2233; text-decoration: none;
  background: rgba(255, 255, 255, .94); border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15, 23, 38, .22);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
}
.tm-mapbtn:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15, 23, 38, .28); }
.tm-mapbtn svg { color: #e3342f; flex: 0 0 auto; }
.tm-mapbtn span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ─── Що входить у вартість ─── */
.tm-includes {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
}
.tm-include {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 11px; font-size: 13.5px; line-height: 1.45;
}
.tm-include--yes { background: #edf8f0; color: #1a5c36; }
.tm-include--no { background: #fff5f5; color: #8b3a3a; }
.tm-include--neutral { background: #f3f5f9; color: #5b6470; }
.tm-include--neutral .tm-include__mark { background: #dce4f2; color: #5b6470; }

.sf-transport-hint {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #64748b;
}

.sf-transport-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sf-transport-chip {
  display: block;
  margin: 0;
  cursor: pointer;
}

.sf-transport-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sf-transport-chip__face {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.sf-transport-chip__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #64748b;
  transition: color 0.15s ease;
}

.sf-transport-chip:hover .sf-transport-chip__face {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.sf-transport-chip input:focus-visible + .sf-transport-chip__face {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.sf-transport-chip input:checked + .sf-transport-chip__face {
  border-color: #dc2626;
  background: #fff5f5;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.12);
}

.sf-transport-chip input:checked + .sf-transport-chip__face .sf-transport-chip__icon {
  color: #dc2626;
}

.filter-block--transport .filter-block-body {
  padding-top: 0.25rem;
}

.sf-filter-hint {
  margin: 8px 0 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #94a3b8;
}

.sf-hf-group {
  margin-bottom: 12px;
}

.sf-hf-group:last-child {
  margin-bottom: 0;
}

.sf-hf-group__title {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
}

.sf-transport-chip--compact .sf-transport-chip__face {
  min-height: 44px;
}

.filter-block--instant .filter-block-body--flush {
  padding: 0.5rem 0.75rem 0.75rem;
}
.tm-include__mark {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.tm-include--yes .tm-include__mark { background: #1f9d55; color: #fff; }
.tm-include--no .tm-include__mark { background: #e8ecf2; color: #7a8395; }
.tm-deps-lead { margin: 0 0 12px; font-size: 14px; line-height: 1.5; color: #5b6470; }

/* ─── Міні-пошук у попапі готелю (стиль як anex-search-bar) ─── */
.tm-dep-search { margin: 0 0 14px; position: relative; }
.tm-dep-search .tm-dep-search__bar {
  padding: 0;
  border: 1px solid var(--anex-line, #e8ecf2);
  border-radius: var(--bar-radius, 14px);
  background: #fff;
  min-height: var(--bar-height, 68px);
  box-shadow: 0 8px 28px rgba(7, 19, 42, 0.12);
  overflow: hidden;
}
.tm-dep-search .anex-search-segment { min-width: 0; }
.tm-dep-search__bar--no-from .anex-search-segment--dates { flex: 1.1; }
.tm-dep-search__bar--no-from .anex-search-segment--nights { flex: 0.85; }
.tm-dep-search__bar--no-from .anex-search-segment--guests { flex: 0.85; }
.anex-from-row--any .anex-from-row__name { font-weight: 700; }
.tm-dep-search .anex-search-segment--from .anex-segment-value {
  display: flex; flex-wrap: nowrap; gap: 4px; align-items: center;
  width: 100%; max-width: 100%; max-height: 22px;
  overflow-x: auto; overflow-y: hidden; white-space: nowrap;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.tm-dep-search .ps-submit {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 120px;
  margin: 0;
  padding: 0 24px;
  border-radius: 0;
}
.tm-dep-from-chip {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 1px 6px 1px 8px; border-radius: 8px; background: #eef4ff;
  font-size: 12px; font-weight: 600; color: #1a2233; white-space: nowrap;
}
.tm-dep-from-chip__x {
  border: none; background: none; cursor: pointer; padding: 0 2px;
  font-size: 15px; line-height: 1; color: #7a8395;
}
.tm-dep-from-chip__x:hover { color: #e31e24; }
.anex-from-row--check {
  display: flex; align-items: center; width: 100%; cursor: pointer;
  padding: 10px 14px; border: none; background: transparent; text-align: left; font: inherit;
}
.anex-from-row--check input { flex-shrink: 0; width: 16px; height: 16px; margin: 0 10px 0 0; accent-color: #1f6feb; }
.tm-dep-hidden-fields {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
}
.tm-dep-panel {
  z-index: 10250 !important;
  max-width: min(400px, calc(100vw - 32px));
  overflow-x: hidden;
}
.tm-dep-panel-backdrop { z-index: 10240 !important; }
#tm-dep-panel-dates.tm-dep-panel {
  width: min(640px, calc(100vw - 32px));
  max-width: min(640px, calc(100vw - 32px));
  padding: 0;
}
#tm-dep-panel-dates .anex-sheet-body { overflow-x: hidden; }
#tm-dep-panel-dates .anex-cal { min-width: 0; }
#tm-dep-panel-dates .anex-cal-months { min-width: 0; }
@media (max-width: 680px) {
  #tm-dep-panel-dates .anex-cal-months { grid-template-columns: 1fr; }
}
.tm-deps-status { margin: 0 0 10px; font-size: 13px; color: #5b6470; }
.tm-deps-status--loading { color: #1f6feb; font-weight: 600; }
@media (max-width: 720px) {
  .tm-dep-search .tm-dep-search__bar {
    flex-wrap: wrap;
    min-height: 0;
  }
  .tm-dep-search .anex-search-segment { flex: 1 1 calc(50% - 1px); min-height: 58px; }
  .tm-dep-search .ps-submit {
    flex: 1 1 100%;
    width: 100%;
    min-height: 52px;
    border-radius: 0 0 var(--bar-radius, 14px) var(--bar-radius, 14px);
  }
}

/* ─── Календар вильотів ─── */
.tm-deps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.tm-dep {
  display: inline-flex; flex-direction: column; gap: 3px; align-items: flex-start;
  padding: 9px 14px; border: 1.5px solid #e1e7f0; border-radius: 12px; background: #fff;
  cursor: pointer; font-family: inherit; text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.tm-dep:hover { border-color: #1f6feb; box-shadow: 0 8px 18px rgba(31, 111, 235, .16); transform: translateY(-1px); }
.tm-dep__date { font-size: 13.5px; font-weight: 700; color: #1a2233; }
.tm-dep__nights { font-size: 11.5px; color: #7a8395; }
.tm-dep__price { font-size: 13px; font-weight: 800; color: #1f6feb; }
.tm-dep__price--na { font-weight: 600; color: #8a93a3; font-size: 12px; }

/* ─── Контакти месенджерів ─── */
.tm-contacts { margin-top: 12px; }
.tm-contacts__label { display: block; font-size: 12px; font-weight: 600; color: #7a8395; margin-bottom: 7px; }
.tm-contacts__row { display: flex; flex-wrap: wrap; gap: 8px; }
.tm-contact {
  display: inline-flex; align-items: center; gap: 6px; flex: 1 1 auto; justify-content: center;
  padding: 9px 12px; border-radius: 11px; font-size: 13px; font-weight: 700;
  text-decoration: none; color: #fff; transition: transform .12s ease, opacity .15s ease;
}
.tm-contact:hover { transform: translateY(-1px); opacity: .92; }
.tm-contact--viber { background: #7360f2; }
.tm-contact--tg { background: #2aabee; }
.tm-contact--call { background: #1f9d55; }
.tm-contacts--booking { margin-top: 14px; padding-top: 14px; border-top: 1px solid #eef1f6; }

.sf-exc-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}
.sf-exc-loading,
.sf-exc-muted {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #8a93a3;
  grid-column: 1 / -1;
}
.sf-exc-night-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #3d4654;
  cursor: pointer;
}
.sf-exc-night-toggle input {
  width: 18px;
  height: 18px;
  accent-color: #1f6feb;
}

/* компактні іконки в картці бронювання (готелі + екскурсії) */
.tm-contacts--compact .tm-contacts__label { font-size: 11px; margin-bottom: 6px; }
.tm-contacts--compact .tm-contacts__row { gap: 6px; }
.tm-contacts--compact .tm-contact {
  flex: 1 1 0; min-width: 0; padding: 10px 8px; border-radius: 10px;
}
.tm-contacts--compact .tm-contact span { display: none; }
.tm-contacts--compact .tm-contact svg { width: 20px; height: 20px; }

/* ─── Плаваюча кнопка звʼязку (FAB) ─── */
.atsp-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 10050;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  pointer-events: none;
}
.atsp-fab__menu {
  display: flex; flex-direction: column-reverse; align-items: center; gap: 10px;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.92);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  pointer-events: none;
}
.atsp-fab.is-open .atsp-fab__menu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.atsp-fab__item {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; box-shadow: 0 8px 22px rgba(15, 23, 38, .22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.atsp-fab__item:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 28px rgba(15, 23, 38, .28); }
.atsp-fab__item--viber { background: #7360f2; }
.atsp-fab__item--tg { background: #2aabee; }
.atsp-fab__item--call { background: #1f9d55; }

.atsp-fab__main {
  position: relative; width: 58px; height: 58px; border: 0; border-radius: 50%;
  cursor: pointer; pointer-events: auto;
  background: linear-gradient(145deg, #ff2a38, #f31624);
  color: #fff; box-shadow: 0 10px 28px rgba(243, 22, 36, .45);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.atsp-fab__main:hover { transform: scale(1.06); box-shadow: 0 14px 34px rgba(243, 22, 36, .52); }
.atsp-fab.is-open .atsp-fab__main { background: linear-gradient(145deg, #1f6feb, #1348a8); box-shadow: 0 10px 28px rgba(31, 111, 235, .4); }

.atsp-fab__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(243, 22, 36, .35);
  animation: atsp-fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.atsp-fab__pulse--2 { animation-delay: 1.1s; }
.atsp-fab.is-open .atsp-fab__pulse { display: none; }
.atsp-fab__icon { position: relative; z-index: 1; }

@keyframes atsp-fab-pulse {
  0% { transform: scale(1); opacity: .65; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 520px) {
  .atsp-fab { right: 14px; bottom: 14px; }
  .atsp-fab__main { width: 54px; height: 54px; }
  .atsp-fab__item { width: 44px; height: 44px; }
}

/* ─── Зручності та послуги (групи з іконками) ─── */
.tm-facilities-wrap {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid #eef1f6;
}
.tm-facilities-note {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #7a8395;
}
.tm-facilities-note .tm-facility-paid {
  display: inline;
  font-weight: 800;
  color: #f31624;
}
.tm-facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
}
.tm-facility-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.tm-facility-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, #ff4a56, #f31624);
  box-shadow: 0 8px 22px rgba(243, 22, 36, .22);
}
.tm-facility-card__icon svg { width: 28px; height: 28px; }
.tm-facility-card__icon--beach { background: linear-gradient(145deg, #4aa3ff, #1f6feb); box-shadow: 0 8px 22px rgba(31, 111, 235, .22); }
.tm-facility-card__icon--sport { background: linear-gradient(145deg, #a78bfa, #7c3aed); box-shadow: 0 8px 22px rgba(124, 58, 237, .2); }
.tm-facility-card__icon--kids { background: linear-gradient(145deg, #fbbf24, #d97706); box-shadow: 0 8px 22px rgba(217, 119, 6, .22); }
.tm-facility-card__icon--food { background: linear-gradient(145deg, #34d399, #059669); box-shadow: 0 8px 22px rgba(5, 150, 105, .2); }
.tm-facility-card__icon--room { background: linear-gradient(145deg, #94a3b8, #64748b); box-shadow: 0 8px 22px rgba(100, 116, 139, .2); }
.tm-facility-card__icon--pool { background: linear-gradient(145deg, #38bdf8, #0284c7); box-shadow: 0 8px 22px rgba(2, 132, 199, .22); }
.tm-facility-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  color: #1a2233;
}
.tm-facility-card__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 68px;
}
.tm-facility-li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: #3d4a62;
  border-bottom: 1px solid #f0f3f8;
}
.tm-facility-li:last-child { border-bottom: none; }
.tm-facility-li__name { flex: 1; min-width: 0; }
.tm-facility-paid {
  flex-shrink: 0;
  color: #f31624;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}
.tm-facility-li--excluded .tm-facility-li__name { color: #64748b; }
.tm-facility-li--excluded .tm-facility-li__name::before {
  content: '— ';
  color: #94a3b8;
}

@media (max-width: 900px) {
  .tm-facilities-grid { grid-template-columns: 1fr; gap: 24px; }
  .tm-facility-card__list { padding-left: 0; }
}
