/* ═══════════════════════════════════════════════════════
   workout.css — Экран активной тренировки v2.3
   Редактирование подхода in-place с блюр-маской
   ═══════════════════════════════════════════════════════ */

.workout-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  overflow: hidden;
  height: 100dvh;
  max-height: 100dvh;
}
.workout-overlay::-webkit-scrollbar { display: none; }

/* ── Фоновые градиенты ───────────────────────────────────── */
.workout-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.workout-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
}
.workout-bg-glow--1 {
  width: 592.77px;
  height: 732.3px;
  left: -151px;
  top: -544px;
  background: rgba(69, 69, 69, 0.38);
  transform: matrix(-0.95, -0.31, 0.21, -0.98, 0, 0);
}
.workout-bg-glow--2 {
  display: none;
}
.workout-bg-glow--3 {
  display: none;
}

/* ═══════════════════════════════════════════════
   СЛАЙД 1: ПРИВЕТСТВИЕ + РЕКОМЕНДАЦИИ
   ═══════════════════════════════════════════════ */
.wo-intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--screen-px, 16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wo-intro--hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.wo-intro-name {
  font-size: var(--fs-24-semibold, 24px);
  font-weight: var(--fw-24-semibold, 600);
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-1, 6px);
  text-align: center;
}
.wo-intro-sub {
  font-size: var(--fs-14-regular, 14px);
  font-weight: var(--fw-14-regular, 400);
  color: var(--text3);
  margin-bottom: 48px;
  text-align: center;
}
.wo-intro-line {
  width: 40px;
  height: 2px;
  background: rgba(16, 185, 129, 0.4);
  border-radius: 1px;
  margin: 0 auto 40px;
}

.wo-recs {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3, 14px);
}
.wo-rec {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3, 12px);
  padding: var(--sp-3, 14px) 0;
}
.wo-rec-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  flex-shrink: 0;
}
.wo-rec-icon--tip    { background: rgba(16, 185, 129, 0.12); color: var(--training); }
.wo-rec-icon--sleep  { background: rgba(125, 68, 238, 0.12); color: var(--sleep); }
.wo-rec-icon--injury { background: rgba(249, 115, 22, 0.12); color: var(--nutrition); }
.wo-rec-icon--asym   { background: rgba(99, 102, 241, 0.12); color: var(--brand); }

.wo-rec-body { flex: 1; min-width: 0; }
.wo-rec-title {
  font-size: var(--fs-14-regular, 14px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2px;
}
.wo-rec-text {
  font-size: var(--fs-12-regular, 12px);
  font-weight: var(--fw-12-regular, 400);
  color: var(--text3);
  line-height: 1.4;
}

.wo-intro-btn {
  position: absolute;
  bottom: 50px;
  left: var(--screen-px, 16px);
  right: var(--screen-px, 16px);
  padding: var(--sp-4, 16px);
  border-radius: var(--r-card, 20px);
  border: none;
  background: var(--text);
  color: #000;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
}
.wo-intro-btn:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.88);
}

/* ═══════════════════════════════════════════════
   СЛАЙД 2: УПРАЖНЕНИЕ
   ═══════════════════════════════════════════════ */
.wo-screen {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}
.wo-screen--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: env(safe-area-inset-top, 0px);
}

/* ── Шапка ── */
.wo-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 4px;  
  flex-shrink: 0;
}

/* Доты */
.wo-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.wo-dot--warmup { background: var(--nutrition); }
.wo-dot--cooldown { background: var(--brand); }
.wo-dot--done    { background: var(--training); }
.wo-dot--current { transform: scale(1.4); background: var(--training); }

.wo-dot--warmup.wo-dot--current {
  background: var(--nutrition);
  transform: scale(1.4);
}
.wo-dot--cooldown.wo-dot--current {
  background: var(--brand);
  transform: scale(1.4);
}

