/* =========================================================================
   RESPONSIVE HEADER (единая десктопная разметка header.php)
   -------------------------------------------------------------------------
   Подключать ПОСЛЕ style.css:
   <link rel="stylesheet" href="/css/mobile-header-responsive.css?v=2">

   Больше нет отдельного "мобильного" HTML (Mobile_Detect убран) — вся
   адаптация под маленькие экраны идёт через CSS ниже. Новые элементы
   (.mob_head_icons, .mob_burger_btn, .mob_bottom_nav) уже присутствуют
   в разметке всегда, но скрыты на десктопе и появляются только при
   уменьшении ширины экрана.
   ========================================================================= */

/* Новые мобильные элементы скрыты на десктопе по умолчанию */
.mob_head_icons,
.mob_burger_btn,
.mob_bottom_nav,
.mob_search_trigger {
  display: none;
}

@media only screen and (max-width: 850px) {

  /* ---------------------------------------------------------------------
     0. Место под фиксированное нижнее меню
     --------------------------------------------------------------------- */
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* ---------------------------------------------------------------------
     1. Верхняя строка header_top (валюта/язык/приложения) и старые
        текстовые ссылки нижней строки — скрываем, их дублирует нижнее меню
     --------------------------------------------------------------------- */
  #myHeader .header_top,
  #myHeader ul.he_bot_a_ul,
  #myHeader ul.he_bot_a_ul_second {
    display: none !important;
  }

  /* ---------------------------------------------------------------------
     2. header_middle: логотип по центру, слева — акции/звонок,
        справа — поиск + бургер (каталог)
     --------------------------------------------------------------------- */
  #myHeader .header_middle .wrapper {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 8px;
    padding: 8px 0;
  }

  #myHeader .mob_head_icons {
    grid-column: 1;
    display: flex !important;
    align-items: center;
    gap: 4px;
  }

  #myHeader .mob_head_icons__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #myHeader .header_left {
    grid-column: 2;
    justify-self: center;
  }

  #myHeader .header-item-left {
    justify-content: center;
  }

  #myHeader .brand .log_top img {
    width: auto;
    height: 26px;
  }

  #myHeader .header-item-left_mix {
    grid-column: 3;
    display: flex !important;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
  }

  /* Скрываем бонусы/аккаунт/избранное/корзину в шапке — они теперь внизу */
  #myHeader .header-item-left_mix .head_right {
    display: none !important;
  }

  /* ---- Иконка поиска в шапке — открывает полноэкранный слайд ---- */
  #myHeader .mob_search_trigger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: transparent !important;
    border: none;
    padding: 0 !important;
  }

  /* Сам блок поиска на мобильном скрыт, пока не открыт триггером */
  #myHeader .header-search.search-catalog__block {
    display: none;
  }

  #myHeader .header-search.search-catalog__block.is-mob-open {
    display: flex !important;
    align-items: center;
    gap: 6px;
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    max-width: none;
    height: 58px;
    padding: 0 12px !important;
    margin: 0;
    background: #fff;
    z-index: 100002;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    border: none !important;
    border-radius: 0;
  }

  #myHeader .mob_search_back {
    display: none;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: #171717;
  }

  #myHeader .header-search.search-catalog__block.is-mob-open .mob_search_back {
    display: flex;
  }

  #myHeader .header-search.search-catalog__block.is-mob-open .search_input {
    flex: 1;
    width: auto;
    height: 40px;
    padding: 0 10px !important;
    border: 1px solid #eee !important;
    border-radius: 6px;
    font-size: 15px;
  }

  #myHeader .header-search__search-submit-btn {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  #myHeader .header-search.search-catalog__block.is-mob-open .search_five_res {
    position: fixed;
    left: 0;
    right: 0;
    top: 58px;
    bottom: 0;
    overflow-y: auto;
    background: #fff;
    z-index: 100001;
  }

  body.mob-search-open {
    overflow: hidden;
  }

  /* ---- Бургер (каталог) — переиспользует существующую панель #myDropdown ---- */
  #myHeader .mob_burger_btn {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: transparent !important;
    border: none;
    padding: 0 !important;
  }

  #myHeader .mob_burger_btn i {
    display: block;
    width: 20px;
    height: 2px;
    background: #121212;
    border-radius: 2px;
  }

  /* Панель каталога поверх контента на маленьком экране */
  #myHeader .sub_cat.catalog_menu .dropdown-content,
  #myHeader #myDropdown {
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    width: 100% !important;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

}

