.m-header {
  display: none;
}
.m-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
  background: #ffffff;
}
.m-header__burger, .m-header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  color: #132727;
  cursor: pointer;
}
.m-header__burger svg, .m-header__action svg {
  display: block;
}
.m-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.m-header__logo img {
  max-height: 28px;
  width: auto;
}
.m-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.m-header__action {
  position: relative;
}
.m-header__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #f6988f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .m-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    min-height: 0;
    padding: 0;
    box-shadow: 0 1px 0 #ececec, 0 4px 12px rgba(19, 39, 39, 0.07);
  }
}
.m-menu {
  display: none;
}
@media (max-width: 767px) {
  body.m-scroll-lock {
    overflow: hidden;
  }
  .m-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    pointer-events: none;
  }
  .m-menu.is-open {
    visibility: visible;
    pointer-events: auto;
  }
}
.m-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 39, 39, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.m-menu.is-open .m-menu__overlay {
  opacity: 1;
}
.m-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(84vw, 320px);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}
.m-menu.is-open .m-menu__panel {
  transform: translateX(0);
}
.m-menu__header {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 4px 0 16px;
  border-bottom: 1px solid #ececec;
}
.m-menu__logo {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 15px;
  font-weight: 700;
  color: #2b2b2b;
}
.m-menu__logo img {
  max-height: 28px;
  width: auto;
}
.m-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.m-menu__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.m-menu__section {
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
}
.m-menu__list, .m-menu__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-menu__item + .m-menu__item {
  border-top: 1px solid #ececec;
}
.m-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.m-menu__link--toggle {
  width: 100%;
  justify-content: space-between;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.m-menu__link-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.m-menu__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.m-menu__item.is-open .m-menu__chevron {
  transform: rotate(180deg);
}
.m-menu__link--heading {
  color: #8b8b8b;
  cursor: default;
}
.m-menu__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.m-menu__icon svg {
  width: 100%;
  height: 100%;
}
.m-menu__sublist {
  padding-left: 30px;
}
.m-menu__sublink {
  display: block;
  padding: 8px 0;
  color: #2b2b2b;
  font-size: 13px;
  text-decoration: none;
}
.m-menu__sublink--all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.m-menu__sublink-arrow {
  flex-shrink: 0;
}
.m-menu__subheading {
  display: block;
  margin-top: 10px;
  padding: 12px 0 2px;
  border-top: 1px solid #ececec;
  color: #8b8b8b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.m-menu__sublist > li:first-child .m-menu__subheading {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.m-menu__row {
  display: block;
  padding: 10px 0;
  color: #2b2b2b;
  font-size: 14px;
  text-decoration: none;
}
.m-menu__row:first-child {
  padding-top: 0;
}
.m-menu__row:last-child {
  padding-bottom: 0;
}
.m-menu__row--pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 24px;
}
.m-menu__row-label {
  color: #8b8b8b;
  font-size: 13px;
}
.m-menu__row-value {
  color: #2b2b2b;
  font-weight: 600;
  white-space: nowrap;
}
.m-menu__row-arrow {
  flex-shrink: 0;
}
.m-menu__city {
  min-width: 0;
  text-align: right;
}
.m-menu__city .geoip-module {
  margin: 0;
}
.m-menu__city .geoip-title-zone {
  display: none;
}
.m-menu__city .geoip-text {
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
  cursor: pointer;
}
.m-menu__city a.zone {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed #8b8b8b;
  cursor: pointer;
}
@media (max-width: 767px) {
  .modal:has(.geoip-choose-region) {
    z-index: 1200;
  }
}
.m-tabbar {
  display: none;
}
.m-tabbar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid #ececec;
}
.m-tabbar__item {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 0;
  background: none;
  border: none;
  color: #132727;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.m-tabbar__item svg {
  display: block;
}
.m-tabbar__label {
  color: #2b2b2b;
}
@media (max-width: 767px) {
  .m-tabbar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0));
  }
}
.m-search-overlay {
  display: none;
}
@media (max-width: 767px) {
  .m-search-overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: #ffffff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .m-search-overlay.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.m-search-overlay__header {
  display: flex;
  flex: none;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 12px;
  border-bottom: 1px solid #ececec;
}
.m-search-overlay__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.m-search-overlay__form {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
}
.m-search-overlay__input {
  flex: 1 1 auto;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ececec;
  border-radius: 8px;
  font-size: 14px;
  color: #2b2b2b;
}
.m-search-overlay__input:focus {
  border-color: #132727;
  outline: none;
}
.m-search-overlay__submit, .m-search-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  color: #132727;
  cursor: pointer;
}
.m-search-results {
  padding: 8px 16px 16px;
}
.m-search-results__group + .m-search-results__group {
  margin-top: 8px;
  border-top: 1px solid #ececec;
}
.m-search-results__heading {
  display: block;
  padding: 12px 0 4px;
  color: #8b8b8b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.m-search-results__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #2b2b2b;
  font-size: 14px;
  text-decoration: none;
}
.m-search-results__thumb {
  flex: none;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.m-search-results__name {
  min-width: 0;
}
.m-search-results__all {
  display: block;
  margin-top: 12px;
  padding: 12px 0;
  border-top: 1px solid #ececec;
  color: #132727;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.m-search-results__empty {
  margin: 0;
  padding: 16px 0;
  color: #8b8b8b;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  #top, #container > header {
    display: none !important;
  }
}
