/* /assets/css/checkout.css
 * Обновление стилей checkout (без изменения логики)
 * Цели:
 *  - сделать блоки шагов более выразительными и единообразными
 *  - улучшить читабельность полей на “панелях”
 *  - шаг 4 (оплата) сделать дружелюбнее (иконки, фон выбора, структура)
 *  - подсветка выбора работает и БЕЗ :has()
 */

/* ========================================================================== */
/* 1) Variables */
/* ========================================================================== */
:root{
  --checkout-bg: transparent;
  --checkout-card: #ffffff;

  --checkout-bd: rgba(0,0,0,.10);
  --checkout-bd2: rgba(0,0,0,.16);

  --checkout-tx: #111;
  --checkout-muted: rgba(0,0,0,.62);
  --checkout-muted2: rgba(0,0,0,.52);

  --checkout-shadow: 0 10px 30px rgba(0,0,0,.06);
  --checkout-radius: 14px;

  --accent: #ff6a00;  /* CTA ("Далее") + ссылки */
  --green: #47645c;   /* прогресс/успех/выбор */

  --ok: #16a34a;
  --warn: #f59e0b;
  --err: #dc2626;
  --info: #2563eb;

  --back-bg: rgba(0,0,0,.04);
  --back-bd: rgba(0,0,0,.12);
  --back-tx: rgba(0,0,0,.82);

  /* focus (спокойный) */
  --focus-bd: rgba(71,100,92,.55);
  --focus-ring: rgba(71,100,92,.12);

  --stickyTop: 78px;

  /* Панели (сделал чуть “чище”, чем было) */
  --panel-bg: rgba(17, 24, 22, .04);
  --panel-bd: rgba(17, 24, 22, .12);
  --panel-inset: 0 1px 0 rgba(255,255,255,.75) inset;

  /* Контраст полей на панелях */
  --field-bd-strong: rgba(0,0,0,.18);
  --field-bd-strong-focus: rgba(71,100,92,.62);
  --field-ring-strong: rgba(71,100,92,.14);

  /* Мягкий фон выбора (доставка/оплата) */
  --pick-bg: rgba(71,100,92,.06);
  --pick-ring: rgba(71,100,92,.10);
  --pick-bd: rgba(71,100,92,.55);
}

/* ========================================================================== */
/* 2) Page shell */
/* ========================================================================== */
.checkout-page{
  background: var(--checkout-bg);
  color: var(--checkout-tx);
  padding: 18px 0 32px;
}

.checkout-shell{
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 14px;
}

.checkout-top{ margin-bottom: 14px; }

.checkout-h1{
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.checkout-note{
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--checkout-bd);
  border-radius: 12px;
  background: rgba(0,0,0,.02);
  color: var(--checkout-muted);
}
.checkout-note a{
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
}
.checkout-link-accent{ color: var(--accent) !important; }

/* ========================================================================== */
/* 3) Summary */
/* ========================================================================== */
.checkout-summary{
  border: 1px solid var(--checkout-bd);
  border-radius: var(--checkout-radius);
  background: var(--checkout-card);
  box-shadow: var(--checkout-shadow);
  overflow: hidden;
}
.checkout-summary__row{
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.checkout-summary__row:first-child{ border-top: 0; }
.checkout-summary__row--grand{ background: rgba(0,0,0,.02); }

.checkout-summary__label{
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--checkout-muted);
  min-width: 0;
}
.checkout-summary__value{
  font-weight: 900;
  white-space: nowrap;
}

.checkout-edit{
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  white-space: nowrap;
}
.checkout-edit:hover{ filter: brightness(.95); }

/* ========================================================================== */
/* 4) Form layout */
/* ========================================================================== */
.checkout-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* ========================================================================== */
/* 5) Steps nav */
/* ========================================================================== */
.steps-nav{
  position: sticky;
  top: var(--stickyTop);
  z-index: 30;
  border: 1px solid var(--checkout-bd);
  border-radius: var(--checkout-radius);
  background: var(--checkout-card);
  box-shadow: var(--checkout-shadow);
  overflow: hidden;
}