/* ---------------------------------------------------------------------
   3. Нижнее фиксированное меню (Главная / Каталог / Корзина /
      Избранное / Профиль)
   --------------------------------------------------------------------- */
@media only screen and (max-width: 850px) {
  .mob_bottom_nav {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
    align-items: stretch;
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mob_bottom_nav__item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 2px 6px;
    font-size: 10.5px;
    line-height: 1.1;
    color: #6b6b6b;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
  }

  .mob_bottom_nav__item span {
    white-space: nowrap;
  }

  .mob_bottom_nav__icon {
    width: 22px;
    height: 22px;
    color: #6b6b6b;
  }

  .mob_bottom_nav__icon--avatar {
    border-radius: 50%;
  }

  .mob_bottom_nav__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mob_bottom_nav__badge {
    position: absolute;
    top: -6px;
    right: -9px;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    border-radius: 15px;
    background: #b4152c;
    color: #fff;
    font-size: 9px;
    line-height: 15px;
    text-align: center;
  }

  .mob_bottom_nav__item.is-active,
  .mob_bottom_nav__item.is-active .mob_bottom_nav__icon {
    color: #b4152c;
  }
}

/* Совсем маленькие экраны — компактнее подписи в нижнем меню */
@media only screen and (max-width: 360px) {
  .mob_bottom_nav__item {
    font-size: 9.5px;
    padding: 6px 1px 5px;
  }
  .mob_bottom_nav__icon {
    width: 20px;
    height: 20px;
  }
}

/* =========================================================================
   4. Круглая кнопка "Корзина" в нижнем меню — цветами сайта
   ========================================================================= */
@media only screen and (max-width: 850px) {

  .mob_bottom_nav__item--cart {
    position: relative;
  }

  .mob_bottom_nav__fab {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e2c386, #c9a15c);
    box-shadow: 0 6px 14px rgba(201, 161, 92, 0.55), 0 2px 4px rgba(0, 0, 0, 0.12);
    margin-top: -22px;
    border: 3px solid #fff;
  }

  .mob_bottom_nav__icon--fab {
    filter: brightness(0) invert(1);
  }

  .mob_bottom_nav__item--cart span:last-child {
    margin-top: 1px;
    color: #171717;
    font-weight: 600;
  }

  .mob_bottom_nav__item--cart .mob_bottom_nav__badge {
    top: -26px;
    right: -2px;
    background: #b4152c;
    border: 2px solid #fff;
  }

}

/* =========================================================================
   5. Слайд-меню бургера (справа налево): телефон / адрес / каталог
   ========================================================================= */

.mob_side_overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 100000;
}

.mob_side_overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mob_side_menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86%, 380px);
  background: #fff;
  z-index: 100001;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 30px rgba(0,0,0,.18);
}

.mob_side_menu.is-open {
  transform: translateX(0);
}

.mob_side_menu__screens {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.mob_side_screen {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  padding-bottom: 24px;
}

.mob_side_screen.is-active {
  transform: translateX(0);
}

.mob_side_screen.is-prev {
  transform: translateX(-100%);
}

.mob_side_menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 14px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.mob_side_menu__title {
  font-size: 15px;
  font-weight: 600;
  color: #171717;
  flex: 1;
  text-align: center;
}

.mob_side_back,
.mob_side_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #171717;
  flex-shrink: 0;
}

.mob_side_close {
  font-size: 22px;
  line-height: 1;
}

.mob_side_contact {
  padding: 12px 14px;
  border-bottom: 8px solid #f5f5f5;
}

.mob_side_contact__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: #171717;
  font-size: 13.5px;
}

.mob_side_contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f6efe1;
  color: #c9a15c;
  flex-shrink: 0;
}

.mob_side_catalog {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.mob_side_catalog--sub {
  padding-top: 10px;
}

.mob_side_catalog__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  color: #171717;
  font-size: 14px;
  text-align: left;
}

.mob_side_catalog__arrow {
  display: flex;
  color: #b7b7b7;
  flex-shrink: 0;
}

.mob_side_catalog--sub li a {
  display: block;
  padding: 12px 14px;
  color: #171717;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
}