.wo-action {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.wo-action:active {
  background: rgba(16, 185, 129, 0.12);
  color: var(--training);
}

/* ── Основная область ── */
.wo-body {
  flex: 1 1 0;
  min-height: 0;
  padding: 0 var(--card-px, 16px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.wo-body::-webkit-scrollbar { display: none; }

.wo-ex-num {
  font-size: var(--fs-12-regular, 12px);
  font-weight: var(--fw-12-light, 300);
  color: var(--text4);
  margin-bottom: 8px;
  text-align: center;
  flex-shrink: 0;
}
.wo-ex-name {
  font-size: 28px;
  font-weight: var(--fw-24-semibold, 600);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
  text-align: center;
  flex-shrink: 0;
}
.wo-ex-chip {
  display: inline-block;
  padding: var(--chip-py, 3px) var(--chip-px, 8px);
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--r-pill, 99px);
  font-size: var(--fs-10-regular, 10px);
  font-weight: var(--fw-10-regular, 400);
  color: var(--training);
  margin-bottom: 20px;
}

.wo-schema {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2, 8px);
  margin-bottom: 32px;
  flex-shrink: 0;
}
.wo-schema-item {
  font-size: var(--fs-12-regular, 12px);
  font-weight: var(--fw-12-regular, 400);
  color: var(--text3);
}
.wo-schema-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════
   СПЕЙСЕР — расталкивает верх и низ
   ═══════════════════════════════════════════════ */
.wo-spacer {
  flex: 1 1 0;
  min-height: 12px;
}

/* ═══════════════════════════════════════════════
   КНОПКИ +/− ПОДХОДОВ
   ═══════════════════════════════════════════════ */
.wo-set-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.wo-add-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: none;
  color: var(--text3);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  transition: all 0.2s;
  flex-shrink: 0;
}
.wo-add-btn:active {
  background: rgba(255, 255, 255, 0.06);
}
.wo-add-btn--remove {
  border-color: rgba(239, 68, 68, 0.2);
  color: rgba(239, 68, 68, 0.4);
}

/* ═══════════════════════════════════════════════
   СКРОЛЛЫ ВЕСА И ПОВТОРЕНИЙ
   ═══════════════════════════════════════════════ */
.wo-inputs-area {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-bottom: 0;
  margin-top: 8px;
}
.wo-scroll-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}
.wo-scroll-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.wo-scroll-container {
  position: relative;
  width: 100%;
  height: 160px;
  overflow-x: hidden;
  overflow-y: hidden;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}

.wo-scroll-highlight {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}
.wo-scroll-list {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 80px 0;
  touch-action: pan-y;
}
.wo-scroll-list::-webkit-scrollbar { display: none; }

