/* lift-bot — AI-виджет записи из лендингов ALVA-5 (вынос 27.07), общий для
   laser/face; переменные (--ink и т.п.) берутся из styles.css лендинга */

/* ===== AI booking bot (guided UX) ===== */
.lift-bot {
  display: flex;
  flex-direction: column;
  border-radius: var(--ds-radius-lg);
  background: #fff;
  border: 1px solid rgba(30, 40, 55, 0.08);
  box-shadow:
    var(--elev-2);
  overflow: hidden;
  min-height: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.lift-bot.is-ready {
  border-color: rgba(76, 138, 168, 0.28);
  box-shadow:
    var(--elev-2);
}
.lift-bot__hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(30, 40, 55, 0.06);
  background: linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}
.lift-bot__ava {
  width: 36px;
  height: 36px;
  border-radius: var(--ds-radius-sm);
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #4c8aa8 0%, #2f5f7a 100%);
  box-shadow: var(--elev-1);
  flex-shrink: 0;
}
.lift-bot__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.lift-bot__who b {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}
.lift-bot__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}
.lift-bot__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3bb273;
  box-shadow: 0 0 0 3px rgba(59, 178, 115, 0.18);
  animation: lift-bot-pulse 1.8s ease-out infinite;
}
.lift-bot__badge {
  height: 26px;
  padding: 0 8px;
  border-radius: var(--r-pill, 9999px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #074a5f;
  background: linear-gradient(135deg, #ffe08a 0%, #e8c56a 100%);
  border: 1px solid rgba(255, 240, 200, 0.5);
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}
/* Step indicator removed — dialog takes the space */
.lift-bot__steps {
  display: none !important;
}
.lift-bot__log {
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
  max-height: 220px;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: transparent;
  flex: 1 1 auto;
}
.lift-bot {
  min-height: 0;
}
.lift-bot__msg {
  max-width: 94%;
  animation: lift-bot-in 0.25s ease both;
}
.lift-bot__msg p {
  margin: 0;
  padding: 8px 12px;
  border-radius: var(--ds-radius-md);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink2);
}
.lift-bot__msg p b,
.lift-bot__msg p strong {
  color: var(--ink);
  font-weight: 600;
}
.lift-bot__msg--bot p {
  background: #f4f7fa;
  border: 1px solid rgba(30, 40, 55, 0.05);
  border-bottom-left-radius: var(--ds-radius-xs);
}
.lift-bot__msg--user {
  align-self: flex-end;
}
.lift-bot__msg--user p {
  background: linear-gradient(145deg, #3d6f8c 0%, #2f5a74 100%);
  color: #fff;
  border-bottom-right-radius: var(--ds-radius-xs);
}
.lift-bot__typing p {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  min-width: 52px;
}
.lift-bot__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8aa3b5;
  animation: lift-bot-dot 1.1s ease-in-out infinite;
}
.lift-bot__typing span:nth-child(2) { animation-delay: 0.15s; }
.lift-bot__typing span:nth-child(3) { animation-delay: 0.3s; }
/* Panels (steps) */
.lift-bot__panel {
  padding: 8px 12px 4px;
  animation: lift-bot-in 0.25s ease both;
}
.lift-bot__panel[hidden] {
  display: none !important;
}
.lift-bot__prompt {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.lift-bot__prompt-soft {
  font-weight: 500;
  color: var(--mute);
}
/* Step 1: option grid */
.lift-bot__opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lift-bot__opt {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 1px;
  align-items: center;
  text-align: left;
  padding: 8px 8px 8px;
  border-radius: var(--ds-radius-md);
  background: #f6f8fb;
  border: 1px solid rgba(30, 40, 55, 0.07);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.lift-bot__opt:hover {
  background: #fff;
  border-color: rgba(76, 138, 168, 0.28);
  box-shadow: var(--elev-2);
  transform: translateY(-1px);
}
.lift-bot__opt:disabled {
  opacity: 0.65;
  pointer-events: none;
}
.lift-bot__opt.is-on {
  background: #fff;
  border-color: rgba(76, 138, 168, 0.45);
  box-shadow: 0 0 0 3px rgba(76, 138, 168, 0.12);
}
.lift-bot__opt-ico {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  border-radius: var(--ds-radius-sm);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #2f5a74;
  background: rgba(76, 138, 168, 0.12);
  line-height: 1.5;
}
.lift-bot__opt-t {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.lift-bot__opt-s {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}
/* Step 2: days */
.lift-bot__days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
}
.lift-bot__days {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
.lift-bot__days::-webkit-scrollbar { display: none; }
.lift-bot__day {
    flex: 0 0 64px;
  }
.lift-bot__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px 8px;
  border-radius: var(--ds-radius-sm);
  background: #f6f8fb;
  border: 1px solid rgba(30, 40, 55, 0.07);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.lift-bot__day b {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  text-align: center;
}
.lift-bot__day span {
  font-size: 12px;
  color: var(--mute);
  text-align: center;
  line-height: 1.5;
}
.lift-bot__day:hover {
  background: #fff;
  border-color: rgba(76, 138, 168, 0.3);
}
.lift-bot__day.is-on {
  background: #fff;
  border-color: rgba(76, 138, 168, 0.5);
  box-shadow: 0 0 0 3px rgba(76, 138, 168, 0.12);
}
/* Step 3: time slots */
.lift-bot__slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.lift-bot__slot {
  height: 38px;
  border-radius: var(--ds-radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: #f6f8fb;
  border: 1px solid rgba(30, 40, 55, 0.07);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  line-height: 1.25;
}
.lift-bot__slot:hover {
  background: #fff;
  border-color: rgba(76, 138, 168, 0.3);
}
.lift-bot__slot.is-on {
  color: #fff;
  background: linear-gradient(145deg, #3d6f8c 0%, #2f5a74 100%);
  border-color: transparent;
}
/* Step 4: confirm */
.lift-bot__confirm {
  padding: 12px 12px;
  border-radius: var(--ds-radius-md);
  background: linear-gradient(160deg, #f3f8fb 0%, #eef5f8 100%);
  border: 1px solid rgba(76, 138, 168, 0.16);
  margin-bottom: 8px;
}
.lift-bot__confirm-k {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d6f8c;
  line-height: 1.2;
}
.lift-bot__confirm-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lift-bot__confirm-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
}
.lift-bot__confirm-rows li span {
  color: var(--mute);
}
.lift-bot__confirm-rows li b {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}
.lift-bot__confirm-price s {
  font-weight: 500;
  color: var(--mute);
  margin-left: 4px;
}
/* Step 5: done */
.lift-bot__done {
  text-align: center;
  padding: 8px 4px 2px;
}
.lift-bot__done-ico {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #2a6b68;
  background: rgba(58, 154, 146, 0.14);
}
.lift-bot__done-t {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.lift-bot__done-d {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink2);
}
.lift-bot__back {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 4px;
  border: 0;
  background: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--mute);
  text-align: center;
  cursor: pointer;
  line-height: 1.5;
}
.lift-bot__back:hover {
  color: #3d6f8c;
}
.lift-bot__foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 12px 12px;
  border-top: 1px solid rgba(30, 40, 55, 0.06);
  background: #fff;
  margin-top: 8px;
}
.lift-bot__foot[hidden] {
  display: none !important;
}
.lift-bot__sum {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}
.lift-bot__sum b {
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.lift-bot__sum s {
  font-size: 12px;
  font-weight: 500;
  color: var(--mute);
  margin-left: 4px;
  line-height: 1.5;
}
.lift-bot__cta {
  width: 100%;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 600;
}
.lift-bot__cta--primary {
  margin-top: 0;
}
.lift-bot__cta.is-pulse {
  animation: lift-bot-cta 1.6s ease-in-out 2;
  box-shadow: var(--elev-2);
}
.lift-bot__hint {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.lift-bot__status i,
  .lift-bot__typing span,
  .lift-bot__cta.is-pulse,
  .lift-bot__msg {
    animation: none;
  }
.lift-bot__opt:hover {
    transform: none;
  }
@keyframes lift-bot-dot {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}
@keyframes lift-bot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 178, 115, 0.35); }
  70% { box-shadow: 0 0 0 6px rgba(59, 178, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 178, 115, 0); }
}
@keyframes lift-bot-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
@keyframes lift-bot-cta {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

/* ── Оффер воронки v2 (docs/funnel-alva-v2.md, ПРЕСЕЙЛ P1/P2) ──
   Плашка выпускается ТОЛЬКО с посчитанной выгодой: заголовок — что выгоднее,
   вторая строка — арифметика. Вариант .is-flat («ваш набор уже выгоднее
   комплекта») — без кнопки и без акцента: это подтверждение, а не оффер. */
.lift-bot__offer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  text-align: left;
  border-radius: var(--ds-radius-md);
  border: 1.5px solid rgba(76, 138, 168, 0.38);
  background: linear-gradient(100deg, rgba(76, 138, 168, 0.09), rgba(58, 154, 146, 0.07));
  animation: lift-bot-in 0.25s ease both;
}
.lift-bot__offer--p2 {
  cursor: pointer;
  font-family: inherit;
}
.lift-bot__offer.is-flat {
  border-color: rgba(30, 40, 55, 0.1);
  background: #f6f8fb;
}
.lift-bot__offer-txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1 1 190px;
  min-width: 0;
}
.lift-bot__offer-txt b {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.lift-bot__offer-txt span {
  font-size: 12px;
  line-height: 1.45;
  color: var(--mute);
}
/* Кнопка оффера — ВТОРИЧНАЯ, контурная (06.08, §12.5): на шаге ровно один
   акцентный элемент, и это движение вперёд («Дальше», «Перейти к записи»).
   Залитая кнопка оффера во всю ширину спорила с ним за главную роль. */
.lift-bot__offer-btn {
  flex-shrink: 0;
  border: 1.5px solid rgba(76, 138, 168, 0.5);
  border-radius: var(--ds-radius-pill);
  padding: 7px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #3d6f8c;
  background: #fff;
  cursor: pointer;
  text-align: center;
}
.lift-bot__offer-btn:hover {
  background: rgba(76, 138, 168, 0.1);
  border-color: rgba(76, 138, 168, 0.7);
}
/* итог экономии в карточке плана */
.lift-bot__confirm-save {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #3d6f8c;
}
/* CTA шага зон в неактивном состоянии — набор ещё пуст */
.lift-bot__cta:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* состав набора на шаге зон: что уже выбрано (в т.ч. принятый комплект) */
.lift-bot__picked {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.lift-bot__picked-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(76, 138, 168, 0.35);
  border-radius: var(--ds-radius-pill);
  padding: 5px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #3d6f8c;
  background: rgba(76, 138, 168, 0.08);
  cursor: pointer;
}
.lift-bot__picked-chip span {
  font-size: 13px;
  opacity: 0.6;
}
.lift-bot__picked-chip:hover {
  background: rgba(76, 138, 168, 0.15);
}

/* ── Кнопки воронки: раскрытие каталога и тап-цели (06.08) ──
   Разбор docs/funnel-alva-v2.md §12. Две правки одной природы:

   1) «Все зоны · N» жило на .lift-bot__back — том же классе, что и «назад».
   Серая строка 26px прятала 22 позиции прайса: кто искал спину или бёдра,
   не находил своей зоны в первых шести чипах и читал это как «у них такого
   нет». Раскрытие каталога — это выбор, а не сноска, поэтому у него свой
   контурный вид.

   2) В этом файле не было НИ ОДНОГО @media (pointer: coarse), хотя по сайту
   кампания 44px уже прошла (studio.css, landing-polish.css). Замер на 375px:
   слот 38, кнопка оффера 32, чип набора 29, возвраты 26. Правило кладём
   именно сюда — там же, где объявлены классы (ловушка №7 design-system.md). */
.lift-bot__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(76, 138, 168, 0.35);
  border-radius: var(--ds-radius-pill);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #3d6f8c;
  cursor: pointer;
  line-height: 1.3;
}
.lift-bot__more:hover {
  background: rgba(76, 138, 168, 0.08);
  border-color: rgba(76, 138, 168, 0.5);
}
/* подпись под главной кнопкой: что произойдёт после нажатия */
.lift-bot__cta-note {
  margin: 6px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  color: var(--mute);
}
/* кнопка оффера — под текстом и во всю ширину: так в неё помещается
   действие с ценой («Взять набор за €40»), а не безадресное «Взять» */
.lift-bot__offer {
  flex-wrap: wrap;
}
.lift-bot__offer-btn {
  width: 100%;
  margin-top: 8px;
  padding: 10px 14px;
}

@media (pointer: coarse) {
  .lift-bot__slot,
  .lift-bot__back,
  .lift-bot__more,
  .lift-bot__picked-chip,
  .lift-bot__offer-btn {
    min-height: 44px;
  }
  /* тексту внутри выросших кнопок нужна центровка по вертикали */
  .lift-bot__back,
  .lift-bot__picked-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .lift-bot__back {
    display: flex;
  }
}

/* ── Доводка кнопок воронки (06.08, §12.4) ──
   Чип ближайшего окна, отказ от оффера и ряд тихих действий на шаге плана. */
.lift-bot__nearest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
  padding: 10px 14px;
  border: 1.5px solid rgba(59, 178, 115, 0.45);
  border-radius: var(--ds-radius-pill);
  background: rgba(59, 178, 115, 0.08);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #24734d;
  cursor: pointer;
  line-height: 1.3;
}
.lift-bot__nearest:hover {
  background: rgba(59, 178, 115, 0.16);
}
.lift-bot__nearest-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: var(--ds-radius-pill);
  background: #3bb273;
  animation: lift-bot-pulse 2s infinite;
}
/* строка кнопок оффера: принять — контурная, отказ — тихий */
.lift-bot__offer-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  margin-top: 0;
}
.lift-bot__offer-row .lift-bot__offer-btn {
  width: auto;
  margin-top: 0;
  white-space: nowrap;
}
.lift-bot__offer-no {
  flex-shrink: 0;
  border: 0;
  background: none;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 17px;
  line-height: 1;
  color: var(--mute);
  cursor: pointer;
}
.lift-bot__offer-no:hover {
  color: var(--ink);
}
/* ряд тихих действий: на узком экране переносится, а не сжимается в кашу */
.lift-bot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 12px;
  margin-top: 8px;
}
.lift-bot__row .lift-bot__back {
  width: auto;
  margin-top: 0;
  flex: 1 1 auto;
}