.mob_side_catalog__seeall {
  font-weight: 600;
  color: #b4152c !important;
}

.mob_side_links {
  list-style: none;
  margin: 0;
  padding: 4px 0 10px;
  border-top: 8px solid #f5f5f5;
}

.mob_side_links a {
  display: block;
  padding: 11px 14px;
  color: #5c5c5c;
  font-size: 13.5px;
}

body.mob-side-open {
  overflow: hidden;
}

@media only screen and (min-width: 851px) {
  .mob_side_overlay,
  .mob_side_menu {
    display: none !important;
  }
}

/* =========================================================================
   6. Экран "Магазины на карте" (полный экран) + шторка карточки магазина
      (наполовину экрана, снизу вверх)
   ========================================================================= */

.mob_stores_screen {
  position: fixed;
  inset: 0;
  z-index: 100010;
  background: #fff;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mob_stores_screen.is-open {
  transform: translateX(0);
}

.mob_stores_map {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 260px;
  background: linear-gradient(135deg, #f3ead7, #e7d6ae);
  overflow: hidden;
}

.mob_stores_map__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mob_stores_map__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3ead7, #e7d6ae);
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 1;
}

.mob_stores_map__loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mob_stores_map__spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid rgba(23,23,23,.15);
  border-top-color: #c9a15c;
  animation: mobStoresSpin .8s linear infinite;
}

@keyframes mobStoresSpin {
  to { transform: rotate(360deg); }
}

.mob_stores_list {
  list-style: none;
  margin: 0;
  padding: 6px 0 20px;
}

.mob_stores_list__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  border-left: 3px solid transparent;
  text-align: left;
  transition: background .2s ease, border-color .2s ease;
}

.mob_stores_list__item.is-active {
  background: #faf5ea;
  border-left-color: #c9a15c;
}

.mob_stores_list__pin {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e2c386, #c9a15c);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(201,161,92,.45);
}

.mob_stores_list__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mob_stores_list__name {
  font-size: 14px;
  font-weight: 600;
  color: #171717;
}

.mob_stores_list__addr {
  font-size: 12.5px;
  color: #8a8a8a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mob_stores_list__arrow {
  flex-shrink: 0;
  color: #c2c2c2;
}

body.mob-stores-open {
  overflow: hidden;
}

/* ---- Шторка карточки магазина: снизу вверх, наполовину экрана ---- */

.mob_store_sheet_overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 100019;
}

.mob_store_sheet_overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mob_store_sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50vh;
  max-height: 50vh;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -12px 30px rgba(0,0,0,.2);
  z-index: 100020;
  transform: translateY(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.mob_store_sheet.is-open {
  transform: translateY(0);
}

.mob_store_sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: #e2e2e2;
  margin: 10px auto 4px;
  flex-shrink: 0;
}

.mob_store_sheet__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 18px 22px;
}

.mob_store_sheet__pane {
  display: none;
}

.mob_store_sheet__pane.is-active {
  display: block;
}

.mob_store_sheet__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0 14px;
}

.mob_store_sheet__pin {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e2c386, #c9a15c);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob_store_sheet__name {
  flex: 1;
  font-size: 15.5px;
  font-weight: 700;
  color: #171717;
}

.mob_store_sheet__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: #171717;
  font-size: 13.5px;
  border-bottom: 1px solid #f2f2f2;
}

.mob_store_sheet__row--address {
  align-items: flex-start;
}

.mob_store_sheet__row--address .mob_side_contact__icon {
  margin-top: 1px;
}

.mob_store_sheet__routes {
  display: flex;
  gap: 10px;
  padding: 12px 0;
}

.mob_store_sheet__route {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1px solid #eee;
  border-radius: 8px;
  color: #171717;
  font-size: 13px;
  font-weight: 600;
}

.mob_store_sheet__hours {
  padding-top: 8px;
}

.mob_store_sheet__hours-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 6px;
}

.mob_store_sheet__hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: #5c5c5c;
  border-bottom: 1px solid #f7f7f7;
}

.mob_store_sheet__hours-row b {
  color: #171717;
  font-weight: 600;
}

@media only screen and (min-width: 851px) {
  .mob_stores_screen,
  .mob_store_sheet_overlay,
  .mob_store_sheet {
    display: none !important;
  }
}

/* =========================================================================
   7. Бонусы в шапке на мобильном — плавающий чип под шапкой + карточка
      в бургер-меню
   ========================================================================= */

