/* ========================= ХЕДЕР И МЕНЮ ========================= */
.header-static {
  position: relative;
  background: #fff;
  z-index: 1000;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.header-static.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  animation: none;
}

@keyframes headerStaticShow {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.mk-header-main {
  background: #fff;
  padding: 24px 0;
  transition: padding 0.25s ease;
}
.mk-header-main__inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.mk-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.mk-header-logo img {
  max-height: 86px;
  width: auto;
  transition: all 0.25s ease;
}
.mk-header-location__title {
  color: #111;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}
.mk-header-location__text {
  margin-top: 6px;
  color: #7291a4;
  font-size: 16px;
  line-height: 1.3;
}

.header-static.is-fixed .mk-header-main {
  padding: 10px 0;
}
.header-static.is-fixed .mk-header-main__inner {
  grid-template-columns: 160px 1fr;
  gap: 24px;
}
.header-static.is-fixed .mk-header-logo img {
  max-height: 54px;
}
.header-static.is-fixed .mk-header-location__title {
  font-size: 17px;
}
.header-static.is-fixed .mk-header-location__text {
  display: none;
}

/* Основное меню (горизонтальное) */
.mk-menu-layer {
    position: relative;
    z-index: 1020;
}
.mk-main-menu {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #18367c;
    z-index: 1020;
}
.mk-main-menu__link {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 34px;
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: background .2s ease;
    white-space: nowrap;
    box-sizing: border-box;
}
.mk-main-menu__link:hover,
.mk-main-menu__link.is-active {
    background: #20aee0;
}

/* Мобильное меню */
.mk-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1020;
    position: relative;
    margin-left: auto;
}
.mk-burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #18367c;
    border-radius: 3px;
    transition: all .3s ease;
}
.mk-burger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mk-burger.is-open span:nth-child(2) {
    opacity: 0;
}
.mk-burger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mk-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #edf1f4;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    z-index: 1015;
    flex-direction: column;
    padding: 10px 0;
}
.mk-mobile-menu.is-open {
    display: flex;
}
.mk-mobile-menu__link {
    display: block;
    padding: 14px 20px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s;
}
.mk-mobile-menu__link:hover,
.mk-mobile-menu__link.is-current {
    background: #f4f9fc;
    color: #0791c5;
}

body.mk-menu-open {
    overflow: hidden;
}

/* Показываем бургер и скрываем ПК-меню на мобильных (≤768px) */
@media (max-width: 768px) {
    .mk-main-menu {
        display: none !important;
    }
    .mk-burger {
        display: flex;
    }
}

/* На ПК скрываем бургер и мобильное меню */
@media (min-width: 769px) {
    .mk-burger,
    .mk-mobile-menu {
        display: none !important;
    }
}

/* Фиксация мобильного меню при sticky-шапке */
.header-static.is-fixed .mk-mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Новая мобилка */
@media (max-width: 768px) {
    .header .header-desktop {
        display: block !important;
    }
    .header .header-mobile {
        display: none !important;
    }
}

/* телефон в мобилке */
/* Показываем header-desktop всегда (отменяем скрытие) */
@media (max-width: 768px) {
    .header .header-desktop {
        display: block !important;
    }
    .header .header-mobile {
        display: none !important;
    }
}

/* Скрываем логотип и адрес на мобильных */
@media (max-width: 768px) {
    .mk-header-main {
        display: none !important;
    }
}