.wo-scroll-item {
  height: 48px;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
  transition: opacity 0.18s, transform 0.18s, color 0.18s;
  cursor: pointer;
  user-select: none;
}
.wo-scroll-item--active {
  color: var(--text);
  font-weight: 700;
  transform: scale(1.1);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   БАР ВЫПОЛНЕННЫХ ПОДХОДОВ
   ═══════════════════════════════════════════════ */
.wo-weights-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.wo-w {
  font-weight: 600;
  color: var(--text3);
  min-width: 54px;
  text-align: center;
  transition: all 0.2s;
}
.wo-w--done {
  font-size: 28px;
  font-weight: 700;
  color: var(--training);
  cursor: pointer;
}
.wo-w--done:active {
  transform: scale(1.15);
  opacity: 0.7;
}
.wo-w--current {
  font-size: 38px;
  color: var(--text);
  font-weight: 700;
}
.wo-w--next {
  font-size: 22px;
  opacity: 0.35;
}

.wo-reps-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.wo-rep {
  font-size: 14px;
  font-weight: 500;
  color: var(--text4);
  min-width: 54px;
  text-align: center;
  cursor: inherit;
}
.wo-rep--current {
  color: var(--training);
  font-weight: 700;
  font-size: 16px;
}

/* ═══════════════════════════════════════════════
   КНОПКИ
   ═══════════════════════════════════════════════ */
.wo-footer {
  padding: var(--sp-2, 8px) var(--card-px, 16px) calc(env(safe-area-inset-bottom) + 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2, 8px);
  flex-shrink: 0;
}
.wo-btn-primary {
  width: 100%;
  padding: var(--sp-4, 16px);
  background: #fff;
  border: none;
  border-radius: var(--r-card, 20px);
  font-family: var(--font);
  font-size: var(--fs-14-regular, 14px);
  font-weight: 600;
  color: #000;
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.2px;
  flex: 1;
}
.wo-btn-primary:active {
  transform: scale(0.98);
  opacity: 0.9;
}
.wo-counter {
  font-size: var(--fs-12-regular, 12px);
  color: var(--text4);
  font-weight: 500;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   НАВИГАЦИЯ МЕЖДУ УПРАЖНЕНИЯМИ
   ═══════════════════════════════════════════════ */
.wo-nav-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.wo-nav-arrow {
  width: 44px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  flex-shrink: 0;
  transition: all 0.2s;
}
.wo-nav-arrow:active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: scale(0.95);
}
.wo-nav-arrow--disabled {
  opacity: 0.2;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   ТАЙМЕР ОТДЫХА
   ═══════════════════════════════════════════════ */
.wo-rest {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(env(safe-area-inset-top) + 40px);
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wo-rest--visible { opacity: 1; pointer-events: all; }
.wo-rest::-webkit-scrollbar { display: none; }

.wo-rest-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Кольцо */
.wo-rest-ring {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wo-rest-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}
.wo-rest-ring circle {
  fill: none;
  stroke-width: 4px;
  stroke-linecap: round;
}
.wo-rest-time {
  font-size: 42px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.wo-rest-time small {
  font-size: 14px;
  color: var(--text3);
  margin-left: 2px;
  font-weight: 400;
}

/* RPE */
.wo-rpe {
  width: 100%;
  max-width: 280px;
  padding: 0 16px;
}
.wo-rpe-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wo-rpe-label {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wo-rpe-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.wo-rpe-bars { display: flex; gap: 5px; }
.wo-rpe-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  border: none;
  background: var(--track);
  cursor: pointer;
  transition: background 0.15s;
}
.wo-rpe-bar--active { background: var(--training); }

/* Кнопки таймера */
.wo-rest-btns {
  display: flex;
  gap: var(--sp-2, 10px);
  padding: 0 16px 40px;
}
.wo-rest-btn {
  padding: var(--sp-3, 12px) 22px;
  border-radius: var(--r-pill, 99px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--text2);
  font-size: var(--fs-14-regular, 14px);
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
}
.wo-rest-btn--skip {
  background: var(--training-btn);
  border: none;
  color: var(--text);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   ШТОРКИ
   ═══════════════════════════════════════════════ */
.wo-sheet {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wo-sheet--visible { opacity: 1; pointer-events: all; }

.wo-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(env(safe-area-inset-top) + 40px) var(--card-px, 20px) var(--sp-4, 16px);
  flex-shrink: 0;
}
.wo-sheet-title {
  font-size: var(--fs-24-semibold, 24px);
  font-weight: var(--fw-24-semibold, 600);
  color: var(--text);
}
.wo-sheet-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text3);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}

.wo-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 var(--card-px, 20px) 40px;
}
.wo-sheet-body::-webkit-scrollbar { display: none; }

/* Элементы в шторке */
.wo-sheet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--sp-3, 10px) 0;
  font-size: var(--fs-14-regular, 14px);
  color: var(--text2);
}
.wo-sheet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wo-sheet-time {
  margin-left: auto;
  font-size: var(--fs-12-regular, 12px);
  color: var(--text4);
}

/* Карточка замены */
.wo-replace-item {
  padding: var(--sp-4, 14px);
  border-radius: var(--r-card, 20px);
  background: var(--card-bg);
  margin-bottom: var(--sp-2, 8px);
  cursor: pointer;
}
.wo-replace-item-name {
  font-size: var(--fs-14-regular, 14px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--sp-1, 4px);
}
.wo-replace-item-meta {
  font-size: var(--fs-10-regular, 10px);
  color: var(--text3);
}

/* Стили для шторки информации */
.wo-section-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.wo-tech-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}
.wo-tech-item:last-child {
  border-bottom: none;
}

.wo-tech-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--training);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wo-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.wo-tip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--training);
  flex-shrink: 0;
  margin-top: 6px;
}

.wo-tip-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.wo-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.08);
  margin-bottom: 10px;
}

