/* ==========================================================================
   «В путь» — заправки по дороге A→Б (M-PRODUCT-02, фаза 1).
   Изолированный слой фичи: ВСЕ селекторы с префиксом .rt- (исключение —
   два body-гарда видимости FAB, как у .spf-fab). Цвета — только через
   существующие переменные style.css, поэтому light/dark работают
   автоматически и своих prefers-color-scheme писать не нужно.
   ⚠️ z-index слоя строго МЕЖДУ скримом карточки (1500) и самой карточкой
   (.sheet = 1600): карточка открывается ПОВЕРХ маршрута, а маршрут не сбрасывается.
   Спека: docs/superpowers/specs/2026-07-30-v-put-design.md
   ========================================================================== */

/* ── FAB: третий слот левой колонки карт-кнопок.
      «Подвоз» +58px, «Умный подбор» +110px (44px кнопка + 8px зазор) → наш +162px. ── */
.rt-fab {
  position: fixed;
  left: 14px;
  bottom: var(--rt-fab-bottom, calc(env(safe-area-inset-bottom, 0px) + var(--tabbar-h, 62px) + var(--peek-h, 48px) + 162px));
  z-index: 900;
  display: none;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 15px 0 13px;
  border-radius: var(--r-pill, 999px);
  border: 1px solid var(--accent-line, rgba(34,197,94,.45));
  background: color-mix(in srgb, var(--accent, #22c55e) 12%, var(--surface, #141a20));
  color: var(--accent, #22c55e);
  font: 700 14px/1 var(--font);
  cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,.55);
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s ease, width .2s ease, padding .2s ease;
}
.rt-fab.rt-show { display: inline-flex; }
.rt-fab:active { transform: scale(.97); }
.rt-fab__ico { display: block; flex: none; width: 18px; height: 18px; }
.rt-fab--mini { width: 44px; padding: 0; gap: 0; justify-content: center; }
.rt-fab--mini .rt-fab__txt { display: none; }
body:not(.tab-map) .rt-fab.rt-show { display: none; }
body.gz-filters-open .rt-fab.rt-show { display: none; }
body.rt-open .rt-fab.rt-show { display: none; }
@media (prefers-reduced-motion: reduce) {
  .rt-fab { transition: none; }
  .rt-ov, .rt-ov.is-result { transition: none; }
}

/* ── Оверлей. Экран задания поездки — на весь экран; экран результата —
      нижняя шторка, чтобы карта с полилинией оставалась видимой. ── */
.rt-ov {
  position: fixed;
  inset: 0;
  z-index: 1550;
  display: flex;
  flex-direction: column;
  background: var(--surface, #141a20);
  transform: translateY(100%);
  visibility: hidden;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), visibility .28s;
}
.rt-ov.rt-show { transform: translateY(0); visibility: visible; }
/* Три положения шторки. Высота — переменной: во время жеста JS кладёт в неё пиксели,
   в покое её задаёт CSS, и десктопный медиазапрос ниже переопределяет её как обычно.
   Среднее (46vh) — по умолчанию: в поездке нужно видеть и дорогу впереди, и список. */
.rt-ov.is-result {
  top: auto;
  height: var(--rt-sheet, 46vh);
  max-height: 92vh;
  overflow: hidden;
  border-radius: var(--r-4, 20px) var(--r-4, 20px) 0 0;
  border-top: 1px solid var(--line-2, rgba(255,255,255,.13));
  box-shadow: 0 -18px 50px -18px rgba(0,0,0,.7);
  transition: transform .28s cubic-bezier(.22,.61,.36,1), visibility .28s,
              height .26s cubic-bezier(.22,.61,.36,1);
}
.rt-ov.is-result.rt-full { --rt-sheet: 88vh; }
/* Пока палец на ручке, высота меняется покадрово — анимация переходов её бы «догоняла». */
.rt-ov.rt-drag { transition: none; }
.rt-grab {
  flex: none;
  display: none;
  justify-content: center;
  align-items: center;
  /* Зона захвата больше самой полоски: пальцем по 5-пиксельной риске не попасть. */
  padding: 10px 0 6px;
  background: transparent;
  border: 0;
  cursor: grab;
  touch-action: none;          /* иначе жест уводит скролл списка, а не тянет шторку */
}
.rt-ov.is-result .rt-grab { display: flex; }
.rt-grab::before { content: ""; width: 42px; height: 5px; border-radius: 3px; background: var(--muted, #97a3ab); opacity: .45; }
.rt-grab:active { cursor: grabbing; }

/* ── Свёрнутое состояние: видна только сводка, карта с маршрутом открыта ── */
.rt-ov.is-result.is-peek {
  height: auto;
  max-height: none;
}
.rt-ov.is-result.is-peek .rt-head,
.rt-ov.is-result.is-peek .rt-screen { display: none; }
.rt-peek {
  display: none;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 2px 16px calc(env(safe-area-inset-bottom, 0px) + 14px);
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.rt-ov.is-result.is-peek .rt-peek { display: flex; }
.rt-peek__txt { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rt-peek__txt b {
  font: 800 15px/1.25 var(--font);
  color: var(--text, #eaf0f3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rt-peek__txt small {
  font: 600 12.5px/1.3 var(--font);
  color: var(--muted, #97a3ab);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rt-peek__up {
  flex: none; width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--r-pill, 999px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  color: var(--text, #eaf0f3);
}
.rt-peek__up svg { width: 18px; height: 18px; }

/* ── Полоса маршрута: весь участок одной линией ──
   Точки станций по цвету статуса + штриховка на разрыве без подтверждённого бензина.
   Стоит вне экранов и видна во ВСЕХ положениях шторки, включая свёрнутое: это
   единственный элемент, отвечающий на «дотяну ли я», не открывая список.
   Цвета статусов — те же переменные, что у точек списка (.rt-dot--*). */
.rt-strip { flex: none; display: none; padding: 2px 16px 8px; }
.rt-ov.is-result .rt-strip:not([hidden]) { display: block; }
.rt-strip__track { position: relative; height: 14px; }
/* Всё покрытие лежит ВНУТРИ линии: она скругляет и обрезает отрезки, поэтому
   ни один из них не торчит за край полосы своим прямым углом. */
.rt-strip__line {
  position: absolute; left: 0; right: 0; top: 4px; height: 7px;
  border-radius: 4px;
  background: var(--surface-2, rgba(255,255,255,.08));
  overflow: hidden;
}
.rt-strip__seg { position: absolute; top: 0; bottom: 0; }
.rt-strip__seg--ok { background: var(--ok, #22C55E); }
.rt-strip__seg--limit { background: var(--limit, #F2C037); }
/* «Станции есть, наличие никто не подтверждал» — заметно, но тише подтверждённых. */
.rt-strip__seg--unknown { background: var(--unknown, #9ca3af); opacity: .55; }
/* Штриховка КОСАЯ, а не пунктиром вдоль линии: пунктир из красных отрезков читался бы
   как ряд отметок «бензина нет», а это разные вещи — тут наличие никто не подтверждал. */
.rt-strip__gap {
  position: absolute; top: 0; bottom: 0;
  background: repeating-linear-gradient(45deg,
    var(--no, #F0493D) 0 2px, transparent 2px 5px);
}
.rt-strip__legend {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 3px;
  font: 600 11px/1.25 var(--font);
  color: var(--muted, #97a3ab);
  font-variant-numeric: tabular-nums;
}
.rt-strip__legend span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rt-strip__legend span:nth-child(2) { flex: none; }
/* В свёрнутом состоянии полоса встаёт сразу под ручку: сначала картинка «где дыры»,
   под ней строка сводки. В развёрнутом порядок обратный — там сверху шапка с названием
   направления, и полоса идёт под ней. Порядком, а не вторым узлом: узел один и тот же. */
.rt-ov.is-result.is-peek .rt-grab { order: -2; }
.rt-ov.is-result.is-peek .rt-strip { order: -1; }

.rt-head { flex: none; display: flex; align-items: center; gap: 10px; padding: 12px 14px 8px; }
.rt-head__txt { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rt-head__txt b { font: 800 17px/1.2 var(--font); color: var(--text, #eaf0f3); }
.rt-head__txt small {
  font: 500 12px/1.3 var(--font);
  color: var(--muted, #97a3ab);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rt-icobtn {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill, 999px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: transparent;
  color: var(--text, #eaf0f3);
  cursor: pointer;
}
.rt-icobtn svg { width: 18px; height: 18px; }

.rt-screen {
  display: none;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 14px 18px;
}
.rt-ov:not(.is-pick):not(.is-result) .rt-screen--trip { display: flex; }
.rt-ov.is-pick .rt-screen--pick { display: flex; }
.rt-ov.is-result .rt-screen--result { display: flex; }

/* ── Поля «Откуда»/«Куда» + «моё место» ── */
.rt-fields {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.rt-field {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 13px;
  border-radius: var(--r-2, 14px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: var(--surface-2, rgba(255,255,255,.04));
  cursor: pointer;
  min-width: 0;
}
/* «Откуда» — контейнер с двумя кнопками, поэтому падинг снимаем с него и отдаём внутрь. */
.rt-field--a { display: flex; flex-direction: column; gap: 0; padding: 0; cursor: default; }
.rt-field__pick {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  padding: 11px 13px;
  background: transparent;
  border: 0;
  border-radius: inherit;
  color: inherit;
  cursor: pointer;
  min-width: 0;
}
.rt-field__me {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px 10px;
  margin: 0;
  background: transparent;
  border: 0;
  border-top: 1px dashed var(--line-2, rgba(255,255,255,.13));
  color: var(--brand, #22c55e);
  font: 700 13px/1 var(--font);
  cursor: pointer;
  text-align: left;
}
.rt-field__me svg { flex: none; width: 17px; height: 17px; }
.rt-field__me:disabled { opacity: .55; cursor: default; }
.rt-field__lbl { font: 600 11px/1 var(--font); color: var(--muted, #97a3ab); letter-spacing: .03em; }
.rt-field__val {
  font: 700 14.5px/1.25 var(--font);
  color: var(--text, #eaf0f3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rt-go {
  margin-top: 14px;
  height: 48px;
  border: 0;
  border-radius: var(--r-2, 14px);
  background: var(--accent, #22c55e);
  color: var(--accent-ink, #06210f);
  font: 800 15px/1 var(--font);
  cursor: pointer;
}
.rt-go:disabled { opacity: .45; cursor: default; }

/* ── Заметки: разрыв покрытия, автосброс фильтра, метка кэша ── */
.rt-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--r-1, 12px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  font: 600 12.5px/1.35 var(--font);
  color: var(--text, #eaf0f3);
}
.rt-note--warn {
  border-color: color-mix(in srgb, var(--queue, #F59E0B) 55%, transparent);
  background: color-mix(in srgb, var(--queue, #F59E0B) 12%, transparent);
}
.rt-note--muted { color: var(--muted, #97a3ab); border-style: dashed; }

/* ── Каталог направлений (второй вход, будущие SEO-страницы) ── */
.rt-cat { margin-top: 22px; }
.rt-cat__h {
  font: 700 12px/1 var(--font);
  color: var(--muted, #97a3ab);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.rt-cat__list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.rt-cat__it {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 13px;
  border-radius: var(--r-2, 14px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: transparent;
  cursor: pointer;
}
.rt-cat__it b { font: 700 14px/1.2 var(--font); color: var(--text, #eaf0f3); }
.rt-cat__it small { font: 500 12px/1.3 var(--font); color: var(--muted, #97a3ab); }

/* ── Пикер точки ── */
.rt-search { flex: none; padding: 4px 0 10px; }
.rt-search__inp {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--r-2, 14px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: var(--surface-2, rgba(255,255,255,.04));
  color: var(--text, #eaf0f3);
  font: 600 15px/1 var(--font);
}
.rt-hits { display: flex; flex-direction: column; gap: 6px; }
.rt-hit {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--r-1, 12px);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}
.rt-hit:hover { border-color: var(--line-2, rgba(255,255,255,.13)); }
.rt-hit b { font: 700 14px/1.2 var(--font); color: var(--text, #eaf0f3); }
.rt-hit small { font: 500 12px/1.3 var(--font); color: var(--muted, #97a3ab); }
.rt-empty {
  padding: 18px 4px;
  font: 600 13px/1.4 var(--font);
  color: var(--muted, #97a3ab);
  text-align: center;
}
.rt-empty__retry {
  display: block;
  height: 38px;
  margin: 12px auto 0;
  padding: 0 16px;
  border-radius: var(--r-pill, 999px);
  border: 1px solid var(--accent-line, rgba(34,197,94,.45));
  background: color-mix(in srgb, var(--accent, #22c55e) 12%, transparent);
  color: var(--accent, #22c55e);
  font: 700 13px/1 var(--font);
  cursor: pointer;
}

/* ── Результат: цель, чипы, список, строка станции ──
   Прокручивается ТОЛЬКО список: цель и фильтры закреплены. Уехавшая вверх вместе
   со списком «следующая заправка» — ровно то, за чем на этот экран приходят. */
.rt-ov.is-result .rt-screen--result { overflow: hidden; }
.rt-result__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;   /* иначе прокрутка списка тянет за собой карту под шторкой */
}

/* Ближайшая цель. Километры до неё — самый крупный текст экрана: в поездке вопрос
   ровно один, «сколько ещё ехать до заправки, где бензин есть». */
.rt-target {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 10px;
  padding: 8px 10px;
  border-radius: var(--r-2, 14px);
  border: 1px solid var(--accent-line, rgba(34,197,94,.45));
  background: color-mix(in srgb, var(--accent, #22c55e) 8%, transparent);
}
.rt-target__main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.rt-target .rt-row__logo { width: 42px; height: 42px; border-radius: 11px; }
.rt-target__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rt-target__row { display: flex; align-items: baseline; gap: 7px; min-width: 0; }
.rt-target__km {
  font: 800 25px/1 var(--font);
  letter-spacing: -.02em;
  color: var(--text, #eaf0f3);
  font-variant-numeric: tabular-nums;
}
.rt-target__unit { font: 700 12.5px/1 var(--font); color: var(--muted, #97a3ab); }
.rt-target__name {
  font: 700 14.5px/1.2 var(--font);
  color: var(--text, #eaf0f3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rt-target__meta {
  display: flex; align-items: center; gap: 6px; min-width: 0;
  font: 500 11.5px/1.3 var(--font);
  color: var(--muted, #97a3ab);
}
.rt-target__meta span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rt-target__go {
  flex: none;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--r-pill, 999px);
  border: 0;
  background: var(--accent, #22c55e);
  color: var(--accent-ink, #06210f);
  font: 800 13.5px/1 var(--font);
  cursor: pointer;
}

/* Ряд не влезает в 412 px и прокручивается вбок. Марки идут первыми: это единственный
   фильтр, который трогают в дороге. Затухание у правого края — единственный намёк, что
   за краем есть ещё чипы; без него радиус и «только подтверждённые» просто не найти. */
.rt-chips {
  flex: none;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
}
.rt-chips::-webkit-scrollbar { display: none; }
.rt-fuelchips { flex: none; display: flex; gap: 6px; }
.rt-chip {
  flex: none;
  height: 32px;
  padding: 0 12px;
  border-radius: var(--r-pill, 999px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: transparent;
  color: var(--text, #eaf0f3);
  font: 600 12.5px/1 var(--font);
  cursor: pointer;
}
.rt-chip--fuel { padding: 0 11px; font-weight: 700; }
.rt-chip.is-on {
  border-color: var(--accent-line, rgba(34,197,94,.45));
  background: color-mix(in srgb, var(--accent, #22c55e) 14%, transparent);
  color: var(--accent, #22c55e);
}
/* Галочка, а не только цвет: цвет один не читается при дальтонизме и на солнце. */
.rt-chip--fuel.is-on::before { content: '✓ '; }

.rt-list { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.rt-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 9px 10px;
  border-radius: var(--r-2, 14px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
}
/* Сетка, а не свободный flex: колонки одинаковы во всех строках, поэтому цены и
   статусы выстраиваются друг под другом и сравниваются взглядом. */
.rt-row__main {
  display: grid;
  grid-template-columns: 52px 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
}
.rt-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 56px;
}
/* Плитка бренда в строке коридора. Белая подложка — чтобы цветные логотипы сетей
   читались и в тёмной теме (как в списке «Ближайшие»); размер согласован с высотой строки. */
.rt-row__logo {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  font: 800 15px/1 var(--font);
  overflow: hidden;
}
.rt-row__logo--img { padding: 3px; }
.rt-row__logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
/* Километраж рядом с плиткой — уже, иначе на 360 px строка расползается. */
.rt-row__km { flex: none; width: 58px; font: 700 12px/1.2 var(--font); color: var(--muted, #97a3ab); }
.rt-row__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rt-row__title {
  font: 700 14px/1.2 var(--font);
  color: var(--text, #eaf0f3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rt-row__fuels { font: 600 12px/1.2 var(--font); color: var(--accent, #22c55e); }
.rt-row__meta { font: 500 11.5px/1.25 var(--font); color: var(--muted, #97a3ab); }
.rt-row__price {
  font: 700 12.5px/1 var(--font);
  color: var(--text, #eaf0f3);
  font-variant-numeric: tabular-nums;   /* цифры одной ширины — колонка не пляшет */
  white-space: nowrap;
}
.rt-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--unknown, #9ca3af); }
.rt-dot--ok { background: var(--ok, #22C55E); }
.rt-dot--limit { background: var(--limit, #F2C037); }
.rt-dot--no { background: var(--no, #F0493D); }
.rt-dot--unknown { background: var(--unknown, #9ca3af); }
/* Кнопки — под содержимым, а не колонкой справа: справа они съедали столько ширины,
   что «Роснефть» ужималась до «Рос…». */
.rt-row__actions {
  flex: none;
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}
.rt-row__go,
.rt-row__report {
  flex: none;
  height: 34px;
  padding: 0 13px;
  border-radius: var(--r-pill, 999px);
  font: 700 12.5px/1 var(--font);
  cursor: pointer;
}
.rt-row__go {
  border: 1px solid var(--accent-line, rgba(34,197,94,.45));
  background: color-mix(in srgb, var(--accent, #22c55e) 12%, transparent);
  color: var(--accent, #22c55e);
}
.rt-row__report {
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: transparent;
  color: var(--text, #eaf0f3);
}
.rt-more {
  margin-top: 12px;
  height: 42px;
  border-radius: var(--r-2, 14px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: transparent;
  color: var(--text, #eaf0f3);
  font: 700 13.5px/1 var(--font);
  cursor: pointer;
}

/* ── Лист выбора навигатора ── */
.rt-navchooser { flex: none; }
.rt-navlist { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.rt-navlist__it {
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--r-2, 14px);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  background: transparent;
  color: var(--text, #eaf0f3);
  font: 700 14px/1 var(--font);
  cursor: pointer;
}
.rt-navlist__it.is-on { border-color: var(--accent-line, rgba(34,197,94,.45)); color: var(--accent, #22c55e); }

/* ── Тост фичи (поверх всего, как соседние тосты приложения) ── */
.rt-toast {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 96px);
  transform: translateX(-50%) translateY(12px);
  z-index: 2400;
  max-width: min(88vw, 340px);
  padding: 12px 16px;
  border-radius: var(--r-1, 12px);
  background: var(--panel-solid, #141a20);
  border: 1px solid var(--line-2, rgba(255,255,255,.13));
  color: var(--text, #eaf0f3);
  font: 600 13.5px/1.35 var(--font);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.rt-toast.rt-show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ── ПК: тот же слот, что у соседних FAB (справа от сайдбара), панель — колонкой слева ── */
@media (min-width: 1000px) {
  .rt-fab { left: calc(var(--side-w, 0px) + 18px); bottom: calc(var(--pv-fab-bottom-desktop, 22px) + 104px); }
  .rt-ov { left: var(--side-w, 0px); right: auto; width: min(430px, 44vw); }
  /* Колонка сбоку, а не шторка под пальцем: рабочая высота больше, чем на телефоне. */
  .rt-ov.is-result { --rt-sheet: min(64vh, 560px); }
  .rt-ov.is-result.rt-full { --rt-sheet: min(88vh, 820px); }
}