/* Стили телефона в мобильной версии меню */
.mk-menu-layer {
    position: relative;
    z-index: 1020;
}
.mk-mobile-phone {
    display: none; /* на десктопе скрыт */
    font-size: 15px;
    color: var(--mk-muted, #5a6b7c);
    margin-right: auto; /* прижимает бургер вправо */
    align-items: center;
    gap: 6px;
}
.mk-mobile-phone a {
    font-weight: 700;
    text-decoration: none !important;
    font-size: 16px;
    color: var(--mk-accent-dk, #0b6fa0) !important;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .mk-menu-layer {
        display: flex;
        align-items: center;
        justify-content: flex-end; /* бургер справа */
        padding: 8px 15px;
        background: #fff;
        border-bottom: 1px solid #edf1f4;
    }
    .mk-mobile-phone {
        display: flex;
        flex: 1;
        justify-content: flex-start;
    }
    /* бургер остается в правой части */
    .mk-burger {
        margin-left: auto;
    }
}

/* ========== КАРТОЧКА ТУРА========== */
.mk-tour-card {
  background: var(--mk-white, #fff);
  border: 1px solid var(--mk-line, #e4ebf2);
  border-radius: var(--mk-radius, 18px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mk-tour-card:hover {
  border-color: var(--mk-accent, #1497d4);
  transform: translateY(-6px);
  box-shadow: var(--mk-shadow, 0 18px 50px -22px rgba(13,58,92,.45));
}

/* Изображение */
.mk-tour-card__thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--mk-soft, #f3f7fb);
}
.mk-tour-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.mk-tour-card:hover .mk-tour-card__thumb img {
  transform: scale(1.05);
}

/* Бейдж сложности */
.mk-tour-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.12);
  color: #1f8b4c;
  z-index: 2;
}

/* Тело карточки */
.mk-tour-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Мета-информация (время, сложность) */
.mk-tour-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.mk-tour-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--mk-muted, #5a6b7c);
}
.mk-tour-card__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--mk-muted, #5a6b7c);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Заголовок и описание */
.mk-tour-card h3 {
  font-family: var(--mk-display, 'Manrope', sans-serif);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--mk-ink, #1d2b3a);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.mk-tour-card p {
  font-size: 13.5px;
  color: var(--mk-muted, #5a6b7c);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* Теги маршрута */
.mk-tour-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.mk-tour-card__tag {
  background: rgba(20, 151, 212, 0.08);
  border: 1px solid rgba(20, 151, 212, 0.2);
  font-size: 11px;
  color: var(--mk-accent-dk, #0b6fa0);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Нижняя часть с ценой и кнопкой */
.mk-tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--mk-line, #e4ebf2);
  margin-top: auto;
  gap: 12px;
}
.mk-tour-card__price {
  font-family: var(--mk-display, 'Manrope', sans-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--mk-accent, #1497d4);
}
.mk-tour-card__price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--mk-muted, #5a6b7c);
  font-family: var(--mk-font, 'Manrope', sans-serif);
}

/* Кнопка маленькая */
.mk-btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* Ссылка "Подробнее" */
.mk-tour-card__more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mk-accent, #1497d4);
  text-decoration: none;
  transition: color 0.2s;
}
.mk-tour-card__more:hover {
  color: var(--mk-accent-dk, #0b6fa0);
  text-decoration: underline;
}

.mk-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ========== ФИЛЬТР ========== */
.mk-filter {
  background: var(--mk-white, #fff);
  border: 1px solid var(--mk-line, #e4ebf2);
  border-radius: var(--mk-radius, 18px);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px -18px rgba(13,58,92,.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.mk-filter__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--mk-ink, #1d2b3a);
  margin-right: 8px;
  white-space: nowrap;
}

.mk-filter__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mk-filter__tabs input[type="radio"] {
  display: none;
}

.mk-filter__tabs label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--mk-soft, #f3f7fb);
  border: 1px solid var(--mk-line, #e4ebf2);
  font-size: 14px;
  font-weight: 600;
  color: var(--mk-muted, #5a6b7c);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.mk-filter__tabs label:hover {
  border-color: var(--mk-accent, #1497d4);
  color: var(--mk-accent, #1497d4);
  background: #fff;
}

.mk-filter__tabs input[type="radio"]:checked + label {
  background: linear-gradient(135deg, var(--mk-accent-2, #0fb6c0), var(--mk-accent, #1497d4));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px -6px var(--mk-accent, #1497d4);
}

.mk-filter__price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 360px;
  min-width: 220px;
}

.mk-filter__price label {
  font-size: 13px;
  color: var(--mk-muted, #5a6b7c);
  white-space: nowrap;
}

.mk-filter__price input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--mk-accent, #1497d4) 0%, var(--mk-accent, #1497d4) 100%, var(--mk-line, #e4ebf2) 100%, var(--mk-line, #e4ebf2) 100%);
  outline: none;
}

.mk-filter__price input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mk-accent, #1497d4);
  box-shadow: 0 4px 10px rgba(20,151,212,.4);
  cursor: pointer;
  border: 2px solid #fff;
  transition: .2s;
}

.mk-filter__price input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.mk-filter__price span {
  font-size: 14px;
  font-weight: 700;
  color: var(--mk-ink, #1d2b3a);
  min-width: 90px;
  text-align: right;
}

@media (max-width: 768px) {
  .mk-filter {
    flex-direction: column;
    align-items: flex-start;
  }
  .mk-filter__price {
    max-width: 100%;
    width: 100%;
  }
}

/* ========== ХЛЕБНЫЕ КРОШКИ ========== */
.mk-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--mk-muted, #5a6b7c);
  padding: 12px 0;
  margin-bottom: 16px;
}

.mk-breadcrumbs a {
  color: var(--mk-accent, #1497d4);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.mk-breadcrumbs a:hover {
  color: var(--mk-accent-dk, #0b6fa0);
  text-decoration: underline;
}

.mk-breadcrumbs__sep {
  color: var(--mk-line, #e4ebf2);
  user-select: none;
}

/* Активная (текущая) страница */
.mk-breadcrumbs > span:last-child {
  color: var(--mk-ink, #1d2b3a);
  font-weight: 600;
}

@media (max-width: 480px) {
  .mk-breadcrumbs {
    font-size: 13px;
  }
}

/* ========== ОБЛАКО ТЕГОВ ========== */
.mk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0;
}

.mk-tag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--mk-soft, #f3f7fb);
  border: 1px solid var(--mk-line, #e4ebf2);
  color: var(--mk-ink, #1d2b3a) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: all .2s ease;
}

.mk-tag-link:hover {
  background: linear-gradient(135deg, var(--mk-accent-2, #0fb6c0), var(--mk-accent, #1497d4));
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px var(--mk-accent, #1497d4);
}

/* Активный тег (если нужно выделить текущий) */
.mk-tag-link.active {
  background: var(--mk-accent, #1497d4);
  color: #fff !important;
  border-color: var(--mk-accent, #1497d4);
  pointer-events: none;
  box-shadow: 0 8px 20px -10px var(--mk-accent, #1497d4);
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
  .mk-tag-link {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* добавил новый пункт */
.mk-main-menu__link {
    padding: 0 15px !important;
}

/* Выравнивание цены в meta-строке */
.mk-tour-card__meta {
  justify-content: space-between;
}

/* При необходимости можно уменьшить размер цены, чтобы она помещалась */
.mk-tour-card__meta .mk-tour-card__price {
  font-size: 28px;
  margin-left: 10px;
  white-space: nowrap;
}

/* Растягиваем кнопки на равную ширину */
.mk-tour-card__footer {
  display: flex;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--mk-line, #e4ebf2);
  margin-top: auto;
}

.mk-tour-card__footer .mk-btn {
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

/* Убираем лишние отступы у маленьких кнопок */
.mk-btn--sm {
  padding: 10px 16px; /* немного уменьшил боковые отступы для телефонов */
}

/* ========== КАРТОЧКА ТУРА (GANDHI) ========== */
.mk-tour-card {
  background: var(--mk-white, #fff);
  border: 1px solid var(--mk-line, #e4ebf2);
  border-radius: var(--mk-radius, 18px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mk-tour-card:hover {
  border-color: var(--mk-accent, #1497d4);
  transform: translateY(-6px);
  box-shadow: var(--mk-shadow, 0 18px 50px -22px rgba(13,58,92,.45));
}

/* Изображение */
.mk-tour-card__thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--mk-soft, #f3f7fb);
}
.mk-tour-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.mk-tour-card:hover .mk-tour-card__thumb img {
  transform: scale(1.05);
}

/* Бейдж */
.mk-tour-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.12);
  color: #1f8b4c;
  z-index: 2;
}

/* Тело карточки */
.mk-tour-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Мета-строка (гости + цена) */
.mk-tour-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mk-tour-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--mk-muted, #5a6b7c);
}
.mk-tour-card__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--mk-muted, #5a6b7c);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Заголовок и описание */
.mk-tour-card h3 {
  font-family: var(--mk-display, 'Manrope', sans-serif);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--mk-ink, #1d2b3a);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.mk-tour-card p {
  font-size: 13.5px;
  color: var(--mk-muted, #5a6b7c);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* Теги */
.mk-tour-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.mk-tour-card__tag {
  background: rgba(20, 151, 212, 0.08);
  border: 1px solid rgba(20, 151, 212, 0.2);
  font-size: 11px;
  color: var(--mk-accent-dk, #0b6fa0);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Нижняя часть с ценой и кнопками */
.mk-tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--mk-line, #e4ebf2);
  margin-top: auto;
  gap: 12px;
}
.mk-tour-card__price {
  font-family: var(--mk-display, 'Manrope', sans-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--mk-accent, #1497d4);
  white-space: nowrap;
}
.mk-tour-card__price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--mk-muted, #5a6b7c);
  font-family: var(--mk-font, 'Manrope', sans-serif);
}

/* Маленькие кнопки */
.mk-btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* Сетка карточек */
.mk-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ========================= ПЕРЕМЕННЫЕ ========================= */
:root {
  --mk-accent: #1497d4;
  --mk-accent-2: #0fb6c0;
  --mk-accent-dk: #0b6fa0;
  --mk-ink: #1d2b3a;
  --mk-muted: #5a6b7c;
  --mk-line: #e4ebf2;
  --mk-soft: #f3f7fb;
  --mk-white: #ffffff;
  --mk-radius: 18px;
  --mk-shadow: 0 18px 50px -22px rgba(13,58,92,0.45);
  --mk-display: 'Manrope', sans-serif;
  --mk-font: 'Manrope', sans-serif;
}

/* ========================= МОБИЛЬНАЯ ПАНЕЛЬ ========================= */
/* По умолчанию скрываем мобильные элементы */
.mk-mobile-logo,
.mk-mobile-book-btn {
  display: none;
}

/* Иконка телефона на мобильных – показываем только на маленьких экранах */
.mk-mobile-phone {
  display: none;
}

@media (max-width: 768px) {
  .header .header-desktop {
    display: block !important;
  }

  /* Контейнер мобильной панели */
  .mk-menu-layer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 15px;
    background: #fff;
    border-bottom: 1px solid #edf1f4;
    gap: 10px;
  }

  /* Логотип (слева) */
  .mk-mobile-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
  }
  .mk-mobile-logo img {
    height: 36px;
    width: auto;
  }

  /* Кнопка "Забронировать" */
  .mk-mobile-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--mk-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
  }

  /* Иконка телефона */
  .mk-mobile-phone {
    display: flex;
    align-items: center;
  }
  .mk-mobile-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--mk-soft);
    border-radius: 50%;
    color: var(--mk-accent);
    font-size: 18px;
    text-decoration: none;
  }

  /* Бургер – фиксируем его в правом углу */
  .mk-burger {
    display: flex;
    margin-left: 0;
  }

  /* Скрываем десктопную шапку (логотип и адрес), чтобы не дублировались */
  .mk-header-main {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mk-burger,
  .mk-mobile-menu {
    display: none !important;
  }
}

/* Информация в мобильном меню */
.mk-mobile-menu-info {
  padding: 16px 20px;
  margin-top: 8px;
  border-top: 1px solid #edf1f4;
  font-size: 14px;
  color: #5a6b7c;
  line-height: 1.6;
  background: #f9fbfd;
}

/* =========================
   НИЖНЯЯ ЛИПКАЯ ПАНЕЛЬ (везде)
   ========================= */
.mk-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9998;
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  border-top: 1px solid #e4ebf2;
}

body {
  padding-bottom: 75px !important;
}

.mk-bottom-bar__phone,
.mk-bottom-bar__book {
  flex: 1;                     /* одинаковая ширина */
  padding: 14px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: 0.2s;
}

.mk-bottom-bar__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--mk-soft);
  color: var(--mk-ink);
  text-decoration: none;
}

.mk-bottom-bar__book {
  background: linear-gradient(135deg, var(--mk-accent-2), var(--mk-accent));
  color: #fff;
  border: none;
  cursor: pointer;
}

.mk-bottom-bar__book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15,182,192,0.5);
}