@media (pointer: coarse) {
  .lift-bot__nearest,
  .lift-bot__offer-no {
    min-height: 44px;
  }
}

/* филиал без онлайн-записи: честный телефон вместо пустого расписания */
.lift-bot__offline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.lift-bot__offline .lift-bot__hint {
  margin: 0;
}

/* ── Воронка v2, доводка 06.08: наборы, вопрос допуска, заявка, памятка ── */
.lift-bot__sets {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(30, 40, 55, 0.12);
}
.lift-bot__sets-k {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: #3d6f8c;
  line-height: 1.35;
}
/* вопрос допуска — строка, а не отдельный шаг: не блокирует воронку */
.lift-bot__ask {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: var(--ds-radius-sm);
  background: #f6f8fb;
  font-size: 12px;
  color: var(--ink2);
}
.lift-bot__ask span { flex: 1 1 auto; min-width: 150px; }
.lift-bot__ask button {
  border: 1px solid rgba(76, 138, 168, 0.4);
  background: #fff;
  color: #3d6f8c;
  border-radius: var(--ds-radius-pill);
  padding: 6px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.lift-bot__ask button:hover { background: rgba(76, 138, 168, 0.1); }
/* заявка «перезвоните мне» */
.lift-bot__lead {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.lift-bot__lead input {
  flex: 1 1 140px;
  min-width: 0;
  height: 44px;
  border: 1px solid var(--line, rgba(30, 40, 55, 0.14));
  border-radius: var(--ds-radius-pill);
  padding: 0 14px;
  font-family: inherit;
  font-size: 16px; /* design-ok: iOS иначе зумит форму при фокусе */
  color: var(--ink);
  background: #fff;
}
.lift-bot__lead .lift-bot__offer-btn { width: auto; margin-top: 0; flex: 0 0 auto; }
.lift-bot__lead .lift-bot__cta-note { flex: 1 0 100%; margin-top: 0; text-align: left; }
/* памятка после записи — снижает отмены и переносы */
.lift-bot__memo {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: var(--ds-radius-md);
  background: #f6f8fb;
  border: 1px solid rgba(30, 40, 55, 0.07);
}
.lift-bot__memo-k {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d6f8c;
}
.lift-bot__memo ul { margin: 0; padding-left: 16px; }
.lift-bot__memo li { font-size: 13px; line-height: 1.55; color: var(--ink2); }

@media (pointer: coarse) {
  .lift-bot__ask button { min-height: 44px; }
}

/* 08.08: на телефоне плавающая кнопка ассистента (52px, fixed right-5)
   накрывала правый край подвала карточки — итоговая цена уходила под неё.
   Отодвигаем подвал ровно на ширину кнопки с зазором. */
@media (max-width: 640px) {
  .lift-bot__foot { padding-right: 44px; }
}

/* дата дня не должна переноситься: «пн 10 авг» ломался на две строки и
   ряд дней становился рваным (08.08) */
.lift-bot__day b {
  white-space: nowrap;
  font-size: 13px;
}
@media (max-width: 380px) {
  .lift-bot__day b { font-size: 12px; }
}

/* ── Компактные строки выбора (08.08, правка владельца «слишком большие
   плашки, кнопки пропадают») ──
   Карточка зоны занимала два-три ряда текста (название переносилось, цена
   уходила на свою строку) — в карточку влезало 4 варианта, а кнопка «Дальше»
   уезжала за нижний край. Строка: название слева, цена справа, одна линия. */
.lift-bot__opts--rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lift-bot__opts--rows .lift-bot__opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  column-gap: 9px;
  row-gap: 0;
  padding: 9px 12px;
  border-radius: var(--ds-radius-sm);
  min-height: 44px;
}
.lift-bot__opts--rows .lift-bot__opt-ico {
  grid-row: 1;
  width: 20px;
  height: 20px;
  font-size: 12px;
}
.lift-bot__opts--rows .lift-bot__opt-t {
  grid-row: 1;
  font-size: 13px;
  line-height: 1.25;
  text-align: left;
}
.lift-bot__opts--rows .lift-bot__opt-s {
  grid-row: 1;
  grid-column: 3;
  font-size: 12px;
  white-space: nowrap;
  text-align: right;
  color: var(--ink2);
}

/* На лендингах бот стоит в герое без ограничения высоты, и реплика на шаге
   выбора («Поняла: цель — гладкость…») занимала пять строк, выталкивая
   кнопку «Дальше» под липкую шапку сайта. На шагах выбора и дня реплика
   дублирует заголовок панели — прячем (08.08). */
.alvh-landing-bot[data-step="2"] .lift-bot__log,
.alvh-landing-bot[data-step="3"] .lift-bot__log,
.alva-hero .alvh-landing-bot[data-step="2"] .lift-bot__log,
.alva-hero .alvh-landing-bot[data-step="3"] .lift-bot__log { display: none; }

/* контейнер на лендинге — .alvh-landing-bot, а data-step висит на .alvh-ai
   внутри него: цепляем через потомка */
.alvh-landing-bot .alvh-ai[data-step="2"] .lift-bot__log,
.alvh-landing-bot .alvh-ai[data-step="3"] .lift-bot__log { display: none; }

/* ── Стартер + шторка подбора (вариант A, 08.08) ─────────────────────────
   В герое — компактная карточка ALVA; подбор открывается шторкой на весь
   экран. Ассистент не пропадает: шапка ALVA в обоих местах. */
.alv-starter .alv-starter__body { padding: 14px 16px 16px; }
.alv-starter__q {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.alv-starter__goals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.alv-starter__goal {
  border: 1px solid rgba(13, 27, 38, 0.1);
  background: #f8fafb;
  border-radius: var(--ds-radius-pill);
  padding: 10px 13px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  min-height: 40px;
}
.alv-starter__goal:hover {
  border-color: rgba(46, 107, 130, 0.45);
  color: var(--c-accent, #2e6b82);
  background: rgba(46, 107, 130, 0.06);
}
.alv-starter .lift-bot__cta { width: 100%; }

/* Кнопки CTA в шторке и стартере: фирменный «металлик» жил только в скоупе
   .alva-hero (hero.css), и в порталах кнопка разваливалась в голый текст.
   Дублируем скин здесь для контекстов вне героя (08.08). */
.alv-quiz-inline .lift-bot__cta,
.alv-starter .lift-bot__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--ds-radius-pill);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(150, 225, 235, 0.38) 0%, transparent 50%),
    linear-gradient(155deg, #074a5f 0%, #0c6d89 48%, #04364a 100%);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 22px -12px rgba(7, 74, 95, 0.65);
}
.alv-quiz-inline .lift-bot__cta:hover,
.alv-starter .lift-bot__cta:hover { filter: saturate(1.1) brightness(1.05); }
/* раскрытие на месте (не отдельное окно — правка владельца 08.08) */
.alv-quiz-inline__collapse {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  padding: 0 4px 6px;
  text-align: right;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  cursor: pointer;
  min-height: 32px;
}
.alv-quiz-inline__collapse:hover { color: var(--ink); }

/* подзаголовок группы внутри списка вариантов (наборы среди зон, 09.08) */
.lift-bot__opts-sub {
  margin: 8px 2px 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-accent, #2e6b82);
  line-height: 1.35;
}
/* базовый вид полосы кнопки вне героя (мобильный поток) */
.lift-bot__ctabar { margin-top: 10px; }
.lift-bot__ctabar > .lift-bot__cta { width: 100%; }
