/* ═══════════════════════════════════════════
   RSK23 CALCULATOR — CSS v22 (light/premium)
   ═══════════════════════════════════════════ */

@keyframes kbtn-ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ── Hide junk/leftover elements ── */
.ld-sub, .ld-bar,
#global-canvas { display: none !important; }

/* ── Hide post-calculator sections ── */
.cta-big,
.pagenavigation,
.item-page-navigation { display: none !important; }

/* ── Hero section — light, matching new calculator ── */
.hero-inner {
  background: linear-gradient(180deg, #F5F8FA 0%, #EAF1F4 100%) !important;
  border-bottom: 1px solid rgba(91, 168, 181, .18);
  padding: 90px 48px 40px !important;
  margin: 0 !important;
}
.hero-inner .hero-ov,
.hero-inner .h-eye,
.hero-inner .hero-sub { display: none !important; }

.kalk-page-title {
  font-family: 'Montserrat', 'Jost', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #0c1a24;
  margin: 0;
  line-height: 1.15;
}
.kalk-page-title em {
  color: #4a91a0;
  font-style: normal;
}

/* ── Main layout — light background ── */
.kalk-section {
  padding: 0 0 40px;
  background: linear-gradient(180deg, #F5F8FA 0%, #EAF1F4 100%);
}
.kalk-root {
  max-width: 1780px;
  margin: 0 auto;
  padding: 0 16px;
}
.kalk-head {
  text-align: center;
  padding: 18px 20px 12px;
}
.kalk-head h2 {
  font-family: 'Montserrat', 'Jost', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #0c1a24;
  margin: 0 0 8px;
  line-height: 1.2;
}
.kalk-head h2 em {
  color: #4a91a0;
  font-style: normal;
}
.kalk-head p {
  font-size: 14px;
  color: #6b7f8e;
  margin: 0;
}

/* ── Grid ── */
.calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 0;
  min-height: auto;
}

/* ── Both panels — flat card, no animated border ── */
.kalk-left,
.kalk-right {
  border: 1px solid #e4edf2;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(20, 40, 55, .08);
  overflow: hidden;
  color: #1a2535;
}

/* ── LEFT PANEL ── */
.kalk-left {
  padding: 16px 20px 168px;
  background: #ffffff;
  position: relative;
}
.k-step {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #5BA8B5;
  margin-bottom: 5px;
  margin-top: 10px;
}
.k-step:first-child { margin-top: 0 }
.k-divider { height: 1px; background: #e0e8ed; margin: 10px 0 0 }

/* option cards */
.k-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.k-opt {
  border: 1.5px solid #e2e8ec;
  background: #ffffff;
  border-radius: 14px;
  padding: 7px 6px 6px;
  min-height: 60px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .15s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  user-select: none;
  overflow: visible;
}
.k-opt:hover {
  border-color: #5BA8B5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(91,168,181,.18);
}
.k-opt:active { transform: translateY(-1px); }
.k-opt.active {
  border-color: #5BA8B5;
  background: #5BA8B5;
  box-shadow: 0 6px 20px rgba(91,168,181,.35);
}

/* ripple */
.k-opt .k-ripple,
.k-chip .k-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  width: 20px; height: 20px;
  transform: scale(0);
  animation: kbtn-ripple .5s linear;
  pointer-events: none;
}

/* icons — SVG line-art */
.k-ico {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, color .2s ease;
  color: #5f7480;
}
.k-ico svg { width: 100%; height: 100%; }
.k-opt:hover .k-ico { transform: scale(1.1); color: #5BA8B5; }
.k-opt.active .k-ico { transform: scale(1.05); color: #ffffff; }

.k-lbl {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  color: #1a2535;
  letter-spacing: -.2px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.1em;
}
.k-opt.active .k-lbl { color: #ffffff; }
.k-opt:hover .k-lbl { color: #3a8e9e; }

.k-hit {
  position: absolute; top: -1px; right: -1px;
  background: #E8873A; color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 2px 7px;
  border-radius: 0 12px 0 8px;
  line-height: 1.5;
  letter-spacing: .3px;
}

/* 5-column work grid */
#k-work-grid { grid-template-columns: repeat(5, 1fr); gap: 6px }

/* area slider */
.k-area-row {
  display: flex; justify-content: space-between; align-items: center;
  margin: 8px 0 4px;
}
.k-area-lbl { font-size: 13px; color: #6b7f8e; font-weight: 500; }
.k-area-val {
  font-size: 24px; font-weight: 900;
  font-family: 'Jost', sans-serif;
  color: #4a91a0; letter-spacing: -1px;
}
.k-slider {
  width: 100%; height: 6px; border-radius: 4px;
  background: linear-gradient(90deg, #5BA8B5 var(--p, 22%), #dce6eb var(--p, 22%));
  appearance: none; cursor: pointer; outline: none;
}
.k-slider::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #5BA8B5, #4a91a0);
  box-shadow: 0 2px 12px rgba(91,168,181,.5);
  border: 3px solid #fff;
  transition: transform .2s; cursor: pointer;
}
.k-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }
.k-area-range {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #9ba8b5; margin-top: 5px;
}

/* extras chips — рисуем как трек переключателя: серая "дорожка" + белые/бирюзовые пилюли внутри,
   так граница между соседними чипами видна всегда, а не только на цвете бордера */
.k-extras {
  display: flex; flex-wrap: nowrap; gap: 4px; margin-top: 4px;
  align-items: center;
  background: #eef2f4;
  border-radius: 28px;
  padding: 4px;
}
.k-sub-wrap { display: block; }
.k-chip {
  border: none;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(20,40,55,.08);
  border-radius: 22px; padding: 6px 12px;
  display: flex; align-items: center; gap: 7px;
  height: 34px !important; max-height: 34px !important; flex-shrink: 0;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
  font-size: 12px; font-weight: 600; color: #1a2535;
  user-select: none;
  position: relative; overflow: hidden;
}
.k-chip:hover {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(91,168,181,.25);
  color: #3a8e9e;
}
.k-chip:active { transform: none; }
.k-chip.active {
  background: #5BA8B5;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(91,168,181,.35);
}
.k-chip-ico {
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #5f7480;
  transition: color .2s ease;
}
.k-chip-ico svg { width: 100%; height: 100%; }
.k-chip.active .k-chip-ico { color: #ffffff; }
.k-chip-lbl { font-weight: 700; white-space: nowrap; }

/* sub-options panel — на десктопе абсолютно позиционируется в заранее
   зарезервированное пустое место снизу карточки (padding-bottom у .kalk-left),
   поэтому раскрытие не меняет высоту всего блока */
.k-sub {
  display: none;
  position: absolute;
  left: 20px; right: 20px; bottom: 16px;
  margin-top: 0;
  z-index: 50;
  background: #f5f8f9; border: 1.5px solid #e2e8ec;
  border-radius: 14px; padding: 14px 16px;
  animation: kSubOpen .2s ease-out;
}
@keyframes kSubOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.k-sub.open { display: block }
.k-sub-title {
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; color: #8fa8b5; margin-bottom: 10px;
}
.k-sub-opts { display: flex; flex-direction: column; gap: 6px }
.k-sub-opt {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: #1a2535;
  cursor: pointer; padding: 5px 0;
  transition: color .15s;
}
.k-sub-opt:hover { color: #5BA8B5 }
.k-sub-opt.active { color: #5BA8B5; font-weight: 700 }
.k-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid #ccdde4; flex-shrink: 0;
  transition: all .15s;
}
.k-sub-opt.active .k-dot { background: #5BA8B5; border-color: #5BA8B5; }

/* ── RIGHT PANEL ── */
.kalk-right {
  color: #1a2535;
  position: relative !important;
  background: #ffffff;
}

.kr-top { display: none !important; }

.kr-body { padding: 14px 18px 16px }
.kr-title {
  font-family: 'Jost', sans-serif;
  font-size: 19px; font-weight: 900;
  color: #0c1a24; margin-bottom: 10px;
  letter-spacing: -.3px;
}

/* lines */
.k-lines { margin-bottom: 6px }
.kl {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #e4edf2;
}
.kl-k { font-size: 13px; color: #5a7080; font-weight: 500; }
.kl-v { font-size: 13.5px; font-weight: 700; color: #0c1a24; }
.kl-v.accent { color: #E8873A; }
.kl-total {
  background: linear-gradient(135deg, rgba(91,168,181,.12), rgba(91,168,181,.06));
  border: 1.5px solid rgba(91,168,181,.3) !important;
  border-radius: 12px;
  padding: 9px 14px !important;
  margin-top: 6px;
  border-bottom: 1.5px solid rgba(91,168,181,.3) !important;
}
.kl-total .kl-k { color: #5a7080; font-weight: 700; font-size: 13px; }
.kl-total .kl-v {
  font-family: 'Jost', sans-serif;
  font-size: 24px; font-weight: 900;
  color: #0c1a24; letter-spacing: -1.5px;
}

/* range block */
.k-range {
  background: #f5f8f9;
  border: 1px solid #e2e8ec;
  border-radius: 14px; padding: 9px 12px; margin-bottom: 8px;
}
.k-range-lbl {
  font-size: 10.5px; color: #8fa8b5; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px;
}
.k-range-cols { display: flex; align-items: center; gap: 0 }
.k-range-col { flex: 1; text-align: center }
.k-range-col.mid .k-range-col-val { color: #4a91a0; font-weight: 900; }
.k-range-col-lbl { font-size: 10px; color: #8fa8b5; font-weight: 600; margin-bottom: 4px }
.k-range-col-val { font-size: 13.5px; font-weight: 700; color: #1a2535; }
.k-range-sep { width: 1px; height: 32px; background: #e2e8ec; flex-shrink: 0; }

/* disclaimer */
.k-disc {
  display: flex; gap: 10px; align-items: flex-start;
  background: #f5f8f9; border: 1px solid #e2e8ec;
  border-radius: 12px;
  padding: 8px 12px; margin-bottom: 8px;
}
.k-disc-icon { font-size: 16px; flex-shrink: 0; line-height: 1.4 }
.k-disc-text { font-size: 12px; color: #5a7080; line-height: 1.5 }
.k-disc-text strong { color: #0c1a24; }

/* CTA button */
.k-cta {
  width: 100%; padding: 14px 15px;
  border: none;
  background: linear-gradient(135deg, #5BA8B5 0%, #4a91a0 100%);
  color: #fff; border-radius: 14px;
  font-size: 15px; font-weight: 800;
  font-family: 'Jost', 'Montserrat', sans-serif;
  cursor: pointer;
  transition: box-shadow .25s ease, transform .15s ease;
  box-shadow: 0 8px 24px rgba(91,168,181,.35);
  letter-spacing: .3px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 8px;
  position: relative; overflow: hidden;
}
.k-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91,168,181,.45);
}
.k-cta:active { transform: scale(.98); box-shadow: 0 4px 12px rgba(91,168,181,.3); }

/* messenger links */
.k-msg-row { display: flex; gap: 8px }
.k-msg {
  flex: 1; text-align: center;
  padding: 7px 8px; border-radius: 12px;
  font-size: 12px; font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.k-msg.wa { background: rgba(37,211,102,.14); color: #18a450; border: 2px solid rgba(37,211,102,.45); }
.k-msg.wa:hover { background: rgba(37,211,102,.25); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.k-msg.tg { background: rgba(42,165,224,.14); color: #2A9DD8; border: 2px solid rgba(42,165,224,.45); }
.k-msg.tg:hover { background: rgba(42,165,224,.25); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(42,165,224,.3); }
.k-msg.mx { background: rgba(0,119,255,.14); color: #0077FF; border: 2px solid rgba(0,119,255,.45); }
.k-msg.mx:hover { background: rgba(0,119,255,.25); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,119,255,.3); }

/* ── «Нашли дешевле?» — второстепенная кнопка сверки цен ── */
.k-cheaper-btn {
  width: 100%; margin-top: 10px;
  padding: 14px 16px;
  background: #ffffff;
  color: #4a91a0;
  border: 1.5px solid rgba(91,168,181,.4);
  border-radius: 14px;
  font-size: 15px; font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.k-cheaper-btn:hover { background: rgba(91,168,181,.08); border-color: #5BA8B5; }

.k-cheaper-modal .k-modal-title { margin-bottom: 10px; }
.k-cheaper-cond {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.k-cheaper-cond li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.5; color: #445566;
}
.k-cheaper-cond li::before {
  content: '✓'; flex-shrink: 0; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(91,168,181,.15); color: #4a91a0;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.k-cheaper-promo {
  background: linear-gradient(135deg, rgba(91,168,181,.12), rgba(91,168,181,.06));
  border: 1.5px solid rgba(91,168,181,.3);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 16px;
  font-size: 14px; font-weight: 700; color: #0c1a24; text-align: center;
}
.k-cheaper-promo strong { color: #4a91a0; font-size: 18px; }

/* ── Modal ── */
.k-modal-ov {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(12, 26, 36, .55);
  display: none; align-items: center; justify-content: center;
}
.k-modal-ov.open { display: flex }
.k-modal {
  background: #fff; border-radius: 22px;
  padding: 34px 30px; max-width: 420px; width: 90%;
  position: relative;
  box-shadow: 0 28px 72px rgba(0,0,0,.25);
}
.k-modal-cls {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: #8fa8b5;
  transition: color .15s;
}
.k-modal-cls:hover { color: #1a2535; }
.k-modal-title { font-family: 'Jost', sans-serif; font-size: 20px; font-weight: 900; color: #0c1a24; margin-bottom: 6px; }
.k-modal-sub { font-size: 13px; color: #5a7080; margin-bottom: 14px; }
.k-modal-sum { font-size: 13px; color: #4a91a0; font-weight: 700; margin-bottom: 16px; }
.k-field { margin-bottom: 12px }
.k-field label { display: block; font-size: 12px; font-weight: 700; color: #5a7080; margin-bottom: 5px; }
.k-field input, .k-field textarea {
  width: 100%; padding: 11px 14px; border: 2px solid #e4edf2;
  border-radius: 12px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s; box-sizing: border-box;
  color: #0c1a24;
}
.k-field input:focus, .k-field textarea:focus { border-color: #5BA8B5; }
.k-field textarea { resize: vertical; min-height: 70px; }
.k-modal-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #5BA8B5, #4a91a0);
  color: #fff; border: none; border-radius: 12px;
  font-size: 15px; font-weight: 800; font-family: inherit;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 6px 20px rgba(91,168,181,.4);
}
.k-modal-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(91,168,181,.55); }
.k-thanks { text-align: center; padding: 10px 0; }
.k-ticon { font-size: 44px; margin-bottom: 12px; }
.k-thanks h3 { font-size: 20px; font-weight: 900; color: #0c1a24; margin-bottom: 8px; }
.k-thanks p { font-size: 14px; color: #5a7080; line-height: 1.6; }
.k-thanks strong { color: #4a91a0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .calc-layout { grid-template-columns: 1fr !important }
  .kalk-right { position: static }
  #k-work-grid { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 600px) {
  .k-grid { grid-template-columns: repeat(4, 1fr); gap: 6px }
  #k-work-grid { grid-template-columns: repeat(5, 1fr); gap: 5px }
  .k-opt { padding: 10px 2px 9px; min-height: 82px; gap: 3px }
  .k-lbl { font-size: 10px; line-height: 1.1; letter-spacing: -.3px; min-height: 2.2em }
  .k-ico { width: 20px; height: 20px }
  .k-step { font-size: 9.5px; letter-spacing: 1px }
  .k-extras { flex-wrap: nowrap !important; gap: 5px !important; justify-content: space-between }
  .k-chip { flex: 1 1 0 !important; min-width: 0 !important; padding: 6px 4px !important; font-size: 10.5px !important; letter-spacing: -.2px !important; gap: 3px !important; height: 38px !important; max-height: 38px !important; justify-content: center }
  .k-chip-ico { width: 14px !important; height: 14px !important; flex-shrink: 0 }
  .k-chip-lbl { white-space: nowrap; overflow: visible; font-size: 10.5px }
  .calc-layout { min-height: auto !important }
  .kalk-left { padding: 14px 10px !important }
  /* На мобильном пустое место снизу не резервируем — экран и так узкий и длинный,
     подпанель просто раздвигает блок в обычном потоке, как раньше */
  .k-sub { position: relative !important; left: auto !important; right: auto !important; bottom: auto !important; margin-top: 8px !important; }
  .kr-body { padding: 14px 12px 18px !important }
  .kalk-left, .kalk-right { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; }
  .hero-inner { padding: 96px 16px 24px !important }
  .kalk-root { padding: 0 4px }
  .k-msg-row { flex-wrap: wrap }
  .k-msg { min-width: calc(50% - 4px) }
  .kalk-head { padding: 28px 12px 20px }
}

/* ── Ультра-мобильный ── */
@media (max-width: 480px) {
  .k-sub { position: relative !important; top: auto !important; left: auto !important; right: auto !important; flex: 0 0 100%; width: 100%; margin-top: 4px; box-sizing: border-box; }
  .kl-total .kl-v { font-size: 20px; }
  .k-chip { font-size: 9.5px !important; padding: 5px 3px !important; gap: 2px !important }
  .k-chip-ico { width: 13px !important; height: 13px !important }
  .k-lbl { font-size: 9px }
}

/* Кнопка Позвонить */
.k-msg.call { background: rgba(91,168,181,.14); color: #5BA8B5; border: 2px solid rgba(91,168,181,.45); }
.k-msg.call:hover { background: rgba(91,168,181,.25); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(91,168,181,.3); }

/* ══════════════════════════════════════════════════════════
   v15 — FORCE equal columns, no truncation (desktop + mobile)
   ══════════════════════════════════════════════════════════ */

#k-work-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 6px !important;
}
#k-work-grid .k-opt {
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 8px 2px 7px !important;
}
#k-work-grid .k-lbl {
  font-size: 11px !important;
  letter-spacing: -.3px !important;
  white-space: nowrap !important;
  line-height: 1.15 !important;
  padding: 0 1px !important;
  width: 100% !important;
  text-align: center !important;
  overflow: visible !important;
  min-height: 1em !important;
}

.k-extras {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 4px !important;
  flex-wrap: unset !important;
}
.k-extras .k-chip {
  width: 100% !important;
  min-width: 0 !important;
  flex: none !important;
  padding: 6px 6px !important;
  justify-content: center !important;
  gap: 5px !important;
}
.k-extras .k-chip-lbl {
  font-size: 11px !important;
  letter-spacing: -.2px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}
.k-extras .k-chip-ico {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
}

.calc-layout {
  align-items: stretch !important;
}
.calc-layout > .kalk-left,
.calc-layout > .kalk-right {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  height: auto !important;
}

@media (max-width: 600px) {
  #k-work-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 3px !important;
  }
  #k-work-grid .k-opt {
    padding: 8px 1px 7px !important;
    min-height: 68px !important;
  }
  #k-work-grid .k-lbl {
    font-size: 7.5px !important;
    letter-spacing: -.4px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    min-height: 1em !important;
    overflow: visible !important;
  }
  #k-work-grid .k-ico {
    width: 18px !important;
    height: 18px !important;
  }
  #k-work-grid .k-hit {
    font-size: 7px !important;
    padding: 1px 3px !important;
  }

  .k-extras {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
    background: #eef2f4 !important;
    border-radius: 16px !important;
    padding: 4px !important;
  }
  .k-extras .k-chip {
    padding: 5px 2px !important;
    font-size: 9px !important;
    height: 32px !important;
    max-height: 32px !important;
    gap: 2px !important;
  }
  .k-extras .k-chip-lbl {
    font-size: 9px !important;
    letter-spacing: -.3px !important;
  }
  .k-extras .k-chip-ico {
    width: 12px !important;
    height: 12px !important;
  }

  .kalk-left { padding: 14px 10px !important; }
  .kalk-right { padding: 14px 12px !important; }
}

/* ══════════════════════════════════════════════════════════
   Совместимость со страницами, где калькулятор встроен
   в обёртку .price-light.calc-bg — там есть общее правило
   ".kalk-root * { color: inherit !important }", которое иначе
   перебивает белый/бирюзовый/оранжевый текст ниже.
   Здесь селекторы специально сделаны длиннее (выше специфичность),
   чтобы победить это правило, само оставаясь нетронутым.
   ══════════════════════════════════════════════════════════ */
.price-light.calc-bg .kalk-root .k-opt.active .k-lbl,
.price-light.calc-bg .kalk-root .k-chip.active .k-chip-lbl { color: #ffffff !important; }
.price-light.calc-bg .kalk-root .k-opt.active .k-ico,
.price-light.calc-bg .kalk-root .k-chip.active .k-chip-ico { color: #ffffff !important; }
.price-light.calc-bg .kalk-root .k-opt:hover .k-lbl,
.price-light.calc-bg .kalk-root .k-chip:hover .k-chip-lbl { color: #3a8e9e !important; }
.price-light.calc-bg .kalk-root .k-opt:hover .k-ico,
.price-light.calc-bg .kalk-root .k-chip:hover .k-chip-ico { color: #5BA8B5 !important; }
.price-light.calc-bg .kalk-root .kl-v.accent { color: #E8873A !important; }
.price-light.calc-bg .kalk-root .k-range-col.mid .k-range-col-val { color: #4a91a0 !important; }
.price-light.calc-bg .kalk-root .k-cta,
.price-light.calc-bg .kalk-root .k-modal-submit { color: #ffffff !important; }
.price-light.calc-bg .kalk-root .k-msg.wa { color: #18a450 !important; }
.price-light.calc-bg .kalk-root .k-msg.tg { color: #2A9DD8 !important; }
.price-light.calc-bg .kalk-root .k-msg.mx { color: #0077FF !important; }
.price-light.calc-bg .kalk-root .k-msg.call { color: #5BA8B5 !important; }
.price-light.calc-bg .kalk-root .k-sub-opt.active,
.price-light.calc-bg .kalk-root .k-sub-opt:hover { color: #5BA8B5 !important; }
.price-light.calc-bg .kalk-root .k-cheaper-btn { color: #4a91a0 !important; }
.price-light.calc-bg .kalk-root .k-cheaper-btn:hover { color: #3a8e9e !important; }