.steps-nav__head{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.steps-nav__title{
  font-weight: 900;
  letter-spacing: -0.01em;
}

.steps-nav__meta{
  color: var(--checkout-muted);
  font-size: 13px;
  font-weight: 700;
}

.steps-nav__bar{
  height: 4px;
  background: rgba(0,0,0,.06);
}
.steps-nav__barFill{
  height: 4px;
  width: 0%;
  background: rgba(71,100,92,.85);
  transition: width .25s ease;
}

.steps-nav__list{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stepBtn{
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(0,0,0,.06);
  background: transparent;
  padding: 10px 10px;
  cursor: pointer;

  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;

  min-width: 0;
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.stepBtn:last-child{ border-right: 0; }

.stepBtn .n{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.68);
  flex: 0 0 auto;
  font-weight: 900;
}

.stepBtn .t{
  font-size: 13px;
  color: var(--checkout-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

/* active = зелёный */
.stepBtn.is-active{ background: rgba(71,100,92,.08); }
.stepBtn.is-active .n{ background: var(--green); color: #fff; }
.stepBtn.is-active .t{ color: var(--checkout-tx); font-weight: 900; }

/* done */
.stepBtn.is-done .n{
  background: rgba(71,100,92,.18);
  color: rgba(0,0,0,.82);
}

/* locked */
.stepBtn.is-locked{ opacity: .45; cursor: default; }
.stepBtn.is-locked:hover{ background: transparent; }

/* nav error state */
.steps-nav.has-error{
  border-color: rgba(220,38,38,.35);
  box-shadow: 0 0 0 4px rgba(220,38,38,.08), var(--checkout-shadow);
}

/* ========================================================================== */
/* 6) Steps / headings / errors */
/* ========================================================================== */
.step{
  border: 1px solid var(--checkout-bd);
  border-radius: var(--checkout-radius);
  background: var(--checkout-card);
  box-shadow: var(--checkout-shadow);
  padding: 14px;
}

.step-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.step-errors{
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(220,38,38,.28);
  background: rgba(220,38,38,.06);
  border-radius: 12px;
  color: #7f1d1d;
}
.step-errors ul{ margin: 0; padding-left: 18px; }
.step-errors li{ margin: 3px 0; }

/* ========================================================================== */
/* 7) Notices */
/* ========================================================================== */
.notice{
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid var(--checkout-bd);
  background: rgba(0,0,0,.02);
  color: var(--checkout-muted);
  margin-bottom: 10px;
}
.notice--warn{
  border-color: rgba(245,158,11,.35);
  background: rgba(245,158,11,.10);
  color: rgba(120,53,15,.95);
}
.notice--info{
  border-color: rgba(71,100,92,.25);
  background: rgba(71,100,92,.08);
  color: rgba(25,48,42,.95);
}

/* ========================================================================== */
/* 8) Boxes / grid */
/* ========================================================================== */
.step-box{
  padding: 12px;
  border: 1px solid var(--panel-bd);
  border-radius: 12px;
  background: var(--panel-bg);
  box-shadow: var(--panel-inset);
}

/* Контакты чуть плотнее, чтобы выглядело “собрано” */
.step-box--contacts{
  background: rgba(17, 24, 22, .045);
  border-color: rgba(17,24,22,.13);
}

.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ========================================================================== */
/* 9) Fields */
/* ========================================================================== */
.field{ display: block; min-width: 0; }
.field--half{ grid-column: span 1; }

.field .label{
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 13px;
  color: rgba(0,0,0,.68);
  margin-bottom: 6px;
  font-weight: 800;
}

.req{ color: var(--err); }

.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--checkout-tx);
  background: #fff;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.field textarea{ resize: vertical; }

/* Контрастнее границы */
.step .field input,
.step .field select,
.step .field textarea{
  border-color: var(--field-bd-strong);
}

/* ФОКУС: спокойный */
.field input:focus,
.field select:focus,
.field textarea:focus,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible{
  border-color: var(--focus-bd);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

/* На панелях фокус чуть выразительнее */
.step-box .field input:focus,
.step-box .field select:focus,
.step-box .field textarea:focus,
.step-box .field input:focus-visible,
.step-box .field select:focus-visible,
.step-box .field textarea:focus-visible{
  border-color: var(--field-bd-strong-focus);
  box-shadow: 0 0 0 4px var(--field-ring-strong);
}

/* disabled */
.field input[disabled],
.field input:disabled,
.field textarea:disabled,
.field select:disabled{
  background: rgba(0,0,0,.03);
  color: rgba(0,0,0,.70);
}

.hint{
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--checkout-muted2);
}

/* ========================================================================== */
/* 10) Actions */
/* ========================================================================== */
.actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
  align-items: center;
}

/* ========================================================================== */
/* 11) Buttons */
/* ========================================================================== */
.btn{
  appearance: none;
  border: 1px solid rgba(0,0,0,.16);
  background: #fff;
  color: var(--checkout-tx);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .05s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  font-weight: 900;
}
.btn:active{ transform: translateY(1px); }

.btn[disabled],
.btn:disabled{ opacity: .65; cursor: default; }

/* primary = ORANGE */
.btn-primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255,106,0,.16);
}
.btn-primary:hover{ filter: brightness(.96); }

/* ghost */
.btn-ghost{
  background: var(--back-bg);
  border-color: var(--back-bd);
  color: var(--back-tx);
  box-shadow: none;
}
.btn-ghost:hover{
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.16);
}