.mob_bonus_chip {
  display: none;
}

@media only screen and (max-width: 850px) {

  .mob_bonus_chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: fixed;
    top: 44px;
    right: 14px;
    z-index: 99997;
    padding: 4px 10px 4px 6px;
    border-radius: 999px;
    background: linear-gradient(145deg, #efd9a8, #c9a15c);
    color: #171717;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(201, 161, 92, 0.45), 0 0 0 2px #fff;
  }

  .mob_bonus_chip__icon {
    display: flex;
    color: #fff;
  }

  .mob_bonus_chip__value {
    letter-spacing: .2px;
  }

}

.mob_bonus_card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 14px 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(120deg, #fbf3e2, #f0dfb8 60%, #e6cd94);
  box-shadow: 0 4px 14px rgba(201, 161, 92, 0.28);
}

.mob_bonus_card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e2c386, #c9a15c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(201, 161, 92, 0.5);
}

.mob_bonus_card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mob_bonus_card__label {
  font-size: 12px;
  color: #7a6a4a;
}

.mob_bonus_card__value {
  font-size: 17px;
  font-weight: 700;
  color: #171717;
}

.mob_bonus_card__arrow {
  flex-shrink: 0;
  color: #b7a06a;
}

.mob_bonus_chip,
.mob_bonus_card {
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

/* =========================================================================
   8. Шторка описания бонусов: снизу вверх, по высоте контента
   ========================================================================= */

.mob_bonus_sheet_overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 100019;
}

.mob_bonus_sheet_overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mob_bonus_sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 70vh;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -12px 30px rgba(0,0,0,.2);
  z-index: 100020;
  transform: translateY(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mob_bonus_sheet.is-open {
  transform: translateY(0);
}

.mob_bonus_sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: #e2e2e2;
  margin: 10px auto 4px;
  flex-shrink: 0;
}

.mob_bonus_sheet__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 14px;
  border-bottom: 1px solid #f2f2f2;
}

.mob_bonus_sheet__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e2c386, #c9a15c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(201, 161, 92, 0.5);
}

.mob_bonus_sheet__balance {
  flex: 1;
  font-size: 14.5px;
  color: #171717;
}

.mob_bonus_sheet__balance b {
  color: #c9a15c;
}

.mob_bonus_sheet__body {
  padding: 16px 18px 6px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a4a4a;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mob_bonus_sheet__cta {
  display: block;
  margin: 14px 18px 18px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(145deg, #e2c386, #c9a15c);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 4px 12px rgba(201, 161, 92, 0.4);
  flex-shrink: 0;
}

@media only screen and (min-width: 851px) {
  .mob_bonus_sheet_overlay,
  .mob_bonus_sheet {
    display: none !important;
  }
}

/* =========================================================================
   9. Иконки мессенджеров в бургер-меню (под номером телефона)
   ========================================================================= */

.mob_side_messengers {
  display: none;
}

@media only screen and (max-width: 850px) {

  .mob_side_messengers {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0 10px;
  }

  .mob_side_messengers__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform .15s ease;
  }

  .mob_side_messengers__item:active {
    transform: scale(.92);
  }

  .mob_side_messengers__item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
  }

}

/* =========================================================================
   10. Валюта и язык в бургер-меню
   ========================================================================= */

.mob_side_settings {
  display: none;
}

@media only screen and (max-width: 850px) {

  .mob_side_settings {
    display: block;
    margin: 8px 14px 18px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
  }

  .mob_side_settings__group {
    margin-bottom: 14px;
  }

  .mob_side_settings__group:last-child {
    margin-bottom: 0;
  }

  .mob_side_settings__title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 8px;
  }

  .mob_side_currency {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mob_side_currency__item {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #171717;
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid transparent;
  }

  .mob_side_currency__item.is-active {
    background: linear-gradient(145deg, #efd9a8, #c9a15c);
    color: #fff;
    box-shadow: 0 3px 8px rgba(201, 161, 92, 0.4);
  }

  .mob_side_lang {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mob_side_lang__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color .15s ease, transform .15s ease;
  }

  .mob_side_lang__item.is-active {
    border-color: #c9a15c;
    box-shadow: 0 2px 8px rgba(201, 161, 92, 0.35);
  }

  .mob_side_lang__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

}