.wo-warn-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  color: var(--nutrition);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wo-warn-text {
  font-size: 13px;
  color: var(--nutrition);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   РЕЖИМ РЕДАКТИРОВАНИЯ ПОДХОДА (in-place)
   ═══════════════════════════════════════════════ */

/* Блюрим конкретные элементы, а не весь body */
.wo-edit-mode .wo-ex-num,
.wo-edit-mode .wo-ex-name,
.wo-edit-mode .wo-ex-chip,
.wo-edit-mode .wo-schema,
.wo-edit-mode .wo-header-row {
  filter: blur(6px);
  opacity: 0.4;
  pointer-events: none;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

/* Блюрим все колонки подходов КРОМЕ активной */
.wo-edit-mode .wo-w:not(.wo-edit-col--active),
.wo-edit-mode .wo-rep:not(.wo-edit-col--active) {
  filter: blur(6px);
  opacity: 0.4;
  pointer-events: none;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

/* Блюрим кнопки ± подходов */
.wo-edit-mode .wo-set-btns {
  filter: blur(6px);
  opacity: 0.4;
  pointer-events: none;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

/* Активная колонка — чёткая и увеличенная */
.wo-edit-col--active {
  filter: none !important;
  opacity: 1 !important;
  pointer-events: all !important;
  transform: scale(1.1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
  position: relative;
}

/* Футер — всегда чёткий */
.wo-footer {
  position: relative;
  z-index: 30;
}

/* Кнопки в футере */
.wo-edit-actions {
  display: none;
  gap: 10px;
  width: 100%;
}
.wo-edit-mode .wo-nav-row {
  display: none;
}
.wo-edit-mode .wo-edit-actions {
  display: flex;
}

.wo-btn-save {
  flex: 1;
  padding: var(--sp-4, 16px);
  background: #047857;
  border: none;
  border-radius: var(--r-card, 20px);
  font-family: var(--font);
  font-size: var(--fs-14-regular, 14px);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.2px;
  transition: all 0.2s;
}
.wo-btn-save:active {
  transform: scale(0.98);
  opacity: 0.85;
}

.wo-btn-cancel {
  flex: 1;
  padding: var(--sp-4, 16px);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--r-card, 20px);
  font-family: var(--font);
  font-size: var(--fs-14-regular, 14px);
  font-weight: 600;
  color: #EF4444;
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.2px;
  transition: all 0.2s;
}
.wo-btn-cancel:active {
  transform: scale(0.98);
  background: rgba(239, 68, 68, 0.2);
}

/* ═══════════════════════════════════════════════
   ЭКРАНЫ РАЗМИНКИ И ЗАМИНКИ
   ═══════════════════════════════════════════════ */

.wo-warm-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wo-warm-body {
  flex: 1;
  padding: 0 var(--card-px, 16px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wo-warm-body::-webkit-scrollbar { display: none; }

/* Заголовок */
.wo-warm-header {
  text-align: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.wo-warm-label {
  font-size: var(--fs-12-regular, 12px);
  font-weight: var(--fw-12-light, 300);
  color: var(--text4);
  margin-bottom: 4px;
}
.wo-warm-title {
  font-size: 28px;
  font-weight: var(--fw-24-semibold, 600);
  color: var(--text);
  margin-bottom: 4px;
}
.wo-warm-chip {
  display: inline-block;
  padding: var(--chip-py, 3px) var(--chip-px, 8px);
  background: rgba(249, 115, 22, 0.12);
  border-radius: var(--r-pill, 99px);
  font-size: var(--fs-10-regular, 10px);
  color: #F97316;
  margin-bottom: 16px;
}

/* Карточка-совет */
.wo-warm-tip-card {
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
.wo-warm-tip-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.wo-warm-tip-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.wo-warm-tip-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

/* Заголовок секции */
.wo-warm-section-title {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* Список */
.wo-warm-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.wo-warm-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wo-warm-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wo-warm-info {
  flex: 1;
  min-width: 0;
}

.wo-warm-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.wo-warm-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

.wo-warm-time {
  font-size: 11px;
  font-weight: 500;
  color: #F97316;
  flex-shrink: 0;
}

/* Итог заминки */
.wo-cool-summary {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 14px;
  margin-top: 8px;
  flex-shrink: 0;
}

.wo-cool-summary-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.wo-cool-summary-item {
  text-align: center;
}

.wo-cool-summary-val {
  font-size: 22px;
  font-weight: 700;
  color: #10B981;
}

.wo-cool-summary-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* Точки в состоянии pending */
.wo-dot--pending {
  background: rgba(255, 255, 255, 0.12);
}

@keyframes woPopIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}