/* link-like buttons */
.btn-link{
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 900;
}
.btn-link:active{ transform: none; }
.btn-link-accent{ color: var(--accent); }
.btn-link-accent:hover{ filter: brightness(.95); }

/* ========================================================================== */
/* 12) Choice cards */
/* ========================================================================== */
.choice-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.choice-grid--single{ grid-template-columns: 1fr; }

/* Карточки выбора */
.choice-card{
  position: relative;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

.choice-card input{
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  opacity: 1;
  pointer-events: none;
}

/* default accent for radios */
.choice-card input{ accent-color: var(--accent); }

.choice-card__body{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px 12px 44px;
  transition: background .15s ease, box-shadow .15s ease;
}

.choice-card__title{
  font-weight: 900;
  letter-spacing: -0.01em;
}
.choice-card__sub{
  color: var(--checkout-muted);
  font-size: 13px;
  font-weight: 700;
}

.choice-card:hover{ border-color: rgba(0,0,0,.18); }

/* ========================================================================== */
/* 13) Delivery (Step 3) */
/* ========================================================================== */

/* Оборачиваем выбор доставки в панель — как на скрине СДЭК (выглядит собранно) */
.step[data-step="3"] .choice-grid{
  background: var(--panel-bg);
  border: 1px solid var(--panel-bd);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--panel-inset);
}

/* Радио доставки — зелёный */
.step[data-step="3"] .choice-card input[name="delivery_method"]{
  accent-color: var(--green);
}

/* Выбрано (fallback без :has) — фон + кольцо + внутренняя рамка */
.step[data-step="3"] .choice-card input[name="delivery_method"]:checked + .choice-card__body{
  background: var(--pick-bg);
  border-radius: 12px;
  box-shadow:
    0 0 0 4px var(--pick-ring),
    0 0 0 1px var(--pick-bd) inset;
}

/* Если :has поддерживается — дополнительно подсветим контур самой карточки */
.step[data-step="3"] .choice-card:has(input[name="delivery_method"]:checked){
  border-color: var(--pick-bd);
  box-shadow: 0 0 0 4px var(--pick-ring), 0 10px 22px rgba(0,0,0,.06);
}

/* ========================================================================== */
/* 14) Payment (Step 4) — делаем дружелюбнее */
/* ========================================================================== */

/* В шаге 4 — карточки чуть “мягче” */
.step[data-step="4"] .card{
  border-color: rgba(17,24,22,.14);
  background: rgba(255,255,255,.96);
}

/* Заголовок первой карточки оплаты — с лёгкой плашкой */
.step[data-step="4"] .card:first-of-type .card-head{
  background: linear-gradient(180deg, rgba(71,100,92,.07), rgba(71,100,92,.02));
  border-bottom-color: rgba(0,0,0,.06);
}

/* Иконка в заголовке "Способ оплаты" */
.step[data-step="4"] .card:first-of-type .card-title{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.step[data-step="4"] .card:first-of-type .card-title::before{
  content: "💳";
  font-size: 16px;
  line-height: 1;
}

/* Блок выбора оплаты делаем как “список-панель”, чтобы не было пустоты */
.step[data-step="4"] .card:first-of-type > .choice-grid{
  background: var(--panel-bg);
  border: 1px solid var(--panel-bd);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--panel-inset);
}

/* Радио оплаты — зелёный */
.step[data-step="4"] .choice-card input[name="payment_method"]{
  accent-color: var(--green);
}

/* Иконки у вариантов оплаты */
.step[data-step="4"] .choice-card input[name="payment_method"] + .choice-card__body .choice-card__title{
  display: flex;
  align-items: center;
  gap: 10px;
}
.step[data-step="4"] .choice-card input[name="payment_method"][value="card_transfer"] + .choice-card__body .choice-card__title::before{
  content: "💳";
  font-size: 16px;
  line-height: 1;
  opacity: .95;
}
.step[data-step="4"] .choice-card input[name="payment_method"][value="qr"] + .choice-card__body .choice-card__title::before{
  content: "🔳";
  font-size: 16px;
  line-height: 1;
  opacity: .75;
}

/* Выбрано (fallback без :has): фон + кольцо + внутренняя рамка */
.step[data-step="4"] .choice-card input[name="payment_method"]:checked + .choice-card__body{
  background: var(--pick-bg);
  border-radius: 12px;
  box-shadow:
    0 0 0 4px var(--pick-ring),
    0 0 0 1px var(--pick-bd) inset;
}

/* Если :has поддерживается — контур самой карточки */
.step[data-step="4"] .choice-card:has(input[name="payment_method"]:checked){
  border-color: var(--pick-bd);
  box-shadow: 0 0 0 4px var(--pick-ring), 0 10px 22px rgba(0,0,0,.06);
}

/* Disabled карточка — чуть понятнее */
.choice-card--disabled{
  opacity: .55;
  cursor: default;
}
.choice-card--disabled .choice-card__sub{
  color: rgba(0,0,0,.45);
  font-weight: 800;
}

/* Комментарий — визуально отделим от выбора оплаты */
.step[data-step="4"] .card:first-of-type .field{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0,0,0,.10);
}

/* ========================================================================== */
/* 15) CDEK inline UI (как было, без ломания) */
/* ========================================================================== */
.choice-card--cdek .choice-card__body{ gap: 8px; }

.choice-card__row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.choice-card__text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.choice-card__actions{ flex: 0 0 auto; }

.btn-cdek{
  background: linear-gradient(135deg, #47645c, #3f5a53 55%, #2f4741);
  border-color: rgba(0,0,0,0);
  color: #fff;
  box-shadow: 0 10px 22px rgba(71,100,92,.22);
}
.btn-cdek:hover{ filter: brightness(.97); }
.btn-cdek:active{ transform: translateY(1px); }

.btn-pvz{
  padding: 9px 12px;
  font-size: 13px;
  white-space: nowrap;
}

#cdekExtra{
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.pvz-mini{
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  color: var(--checkout-tx);
}
.pvz-mini.is-selected{
  border-color: rgba(71,100,92,.28);
  background: rgba(71,100,92,.06);
}

.pvz-mini__title{
  display: flex;
  align-items: center;
  gap: 8px;
}
.pvz-mini__code{
  font-size: 12px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.7);
  color: rgba(0,0,0,.72);
}

.pvz-mini__addr{
  margin-top: 4px;
  font-size: 13px;
  color: var(--checkout-muted);
}
.pvz-mini__meta{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,.70);
}

.btn-change-city{
  font-size: 12px;
  font-weight: 900;
  color: var(--accent);
  text-decoration: underline;
}

/* ========================================================================== */
/* 16) Generic cards + padding fix */
/* ========================================================================== */
.card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--checkout-radius);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
  overflow: hidden;
  margin-top: 12px;
}

.card-head{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.015);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.card-title{
  font-weight: 900;
  letter-spacing: -0.01em;
}
.card-sub{
  margin-top: 4px;
  font-size: 13px;
  color: var(--checkout-muted);
  font-weight: 700;
}

/* Внутренние отступы */
.card > .grid,
.card > .choice-grid,
.card > .field{
  padding: 12px 14px 14px;
  margin: 0;
}
.card > .choice-grid{ margin-bottom: 0; }

/* STEP 3 postBlock */
.step[data-step="3"] #postBlock.card{
  border-color: rgba(17, 24, 22, .14);
  background: rgba(255,255,255,.94);
}

/* ========================================================================== */
/* 17) Suggest (city autocomplete) */
/* ========================================================================== */
.suggest{
  position: relative;
  margin-top: 8px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
  overflow: hidden;
}
.suggest-item{
  padding: 10px 12px;
  cursor: pointer;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
}
.suggest-item:first-child{ border-top: 0; }
.suggest-item:hover{ background: rgba(0,0,0,.03); }

/* ========================================================================== */
/* 18) Order list */
/* ========================================================================== */
.order-list{
  list-style: none;
  padding: 10px 14px 0;
  margin: 0;
}
.order-item{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  align-items: baseline;
}
.order-item .qty{
  color: var(--checkout-muted);
  font-size: 13px;
  white-space: nowrap;
  font-weight: 700;
}
.order-item .sum{
  font-weight: 900;
  white-space: nowrap;
}

.order-total-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}
.order-total-row span{ color: var(--checkout-muted); font-weight: 800; }
.order-total-row strong{ white-space: nowrap; font-weight: 900; }
.order-total-row--grand{
  border-top: 1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.015);
}

/* ========================================================================== */
/* 19) Responsive */
/* ========================================================================== */
@media (max-width: 900px){
  .checkout-shell{ max-width: 760px; }
  .stepBtn{ padding: 10px 8px; }
  .stepBtn .t{ font-size: 12px; }
}

@media (max-width: 720px){
  .grid{ grid-template-columns: 1fr; }
  .field--half{ grid-column: auto; }
  .choice-grid{ grid-template-columns: 1fr; }

  .actions{ justify-content: flex-end; }
  .actions .btn-primary{ margin-left: auto; }
  .actions .btn-ghost{ margin-right: auto; }

  .stepBtn{
    padding: 10px 6px 8px;
    flex-direction: column;
    gap: 6px;
  }
  .stepBtn .n{
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .stepBtn .t{
    display: block;
    font-size: 10.5px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-weight: 800;
  }

  .choice-card input{
    width: 20px;
    height: 20px;
    left: 12px;
    top: 12px;
  }
  .choice-card__body{ padding-left: 46px; }

  .choice-card__row{
    flex-direction: column;
    align-items: stretch;
  }
  .btn-pvz{ width: 100%; }

  .step[data-step="3"] .choice-grid{ padding: 10px; }
  .step[data-step="4"] .card:first-of-type > .choice-grid{ padding: 10px; }
}

@media (max-width: 420px){
  .checkout-h1{ font-size: 20px; }
  .steps-nav__head{ padding: 10px 12px; }
  .step{ padding: 12px; }
}

/* ========================================================================== */
/* 20) Safety */
/* ========================================================================== */
#cdekOpenFloatingBtn{ display: none !important; }