:root {
  --red: #f2394d;
  --text: #333;
  --muted: #888;
  --line: #e6e6e6;
  --bg: #F5F5F5;
  --font: 'Rubik', 'PT Sans', 'Noto Sans Georgian', 'Noto Sans Armenian', 'Noto Sans', 'Trebuchet MS', sans-serif;
  --gutter: 100px;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-family: var(--font);
  color: var(--text);
  background: #F5F5F5;
  line-height: 1.45;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
a { color: #1e85c7; text-decoration: none; }
a:hover { text-decoration: underline; }

.page {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  background: #F5F5F5;
  min-height: 100vh;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-inline: 0;
  box-sizing: border-box;
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  padding: 18px var(--gutter) 12px;
  box-sizing: border-box;
  overflow-anchor: none;
}
.header-bar-spacer {
  height: 86px;
  flex-shrink: 0;
}
.header {
  border-bottom: 0;
  background: #F5F5F5;
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 0;
  padding-bottom: 12px;
  overflow-anchor: none;
}
.header__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  flex-wrap: wrap;
  width: 100%;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  top: -3px;
  margin-inline-end: calc(14px * 0.3);
}
.logo img {
  display: block;
  height: 48px;
  width: auto;
}
.logo:hover { text-decoration: none; }

.btn-firms {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  margin-inline-end: calc(14px * 0.3);
}
.btn-firms:hover {
  text-decoration: none;
  filter: brightness(0.96);
  color: #fff;
}
.btn-firms__icon {
  width: 18px;
  height: 18px;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(600px, 100%);
  max-width: 600px;
  flex: 1 1 220px;
  height: 44px;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: #fff;
  overflow: visible;
  min-width: 0;
}
.search__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 12px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: transparent;
}
.search__input::placeholder { color: #9a9a9a; }
.search__input::-webkit-search-cancel-button { display: none; }
.search__clear {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #4a4a4a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.search__clear[hidden] { display: none !important; }
.search__submit {
  flex-shrink: 0;
  width: 48px;
  height: 100%;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search__submit:hover { filter: brightness(0.96); }
.search__submit svg {
  width: 20px;
  height: 20px;
}
.search__suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: -2px;
  right: -2px;
  z-index: 80;
  max-height: min(70vh, 420px);
  overflow: auto;
  background: #fff;
  border: 1px solid #e6e8ec;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(32, 33, 36, 0.16);
  padding: 6px 0;
}
.search__suggest[hidden] {
  display: none !important;
}
.search__suggest-group {
  padding: 4px 0;
}
.search__suggest-group + .search__suggest-group {
  border-top: 1px solid #f1f3f4;
}
.search__suggest-label {
  margin: 0;
  padding: 6px 14px 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #80868b;
}
.search__suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-sizing: border-box;
}
.search__suggest-item:hover,
.search__suggest-item.is-active {
  background: #f8f9fa;
}
.search__suggest-item__media {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f3f4;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  font-size: 12px;
  font-weight: 700;
}
.search__suggest-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search__suggest-item__body {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search__suggest-item__title {
  font-size: 14px;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search__suggest-item__meta {
  font-size: 12px;
  color: #80868b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search__suggest-item__badge {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: #f1f3f4;
  color: #5f6368;
}
.search__suggest-item__badge--platinum {
  background: #eceff1;
  color: #37474f;
}
.search__suggest-item__badge--gold {
  background: #fff8e1;
  color: #b28704;
}
.search__suggest-item__badge--vip {
  background: #fce8e6;
  color: #c5221f;
}
.search__suggest-empty {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
  color: #80868b;
}
.search-page__empty {
  margin: 24px 0;
  font-size: 16px;
  color: #5f6368;
}
.search-page__list {
  margin-top: 12px;
}

.header__actions {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.header-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  min-width: 54px;
  color: #555;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.1;
}
.header-action:hover {
  color: var(--red);
  text-decoration: none;
}
.header-action.is-active {
  color: var(--red);
}
.header-action svg {
  width: 24px;
  height: 24px;
}
.header-action span {
  white-space: nowrap;
}
button.header-action {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
}

/* Модальное окно входа/регистрации */
.auth-modal[hidden] { display: none !important; }
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(2px);
}
.auth-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
  padding: 28px 28px 24px;
}
.auth-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #b0b0b0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 34px;
  height: 34px;
}
.auth-modal__close:hover { color: #666; }
.auth-modal__pane[hidden] { display: none !important; }
.auth-modal__title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 500;
  color: #222;
  text-align: center;
}

.auth-form__field {
  display: block;
  margin-bottom: 14px;
}
.auth-form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #666;
}
.auth-form__input {
  width: 100%;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  color: #222;
}
.auth-form__input:focus { border-color: var(--red); }
.auth-form__input::placeholder { color: #bbb; }

.auth-form__pass {
  position: relative;
  display: block;
}
.auth-form__pass .auth-form__input {
  padding-right: 44px;
}
.auth-form__eye {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #999;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 6px;
}
.auth-form__eye:hover { color: #555; }
.auth-form__eye svg {
  width: 20px;
  height: 20px;
}
.auth-form__eye.is-on { color: var(--red); }
.auth-form__eye .auth-form__eye-off[hidden],
.auth-form__eye .auth-form__eye-open[hidden] {
  display: none !important;
}

.auth-form__msg {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  background: #fdecec;
  color: #b42318;
  border: 1px solid #f4c7c3;
}
.auth-form__msg[hidden] { display: none !important; }
.auth-form__msg.is-ok {
  background: #e6f6ec;
  color: #1c7a3d;
  border-color: #b6e3c4;
}

.auth-form__submit {
  width: 100%;
  height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  transition: opacity .15s ease;
}
.auth-form__submit:hover { opacity: .9; }
.auth-form__submit:disabled { opacity: .6; cursor: default; }

.auth-modal__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.auth-modal__link {
  border: 0;
  background: transparent;
  color: #666;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 4px;
}
.auth-modal__link:hover { color: var(--red); }
.auth-modal__link--strong { color: var(--red); font-size: 15px; }
.auth-form__forgot {
  margin: -4px 0 12px;
}
.auth-form__forgot .auth-modal__link {
  padding-left: 0;
}

/* Личный кабинет */
.cabinet {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin: 8px 0 40px;
}
.cabinet__nav {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  padding: 18px 16px;
}
.cabinet__nav-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}
.cabinet__menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cabinet__menu-link {
  display: block;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}
.cabinet__menu-link:hover,
.cabinet__menu-link.is-active {
  background: #fff;
  color: var(--red);
}
.user-menu__logout-form {
  margin: 0;
}
.cabinet__logout-form {
  margin: 0;
}
.cabinet__logout-form .cabinet__menu-link {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
}
.cabinet__lead { margin: 0 0 18px; color: #555; }
.cabinet__empty { color: #777; line-height: 1.5; }
.cabinet__empty a { color: var(--red); }
.cabinet-addresses {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}
.cabinet-addresses__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  background: #fff;
}
.cabinet-addresses__slot {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #80868b;
  margin-bottom: 4px;
}
.cabinet-addresses__label {
  font-size: 15px;
  color: #202124;
  line-height: 1.35;
}
.cabinet-addresses__org {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--red);
}
.cabinet-addresses__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.cabinet-addresses__map,
.cabinet-addresses__delete {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  color: #5f6368;
  text-decoration: none;
}
.cabinet-addresses__map:hover { color: var(--red); }
.cabinet-addresses__delete { color: #c5221f; }
.cabinet-addresses__delete:hover { text-decoration: underline; }
.cabinet__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 480px;
}
.cabinet__cards a {
  display: block;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: #222;
}
.cabinet__cards a:hover {
  border-color: var(--red);
  color: var(--red);
}
.cabinet__flash {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 4px;
}
.cabinet__flash--ok { background: #eaf8ee; color: #1b6b34; }
.cabinet__flash--error { background: #fdeeee; color: #a32020; }
.cabinet-form {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cabinet-form__field { display: block; }
.cabinet-form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #666;
}
.cabinet-form__input {
  width: 100%;
  box-sizing: border-box;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  font: inherit;
}
.cabinet-form__input:focus { outline: none; border-color: var(--red); }
.cabinet-form__input[readonly] { background: #f5f5f5; color: #666; }
.cabinet-form__hint { margin: 0; font-size: 14px; }
.cabinet-form__submit {
  align-self: flex-start;
  height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.cabinet-form__submit:hover { opacity: .92; }
.cabinet-form .auth-form__pass .cabinet-form__input {
  padding-right: 44px;
}
.org-card__fav {
  border: 0;
  background: transparent;
  color: #bbb;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.org-card__fav:hover,
.org-card__fav.is-active { color: var(--red); }
.org-premium__action.is-active {
  color: var(--red);
  border-color: var(--red);
}
@media (max-width: 860px) {
  .cabinet {
    grid-template-columns: 1fr;
  }
}

.user-menu {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
}
.user-menu__btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.1;
  color: #555;
  appearance: none;
  -webkit-appearance: none;
}
.user-menu__btn svg {
  width: 24px;
  height: 24px;
}
.user-menu__btn span {
  font-size: 11px;
  line-height: 1.1;
  font-weight: 400;
}
.user-menu__dropdown {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 210;
  width: min(320px, calc(100vw - 24px));
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 20px 0;
  background: #2f3136;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  direction: rtl; /* шкала прокрутки слева */
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .45) transparent;
}
.user-menu-overlay[hidden] { display: none !important; }
.user-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: block;
}
.user-menu-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(2px);
}
.user-menu__dropdown > * {
  direction: ltr;
}
.user-menu__dropdown::-webkit-scrollbar {
  width: 6px;
}
.user-menu__dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.user-menu__dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .4);
  border-radius: 8px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.user-menu__dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, .55);
}
.user-menu__dropdown[hidden] { display: none !important; }
.user-menu__dropdown,
.user-menu__dropdown a,
.user-menu__dropdown button,
.user-menu__dropdown span,
.user-menu__dropdown em {
  font-family: var(--font);
  font-weight: 300 !important;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
.user-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 6px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300 !important;
  line-height: 1.2;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  box-sizing: border-box;
}
.user-menu__item:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
}
.user-menu__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #fff;
}
.user-menu__item span {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 300 !important;
}
.user-menu__hint {
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
}
.user-menu__sep {
  height: 1px;
  margin: 2px 0;
  background: rgba(255, 255, 255, .12);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
  flex-wrap: wrap;
  width: 100%;
}
.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  justify-content: center;
}
.menu a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.menu a:hover { color: var(--red); text-decoration: none; }
.menu-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.menu-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.menu-drop__btn:hover,
.menu-drop.is-open .menu-drop__btn {
  color: var(--red);
}
.menu-drop__caret {
  font-size: 11px;
  line-height: 1;
  opacity: .75;
}
.menu-drop__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  min-width: 280px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
  overflow: hidden;
}
.menu-drop__list[hidden] {
  display: none !important;
}
.menu-drop__item {
  display: block;
  padding: 10px 16px;
  color: #222 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  white-space: nowrap;
  text-decoration: none;
}
.menu-drop__item:hover {
  background: #f7f7f7;
  color: var(--red) !important;
}

.city-weather {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
}
.city-weather__city,
.city-weather__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
.city-weather__meta:hover {
  color: var(--red);
  text-decoration: none;
}
.city-weather__city {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.city-weather__city:hover {
  color: var(--red);
}
.city-weather svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.city-weather__sun { color: #f5a623; }
.city-weather__meta strong { font-weight: 700; }

.lang-open {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.city-modal[hidden] { display: none !important; }
.city-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.city-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(2px);
}
.city-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(560px, calc(100vh - 40px));
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
  overflow: hidden;
  box-sizing: border-box;
}
.city-modal__dialog--split {
  width: min(800px, 100%);
  height: 600px;
  max-height: min(600px, calc(100vh - 40px));
}
.city-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 10px;
  flex: 0 0 auto;
}
.city-modal__head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  color: #222;
}
.city-modal__close {
  border: 0;
  background: transparent;
  color: #b0b0b0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}
.city-modal__close:hover { color: #666; }
.city-modal__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.city-modal__search {
  position: relative;
  margin: 0 20px 12px;
  flex: 0 0 auto;
}
.city-modal__input {
  width: 100%;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 42px 0 12px;
  font: inherit;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}
.city-modal__input:focus { border-color: var(--red); }
.city-modal__search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #c0c0c0;
  pointer-events: none;
}
.city-modal__split {
  display: flex;
  align-items: stretch;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.city-modal__list {
  overflow-y: auto;
  padding: 0 8px 12px 20px;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}
.city-modal__list::-webkit-scrollbar { width: 6px; }
.city-modal__list::-webkit-scrollbar-track { background: transparent; }
.city-modal__list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
.city-modal__item {
  display: block;
  padding: 10px 12px 10px 0;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.city-modal__city-name {
  display: block;
}
.city-modal__subs {
  display: block;
  margin-top: 2px;
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.city-modal__item:hover .city-modal__subs,
.city-modal__item.is-active .city-modal__subs {
  color: #b88;
}
.city-modal__item:hover,
.city-modal__item.is-active {
  color: var(--red);
  text-decoration: none;
}
.city-modal__item:hover .city-modal__city-name,
.city-modal__item.is-active .city-modal__city-name {
  color: var(--red);
}
.city-modal__item[hidden] { display: none !important; }
.city-modal__countries {
  flex: 0 0 168px;
  width: 168px;
  border-left: 1px solid #eee;
  overflow-y: auto;
  padding: 0 0 12px;
  background: #fafafa;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}
.city-modal__countries::-webkit-scrollbar { width: 6px; }
.city-modal__countries::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
.city-modal__country {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 11px 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.3;
  color: #222;
  cursor: pointer;
}
.city-modal__country:hover:not(.is-active) {
  background: #f0f0f0;
}
.city-modal__country.is-active {
  background: var(--red);
  color: #fff;
}
@media (max-width: 560px) {
  .city-modal__dialog--split {
    width: min(800px, 100%);
    height: min(600px, calc(100vh - 24px));
  }
  .city-modal__split {
    flex-direction: column;
  }
  .city-modal__countries {
    flex: 0 0 auto;
    width: 100%;
    max-height: 140px;
    border-left: 0;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 10px 10px;
    gap: 6px;
  }
  .city-modal__country {
    flex: 0 0 auto;
    width: auto;
    border-radius: 6px;
    padding: 8px 12px;
    white-space: nowrap;
  }
}

.popular {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  width: 100%;
  overflow: visible;
  background: transparent;
}
.popular-slider {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.popular__arrow {
  position: static;
  z-index: 3;
  flex-shrink: 0;
  width: 48px;
  height: 96px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #333;
  font-size: 66px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transform: translateY(-15px);
  opacity: 1;
}
.popular__arrow:hover {
  color: var(--red);
}
.popular__arrow[hidden] {
  visibility: hidden;
  pointer-events: none;
}
.popular__arrow--prev,
.popular__arrow--next {
  left: auto;
  top: auto;
}
.popular__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: 14px;
  margin-block: -14px;
}
.popular__viewport::-webkit-scrollbar { display: none; }
.popular__track {
  display: flex;
  gap: 14px;
  width: max-content;
  align-items: flex-start;
  padding-block: 2px;
}
.popular__item {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text);
  text-align: center;
  flex-shrink: 0;
}
.popular__item:hover {
  text-decoration: none;
  color: var(--red);
}
.popular__circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease;
  overflow: visible;
  box-sizing: border-box;
}
.popular__item:hover .popular__circle {
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.2);
}
.popular__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.popular__name {
  font-size: 11px;
  line-height: 1.25;
  max-width: 100px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn--catalog, .btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--catalog:hover, .btn--primary:hover {
  text-decoration: none;
  filter: brightness(0.95);
}
.btn--catalog.is-active {
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--red);
}

.main {
  padding: clamp(16px, 3vw, 32px) 0 clamp(32px, 5vw, 56px);
  min-height: 60vh;
  width: 100%;
}
.main--home {
  min-height: 0;
  padding: 0;
}
.hero {
  padding: clamp(24px, 5vw, 48px) 0 24px;
  max-width: min(640px, 100%);
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 32px);
}
.hero p { color: var(--muted); margin: 0 0 20px; }

.breadcrumbs {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}
.breadcrumbs span { margin: 0 6px; }
.lead { color: var(--muted); margin-top: -6px; }

h1 {
  font-size: clamp(22px, 3.5vw, 30px);
  margin: 0 0 12px;
  overflow-wrap: anywhere;
}
.page-heading {
  color: #444444;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 5px;
  overflow-wrap: anywhere;
}
.orgs-page-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin: 0 0 5px;
}
.orgs-page-title .page-heading {
  margin: 0;
}
.orgs-map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #2a6bb5;
  font-size: 16px; /* page-heading 20px − 4px */
  font-weight: 600;
  line-height: 1.3;
  text-decoration: underline;
  white-space: nowrap;
}
.orgs-map-link:hover {
  color: #1e5a9c;
}
.orgs-map-link__icon {
  flex: 0 0 auto;
  display: block;
  width: 16px;
  height: 16px;
}
@media (max-width: 640px) {
  .orgs-map-link {
    display: none !important;
  }
}
.orgs-seo {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}
.orgs-seo li {
  position: relative;
  padding-left: 0.9em;
  margin: 0 0 2px;
}
.orgs-seo li::before {
  content: '–';
  position: absolute;
  left: 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1.5vw, 14px);
  margin-top: 18px;
  width: 100%;
}
.cat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 2vw, 16px);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: inherit;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  transition: border-color .15s, box-shadow .15s, background .15s;
  min-width: 0;
}
.cat-card:hover {
  text-decoration: none;
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(242, 57, 77, .08);
  z-index: 2;
}
.cat-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transition: transform .25s ease;
  transform-origin: center center;
  position: relative;
  z-index: 1;
}
.cat-card:hover .cat-card__media {
  transform: scale(1.2);
}
.cat-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.cat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff0f2;
  color: var(--red);
}
.cat-icon {
  width: 24px;
  height: 24px;
  display: block;
}
.cat-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cat-card__title {
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 15px);
  overflow-wrap: anywhere;
}
.cat-card__meta { color: var(--muted); font-size: 12px; }

.category-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.category-head h1 { margin: 0 0 4px; }
.category-head .lead { margin: 0; }
.category-head__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.category-head__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.category-head__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff0f2;
  color: var(--red);
}
.category-head__icon .cat-icon {
  width: 28px;
  height: 28px;
}

.sub-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.sub-list li {
  border: 0;
  margin: 0;
  display: flex;
  min-height: 100%;
}
.sub-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--text);
  overflow-wrap: anywhere;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  transition: color .15s, background .15s, border-color .15s, box-shadow .15s;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}
.sub-list a .sub-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: inherit;
}
.sub-list a span {
  min-width: 0;
}
.sub-list a:hover {
  background: #fff;
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 4px 12px rgba(242, 57, 77, .08);
  text-decoration: none;
}

.orgs-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}
.orgs-layout__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
  min-width: 0;
}
.orgs-side-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.org-list-banner,
.side-banner.org-list-banner,
.side-banner.org-list-banner:has(img),
.side-banner.org-list-banner:has(.banner-slot),
.side-banner.org-list-banner:has(.banner-slot__direct) {
  display: none !important;
  width: 100%;
  margin: 4px 0;
}
.orgs-filters {
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  min-height: 120px;
  overflow: visible;
}
.orgs-filters__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}
.orgs-filters__toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.orgs-filters__caret {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1;
  color: #888;
  transition: transform .15s ease;
}
.orgs-filters.is-open .orgs-filters__caret {
  transform: rotate(180deg);
}
.orgs-filters__title-static {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.orgs-filters__title-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.orgs-filters__title .org-ico {
  flex-shrink: 0;
  color: #555;
}
.orgs-filters__reset-all {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red, #f2394d);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
}
.orgs-filters__reset-all:hover {
  filter: brightness(0.9);
}
.orgs-filters__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.orgs-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}
.orgs-filters__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid #e2e7ef;
  border-radius: 999px;
  background: #f5f7fb;
  color: #333;
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.orgs-filters__chip span {
  overflow-wrap: anywhere;
}
.orgs-filters__chip:hover {
  background: #fde8e8;
  border-color: #f0b4b4;
  color: #8a2f2f;
  box-shadow: 0 0 0 3px rgba(220, 80, 80, 0.12);
}
.orgs-filters__chip.is-active,
.orgs-filters__chip:has(input:checked) {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: none;
}
.orgs-filters__chip.is-active:hover,
.orgs-filters__chip:has(input:checked):hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  filter: brightness(0.96);
}
.orgs-filters__chip--toggle {
  gap: 6px;
}
.orgs-filters__chip-caret {
  font-size: 11px;
  line-height: 1;
  opacity: .75;
  transition: transform .15s ease;
}
.orgs-filters__pop {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  z-index: 1;
}
.orgs-filters__pop.is-open {
  z-index: 40;
}
.orgs-filters__pop.is-open > .orgs-filters__chip--toggle .orgs-filters__chip-caret {
  transform: rotate(180deg);
}
.orgs-filters__pop-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  min-width: min(220px, 80vw);
  max-width: min(280px, 90vw);
  padding: 8px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(20, 28, 45, .16);
}
.orgs-filters__pop-panel[hidden] {
  display: none !important;
}
.orgs-filters__pop-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 240px;
  overflow: auto;
}
.orgs-filters__pop-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.35;
  color: #333;
  transition: background-color .12s ease, color .12s ease;
}
.orgs-filters__pop-option:hover {
  background: #fde8e8;
  color: #8a2f2f;
}
.orgs-filters__pop-option.is-active,
.orgs-filters__pop-option:has(input:checked) {
  background: var(--red);
  color: #fff;
}
.orgs-filters__pop-clear {
  margin-top: 6px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  background: #f3f5f9;
  color: #556;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.orgs-filters__pop-clear:hover {
  background: #e8ebf2;
}
.orgs-filters__menu-empty {
  font-size: 12px;
  color: #888;
  padding: 6px 4px;
}
.orgs-filters__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 100%;
}
.orgs-filters__label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.orgs-filters__input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid #dde3ee;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}
.orgs-filters__submit {
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  background: #2f6fed;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.orgs-filters__submit:hover {
  background: #2458c7;
}
.orgs-filters__empty {
  margin: 0;
  font-size: 13px;
  color: #888;
}
.orgs-layout__main {
  min-width: 0;
}
.org-list {
  margin-top: 0;
  display: grid;
  gap: 12px;
  width: 100%;
}
.orgs-layout__main .org-list .org-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 900px) {
  .orgs-layout {
    grid-template-columns: 1fr;
  }
  .orgs-layout__side,
  .orgs-filters {
    width: 100%;
  }
  .orgs-side-banners {
    display: none;
  }
  .orgs-side-banners:has(.banner-slot__direct) {
    display: flex;
  }
  .org-list-banner,
  .side-banner.org-list-banner,
  .side-banner.org-list-banner:has(img),
  .side-banner.org-list-banner:has(.banner-slot),
  .side-banner.org-list-banner:has(.banner-slot__direct) {
    display: block !important;
  }
  .org-list-banner:has(.banner-slot__direct),
  .side-banner.org-list-banner:has(.banner-slot__direct) {
    display: none !important;
  }
  .orgs-filters__toggle {
    display: inline-flex;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .orgs-filters__title-static {
    display: none;
  }
  .orgs-filters__title {
    margin-bottom: 0;
  }
  .orgs-filters:not(.is-open) {
    min-height: 0;
    padding: 10px 14px;
  }
  .orgs-filters:not(.is-open) .orgs-filters__body {
    display: none;
  }
  .orgs-filters.is-open {
    min-height: 0;
  }
  .orgs-filters.is-open .orgs-filters__title {
    margin-bottom: 10px;
  }
}
.org-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  border: 0;
  border-radius: 10px;
  padding: 14px;
  min-width: 0;
  background: #fff;
  box-sizing: border-box;
}
.org-card--platinum {
  background: linear-gradient(90deg, rgba(156, 102, 246, 0.8) 0%, rgba(244, 240, 250, 1) 100%);
  border: 0;
  overflow: hidden;
}
.org-card--gold {
  background: linear-gradient(90deg, rgba(244, 212, 135, 1) 0%, rgba(250, 244, 230, 1) 100%);
  border: 0;
  overflow: hidden;
}
.org-card--vip {
  background: linear-gradient(90deg, rgba(139, 206, 72, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  border: 0;
  overflow: hidden;
}
.org-card__photo {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
  text-decoration: none;
}
.org-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 20px;
  align-items: start;
  min-width: 0;
}
.org-card__main {
  min-width: 0;
}
.org-card__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.org-card__title a {
  color: #333;
  text-decoration: none;
}
.org-card__title a:hover {
  color: var(--red);
}
.org-card__sub {
  margin: 0 0 6px;
  color: #999;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.org-card__line {
  margin: 0 0 4px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.org-card__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
  flex-shrink: 0;
}
.org-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.org-card__stars .star {
  font-size: 22px;
  line-height: 1;
}
.org-card__stars .star + .star {
  margin-left: -3px;
}
.org-card__reviews {
  color: #4a90e2;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}
.org-card__reviews:hover {
  color: #3a7bc8;
  text-decoration: underline;
}
.org-card__updated {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}
.org-card__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: #6c47ff;
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s ease;
}
.org-card__go:hover {
  background: #5b3ae6;
  color: #fff !important;
  text-decoration: none !important;
}
.org-card__go--gold {
  background: #FFCB46;
  color: #333 !important;
}
.org-card__go--gold:hover {
  background: #e6b63d;
  color: #333 !important;
}
.org-card__go--vip {
  background: #7acf26;
  color: #fff !important;
}
.org-card__go--vip:hover {
  background: #6bb820;
  color: #fff !important;
}
.star { color: #ddd; }
.star--on { color: #f5a623; }
@media (max-width: 700px) {
  .org-card {
    grid-template-columns: 80px minmax(0, 1fr);
  }
  .org-card__photo {
    width: 80px;
    height: 80px;
  }
  .org-card__body {
    grid-template-columns: 1fr;
  }
  .org-card__side {
    align-items: flex-start;
    text-align: left;
  }
}

.org-view {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(16px, 2.5vw, 24px);
  background: #fff;
}
.org-view__top {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: flex-start;
}
.org-view__logo {
  width: clamp(96px, 12vw, 140px);
  height: clamp(96px, 12vw, 140px);
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
}
.org-view__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.org-view__title {
  margin: 8px 0 6px;
  font-size: clamp(22px, 3vw, 28px);
}
.org-view__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1;
}
.org-view__dot {
  color: var(--muted);
  line-height: 1;
}
.org-view__views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #666;
}
.org-view__views .org-ico {
  display: block;
  flex-shrink: 0;
  color: #888;
}
.org-view__rate-title {
  color: #666;
  font-size: 13px;
}
.org-view__rating .org-premium__rate-stars {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.org-view__cat a { font-weight: 500; }
.org-view__contacts {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: #555;
  line-height: 1.7;
}
.org-view__contacts span {
  color: var(--muted);
  min-width: 110px;
  display: inline-block;
}
.org-view__contacts--big li { margin: 6px 0; }

.org-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 22px 0 14px;
  border-bottom: 2px solid var(--line);
}
.org-tabs a {
  padding: 10px 14px;
  color: var(--text);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.org-tabs a:hover { text-decoration: none; color: var(--red); }
.org-tabs a.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.org-tab-body h2 {
  margin: 0 0 12px;
  font-size: 18px;
}
.org-tab-body p { margin: 0 0 12px; max-width: 72ch; }

.review-list { display: grid; gap: 12px; }
.review-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
}
.review-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 13px;
}
.review-item p { margin: 0; }
.muted { color: var(--muted); }

.pagination {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.pagination__arrow,
.pagination__page,
.pagination__current {
  min-width: 28px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0 6px;
  color: #9aa3b2;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}
.pagination__arrow {
  color: #2a3140;
  font-size: 22px;
  font-weight: 400;
  min-width: 24px;
  padding: 0 4px;
}
.pagination__arrow.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}
.pagination__page:hover {
  color: #5c6575;
}
.pagination__ellipsis {
  min-width: 20px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa3b2;
  font-size: 15px;
  line-height: 1;
  user-select: none;
}
.pagination__current {
  min-width: 32px;
  height: 32px;
  padding: 0;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
}

.footer {
  margin-inline: calc(var(--gutter) * -1);
  width: calc(100% + var(--gutter) * 2);
  margin-top: 40px;
  padding: 40px var(--gutter) 28px;
  background: #444;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  box-sizing: border-box;
  border-top: 0;
}
.footer__inner {
  width: 100%;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
  align-items: start;
}
.footer__title {
  display: block;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__list li {
  color: #e8e8e8;
}
.footer a {
  color: #e8e8e8;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer__qr {
  display: flex;
  gap: 16px;
  margin: 4px 0 14px;
}
.footer__qr img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}
.footer__stores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__stores a {
  display: inline-flex;
  line-height: 0;
}
.footer__stores img {
  display: block;
  width: 110px;
  height: 34px;
  object-fit: contain;
}
.footer__copy {
  margin-top: 36px;
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
}

.home-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  gap: 20px;
  align-items: start;
  padding: 8px 0 24px;
  width: 100%;
}
.home-top__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.home-top__main > .home-top__promos,
.home-top__main > .afisha,
.home-top__main > .reviews,
.home-top__main > .firms,
.home-top__main > .main-banner {
  margin-top: 0;
  margin-bottom: 0;
}
.home-top__aside {
  width: 255px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: start;
  position: sticky;
  top: 100px;
}
.home-top__promos {
  min-width: 0;
  background: transparent;
}
.home-top__promos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.home-top__promos-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
}
.home-top__promos-title:hover {
  color: #333;
  text-decoration: none;
  opacity: .85;
}
.home-top__promos-title h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: inherit;
}
.home-top__promos-chevron {
  font-size: 22px;
  line-height: 1;
  opacity: .9;
}
.home-top__promos-nav {
  display: inline-flex;
  gap: 6px;
}
.home-top__arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: #888;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.home-top__arrow:hover {
  color: var(--red);
  border-color: var(--red);
}
.promo-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
  container-type: inline-size;
}
.promo-viewport::-webkit-scrollbar { display: none; }
.promo-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.promo-card {
  width: calc((100cqw - 56px) / 5);
  min-width: calc((100cqw - 56px) / 5);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  box-sizing: border-box;
}
.promo-card:hover {
  text-decoration: none;
  border-color: var(--red);
}
.promo-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}
.promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
}
.promo-card__meta {
  font-size: 12px;
  color: #aaa;
}

.afisha {
  min-width: 0;
  padding: 0;
}
.afisha__head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #333;
  text-decoration: none;
}
.afisha__head:hover {
  color: #333;
  text-decoration: none;
  opacity: .85;
}
.afisha__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: inherit;
}
.afisha__chevron {
  font-size: 22px;
  line-height: 1;
  opacity: .9;
}
.afisha-slider {
  position: relative;
}
.afisha__arrow {
  position: absolute;
  z-index: 3;
  width: 96px;
  height: 96px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #333;
  font-size: 66px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.afisha__arrow:hover {
  color: var(--red);
}
.afisha__arrow[hidden] {
  display: none !important;
}
.afisha__arrow--prev { left: 0; top: 0; }
.afisha__arrow--next { left: 0; top: 0; }
.afisha-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
  container-type: inline-size;
}
.afisha-viewport::-webkit-scrollbar { display: none; }
.afisha-track {
  display: flex;
  gap: 20px;
  column-gap: 20px;
  width: max-content;
}
.afisha-card {
  width: calc((100cqw - 140px) / 8);
  min-width: calc((100cqw - 140px) / 8);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}
.afisha-card:hover {
  color: #333;
  text-decoration: none;
}
.afisha-card__poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #e8e8e8;
}
.afisha-card__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  transition: background .2s ease;
}
.afisha-card--edge .afisha-card__poster::after {
  background: rgba(255, 255, 255, .7);
}
.afisha-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.afisha-card__time {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.afisha-card__title {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}

.reviews {
  min-width: 0;
  width: 100%;
}
.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.reviews__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}
.reviews__nav {
  display: inline-flex;
  gap: 6px;
}
.reviews-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
  container-type: inline-size;
}
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.review-card {
  width: calc((100cqw - 56px) / 5);
  min-width: calc((100cqw - 56px) / 5);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  box-sizing: border-box;
  min-height: 180px;
}
.review-card__org {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.review-card__org:hover {
  color: var(--red);
  text-decoration: none;
}
.review-card__date {
  font-size: 12px;
  color: #999;
  line-height: 1.2;
}
.review-card__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.4;
  color: #444;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.review-card__author {
  margin-top: auto;
  font-size: 13px;
  color: #999;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.firms {
  min-width: 0;
  padding: 0;
  width: 100%;
}
.firms__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.firms__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}
.firms__nav {
  display: inline-flex;
  gap: 6px;
}
.firms-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
  container-type: inline-size;
}
.firms-viewport::-webkit-scrollbar { display: none; }
.firms-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.firm-card {
  width: calc((100cqw - 42px) / 4);
  min-width: calc((100cqw - 42px) / 4);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  box-sizing: border-box;
}
.firm-card:hover {
  text-decoration: none;
  border-color: var(--red);
  color: inherit;
}
.firm-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
}
.firm-card__shot {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}
.firm-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.firm-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.firm-card__sub {
  font-size: 13px;
  line-height: 1.3;
  color: #1e85c7;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.firm-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: #555;
  line-height: 1.2;
}
.firm-card__star {
  color: #f5c518;
  font-size: 15px;
  line-height: 1;
}
.firm-card__rating {
  font-weight: 500;
  color: #333;
}
.firm-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  flex-shrink: 0;
}
.firm-card__views {
  color: #666;
}

.main-banner {
  width: 100%;
  min-height: 120px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px dashed #cfcfcf;
  border-radius: 6px;
  color: #999;
  font-size: 13px;
  font-weight: 500;
}
.main-banner__label {
  opacity: .85;
}
.main-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-slot__link {
  display: block;
  width: 100%;
  line-height: 0;
}
.banner-slot__link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.banner-slot__direct {
  display: block;
  width: 100%;
  line-height: normal;
  text-align: center;
  overflow: visible;
}
.banner-slot__direct--box {
  box-sizing: border-box;
  width: 250px;
  max-width: 100%;
  height: 250px;
  max-height: 250px;
  overflow: hidden;
  margin: 0 auto;
}
.banner-slot__direct iframe,
.banner-slot__direct img {
  max-width: 100%;
}
.banner-slot__marking {
  position: absolute;
  right: 4px;
  bottom: 4px;
  z-index: 3;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}

/* Карточка banner3–5, стиль «Баннер» */
.banner-slot--card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}
.banner-slot__bg {
  position: absolute;
  inset: -12%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(18px);
  opacity: 0.7;
  transform: scale(1.08);
  pointer-events: none;
}
.banner-slot__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  box-sizing: border-box;
}
.banner-slot__title {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border-radius: 6px;
  background: #fff;
  color: #1a1d24;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}
.banner-slot__media {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}
.banner-slot__media .banner-slot__link,
.banner-slot__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.banner-slot__desc {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  max-height: none;
  height: 100%;
  margin: 0;
  padding: 10px 12px;
  overflow: auto;
  opacity: 0;
  border-radius: 6px;
  background: #fff;
  color: #3a4150;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.banner-slot--card:hover .banner-slot__desc,
.banner-slot--card:focus-within .banner-slot__desc {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Стиль «Анимация» — файл как есть */
.banner-slot--animation,
.banner-slot--plain {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
}
.banner-slot--animation img,
.banner-slot--plain img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.akcii-page {
  width: 100%;
  padding-bottom: 24px;
}
.akcii-page > .main-banner {
  /* same width as .home-top__main (container minus aside 255px + gap 20px) */
  width: calc(100% - 275px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 120px;
  height: auto;
  align-self: center;
}
.akcii-page > .main-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.pogoda-page {
  width: 100%;
  padding: 8px 0 28px;
}
.pogoda-page__title {
  margin: 0 0 16px;
  font: 500 24px/1.25 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
  width: calc(100% - 275px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.weather-panel {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, 1.15fr);
  width: calc(100% - 275px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  overflow: hidden;
  box-sizing: border-box;
}
.weather-panel__today {
  padding: 18px 22px 20px;
  min-width: 0;
}
.weather-panel__date {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  font: 500 16px/1.35 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
}
.weather-panel__date strong {
  font-weight: 600;
}
.weather-panel__date-value {
  font-weight: 400;
  color: #aaa;
}
.weather-panel__now {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.weather-panel__now-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.weather-panel__now-temp {
  font: 400 52px/1 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
  flex-shrink: 0;
  padding-right: 14px;
  border-right: 1px solid #ddd;
}
.weather-panel__now-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding-left: 2px;
}
.weather-panel__now-label {
  font: 500 16px/1.3 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
}
.weather-panel__now-range {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font: 400 14px/1.35 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #666;
}
.weather-panel__stats {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.weather-panel__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  min-width: 0;
  padding: 10px 6px;
  background: #f7f7f7;
  border-radius: 4px;
  box-sizing: border-box;
}
.weather-panel__stat-title {
  font: 400 13px/1.2 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #c0c0c0;
}
.weather-panel__stat-icon {
  width: 28px;
  height: 28px;
  margin: 2px 0;
  display: block;
}
.weather-panel__stat-value {
  font: 500 17px/1.25 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #555;
}
.weather-panel__stat-text {
  font: 400 13px/1.25 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #666;
}
.weather-panel__forecast {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid #ececec;
  min-width: 0;
}
.weather-panel__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 8px 16px;
  border-left: 1px solid #ececec;
  box-sizing: border-box;
}
.weather-panel__day:first-child {
  border-left: 0;
}
.weather-panel__day-name {
  font: 400 14px/1.3 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
}
.weather-panel__day-date {
  font: 400 14px/1.3 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
  white-space: nowrap;
}
.weather-panel__day-icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 10px;
}
.weather-panel__day-temp {
  font: 400 14px/1.3 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
}
.weather-panel__day-label {
  font: 400 14px/1.3 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
  max-width: 100%;
}
.pogoda-page__narrow {
  width: calc(100% - 275px);
  max-width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pogoda-page__narrow > .main-banner {
  width: 100%;
  min-height: 120px;
  height: auto;
}
.pogoda-page__narrow > .main-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.akcii-page__title {
  margin: 28px 0 24px;
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: #333;
}
.promo-subs {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}
.promo-subs__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: color .15s, background .15s, border-color .15s;
}
.promo-subs__item:hover,
.promo-subs__item.is-active {
  border-color: var(--red);
  color: var(--red);
  background: #fff0f2;
}
.promo-subs__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.promo-subs__count {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 13px;
}
.promo-subs__item.is-active .promo-subs__count,
.promo-subs__item:hover .promo-subs__count {
  color: var(--red);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
.promo-card--grid {
  width: auto;
  min-width: 0;
}
.promo-card--grid[hidden] {
  display: none !important;
}
.akcii-page__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.akcii-page__more-wrap .btn {
  min-width: 200px;
}

.weather-banner {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  font: 500 16px/19px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #444;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.banner1-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 4000;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-sizing: border-box;
  pointer-events: auto;
}
.banner1-float--left {
  right: auto;
  left: 30px;
  align-items: flex-start;
}
.banner1-float[hidden] {
  display: none !important;
}
.banner1-float__head {
  position: relative;
  width: 120px;
  margin: 0 0 2px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .28);
}
.banner1-float__caption {
  display: block;
  width: 120px;
  box-sizing: border-box;
  padding: 6px 22px 6px 6px;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}
.banner1-float__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
.banner1-float__close:hover {
  color: #000;
}
.banner1-float__media {
  display: block;
  width: 100px;
  line-height: 0;
  border-radius: 8px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .35));
}
.banner1-float__media img {
  display: block;
  width: 100px;
  height: auto;
  border-radius: 8px;
}
.banner1-float__figure {
  position: relative;
  width: 100px;
  flex: 0 0 auto;
}
.banner1-float__marking {
  position: absolute;
  bottom: 0;
  z-index: 2;
  display: none;
  box-sizing: border-box;
  max-width: min(380px, calc(100vw - 48px));
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .58);
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.banner1-float:hover .banner1-float__marking,
.banner1-float:focus-within .banner1-float__marking {
  display: block;
}
.banner1-float:not(.banner1-float--left) .banner1-float__marking {
  right: 0;
  left: auto;
}
.banner1-float--left .banner1-float__marking {
  left: 0;
  right: auto;
}
@media (max-width: 900px) {
  .banner1-float {
    display: none !important;
  }
}

.side-banner {
  width: 100%;
  min-height: 120px;
  flex: 0 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px dashed #cfcfcf;
  border-radius: 6px;
  color: #999;
  font-size: 13px;
  font-weight: 500;
}
.side-banner--md {
  min-height: 180px;
}
.side-banner--lg {
  min-height: 250px;
}
.side-banner__label {
  opacity: .85;
}
.side-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Слот с загруженным баннером: высота по картинке, без рамки-заглушки */
.main-banner:has(img),
.main-banner:has(.banner-slot),
.side-banner:has(img),
.side-banner:has(.banner-slot),
.side-banner--md:has(img),
.side-banner--md:has(.banner-slot),
.side-banner--lg:has(img),
.side-banner--lg:has(.banner-slot),
.akcii-page > .main-banner:has(img),
.akcii-page > .main-banner:has(.banner-slot),
.pogoda-page__narrow > .main-banner:has(img),
.pogoda-page__narrow > .main-banner:has(.banner-slot) {
  min-height: 0;
  height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
  display: block;
  overflow: hidden;
}
.side-banner:has(.banner-slot__direct--box),
.side-banner--md:has(.banner-slot__direct--box),
.side-banner--lg:has(.banner-slot__direct--box) {
  box-sizing: border-box;
  width: 250px;
  max-width: 100%;
  height: 250px;
  max-height: 250px;
  min-height: 250px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--line);
}

.afisha-page {
  width: 100%;
  padding: 8px 0 28px;
}
.afisha-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  gap: 20px;
  align-items: start;
  width: 100%;
}
.afisha-page__main {
  min-width: 0;
}
.afisha-page__aside {
  width: 255px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: start;
  position: sticky;
  top: 100px;
}
@media (max-width: 1100px) {
  .afisha-page__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .afisha-page__main {
    order: 1;
    width: 100%;
    min-width: 0;
  }
  .afisha-page__aside {
    order: 2;
    width: 100%;
    max-width: 100%;
    position: static;
    align-self: stretch;
  }
}
.afisha-page__title {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  color: #333;
}
.afisha-page__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin: 0 0 18px;
}
.afisha-page__head .afisha-page__title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.afisha-venues__search {
  box-sizing: border-box;
  width: 280px;
  max-width: 100%;
  flex: 0 0 280px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line, #e2e5ea);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: #333;
}
.afisha-venues__search:focus {
  outline: none;
  border-color: #c9d0d8;
  box-shadow: 0 0 0 3px rgba(47, 111, 237, .12);
}
.afisha-venues__empty {
  margin: 8px 0 0;
  color: #8a93a0;
}
.afisha-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #8a93a0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  transition: color .15s;
}
.afisha-back--event {
  margin: 0 0 14px;
}
.afisha-back:hover {
  color: var(--red);
  text-decoration: none;
}
.afisha-back__arrow {
  font-size: 16px;
  line-height: 1;
}
.afisha-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
  margin: 0 0 22px;
  border-bottom: 1px solid #e5e5e5;
}
.afisha-tabs__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 0 12px;
  margin-bottom: -1px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #9a9a9a;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  transition: color .15s, border-color .15s;
}
.afisha-tabs__item:hover {
  color: #333;
  background: transparent;
  text-decoration: none;
}
.afisha-tabs__item.is-active {
  color: #222;
  font-weight: 600;
  border-bottom-color: var(--red);
  background: transparent;
  text-decoration: none;
}
.afisha-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.afisha-list__item {
  display: flex;
  gap: 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  transition: border-color .15s, box-shadow .15s;
}
.afisha-list__item:hover {
  border-color: var(--red);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(242, 57, 77, .08);
}
.afisha-list__poster {
  flex-shrink: 0;
  width: 120px;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f3f3;
}
.afisha-list__poster img {
  display: block;
  width: 120px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.afisha-list__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.afisha-list__name {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}
.afisha-list__text {
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}
.afisha-list__venue {
  margin-top: auto;
  font-size: 14px;
  color: #888;
}
.afisha-schedule {
  margin-top: 8px;
}
.afisha-schedule .event-schedule__tabs {
  margin-bottom: 18px;
}
.afisha-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.afisha-schedule__venue {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.afisha-schedule__venue[hidden] {
  display: none !important;
}
.afisha-schedule__venue-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}
.afisha-schedule__venue-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.afisha-schedule__venue-title a:hover {
  color: var(--red);
  text-decoration: underline;
}
.afisha-schedule__venue-address {
  margin: 0 0 14px;
  font-size: 13px;
  color: #888;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.afisha-schedule__day {
  margin-top: 12px;
}
.afisha-schedule__day + .afisha-schedule__day {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.afisha-schedule__day-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-transform: capitalize;
}
.afisha-schedule__films {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.afisha-schedule__film {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.afisha-schedule__poster {
  flex-shrink: 0;
  width: 56px;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}
.afisha-schedule__poster img {
  display: block;
  width: 56px;
  height: 78px;
  object-fit: cover;
}
.afisha-schedule__film-body {
  min-width: 0;
  flex: 1;
}
.afisha-schedule__film-title {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  line-height: 1.3;
}
a.afisha-schedule__film-title:hover {
  color: var(--red);
  text-decoration: underline;
}
.afisha-schedule__times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.afisha-schedule__time {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fafafa;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}
.afisha-schedule__price {
  font-size: 12px;
  font-weight: 500;
  color: #888;
}
.afisha-schedule-empty {
  margin: 12px 0 6px;
  color: #666;
}
.afisha-schedule-empty-hint {
  margin: 0;
  font-size: 14px;
}
.afisha-films {
  margin-top: 4px;
}
.afisha-films__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.afisha-film-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.afisha-film-card[hidden] {
  display: none !important;
}
.afisha-film-card__poster {
  position: relative;
  flex-shrink: 0;
  width: auto;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  background: #ececec;
}
.afisha-film-card__poster-blur {
  display: none;
}
.afisha-film-card__poster a {
  display: block;
  height: 200px;
}
.afisha-film-card__poster a img {
  display: block;
  height: 200px;
  width: auto;
  max-width: 140px;
  object-fit: cover;
}
.afisha-film-card__body {
  min-width: 0;
  flex: 1;
}
.afisha-film-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}
.afisha-film-card__title a {
  color: var(--red);
  text-decoration: none;
}
.afisha-film-card__title a:hover {
  color: var(--red);
  text-decoration: underline;
}
.afisha-film-card__desc {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
  min-width: 0;
}
.afisha-film-card__desc-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.afisha-film-card__more {
  flex: 0 0 auto;
  white-space: nowrap;
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}
.afisha-film-card__more:hover {
  text-decoration: underline;
}
.afisha-film-card__cinemas-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.afisha-film-card__cinema-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.afisha-film-card__cinema[hidden] {
  display: none !important;
}
.afisha-film-card__cinema-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}
.afisha-film-card__cinema-name:hover {
  color: var(--red);
  text-decoration: underline;
}
.afisha-film-card__cinema-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
}
.afisha-film-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 4px;
}
.afisha-film-card__cinema-address {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 13px;
  color: #999;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.afisha-film-card__day-marker {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.afisha-film-card__day-marker[hidden] {
  display: none !important;
}
.afisha-film-card__times {
  display: none !important;
}
.afisha-film-card__time {
  display: none !important;
}
@media (max-width: 640px) {
  .afisha-film-card {
    flex-direction: column;
    gap: 14px;
  }
  .afisha-film-card__poster,
  .afisha-film-card__poster a {
    height: 200px;
  }
  .afisha-film-card__poster a img {
    height: 200px;
    max-width: 140px;
  }
  .afisha-film-card__cinema-line {
    gap: 4px;
  }
  .afisha-film-card__cinema-name {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }
  .afisha-film-card__cinema-address {
    display: block;
    width: 100%;
  }
}
.afisha-venues {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.afisha-venues__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  color: inherit;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.afisha-venues__item:hover {
  border-color: var(--red);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(242, 57, 77, .08);
}
.afisha-venues__item[hidden] {
  display: none !important;
}
.afisha-venues__logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
}
.afisha-venues__logo img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.afisha-venues__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.afisha-venues__name {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}
.afisha-venues__address {
  margin: 0;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.afisha-venues__contacts {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.afisha-venues__meta {
  margin-top: 6px;
  color: #999;
}
.afisha-venue__hero {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.afisha-venue__media {
  flex: 0 0 250px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.afisha-venue__map {
  flex: 0 0 450px;
  width: 450px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8edf2;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
}
.afisha-venue__map .maplibregl-map {
  width: 100%;
  height: 100%;
}
.afisha-venue__map-marker {
  width: 25px;
  height: 41px;
  background: url('/assets/vendor/leaflet/images/marker-icon.png') center / contain no-repeat;
}
.afisha-venue__logo {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}
.afisha-venue__logo img {
  display: block;
  width: 250px;
  height: 250px;
  object-fit: contain;
}
.afisha-venue__map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  height: 40px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.afisha-venue__map-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.afisha-venue__map-btn:hover {
  color: var(--red);
  border-color: var(--red);
  background: #fff0f2;
  text-decoration: none;
}
.afisha-venue__media-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}
.afisha-venue__msg-btn {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
}
.afisha-venue__msg-btn svg {
  width: 20px;
  height: 20px;
}
.afisha-venue__msg-btn:hover {
  color: var(--red);
  border-color: var(--red);
  background: #fff0f2;
  text-decoration: none;
}
.afisha-venue__title {
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 8px;
}
.afisha-venue__reviews-count {
  margin-left: 0;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  white-space: nowrap;
}
.afisha-venue__info {
  min-width: 0;
}
.afisha-venue__phone {
  margin: 0 0 6px;
  font-size: 15px;
  color: #333;
  font-weight: 400;
  white-space: pre-line;
}
.afisha-venue__address {
  margin: 0 0 6px;
  font-size: 15px;
  color: #555;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.afisha-venue__fact {
  margin: 0 0 4px;
  font-size: 14px;
  color: #555;
}
.afisha-venue__fact-label {
  color: #888;
}
.afisha-venue__meta {
  margin: 0 0 14px;
  font-size: 14px;
  color: #999;
}
.afisha-venue__desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}
.afisha-venue__reviews {
  margin-top: 28px;
}
.afisha-venue__review-error {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 14px;
}
.afisha-venue__review-ok {
  margin: 0 0 12px;
  color: #2e7d32;
  font-size: 14px;
}
.afisha-venue__schedule {
  margin-top: 28px;
}
.afisha-venue-films__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.afisha-venue-films__day {
  margin: 0;
}
.afisha-venue-films__day[hidden] {
  display: none !important;
}
.afisha-venue-films__day-title {
  display: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-transform: capitalize;
}
.afisha-venue-films.is-multi-day .afisha-venue-films__day {
  margin-top: 8px;
  padding: 16px 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.afisha-venue-films.is-multi-day .afisha-venue-films__day + .afisha-venue-films__day {
  margin-top: 14px;
}
.afisha-venue-films.is-multi-day .afisha-venue-films__day-title {
  display: block;
}
.afisha-venue-films__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.afisha-venue-films__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.afisha-venue-films__poster {
  flex-shrink: 0;
  width: 64px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  background: #ececec;
  display: block;
}
.afisha-venue-films__poster img {
  display: block;
  width: 64px;
  height: 90px;
  object-fit: cover;
}
.afisha-venue-films__poster--empty {
  background: linear-gradient(145deg, #eee, #ddd);
}
.afisha-venue-films__body {
  min-width: 0;
  flex: 1;
  padding-top: 2px;
}
.afisha-venue-films__title {
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  text-decoration: none;
}
a.afisha-venue-films__title:hover {
  color: var(--red);
  text-decoration: underline;
}
.afisha-venue-films__times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.afisha-venue-films__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 6px 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  white-space: nowrap;
}
.event-schedule__row--cinema,
.event-schedule__row--stage {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  box-sizing: border-box;
  padding: 0 14px;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
  overflow: hidden;
}
.event-schedule__row--cinema .event-schedule__price,
.event-schedule__row--stage .event-schedule__price {
  margin-left: auto;
  flex-shrink: 0;
  justify-self: auto;
  text-align: right;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-height: 0;
  line-height: 1.2;
}
.event-schedule__row--cinema .event-schedule__price--empty {
  min-width: 0;
}
.event-schedule__place,
.event-schedule__cinema {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
.event-schedule__film {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  flex: 0 1 auto;
  min-width: 0;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-schedule__film:hover {
  color: var(--red);
  text-decoration: underline;
}
.event-schedule__address {
  display: inline;
  width: auto;
  max-width: none;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  color: #999;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  word-break: normal;
}
.event-schedule__venue {
  color: inherit;
  text-decoration: none;
}
.event-schedule__venue:hover {
  color: var(--red);
  text-decoration: underline;
}
.event-view__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: #222;
}
.event-view__desc {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}
.event-view--stage .event-view__title {
  margin-bottom: 10px;
}
.event-view--stage .event-view__desc,
.event-view__hero-body .event-view__desc {
  margin: 0 0 14px;
}
.event-view__hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.event-view__hero-body {
  min-width: 0;
}
.event-view__hero-body .event-view__credits {
  margin-bottom: 0;
}
.event-view__credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}
.event-view__credit {
  display: block;
}
.event-view__credit-label {
  font-weight: 600;
  color: #444;
  margin-right: 4px;
}
.event-view__credit-value {
  color: #444;
}
.event-view__credits span {
  color: #444;
  margin-right: 6px;
}
.event-view__media {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 24px;
  align-items: start;
}
.event-view__poster {
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}
.event-view__poster img {
  display: block;
  width: 220px;
  height: auto;
  object-fit: cover;
}
.event-view__poster-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
}
.event-view__trailer-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: filter .15s, background .15s;
}
.event-view__trailer-btn:hover {
  filter: brightness(1.05);
}
.trailer-modal[hidden] {
  display: none !important;
}
.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.trailer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(2px);
}
.trailer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}
.trailer-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.trailer-modal__close:hover {
  background: var(--red);
}
.trailer-modal__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.event-schedule__heading {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
  color: #222;
}
.event-schedule--stage .event-schedule__day {
  margin-bottom: 22px;
}
.event-schedule__row--stage {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.event-schedule__row--stage .event-schedule__price {
  margin-left: auto;
}
.event-schedule__row--stage .event-schedule__film {
  min-width: 0;
}
.event-schedule__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.event-schedule__tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.event-schedule__tab:hover,
.event-schedule__tab.is-active {
  color: var(--red);
  border-color: var(--red);
  background: #fff0f2;
}
.event-schedule__day {
  margin-bottom: 18px;
}
.event-schedule__day[hidden] {
  display: none !important;
}
.event-schedule__day-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: capitalize;
}
.event-schedule__day[data-single] .event-schedule__day-title {
  display: none;
}
.event-schedule__sessions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-schedule__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  height: 50px;
  min-height: 50px;
  box-sizing: border-box;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #444;
  overflow: hidden;
}
.event-schedule__time {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #222;
  min-width: 48px;
}
.event-schedule__sep {
  color: #bbb;
}
.event-schedule__price {
  margin-left: auto;
  font-weight: 600;
  color: #333;
}
.event-schedule__empty {
  margin: 8px 0 0;
  color: #888;
}
.event-schedule__source {
  margin: 14px 0 0;
  font: 400 13px/18px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #999;
}
.event-schedule__source a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.event-schedule__source a:hover,
.event-schedule__source a:focus {
  color: var(--red);
  text-decoration: underline;
}
.event-schedule__source a:active,
.event-schedule__source a:visited {
  color: inherit;
}

.weather-banner__title {
  margin: 0 0 8px;
  padding: 0;
  font: 500 18px/22px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
}
.weather-banner__title a {
  color: inherit;
  text-decoration: none;
}
.weather-banner__title a:hover {
  color: var(--red);
}
.weather-banner__date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
  font: 400 15px/18px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
}
.weather-banner__date-value {
  margin-left: 8px;
  color: #bbb;
}
.weather-banner__temperature-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font: 400 48px/1 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #333;
}
.weather-banner__temperature-icon {
  width: 56px;
  height: 56px;
  margin-right: 12px;
  flex-shrink: 0;
}
.weather-banner__temperature-description {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  font: 500 15px/18px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
}
.weather-banner__temperature-time-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  font: 400 14px/17px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #666;
}
.weather-banner__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.weather-banner__stat {
  padding: 8px 6px;
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f9f9f9;
  border-radius: 2px;
  box-sizing: border-box;
}
.weather-banner__stat-title {
  margin-bottom: 4px;
  font: 400 13px/16px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #ccc;
}
.weather-banner__stat-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}
.weather-banner__stat-value {
  font: 400 18px/22px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #666;
}
.weather-banner__stat-text {
  font: 400 13px/16px 'Rubik', 'PT Sans', 'Trebuchet MS', sans-serif;
  color: #666;
}

@media (max-width: 640px) {
  :root { --gutter: 16px; }
  .header-bar {
    padding: 10px var(--gutter) 8px;
  }
  .header-bar-spacer { height: 118px; }
  .btn { padding: 8px 14px; font-size: 14px; }
  .cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-inline: 0;
    padding-inline: 0;
    width: 100%;
    overflow: visible;
  }
  .cat-grid .cat-card {
    width: 100%;
  }
  .org-card__rating { flex-direction: column; align-items: flex-start; }
  .org-view__top { flex-direction: column; }
  .header__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo logo actions"
      "firms search search";
    gap: 8px 10px;
    align-items: center;
    min-height: 0;
  }
  .logo { grid-area: logo; margin-inline-end: 0; }
  .logo img { height: 38px; }
  .btn-firms {
    grid-area: firms;
    margin-inline-end: 0;
    padding: 8px 10px;
    height: 40px;
    box-sizing: border-box;
  }
  .btn-firms span { display: none; }
  .search {
    grid-area: search;
    max-width: none;
    width: 100%;
    flex: none;
    height: 40px;
  }
  .header__actions {
    grid-area: actions;
    justify-self: end;
    gap: 6px;
  }
  .header-action--map {
    display: none !important;
  }
  .header-action { min-width: 36px; font-size: 10px; }
  .header-action span { display: none; }
  .header-action svg,
  .user-menu__btn svg { width: 22px; height: 22px; }
  .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 4px;
  }
  .menu {
    display: none;
  }
  .city-weather {
    justify-content: space-between;
    width: 100%;
    white-space: normal;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 13px;
  }
  .city-weather__meta {
    display: none !important;
  }
  .popular__item { width: 78px; }
  .popular__circle { width: 56px; height: 56px; }
  .home-top {
    grid-template-columns: 1fr;
  }
  .home-top__aside,
  .weather-banner {
    width: 100%;
  }
  .home-top__aside {
    position: static;
  }
  .org-vip-layout {
    flex-wrap: wrap;
  }
  .org-vip-layout__main {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .org-vip-layout__aside {
    flex: 1 1 100%;
    width: 100%;
    position: static;
    padding-top: 0;
  }
  .org-recommend-row {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .org-recommend-row__main {
    flex: 1 1 100%;
  }
  .org-recommend-row__aside {
    flex: 1 1 100%;
    width: 100%;
    position: static;
  }
  .akcii-page > .main-banner {
    width: 100%;
  }
  .pogoda-page__narrow {
    width: 100%;
  }
  .pogoda-page__title,
  .weather-panel {
    width: 100%;
  }
  .weather-panel {
    grid-template-columns: 1fr;
  }
  .weather-panel__forecast {
    border-left: 0;
    border-top: 1px solid #ececec;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }
  .weather-panel__day {
    border-left: 1px solid #ececec;
    border-top: 1px solid #ececec;
    padding: 14px 6px 12px;
    gap: 8px;
  }
  .weather-panel__day:first-child {
    border-left: 1px solid #ececec;
  }
  .weather-panel__day:nth-child(3n + 1) {
    border-left: 0;
  }
  .weather-panel__day:nth-child(-n + 3) {
    border-top: 0;
  }
  .weather-panel__day-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 4px;
  }
  .weather-panel__day-name,
  .weather-panel__day-date,
  .weather-panel__day-temp,
  .weather-panel__day-label {
    font-size: 13px;
    font-weight: 400;
    color: #333;
  }
  .weather-panel__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-card {
    width: calc((100cqw - 14px) / 2);
    min-width: calc((100cqw - 14px) / 2);
  }
  .afisha-card {
    width: calc((100cqw - 14px) / 2);
    min-width: calc((100cqw - 14px) / 2);
  }
  .firm-card {
    width: calc((100cqw - 14px) / 2);
    min-width: calc((100cqw - 14px) / 2);
  }
  .review-card {
    width: calc((100cqw - 14px) / 2);
    min-width: calc((100cqw - 14px) / 2);
  }
  .promo-subs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .afisha-page__layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .afisha-page__main {
    order: 1;
    width: 100%;
    min-width: 0;
  }
  .afisha-page__aside {
    order: 2;
    width: 100%;
    max-width: 100%;
    position: static;
    align-self: stretch;
    gap: 16px;
    margin-top: 4px;
    padding-top: 4px;
  }
  .afisha-page__aside .side-banner {
    width: 100%;
    max-width: 100%;
  }
  .afisha-page__aside .side-banner img,
  .afisha-page__aside .banner-slot img,
  .afisha-page__aside .banner-slot__direct img {
    width: 100%;
    height: auto;
  }
  .afisha-tabs {
    flex-wrap: nowrap;
    gap: 0 18px;
    margin: 0 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .afisha-tabs::-webkit-scrollbar {
    display: none;
  }
  .afisha-tabs__item {
    flex: 0 0 auto;
    padding: 8px 0 10px;
    font-size: 16px;
    white-space: nowrap;
  }
  .afisha-page__title {
    margin: 0 0 14px;
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.25;
  }
  .afisha-page__head {
    margin: 0 0 14px;
  }
  .afisha-venues__search {
    flex: 1 1 100%;
    width: 100%;
  }
  .afisha-back {
    margin: 0 0 12px;
    font-size: 14px;
  }
  .event-schedule__tabs {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .event-schedule__tabs::-webkit-scrollbar {
    display: none;
  }
  .event-schedule__tab {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .event-view__media,
  .event-view__hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 20px;
  }
  .event-view__poster,
  .event-view__poster-col {
    width: min(180px, 46vw);
    margin: 0 auto;
  }
  .event-view__poster img {
    width: 100%;
    height: auto;
  }
  .event-view__title {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 10px;
  }
  .event-view__desc {
    font-size: 14px;
  }
  .event-schedule__row--stage,
  .event-schedule__row--cinema {
    grid-template-columns: none;
    height: 50px;
    min-height: 50px;
  }
  .event-schedule__row--stage .event-schedule__price,
  .event-schedule__row--cinema .event-schedule__price {
    grid-column: auto;
    justify-self: auto;
    text-align: right;
  }
  .afisha-venue__hero {
    flex-direction: column;
    gap: 14px;
  }
  .afisha-venue__media {
    flex: none;
    align-self: center;
    width: 250px;
    max-width: 100%;
  }
  .afisha-venue__logo,
  .afisha-venue__logo img {
    width: 250px;
    max-width: 100%;
  }
  .afisha-venue__map-btn {
    width: 100%;
  }
  .afisha-venue__logo {
    height: 250px;
  }
  .afisha-venue__logo img {
    height: 250px;
  }
  .afisha-venue__map {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: min(280px, 55vw);
    border-radius: 8px;
  }
  .afisha-venues__item {
    gap: 12px;
    padding: 12px;
  }
  .afisha-venues__name {
    font-size: 16px;
  }
  .afisha-film-card {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  .afisha-film-card__poster {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .afisha-film-card__poster a {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
  }
  .afisha-film-card__poster-blur {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  }
  .afisha-film-card__poster-blur img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.25);
  }
  .afisha-film-card__poster a img {
    width: auto;
    max-width: min(140px, 42vw);
    height: auto;
    max-height: 200px;
  }
  .afisha-film-card__title {
    font-size: 17px;
  }
  .afisha-film-card__desc {
    font-size: 13px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .afisha-film-card__desc-text {
    width: 100%;
  }
  .afisha-list__item {
    gap: 12px;
    padding: 10px;
  }
  .afisha-list__poster,
  .afisha-list__poster img {
    width: 88px;
  }
  .afisha-list__name {
    font-size: 16px;
  }
  .afisha-schedule__venue {
    padding: 12px;
  }
  .afisha-schedule__venue-title {
    font-size: 17px;
  }
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__copy {
    text-align: left;
  }
  .pagination {
    justify-content: center;
    gap: 2px 4px;
  }
  .afisha__arrow,
  .popular__arrow,
  .home-top__arrow,
  .home-top__promos-nav,
  .reviews__nav,
  .firms__nav {
    display: none !important;
  }
  .afisha-card--edge .afisha-card__poster::after {
    background: transparent;
  }
  .breadcrumbs {
    font-size: 13px;
    overflow-wrap: anywhere;
  }
  .org-premium--gold .org-premium__logo-wrap,
  .org-premium--vip .org-premium__logo-wrap,
  .org-premium--basic .org-premium__logo-wrap,
  .org-premium--platinum .org-premium__logo-wrap {
    width: 112px;
    height: 112px;
    top: -56px;
    left: 12px;
  }
  .org-premium--gold .org-premium__identity,
  .org-premium--vip .org-premium__identity,
  .org-premium--basic .org-premium__identity,
  .org-premium--platinum .org-premium__identity {
    padding-top: 60px;
  }
  .org-premium--platinum .org-premium__sheet,
  .org-premium--gold .org-premium__sheet,
  .org-premium--vip .org-premium__sheet,
  .org-premium--basic .org-premium__sheet {
    width: calc(100% + var(--gutter) * 2);
    max-width: none;
    margin: 48px 0 24px;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    border-radius: 12px;
    border-left: 0;
    border-right: 0;
    padding: 0 12px 16px;
    box-sizing: border-box;
  }
  .org-premium--platinum .org-premium__sheet {
    margin-top: -56px;
  }
  .org-premium--gold .org-premium__identity-body,
  .org-premium--vip .org-premium__identity-body,
  .org-premium--basic .org-premium__identity-body,
  .org-premium--platinum .org-premium__identity-body {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-right: 0;
  }
  .org-vip-layout {
    flex-wrap: wrap;
  }
  .org-vip-layout__main {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .org-vip-layout__aside {
    flex: 1 1 100%;
    width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  :root { --gutter: 40px; }
  .cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .search { width: min(420px, 100%); max-width: 420px; flex: 1 1 260px; }
  .header__top { gap: 10px; }
  .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Premium org page (Gold / Platinum) — витрина фирмы */
.org-premium__mobile-promo {
  display: none;
}
.org-premium__mobile-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 8px;
  width: 100%;
}
.org-recommend {
  margin: 40px auto 28px;
  width: 100%;
  max-width: 1110px;
  box-sizing: border-box;
}
.org-vip-layout__main .org-recommend {
  margin: 8px 0 28px;
  max-width: none;
}
.org-recommend-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  gap: 20px;
  width: 100%;
  max-width: 1110px;
  margin: 40px auto 28px;
  box-sizing: border-box;
}
.org-recommend-row__main {
  flex: 1 1 auto;
  min-width: 0;
}
.org-recommend-row__main .org-recommend {
  margin: 0;
  max-width: none;
}
.org-recommend-row__aside {
  flex: 0 0 255px;
  width: 255px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: start;
  position: sticky;
  top: 100px;
  box-sizing: border-box;
}
.org-recommend__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}
.org-recommend__list {
  margin-top: 0;
}
.org-recommend__list .org-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.org-premium__cover {
  position: relative;
  background: #d8d8d8;
  overflow: hidden;
}
.org-premium__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.org-premium__sheet {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-sizing: border-box;
}

/* Gold: белый блок и логотип как у Platinum, без обложки */
.org-premium--gold .org-premium__cover {
  display: none;
}
.org-premium--gold .org-premium__sheet {
  width: min(1110px, 100%);
  margin: 90px auto 24px;
  padding: 0 28px 32px;
  padding-top: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  overflow: visible;
}
.org-premium--gold .org-premium__identity {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px 28px;
  align-items: end;
  min-height: 175px;
  padding: 0 0 22px;
  margin-bottom: 8px;
  border-bottom: none;
  overflow: visible;
}
.org-premium--gold .org-premium__logo-wrap {
  position: absolute;
  left: 0;
  top: -75px;
  width: 250px;
  height: 250px;
  z-index: 5;
  filter: none;
}
.org-premium--gold .org-premium__logo-ring {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 7px solid #FFCB46;
  background: transparent;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 0 5px #fff, 0 0 14px rgba(255, 203, 70, 0.35);
  filter: none;
  display: block;
}
.org-premium--gold .org-premium__logo {
  position: absolute;
  inset: 12px;
  width: auto;
  height: auto;
  left: 12px;
  top: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  border: 0;
  background: #1a1208;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: none;
  filter: none;
  z-index: 1;
}
.org-premium--gold .org-premium__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: none;
  box-shadow: none;
}
.org-premium--gold .org-premium__identity-body {
  grid-column: 2;
  min-width: 0;
  padding-top: 8px;
  padding-bottom: 4px;
}
.org-premium--gold .org-premium__layout {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 12px 36px;
  padding-top: 18px;
  align-items: start;
  border-top: none;
}
.org-premium--gold .org-premium__badge--gold {
  background: #FFCB46;
  color: #333;
  border-color: #e6b63d;
}
.org-premium--gold .org-premium__rate-btn {
  background: #FFCB46;
  color: #333 !important;
}
.org-premium--gold .org-premium__rate-btn:hover {
  background: #2563eb;
  color: #fff !important;
  filter: none;
}
.org-premium--gold .org-premium__action--solid {
  background: #FFCB46;
  color: #333 !important;
}
.org-premium--gold .org-premium__action--solid:hover {
  background: #e6b63d;
  color: #333 !important;
  filter: none;
}
.org-premium--gold .org-premium__action--soft {
  background: #FFF3D1;
  color: #b8860b;
}
.org-premium--gold .org-premium__action--soft:hover {
  background: #FFE8A8;
  color: #9a7009;
}
.org-premium--gold .org-premium__write-text:focus {
  border-color: #FFCB46;
  box-shadow: 0 0 0 3px rgba(255, 203, 70, 0.35);
}
.org-premium--gold .org-premium__menu-cat:hover,
.org-premium--gold .org-premium__menu-cat.is-active {
  background: #FFCB46;
  border-color: #FFCB46;
  color: #333 !important;
}

/* VIP: как Gold, акцент #7acf26 */
.org-premium--vip .org-premium__cover {
  display: none;
}
.org-premium--vip .org-premium__sheet {
  width: min(1110px, 100%);
  margin: 90px auto 24px;
  padding: 0 28px 32px;
  padding-top: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  overflow: visible;
}
[data-org-view][hidden] { display: none !important; }
.org-vip-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.org-vip-layout__main {
  flex: 0 1 1110px;
  width: 100%;
  max-width: 1110px;
  min-width: 0;
}
.org-vip-layout__aside {
  flex: 0 0 255px;
  width: 255px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: start;
  position: sticky;
  top: 100px;
  padding-top: 90px;
  box-sizing: border-box;
}
.org-vip-layout .org-premium {
  margin-bottom: 0;
}
.org-vip-layout .org-premium--vip .org-premium__sheet,
.org-vip-layout .org-premium--basic .org-premium__sheet {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.org-premium--vip .org-premium__identity {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px 28px;
  align-items: end;
  min-height: 175px;
  padding: 0 0 22px;
  margin-bottom: 8px;
  border-bottom: none;
  overflow: visible;
}
.org-premium--vip .org-premium__logo-wrap {
  position: absolute;
  left: 0;
  top: -75px;
  width: 250px;
  height: 250px;
  z-index: 5;
  filter: none;
}
.org-premium--vip .org-premium__logo-ring {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 7px solid #7acf26;
  background: transparent;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 0 5px #fff;
  filter: none;
  display: block;
}
.org-premium--vip .org-premium__logo {
  position: absolute;
  inset: 12px;
  width: auto;
  height: auto;
  left: 12px;
  top: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  padding: 3px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: none;
  filter: none;
  z-index: 1;
}
.org-premium--vip .org-premium__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: none;
  box-shadow: none;
}
.org-premium--vip .org-premium__identity-body {
  grid-column: 2;
  min-width: 0;
  padding-top: 8px;
  padding-bottom: 4px;
}
.org-premium--vip .org-premium__layout {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 12px 36px;
  padding-top: 18px;
  align-items: start;
  border-top: none;
}
.org-premium--vip .org-premium__rate-btn {
  background: #7acf26;
  color: #fff !important;
}
.org-premium--vip .org-premium__rate-btn:hover {
  background: #2563eb;
  color: #fff !important;
  filter: none;
}
.org-premium--vip .org-premium__action--solid {
  background: #7acf26;
  color: #fff !important;
}
.org-premium--vip .org-premium__action--solid:hover {
  background: #6bb820;
  color: #fff !important;
  filter: none;
}
.org-premium--vip .org-premium__action--soft {
  background: #eef9e2;
  color: #5a9e1c;
}
.org-premium--vip .org-premium__action--soft:hover {
  background: #dff3c8;
  color: #4d8a16;
}
.org-premium--vip .org-premium__write-text:focus {
  border-color: #7acf26;
  box-shadow: 0 0 0 3px rgba(122, 207, 38, 0.3);
}
.org-premium--vip .org-premium__menu-cat:hover,
.org-premium--vip .org-premium__menu-cat.is-active {
  background: #7acf26;
  border-color: #7acf26;
  color: #fff !important;
}
.org-premium--vip .org-ico--globe {
  color: #7acf26;
}

/* Basic: как VIP, акцент красный (кнопка «Фирмы города») */
.org-premium--basic .org-premium__cover {
  display: none;
}
.org-premium--basic .org-premium__sheet {
  width: min(1110px, 100%);
  margin: 90px auto 24px;
  padding: 0 28px 32px;
  padding-top: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  overflow: visible;
}
.org-premium--basic .org-premium__identity {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px 28px;
  align-items: end;
  min-height: 175px;
  padding: 0 0 22px;
  margin-bottom: 8px;
  border-bottom: none;
  overflow: visible;
}
.org-premium--basic .org-premium__logo-wrap {
  position: absolute;
  left: 0;
  top: -75px;
  width: 250px;
  height: 250px;
  z-index: 5;
  filter: none;
}
.org-premium--basic .org-premium__logo-ring {
  display: none;
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
}
.org-premium--basic .org-premium__logo {
  position: absolute;
  inset: 12px;
  width: auto;
  height: auto;
  left: 12px;
  top: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  padding: 3px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: none;
  filter: none;
  z-index: 1;
}
.org-premium--basic .org-premium__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  filter: none;
  box-shadow: none;
}
.org-premium--basic .org-premium__identity-body {
  grid-column: 2;
  min-width: 0;
  padding-top: 8px;
  padding-bottom: 4px;
}
.org-premium--basic .org-premium__layout {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 12px 36px;
  padding-top: 18px;
  align-items: start;
  border-top: none;
}
.org-premium--basic .org-premium__rate-btn {
  background: var(--red);
  color: #fff !important;
}
.org-premium--basic .org-premium__rate-btn:hover {
  background: #2563eb;
  color: #fff !important;
  filter: none;
}
.org-premium--basic .org-premium__action--solid {
  background: var(--red);
  color: #fff !important;
}
.org-premium--basic .org-premium__action--solid:hover {
  filter: brightness(.96);
  color: #fff !important;
}
.org-premium--basic .org-premium__action--soft {
  background: #fff0f1;
  color: var(--red);
}
.org-premium--basic .org-premium__action--soft:hover {
  background: #ffe4e7;
  color: var(--red);
}
.org-premium--basic .org-premium__write-text:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(242, 57, 77, 0.2);
}
.org-premium--basic .org-ico--globe {
  color: var(--red);
}

/* Platinum: обложка на всю ширину, высота — как у картинки */
.org-premium--platinum .org-premium__cover {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: unset;
  border-radius: 0;
  overflow: hidden;
  line-height: 0;
}
.org-premium--platinum .org-premium__cover img {
  position: static;
  width: 100%;
  height: auto;
  max-width: none !important;
  max-height: none !important;
  object-fit: unset;
  display: block;
}
.org-premium--platinum .org-premium__sheet {
  width: min(1110px, 100%);
  /* верх белого блока — всегда 300px от верха фоновой картинки */
  margin: calc(300px - 100vw * var(--cover-h, 650) / var(--cover-w, 1200)) auto 24px;
  padding: 0 28px 32px;
  padding-top: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  overflow: visible;
}
.org-premium--platinum .org-premium__identity {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px 28px;
  align-items: end;
  min-height: 175px;
  padding: 0 0 22px;
  margin-bottom: 8px;
  border-bottom: none;
  overflow: visible;
}
.org-premium--platinum .org-premium__logo-wrap {
  position: absolute;
  left: 0;
  top: -75px;
  width: 250px;
  height: 250px;
  z-index: 5;
  filter: none;
}
.org-premium--platinum .org-premium__logo-ring {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 7px solid #5F2FE8;
  background: transparent;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 0 5px #fff;
  filter: none;
}
.org-premium--platinum .org-premium__logo {
  position: absolute;
  inset: 12px;
  width: auto;
  height: auto;
  left: 12px;
  top: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  padding: 3px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: none;
  filter: none;
  z-index: 1;
}
.org-premium--platinum .org-premium__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: none;
  box-shadow: none;
}
.org-premium--platinum .org-premium__identity-body {
  grid-column: 2;
  min-width: 0;
  padding-top: 8px;
  padding-bottom: 4px;
}
.org-premium--platinum .org-premium__layout {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 12px 36px;
  padding-top: 18px;
  align-items: start;
}
.org-premium--platinum .org-premium__action--solid {
  background: #6c47ff;
  color: #fff !important;
}
.org-premium--platinum .org-premium__action--solid:hover {
  background: #5b3ae6;
  color: #fff !important;
  filter: none;
}
.org-premium--platinum .org-premium__action--soft {
  background: #f0ebff;
  color: #6c47ff;
}
.org-premium--platinum .org-premium__action--soft:hover {
  background: #e4dbff;
  color: #5b3ae6;
}

.org-premium__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.org-premium__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 6px;
}
.org-premium__title {
  margin: 0 0 5px;
  color: #444444;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.org-verified {
  display: inline-block;
  height: 1em;
  width: auto;
  vertical-align: -0.12em;
  margin-left: 0.28em;
  flex-shrink: 0;
}
.org-premium__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.org-premium__badge--gold {
  background: #f8efd4;
  color: #8a6a10;
  border: 1px solid #e6d39a;
}

.org-premium__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 0;
}
.org-premium__cats span { color: var(--muted); }

.org-premium__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
}
.org-premium__rating .star {
  font-size: 1.2em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.org-premium__rating .star + .star {
  margin-left: -4px;
}
.org-premium__rating strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.org-premium__rating a {
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 1px;
}
.org-premium__ratings-count {
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 1px;
  color: #333;
}
.org-premium__views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 1;
  color: #666;
  position: relative;
  top: 1px;
}
.org-premium__views .org-ico {
  display: block;
  flex-shrink: 0;
  color: #888;
}
.org-premium__dot {
  color: var(--muted);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.org-premium__rate-inline-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #333;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 1px;
}
.org-premium__rating .org-premium__rate-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}
.org-premium__rating .org-premium__rate-star {
  font-size: 24px;
  line-height: 1;
}

.org-premium__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
}
.org-premium__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: filter .15s, background .15s;
}
.org-premium__action .org-ico { display: block; flex-shrink: 0; }
.org-premium__action--solid {
  background: #f2394d;
  color: #fff !important;
}
.org-premium__action--solid:hover {
  filter: brightness(.96);
  color: #fff !important;
}
.org-premium__action--soft {
  background: #fff0f1;
  color: #f2394d;
}
.org-premium__action--soft:hover {
  background: #ffe4e7;
  color: #f2394d;
}
.org-premium__action--solid:not(.org-premium__action--icon) {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 10px;
  white-space: nowrap;
}
.org-premium__action--icon {
  width: 38px;
  padding: 0;
}

.org-premium__side { min-width: 0; }
.org-premium__contacts-card--repeat {
  display: none;
}
@media (min-width: 901px) {
  .org-premium--platinum .org-premium__layout,
  .org-premium--gold .org-premium__layout,
  .org-premium--vip .org-premium__layout,
  .org-premium--basic .org-premium__layout {
    align-items: stretch;
  }
  .org-premium__side {
    display: flex;
    flex-direction: column;
  }
  .org-premium__contacts-card--repeat.is-visible {
    display: block;
    position: sticky;
    top: 100px;
    z-index: 3;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    background: #fff;
    animation: org-contacts-repeat-in 0.22s ease;
  }
}
@keyframes org-contacts-repeat-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.org-premium__contacts {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 14px;
  color: #4a4a4a;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}
.org-premium__contacts li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}
.org-premium__contacts li > div {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
}
.org-premium__contacts .muted {
  color: #4a4a4a;
}
.org-premium__contacts a {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  word-break: break-all;
}
.org-premium__contacts a:hover {
  color: #333333;
  text-decoration: none;
}
.org-premium__ico {
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  flex-shrink: 0;
  padding-top: 2px;
}
.org-ico--globe {
  color: #7b61ff;
}
.org-premium--gold .org-ico--globe {
  color: #FFCB46;
}
.org-premium__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
  font-size: 14px;
}
.org-premium__address-full {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.4;
}
.org-premium__address-street {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.4;
}
.org-premium__address-city {
  margin-top: 2px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.4;
}
.org-premium__address-preview {
  display: grid;
  gap: 2px;
}
.org-premium__address-preview[hidden],
.org-premium__address-list[hidden] {
  display: none !important;
}
.org-premium__address-list {
  display: grid;
  gap: 8px;
  margin-bottom: 2px;
}
.org-premium__address-item {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.4;
}
.org-premium__address-all {
  display: inline;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: none;
  color: #1e85c7 !important;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  text-decoration: none !important;
}
.org-premium__address-all:hover {
  color: #1e85c7 !important;
  text-decoration: none !important;
}
.org-premium__map-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.org-premium__map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 0;
  padding: 5px 8px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #f5f5f5;
  color: #444 !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  flex: 0 1 auto;
}
.org-premium__map-btn .org-ico {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: #666;
}
.org-premium__map-btn:hover {
  background: #ececec;
  color: #444 !important;
  text-decoration: none !important;
}
.org-premium__contacts .is-open,
.org-premium__contacts .is-closed {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
}
.org-premium__hours {
  align-items: flex-start;
}
.org-premium__hours .org-premium__ico {
  padding-top: 1px;
}
.org-premium__hours-schedule {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}
.org-premium__hours-status {
  margin-top: 2px;
  color: #999999;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.org-premium__hours-status--open {
  color: #1a9f4b;
  font-weight: 600;
}
.org-premium__hours-status--closing_soon {
  color: #e67e22;
  font-weight: 600;
}
.org-premium__hours-status--closed {
  color: #d32f2f;
  font-weight: 600;
}
.org-premium__show-phone {
  display: inline;
  margin-left: 8px;
  border: 0;
  background: none;
  padding: 0;
  color: #333333;
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.org-premium__show-phone:hover { text-decoration: none; color: #333333; }
.org-premium__show-phone[hidden] { display: none !important; }

.org-premium__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.org-premium__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
}
.org-premium__cta--red {
  background: var(--red);
  color: #fff !important;
}
.org-premium__cta--red .org-ico { flex-shrink: 0; }
.org-premium__price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f7f7f7;
  border: 1px solid #ececec;
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.org-premium__extra {
  margin-bottom: 18px;
}
.org-premium__extra-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}
.org-premium__extra-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.org-premium__extra-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #d8dde6;
  background: #f4f6f9;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  word-break: break-word;
}
.org-premium__extra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.org-premium__extra-card {
  background: #f3f3f3;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 0;
}
.org-premium__extra-card--wide {
  grid-column: auto;
}
.org-premium__extra-label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #9a9a9a;
  text-transform: lowercase;
}
.org-premium__extra-value {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
  word-break: break-word;
}

.org-premium__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.org-premium__tag {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fafafa;
  border: 1px solid #eee;
  font-size: 12px;
  color: #444;
  line-height: 1.3;
}
.org-premium__tag-label {
  color: var(--muted);
  font-weight: 500;
}

.org-premium__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}
.org-premium__soc {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform .15s ease, opacity .15s ease;
  line-height: 0;
  overflow: visible;
  flex-shrink: 0;
}
.org-premium__soc:hover {
  transform: translateY(-1px) scale(1.06);
  opacity: .92;
}
.org-premium__soc .org-ico,
.org-premium__soc .org-ico--brand {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

.org-premium__rate {
  margin: 0 0 7px;
  padding: 7px 12px 6px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.org-premium__rate-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
}
.org-premium__rate-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0 0 6px;
}
.org-premium__rate-star {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font-size: 28px;
  line-height: 1;
  color: #e0e0e0;
  cursor: pointer;
  transition: color .12s ease, transform .12s ease;
}
.org-premium__rate-star:hover,
.org-premium__rate-star.is-hover,
.org-premium__rate-star.is-active {
  color: #f5a623;
}
.org-premium__rate-star:hover,
.org-premium__rate-star.is-hover {
  transform: scale(1.08);
}
.org-premium__rate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: #6c47ff;
  color: #fff !important;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  transition: background .15s ease, opacity .15s ease;
}
.org-premium__rate-btn:hover {
  background: #2563eb;
  color: #fff !important;
  filter: none;
  text-decoration: none !important;
}
.org-premium__rate-thanks {
  color: #2e7d32;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}
.org-premium__rating .org-premium__rate-thanks,
.org-view__rating .org-premium__rate-thanks {
  margin-top: 0;
  margin-left: 6px;
  white-space: nowrap;
}
.org-premium__write-optional {
  color: #888;
  font-weight: 400;
  font-size: 13px;
}

.org-premium__foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  justify-content: center;
  text-align: center;
}

.org-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #8a93a0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  transition: color .15s;
}
.org-back:hover {
  color: var(--red);
  text-decoration: none;
}
.org-back .org-ico { flex-shrink: 0; }

.org-premium__main { min-width: 0; }
.org-premium__gallery { margin-bottom: 8px; }
.org-premium__gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.org-premium__gallery-title {
  font-size: 14px;
  font-weight: 700;
  color: #444;
}
.org-premium__all-photos {
  font-size: 13px;
  white-space: nowrap;
  border: 0;
  background: none;
  padding: 0;
  color: #1e85c7;
  cursor: pointer;
  font-family: inherit;
}
.org-premium__all-photos:hover {
  text-decoration: underline;
}
.org-premium__thumbs {
  display: grid;
  grid-template-columns: repeat(7, 96px);
  gap: 8px;
  max-height: 96px;
  overflow: hidden;
  transition: max-height .25s ease;
  justify-content: start;
}
.org-premium__gallery.is-expanded .org-premium__thumbs {
  max-height: 3300px;
}
.org-premium__thumb {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #eee;
  background: #f5f5f5;
  padding: 0;
  cursor: pointer;
}
.org-premium__thumb.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.org-premium__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.org-premium__photo-view {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.org-premium__photo-view[hidden] {
  display: none !important;
}
.org-premium__photo-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  cursor: pointer;
}
.org-premium__photo-view-dialog {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-premium__photo-view-dialog img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
  background: #111;
}
.org-premium__photo-view-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.org-premium__photo-view-close:hover {
  background: rgba(255, 255, 255, .3);
}
.org-premium__photo-view-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.org-premium__photo-view-btn:hover {
  background: rgba(255, 255, 255, .3);
}
.org-premium__photo-view-btn--prev { left: 16px; }
.org-premium__photo-view-btn--next { right: 16px; }

.org-premium__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
  border-bottom: 1px solid #eee;
  margin: 14px 0 18px;
}
.org-premium__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  color: #888;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.org-premium__tab:hover { color: var(--red); }
.org-premium__tab.is-active {
  color: var(--text);
  font-weight: 700;
  border-bottom-color: var(--red);
}
.org-premium__tab-count {
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
}
.org-premium__tab.is-active .org-premium__tab-count { color: #999; }

.org-premium__tab-body h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
}
.org-premium__section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 0 0 12px;
}
.org-premium__section-head h2 {
  margin: 0;
}
.org-premium__section-head .org-premium__rate-btn {
  margin-left: auto;
  flex-shrink: 0;
  min-width: 128px;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 11px;
}

.org-premium__write {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.org-premium__write[hidden] {
  display: none !important;
}
.org-premium__write-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.org-premium__write-stars {
  margin: 0 0 10px;
}
.org-premium__write-stars .org-premium__rate-stars {
  justify-content: flex-start;
  margin: 0;
}
.org-premium__write-text {
  display: block;
  width: 100%;
  min-height: 110px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  resize: vertical;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}
.org-premium__write-text.org-premium__write-author {
  min-height: 0;
  height: 40px;
  resize: none;
  line-height: 1.3;
  margin-bottom: 10px;
}
.org-premium__write-text:focus {
  outline: none;
  border-color: #6c47ff;
  box-shadow: 0 0 0 3px rgba(108, 71, 255, 0.15);
}
.org-premium__write .promo-form__captcha,
.org-edit__actions .promo-form__captcha,
.support-form .promo-form__captcha {
  margin: 4px 0 14px;
}
.org-edit__actions .promo-form__captcha {
  width: 100%;
  flex: 1 0 100%;
  order: -1;
}
.org-edit--public .org-edit__actions {
  flex-wrap: wrap;
}
.org-premium__write-actions .org-premium__rate-btn {
  min-width: 128px;
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  font-size: 11px;
  cursor: pointer;
}
.org-premium__write-cancel {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: #888;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.org-premium__write-cancel:hover {
  color: #333;
}
.org-premium__tab-body > p {
  margin: 0 0 16px;
  max-width: 65ch;
  color: #444;
  line-height: 1.55;
  font-size: 15px;
}
.org-premium__desc {
  max-width: 65ch;
  color: #444;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}
.org-premium__desc p {
  margin: 0 0 14px;
}
.org-premium__desc ul {
  margin: 0 0 16px;
  padding-left: 1.15em;
}
.org-premium__desc li {
  margin: 0 0 6px;
}
.org-premium__desc-dash {
  list-style: none;
  padding-left: 0;
}
.org-premium__desc-dash li {
  position: relative;
  padding-left: 1.1em;
}
.org-premium__desc-dash li::before {
  content: '–';
  position: absolute;
  left: 0;
}

.org-premium__recs {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}
.org-premium__recs h3 {
  margin: 0 0 14px;
  font-size: 16px;
}
.org-premium__rec-list { display: grid; gap: 4px; }
.org-premium__rec {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid #f0f0f0;
  color: inherit;
  text-decoration: none !important;
  border-radius: 8px;
}
.org-premium__rec:last-child { border-bottom: 0; }
.org-premium__rec:hover { background: #fafafa; }
.org-premium__rec:hover strong { color: var(--red); }
.org-premium__rec-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
}
.org-premium__rec-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-premium__rec-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.org-premium__rec-body strong {
  color: var(--text);
  overflow-wrap: anywhere;
}
.org-premium__rec-cat {
  color: #1e85c7;
  font-size: 13px;
}
.org-premium__rec-meta {
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.org-premium__rec-rating {
  display: grid;
  justify-items: end;
  gap: 2px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.org-premium__menu-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.org-premium__menu-cat {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  background: #f5f5f5;
  color: #333 !important;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.org-premium__menu-cat:hover,
.org-premium__menu-cat.is-active {
  background: #6c47ff;
  border-color: #6c47ff;
  color: #fff !important;
  text-decoration: none !important;
}
.org-premium__menu-sections {
  display: grid;
  gap: 48px;
}
.org-premium__menu-section-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #222;
  scroll-margin-top: 0;
}
.org-premium__menu-section {
  scroll-margin-top: 0;
}
.org-premium__menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 14px;
}
.org-premium__menu-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.org-premium__menu-photo {
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 1 / 1;
  margin-bottom: 8px;
}
.org-premium__menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.org-premium__menu-card:hover .org-premium__menu-photo img {
  transform: scale(1.2);
}
.org-premium__menu-name {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.org-premium__menu-price {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #222;
  text-align: center;
}
@media (max-width: 640px) {
  .org-premium__menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }
}
.org-premium__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 420px;
}
.org-premium__menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.org-premium__tour {
  max-width: none;
  width: 100%;
}
.org-premium__tour img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-bottom: 10px;
}
.org-premium__tour-frame {
  display: block;
  width: 100%;
  min-height: 560px;
  height: min(70vh, 720px);
  border: 0;
  border-radius: 10px;
  background: #111;
}
.org-premium__feed { display: grid; gap: 12px; }
.org-premium__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #e2e7ef;
  border-radius: 10px;
  background: #f5f7fb;
  color: #333;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.org-premium__more:hover {
  background: #eef2f8;
  border-color: #d5dbe6;
}
.org-premium__more[hidden] {
  display: none !important;
}
.org-premium__feed-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.org-premium__feed-item h3 {
  margin: 4px 0 6px;
  font-size: 16px;
}
.org-premium__feed-item p {
  margin: 8px 0 0;
  color: #444;
  font-size: 15px;
  line-height: 1.55;
}
.org-premium__feed-meta {
  font-size: 12px;
  color: var(--muted);
}
.org-premium__feed-meta--row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.org-premium__feed-meta--row strong {
  color: #333;
  font-weight: 600;
}
.org-premium__feed-meta--row .star {
  font-size: 1.1em;
  line-height: 1;
}
.org-premium__feed-meta--row .star + .star {
  margin-left: -6px;
}
.org-premium__videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.org-premium__video {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.org-premium__video-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}
.org-premium__video img,
.org-premium__video-media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.org-premium__video-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #999;
  background: #f0f0f0;
}
.org-premium__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.org-premium__video-play svg {
  width: 64px;
  height: 64px;
  padding: 16px 14px 16px 18px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(55, 55, 55, .92);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .15s ease, background .15s ease;
}
.org-premium__video:hover .org-premium__video-play svg {
  transform: scale(1.06);
  background: #2a2a2a;
}
.org-premium__video-title {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #555;
}
.org-premium__video-view {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.org-premium__video-view[hidden] {
  display: none !important;
}
.org-premium__video-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  cursor: pointer;
}
.org-premium__video-view-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-premium__video-view-frame {
  width: min(1100px, 100%);
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.org-premium__video-view-frame video,
.org-premium__video-view-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 110px);
  background: #000;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
  object-fit: contain;
}
.org-premium__video-view-error {
  margin-top: 12px;
  max-width: 520px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(226, 35, 26, .92);
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.org-premium__video-view-error[hidden] { display: none !important; }
.org-premium__video-view-title {
  margin-top: 10px;
  color: #fff;
  font-size: 15px;
  text-align: center;
}
.org-premium__video-view-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.org-premium__video-view-close:hover {
  background: rgba(255, 255, 255, .3);
}
.org-premium__video-view-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.org-premium__video-view-btn:hover {
  background: rgba(255, 255, 255, .3);
}
.org-premium__video-view-btn--prev { left: 16px; }
.org-premium__video-view-btn--next { right: 16px; }
.org-premium__map,
.org-map {
  min-height: min(480px, calc(100vh - 240px));
  height: min(480px, calc(100vh - 240px));
  border-radius: 10px;
  border: 1px solid #eee;
  background: #f4f8fb;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}
.org-map--ready {
  padding: 0;
}
.org-map--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: #555;
  font-weight: 500;
}
.org-map__empty {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 36rem;
}
.org-map__empty strong {
  font-size: 15px;
}
.org-map__empty span {
  color: #777;
  font-weight: 400;
  font-size: 14px;
}
.org-map .maplibregl-map {
  width: 100%;
  height: 100%;
  font: inherit;
}
.org-map.maplibregl-map .maplibregl-canvas-container,
.org-map.maplibregl-map .maplibregl-canvas {
  width: 100% !important;
  height: 100% !important;
}
.org-map .maplibregl-popup-content {
  margin: 0;
  padding: 10px 14px;
  line-height: 1.35;
  font-size: 13px;
  border-radius: 8px;
}
.org-map__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  height: auto;
  cursor: pointer;
  pointer-events: auto;
}
.org-map__marker-tip {
  max-width: 240px;
  margin: 0 0 6px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 4px 14px rgba(20, 30, 45, 0.18);
  pointer-events: none;
}
.org-map__marker-tip[hidden] {
  display: none !important;
}
.org-map__marker-tip-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
}
.org-map__marker-tip-address {
  display: block;
  margin-top: 4px;
  color: #555;
  font-weight: 400;
  white-space: normal;
}
.org-map__marker-pin {
  display: block;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
/* Синяя булавка Leaflet — только страница организации (.org-map), не обзорная карта города */
.org-map:not(.city-map__canvas) .org-map__marker--default .org-map__marker-pin,
.org-map__marker--default .org-map__marker-pin {
  width: 25px;
  height: 41px;
  background: url('/assets/vendor/leaflet/images/marker-icon.png') center / contain no-repeat;
}
.org-map__marker--poi .org-map__marker-pin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pin, #5a6570);
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: none;
  filter: none;
  overflow: hidden;
}
.org-map__marker--poi .org-map__marker-poi-img,
.org-map__marker--poi .org-map__marker-pin svg,
.org-map__marker--poi .org-map__marker-poi-svg {
  display: block;
  width: 12px;
  height: 12px;
  object-fit: contain;
  pointer-events: none;
  flex: 0 0 auto;
  color: #fff;
  stroke: #fff;
}
.org-map__marker--poi .org-map__marker-poi-img {
  filter: brightness(0) invert(1);
}
.org-map__marker--poi .org-map__marker-pin--fallback {
  filter: none;
  background: var(--pin, #5a6570);
  border: 2px solid #fff;
  box-shadow: none;
}
.org-map__marker--vip .org-map__marker-pin {
  width: 25px;
  height: 33px;
  background: transparent;
}
.org-map__marker--vip .org-map__marker-pin img {
  display: block;
  width: 25px;
  height: 33px;
  pointer-events: none;
}
.org-map__marker-label[hidden] {
  display: none !important;
}
.org-map__marker-label {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  max-width: 7em;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: #2d2d2d;
  font: italic 12px/1.2 "Noto Sans", "PT Sans", "Segoe UI", Tahoma, sans-serif;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  user-select: none;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     0 0 2px #fff,
     0 0 1px #fff;
}
.org-map__marker.is-current {
  z-index: 6 !important;
}
.org-map__marker.is-current .org-map__marker-label {
  font-weight: 700;
  font-style: normal;
  max-width: 10em;
  color: #1a1a1a;
}
.org-map__marker.is-current.org-map__marker--poi .org-map__marker-pin {
  border-color: var(--red, #e53935);
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.25), 0 1px 2px rgba(20, 30, 45, 0.22);
}
.org-map__marker.is-current.org-map__marker--default .org-map__marker-pin {
  filter: drop-shadow(0 1px 2px rgba(20, 30, 45, 0.35));
}
/* Подпись под синей булавкой текущей организации */
.org-map__marker--default .org-map__marker-label {
  top: calc(100% - 2px);
}
.city-map__canvas .org-map__marker--poi {
  /* точка привязки — низ иконки, подпись абсолютная снизу */
  padding-bottom: 0;
}
.org-map .maplibregl-ctrl-top-left,
.org-edit__map .maplibregl-ctrl-top-left,
.city-map .maplibregl-ctrl-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.city-map .maplibregl-ctrl-top-right {
  align-items: flex-end;
}
.maplibregl-ctrl-pitch {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.maplibregl-ctrl-pitch__label {
  font: 700 12px/1 "Segoe UI", "Noto Sans", Tahoma, sans-serif;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.maplibregl-ctrl-pitch.is-active {
  color: #1a5fb4;
}

/* Modal: позвонить */
.org-call-modal[hidden] { display: none !important; }
.org-call-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.org-call-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 25, .45);
}
.org-call-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}
.org-call-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.org-call-modal__close:hover { color: var(--red); }
.org-call-modal__title {
  margin: 0 0 16px;
  font-size: 18px;
}
.org-call-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.org-call-modal__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.org-call-modal__number {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.org-call-modal__number:hover { color: var(--red); }
.org-call-modal__copy {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #666;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.org-call-modal__copy:hover {
  border-color: var(--red);
  color: var(--red);
}
.org-call-modal__copy.is-copied {
  border-color: #1a9b4a;
  color: #1a9b4a;
}
.org-call-modal__label {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  line-height: 1.3;
}
.org-premium__phones {
  display: grid;
  gap: 10px;
}
.org-premium__phones-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  color: #4a4a4a;
  font-size: 14px;
}
.org-premium__phones-preview[hidden],
.org-premium__phones-list[hidden] {
  display: none !important;
}
.org-premium__phones-list {
  display: grid;
  gap: 10px;
}
.org-premium__phone-item {
  min-width: 0;
}
.org-premium__phone-number {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  color: #4a4a4a;
  font-size: 14px;
}
.org-premium__phone-label {
  margin-top: 2px;
  color: #999999;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 900px) {
  /* Единый мобильный каркас для platinum / gold / vip / basic */
  .org-premium--platinum .org-premium__cover {
    display: block;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: auto;
    min-height: 0;
    max-height: none;
    line-height: 0;
    overflow: hidden;
  }
  .org-premium--platinum .org-premium__cover img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    max-width: none !important;
    max-height: none !important;
    object-fit: unset;
  }
  .org-premium--platinum .org-premium__sheet,
  .org-premium--gold .org-premium__sheet,
  .org-premium--vip .org-premium__sheet,
  .org-premium--basic .org-premium__sheet,
  .org-vip-layout .org-premium--vip .org-premium__sheet,
  .org-vip-layout .org-premium--basic .org-premium__sheet {
    width: calc(100% + var(--gutter) * 2);
    max-width: none;
    margin: 56px 0 24px;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    padding: 0 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    border-top: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    box-sizing: border-box;
  }
  .org-premium--platinum .org-premium__sheet {
    margin-top: -64px;
  }
  .org-premium--gold .org-premium__identity,
  .org-premium--vip .org-premium__identity,
  .org-premium--basic .org-premium__identity,
  .org-premium--platinum .org-premium__identity {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 78px;
  }
  .org-premium--gold .org-premium__logo-wrap,
  .org-premium--vip .org-premium__logo-wrap,
  .org-premium--basic .org-premium__logo-wrap,
  .org-premium--platinum .org-premium__logo-wrap {
    width: 140px;
    height: 140px;
    top: -70px;
    left: 12px;
  }
  .org-premium--gold .org-premium__logo-ring,
  .org-premium--vip .org-premium__logo-ring,
  .org-premium--platinum .org-premium__logo-ring {
    display: block;
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 2;
  }
  .org-premium--basic .org-premium__logo-ring {
    display: none;
  }
  .org-premium--gold .org-premium__logo,
  .org-premium--vip .org-premium__logo,
  .org-premium--basic .org-premium__logo,
  .org-premium--platinum .org-premium__logo {
    inset: 12px;
    width: auto;
    height: auto;
    left: 12px;
    top: 12px;
    right: 12px;
    bottom: 12px;
  }
  .org-premium--gold .org-premium__logo img,
  .org-premium--vip .org-premium__logo img,
  .org-premium--basic .org-premium__logo img,
  .org-premium--platinum .org-premium__logo img {
    object-fit: cover;
  }
  .org-premium--gold .org-premium__identity-body,
  .org-premium--vip .org-premium__identity-body,
  .org-premium--basic .org-premium__identity-body,
  .org-premium--platinum .org-premium__identity-body {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-right: 0;
  }
  .org-premium--platinum .org-premium__layout,
  .org-premium--gold .org-premium__layout,
  .org-premium--vip .org-premium__layout,
  .org-premium--basic .org-premium__layout {
    grid-template-columns: 1fr;
  }
  .org-premium--platinum .org-premium__layout > *,
  .org-premium--gold .org-premium__layout > *,
  .org-premium--vip .org-premium__layout > *,
  .org-premium--basic .org-premium__layout > * {
    grid-column: 1 / -1;
  }
  .org-vip-layout {
    flex-wrap: wrap;
  }
  .org-vip-layout__main {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .org-vip-layout__aside {
    flex: 1 1 100%;
    width: 100%;
    position: static;
  }
  .org-premium__mobile-promo {
    display: block;
    width: 100%;
    margin: 8px 0 18px;
  }
  .org-premium__mobile-banners {
    display: none !important;
  }
  .org-desktop-promo {
    display: none !important;
  }
  aside.org-vip-layout__aside.org-desktop-promo,
  .org-recommend-row__aside {
    display: block !important;
    width: 100%;
  }
  .org-premium__mobile-banners .side-banner {
    width: 100%;
  }
  .org-premium__thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }
  .org-premium__thumbs {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-height: none;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .org-premium__gallery.is-expanded .org-premium__thumbs {
    max-height: none;
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .org-premium__actions {
    flex-wrap: wrap;
  }
  .org-premium__action--solid:not(.org-premium__action--icon) {
    flex: 1 1 calc(50% - 6px);
    white-space: normal;
    text-align: center;
  }
  .org-premium__map-actions {
    flex-wrap: wrap;
  }
  .org-premium__map-btn {
    white-space: normal;
  }
  .org-premium__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 2px;
    margin-inline: -12px;
    padding-inline: 12px;
    width: calc(100% + 24px);
    box-sizing: border-box;
  }
  .org-premium__tabs::-webkit-scrollbar {
    display: none;
  }
  .org-premium__rec {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .org-premium__rec-rating {
    grid-column: 2;
    justify-items: start;
  }
  .org-premium__rec-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
}

/* —— Org edit —— */
.org-edit-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  max-width: none;
  margin: 10px 0 0;
  padding: 0;
  box-sizing: border-box;
}
.org-edit-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 2px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.org-edit-bar__btn:hover { filter: brightness(0.9); }
.org-edit-bar__btn .org-ico { flex: 0 0 auto; }
.org-photo-manager {
  max-width: 1110px;
  margin: 0 auto 20px;
  padding: 18px;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.org-photo-manager[hidden] { display: none !important; }
.org-photo-manager__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.org-photo-manager__head h2 { margin: 0; font-size: 21px; }
.org-photo-manager__close {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  font: 28px/1 Arial, sans-serif;
  cursor: pointer;
}
.org-photo-manager__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.org-photo-manager__actions form { display: contents; }
.org-photo-manager__action {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  background: #fff;
  color: #333;
  font: 600 13px/1.2 inherit;
  cursor: pointer;
}
.org-photo-manager__action:hover { border-color: #aaa; }
.org-photo-manager__action--danger {
  border-color: #d92d20;
  background: #d92d20;
  color: #fff;
}
.org-photo-manager__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 10px;
}
.org-photo-manager__item {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: #eee;
  cursor: default;
}
.org-photo-manager__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: opacity .15s;
}
.org-photo-manager__check {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: #e00000;
  font: 900 clamp(54px, 7vw, 92px)/1 Arial, sans-serif;
  text-shadow: 0 2px 4px rgba(255,255,255,.9);
  pointer-events: none;
}
.org-photo-manager.is-delete-mode .org-photo-manager__item { cursor: pointer; }
.org-photo-manager.is-delete-mode .org-photo-manager__item img { opacity: .3; }
.org-photo-manager.is-delete-mode .org-photo-manager__item.is-selected {
  border-color: #e00000;
}
.org-photo-manager.is-delete-mode .org-photo-manager__item.is-selected .org-photo-manager__check {
  display: flex;
}
.org-photo-manager.is-reorder-mode .org-photo-manager__item {
  cursor: grab;
  animation: org-photo-wiggle .24s ease-in-out infinite alternate;
}
.org-photo-manager.is-reorder-mode .org-photo-manager__item:nth-child(even) {
  animation-direction: alternate-reverse;
}
.org-photo-manager.is-reorder-mode .org-photo-manager__item:active { cursor: grabbing; }
.org-photo-manager__item.is-dragging { opacity: .35; animation: none !important; }
.org-photo-manager__empty { margin: 0; color: #777; }
.org-video-manager__item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  background: #111;
  transition: opacity .15s;
}
.org-video-manager.is-delete-mode .org-video-manager__item video { opacity: .3; }
.org-video-manager__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #999;
  background: #f0f0f0;
  font-size: 13px;
}
@keyframes org-photo-wiggle {
  from { transform: rotate(-.7deg) translateY(-1px); }
  to { transform: rotate(.7deg) translateY(1px); }
}
.org-edit__error {
  max-width: 1110px;
  margin: 0 auto 12px;
  padding: 10px 14px;
  background: #fff1f2;
  color: #b42318;
  border-radius: 8px;
  border: 1px solid #fecdd3;
}
.org-edit {
  max-width: 1110px;
  margin: 0 auto 28px;
  padding: 22px 24px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  box-sizing: border-box;
}
.org-edit[hidden] { display: none !important; }
.org-edit__head { margin-bottom: 18px; }
.org-edit__title { margin: 0 0 4px; font-size: 22px; }
.org-edit__hint { margin: 0; color: #888; font-size: 13px; }
.org-edit__subtitle { margin: 8px 0 12px; font-size: 18px; }
.org-edit__muted { margin: 0; color: #888; font-size: 14px; }
.org-edit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.org-edit__field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.org-edit__field--full { grid-column: 1 / -1; }
.org-edit__field--phone { grid-column: 1 / -1; }
.org-edit__label { font-size: 13px; font-weight: 600; color: #444; }
.org-edit__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
}
.org-edit__label-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.org-edit__label-hint {
  margin-left: 6px;
  font-weight: 400;
  font-size: 12px;
  color: #999;
}
.org-edit__btn--sm {
  padding: 6px 12px;
  font-size: 13px;
  flex: 0 0 auto;
}
.org-edit__control, .org-edit__file, .org-edit select.org-edit__control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  background: #fff;
}
.org-edit__phone-row { display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 10px; }
.org-edit__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}
.org-edit__checks--scroll {
  max-height: 220px;
  overflow: auto;
}
.org-edit__check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
}
.org-edit__check[hidden] {
  display: none !important;
}
.org-edit__seg { display: flex; flex-wrap: wrap; gap: 8px; }
.org-edit__seg-btn {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.org-edit__seg-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.org-edit__schedule-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.org-edit__chip {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.org-edit__chip:hover {
  border-color: var(--red);
  color: var(--red);
}
.org-edit__schedule-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.org-edit__schedule-head,
.org-edit__schedule-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}
.org-edit__schedule-head {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}
.org-edit__schedule-cell--day {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.org-edit__schedule .org-edit__control.is-invalid {
  border-color: #d32f2f;
  box-shadow: 0 0 0 1px rgba(211, 47, 47, 0.25);
  background: #fff5f5;
}
.org-edit__schedule .org-edit__control:disabled {
  opacity: 0.55;
  background: #f5f5f5;
}
@media (max-width: 900px) {
  .org-edit__schedule-head { display: none; }
  .org-edit__schedule-row {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    border: 1px solid #e6e8ee;
    border-radius: 10px;
    background: #fafbfc;
  }
  .org-edit__schedule-cell--day { grid-column: 1 / -1; }
}
.org-edit__preview {
  margin-top: 8px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}
.org-edit__preview--wide { width: 160px; object-fit: cover; }
.org-edit__media-current {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}
.org-edit__media-current .org-edit__preview { margin-top: 0; }
.org-edit__delete-media {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #b42318;
  cursor: pointer;
  user-select: none;
}
.org-edit__delete-media input {
  width: 16px;
  height: 16px;
  accent-color: #d92d20;
}
.org-edit__tags {
  min-height: 210px; /* ~5× высота обычного input */
  height: 210px;
  resize: vertical;
  line-height: 1.4;
}
.tags-colored {
  position: relative;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.tags-colored__backdrop,
.tags-colored__input {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  border: 0 !important;
  border-radius: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
.tags-colored__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: #111;
  background: #fff;
}
.tags-colored__input.tags-colored__input {
  position: relative;
  z-index: 1;
  background: transparent !important;
  color: transparent;
  caret-color: #111;
  -webkit-text-fill-color: transparent;
}
.tags-colored__input::selection {
  background: rgba(47, 120, 255, 0.28);
}
.tags-colored__tag { color: #111; }
.tags-colored__tag--tr { color: #d92d20; }
.tags-colored__sep { color: #111; }
.org-edit__tags.tags-colored__input {
  min-height: 210px;
  height: 210px;
}
.org-edit__rte-shell {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  max-height: calc(100vh - 160px);
  max-height: calc(100dvh - 160px);
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.org-edit__rte-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0;
  padding: 8px 10px;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #f7f7f8;
}
.org-edit__rte-toolbar button,
.org-edit__rte-img,
.org-edit__rte-select,
.org-edit__rte-color {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.org-edit__rte-select {
  min-width: 120px;
  max-width: 170px;
}
.org-edit__rte-img { display: inline-flex; align-items: center; }
.org-edit__rte-color {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 32px;
  padding: 4px 8px;
  overflow: hidden;
}
.org-edit__rte-color span {
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.org-edit__rte-color--bg span {
  padding: 1px 3px;
  background: #fff59d;
  border-radius: 3px;
}
.org-edit__rte-color input[type="color"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.org-edit__rte {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 0;
  padding: 12px;
  background: #fff;
  line-height: 1.5;
  -webkit-overflow-scrolling: touch;
}
.org-edit__rte img { max-width: 100%; height: auto; border-radius: 6px; cursor: pointer; }
.org-edit__rte img.is-resizing {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.org-edit__field { position: relative; }
.org-edit__img-resize {
  position: absolute;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  max-width: 420px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  font-size: 13px;
}
.org-edit__img-resize[hidden] { display: none !important; }
.org-edit__img-resize-title {
  flex-basis: 100%;
  font-weight: 700;
  color: #444;
}
.org-edit__img-resize label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
}
.org-edit__img-resize input[type="number"] {
  width: 76px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font: inherit;
}
.org-edit__img-resize-ratio { flex-basis: 100%; }
.org-edit__img-resize-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-basis: 100%;
}
.org-edit__img-resize-actions button {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.org-edit__img-resize-actions [data-img-apply] {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.org-edit__img-resize-actions [data-img-close] {
  margin-left: auto;
  min-width: 32px;
  color: #777;
}
.org-edit__map-wrap {
  position: relative;
  z-index: 1;
}
.org-edit__map-search {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  z-index: 3;
  width: min(320px, calc(100% - 56px));
}
.org-edit__map-search-input {
  width: 100%;
  box-sizing: border-box;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #cfd6dd;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  color: #222;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.org-edit__map-search-input:focus {
  outline: none;
  border-color: #8aa0b4;
  box-shadow: 0 0 0 2px rgba(100, 140, 180, 0.2);
}
.org-edit__map-search-results {
  list-style: none;
  margin: 4px 0 0;
  padding: 4px 0;
  max-height: 220px;
  overflow: auto;
  border: 1px solid #cfd6dd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}
.org-edit__map-search-results[hidden] {
  display: none !important;
}
.org-edit__map-search-item {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  color: #222;
  cursor: pointer;
}
.org-edit__map-search-item:hover,
.org-edit__map-search-item:focus {
  background: #f2f6fa;
  outline: none;
}
.org-edit__map-search-empty,
.org-edit__map-search-status {
  padding: 8px 12px;
  font-size: 13px;
  color: #777;
}
.org-edit__map {
  height: min(420px, 55vh);
  min-height: 280px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #e8eef3;
  overflow: hidden;
  z-index: 1;
}
.org-edit__map .maplibregl-map {
  width: 100%;
  height: 100%;
  font: inherit;
}
.org-edit__map-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 8px;
}
.org-edit__map-coords {
  font-size: 13px;
  color: #666;
  font-variant-numeric: tabular-nums;
}
.org-edit__map-clear {
  padding: 6px 12px;
  font-size: 12px;
}
.org-edit__map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  color: #888;
  text-align: center;
  font-size: 14px;
}
.org-edit__map-placeholder {
  min-height: 220px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  background: #f4f8fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
  padding: 20px;
}
.org-edit__menu.is-hidden { display: none !important; }
.org-edit__menu {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.org-edit__menu-cat {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fafafa;
  width: 100%;
  box-sizing: border-box;
}
.org-edit__menu-cat-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
}
.org-edit__menu-product {
  display: grid;
  grid-template-columns: 70px 72px minmax(0, 1fr) 110px auto auto;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  width: 100%;
  box-sizing: border-box;
}
.org-edit__menu-photo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin: 0;
  padding: 8px 6px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}
.org-edit__menu-photo:hover {
  border-color: #bbb;
  background: #fafafa;
}
.org-edit__file--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.org-edit__menu-photo-label {
  font-size: 13px;
  line-height: 1;
  color: #333;
  white-space: nowrap;
}
.org-edit__menu-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.org-edit__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.org-edit__btn {
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.org-edit__btn--primary { background: var(--red); color: #fff; }
.org-edit__btn--ghost { background: #f3f3f3; color: #333; }
.org-edit__btn--danger { background: transparent; color: #b42318; font-size: 18px; line-height: 1; padding: 6px 10px; }
.org-edit--public .org-edit__actions {
  justify-content: center;
  flex-wrap: wrap;
}
.org-edit--public .org-edit__actions .promo-form__captcha,
.support-form .promo-form__captcha,
.org-premium__write .promo-form__captcha {
  width: 100%;
  flex: 1 0 100%;
  margin: 4px 0 14px;
}
.org-edit__owner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
}
.org-edit__owner-row .org-edit__control {
  flex: 1 1 220px;
  max-width: 420px;
}
.org-edit__owner-note {
  flex: 1 1 260px;
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.45;
  color: #777;
}
.org-edit__owner-auth {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #1a73e8;
  cursor: pointer;
  text-decoration: underline;
}
.org-edit__owner-auth:hover { color: var(--red); }

.org-edit__socials-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.org-edit__socials-hint .org-edit__muted {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.org-edit__socials-toggle {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin: -2px 0 0;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.org-edit__socials-toggle:hover {
  border-color: #bbb;
  background: #fafafa;
}
.org-edit__socials-toggle-ico {
  display: inline-block;
  font-size: 16px;
  transition: transform .15s ease;
  transform: rotate(-90deg);
}
.org-edit__socials-toggle[aria-expanded="true"] .org-edit__socials-toggle-ico {
  transform: rotate(0deg);
}
.org-edit__socials .org-edit__muted { margin-bottom: 10px; }
.org-edit__social-subtitle { margin: 18px 0 10px !important; }
.org-edit__extra-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  min-height: 48px;
}
.org-edit__extra-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 6px 6px 6px 12px;
  border-radius: 999px;
  border: 1px solid #d8dde6;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}
.org-edit__extra-chip-text {
  word-break: break-word;
}
.org-edit__extra-chip-remove {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #888;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.org-edit__extra-chip-remove:hover {
  background: #f0f2f5;
  color: #b42318;
}
.org-edit__extra-add {
  flex: 1 1 140px;
  min-width: 120px;
  max-width: 280px;
  box-sizing: border-box;
  border: 0;
  outline: none;
  background: transparent;
  padding: 8px 4px;
  font: inherit;
  font-size: 14px;
  color: #333;
}
.org-edit__extra-add::placeholder {
  color: #999;
}
.org-edit__social-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.org-edit__social-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.org-edit__social-row {
  display: grid;
  grid-template-columns: 32px minmax(110px, 180px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.org-edit__social-ico {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
}
.org-edit__social-ico-spacer {
  width: 28px;
  height: 28px;
  display: block;
}
.org-edit__social-ico:hover {
  transform: scale(1.08);
  opacity: .9;
}
.org-edit__social-ico:disabled {
  cursor: default;
  opacity: .45;
  transform: none;
}
.org-edit__social-ico .org-ico,
.org-edit__social-ico .org-ico--brand {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}
.org-edit__social-name {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.org-edit__social-name--empty { visibility: hidden; }
.org-edit__social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.org-edit__social-btn {
  padding: 8px 12px;
  font-size: 12px;
  white-space: nowrap;
}
.org-edit__social-btn:disabled {
  opacity: .45;
  cursor: default;
}
@media (max-width: 640px) {
  .org-edit__social-row {
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }
  .org-edit__social-name { grid-column: 2; }
  .org-edit__social-row .org-edit__control { grid-column: 1 / -1; }
  .org-edit__social-actions { grid-column: 1 / -1; justify-content: flex-start; }
}

.org-submit-done {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 48px 40px 40px;
  background: #fff;
  border: 1px solid #e8e8e8;
  text-align: center;
}
.org-submit-done__icon {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
}
.org-submit-done__check {
  position: absolute;
  top: -2px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}
.org-submit-done__title {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #333;
}
.org-submit-done__text {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 1.55;
  color: #777;
}
.org-submit-done__text p {
  margin: 0 0 12px;
}
.org-submit-done__text a {
  color: #1a73e8;
  text-decoration: none;
}
.org-submit-done__text a:hover {
  text-decoration: underline;
}
.org-submit-done__btn {
  display: inline-block;
  min-width: 220px;
  padding: 12px 28px;
  background: var(--red, #f0444e);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 2px;
}
.org-submit-done__btn:hover {
  filter: brightness(0.95);
}

.support-form {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 28px 32px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}
.support-form__title {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}
.support-form__error {
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #fdeeee;
  color: #a32020;
  border-radius: 4px;
  font-size: 14px;
}
.support-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.support-form__label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}
.support-form__control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  padding: 11px 12px;
  font: inherit;
  font-size: 15px;
  color: #333;
  background: #fff;
}
.support-form__control:focus {
  outline: 0;
  border-color: #999;
}
.support-form__control--area {
  min-height: 160px;
  resize: vertical;
  line-height: 1.45;
}
.support-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  padding-top: 8px;
}
.support-form__btn {
  border: 0;
  border-radius: 2px;
  padding: 11px 28px;
  background: var(--red, #f0444e);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.support-form__btn:hover {
  filter: brightness(0.95);
}
.support-done .org-submit-done__title {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.promo-form {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 28px 32px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}
.promo-form__heading {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  line-height: 1.25;
}
.promo-form--notice {
  text-align: left;
  color: #555;
  line-height: 1.5;
}
.promo-form__error {
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #fdeeee;
  color: #a32020;
  font-size: 14px;
}
.promo-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
  border: 0;
  padding: 0;
  min-width: 0;
}
.promo-form__label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}
.promo-form__sublabel {
  font-size: 13px;
  color: #777;
}
.promo-form__control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  padding: 11px 12px;
  font: inherit;
  font-size: 15px;
  color: #333;
  background: #fff;
}
.promo-form__control:focus {
  outline: 0;
  border-color: #999;
}
.promo-form__control[readonly] {
  background: #f7f7f7;
  color: #333;
}
.promo-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.promo-form__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.promo-form__muted {
  margin: 0;
  color: #888;
  font-size: 14px;
}
.promo-form__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.promo-form__date {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.promo-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 22px;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
  cursor: pointer;
}
.promo-form__consent input {
  margin-top: 3px;
}
.promo-form__consent a {
  color: #1a73e8;
  text-decoration: none;
}
.promo-form__consent a:hover {
  text-decoration: underline;
}
.promo-form__captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 22px;
  font-size: 14px;
  color: #555;
}
.promo-form__captcha-label {
  flex: 1 1 240px;
}
.promo-form__captcha-refresh {
  color: #1a73e8;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
}
.promo-form__captcha-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.promo-form__captcha-opt {
  position: relative;
  cursor: pointer;
}
.promo-form__captcha-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.promo-form__captcha-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  font-size: 28px;
}
.promo-form__captcha-opt input:checked + span,
.promo-form__captcha-opt:hover span {
  border-color: var(--red, #f0444e);
  background: #fff5f5;
}
.promo-form__actions {
  display: flex;
  justify-content: flex-end;
}
.promo-form__btn {
  border: 0;
  border-radius: 2px;
  padding: 11px 28px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.promo-form__btn--green {
  background: #2f9e44;
  color: #fff !important;
}
.promo-form__btn--green:hover {
  filter: brightness(0.95);
}
.promo-form__linkbtn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: #1a73e8;
  cursor: pointer;
  text-decoration: underline;
}
.promo-done .org-submit-done__title {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* —— Мобильное приложение —— */
.main--mobile-app {
  max-width: none;
  padding: 0;
}
.app-page {
  --app-ink: #1a1d24;
  --app-red: #f2394d;
  --app-cyan: #1ec8c1;
  --app-amber: #ffb020;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 200px);
  margin: 0 calc(-1 * var(--gutter, 100px));
  padding: 48px var(--gutter, 100px) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(242, 57, 77, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(30, 200, 193, 0.18), transparent 50%),
    radial-gradient(700px 480px at 70% 100%, rgba(255, 176, 32, 0.16), transparent 45%),
    linear-gradient(160deg, #fff7f4 0%, #f3fbfa 48%, #fff6ea 100%);
  color: var(--app-ink);
}
.app-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.55;
  animation: app-glow-float 8s ease-in-out infinite;
}
.app-page__glow--a {
  width: 280px;
  height: 280px;
  left: 8%;
  top: 18%;
  background: rgba(242, 57, 77, 0.35);
}
.app-page__glow--b {
  width: 220px;
  height: 220px;
  right: 12%;
  bottom: 12%;
  background: rgba(30, 200, 193, 0.35);
  animation-delay: -3s;
}
.app-page__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 29, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 29, 36, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  pointer-events: none;
}
.app-page__hero {
  position: relative;
  z-index: 1;
  max-width: 640px;
  animation: app-rise 0.7s ease-out both;
}
.app-page__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-bottom: 22px;
}
.app-page__logo {
  display: block;
  height: 52px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(242, 57, 77, 0.18));
}
.app-page__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242, 57, 77, 0.1);
  color: var(--app-red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.app-page__title {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--app-ink);
}
.app-page__lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: 18px;
  line-height: 1.45;
  color: #4a5160;
}
.app-page__stores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.app-store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #11151c;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(17, 21, 28, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: app-rise 0.7s ease-out both;
}
.app-store:nth-child(1) { animation-delay: 0.08s; }
.app-store:nth-child(2) { animation-delay: 0.16s; }
.app-store:nth-child(3) { animation-delay: 0.24s; }
.app-store:nth-child(4) { animation-delay: 0.32s; }
.app-store:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 34px rgba(17, 21, 28, 0.28);
}
.app-store--apple { background: #000; }
.app-store--google { background: #111; }
.app-store--rustore { background: #0b2a5b; }
.app-store--yandex { background: #1c1c1c; }
.app-store__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}
.app-store__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.app-store__sub {
  font-size: 11px;
  opacity: 0.75;
  line-height: 1.2;
}
.app-store__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.app-page__phone {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: app-phone-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.app-page__phone-frame {
  width: min(280px, 72vw);
  aspect-ratio: 9 / 19;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(160deg, #2a3140, #12151c);
  box-shadow:
    0 30px 60px rgba(18, 21, 28, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(3deg);
}
.app-page__phone-notch {
  width: 34%;
  height: 12px;
  margin: 2px auto 8px;
  border-radius: 999px;
  background: #0a0c10;
}
.app-page__phone-screen {
  height: calc(100% - 22px);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.app-phone-ui {
  height: 100%;
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  line-height: 1.25;
  color: #1a1d24;
  box-sizing: border-box;
  overflow: hidden;
}
.app-phone-ui__head {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.app-phone-ui__back {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 22px;
  line-height: 1;
  color: #9aa1ad;
}
.app-phone-ui__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, #f2394d, #ff7a88);
  box-shadow: 0 6px 16px rgba(242, 57, 77, 0.28);
}
.app-phone-ui__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}
.app-phone-ui__title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.app-phone-ui__cat {
  text-align: center;
  color: #4a90e2;
  font-size: 10px;
  font-weight: 600;
  margin-top: -2px;
}
.app-phone-ui__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #5a6270;
  font-weight: 600;
}
.app-phone-ui__rating { color: #f5a623; }
.app-phone-ui__views {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.app-phone-ui__actions {
  display: grid;
  grid-template-columns: 1fr repeat(3, 32px);
  gap: 6px;
  margin-top: 2px;
}
.app-phone-ui__review,
.app-phone-ui__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 32px;
  border-radius: 8px;
  background: #f2394d;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}
.app-phone-ui__icon { padding: 0; }
.app-phone-ui__address {
  position: relative;
  margin-top: 2px;
  padding: 10px 36px 10px 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 21, 28, 0.12);
  border: 1px solid #eef0f4;
}
.app-phone-ui__address-main {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.app-phone-ui__address-text {
  font-size: 10px;
  font-weight: 600;
}
.app-phone-ui__address-link {
  margin-top: 3px;
  color: #4a90e2;
  font-size: 9px;
  font-weight: 600;
}
.app-phone-ui__map-btn {
  margin-top: 8px;
  text-align: center;
  padding: 7px 8px;
  border-radius: 8px;
  background: #f2f4f7;
  font-size: 10px;
  font-weight: 600;
  color: #3a4150;
}
.app-phone-ui__big-pin {
  position: absolute;
  right: -2px;
  top: 18px;
  filter: drop-shadow(0 6px 10px rgba(229, 57, 53, 0.35));
  transform: scale(1.35);
}
.app-phone-ui__phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
}
.app-phone-ui__show {
  margin-left: auto;
  color: #4a90e2;
  font-weight: 700;
}
.app-phone-ui__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.app-phone-ui__links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  background: #f2f4f7;
  font-size: 9px;
  font-weight: 600;
  color: #3a4150;
  overflow: hidden;
  white-space: nowrap;
}
.app-phone-ui__bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.app-phone-ui__route,
.app-phone-ui__taxi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}
.app-phone-ui__route {
  background: #f2394d;
  color: #fff;
}
.app-phone-ui__taxi {
  background: #ffd400;
  color: #1a1d24;
  gap: 5px;
}

@keyframes app-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes app-phone-in {
  from { opacity: 0; transform: translateY(30px) rotate(8deg) scale(0.96); }
  to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
@keyframes app-glow-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -12px); }
}

@media (max-width: 980px) {
  .app-page {
    grid-template-columns: 1fr;
    margin: 0 -16px;
    padding: 28px 16px 40px;
    min-height: auto;
  }
  .app-page__phone { order: -1; }
  .app-page__phone-frame {
    width: min(230px, 58vw);
    transform: rotate(0);
  }
  .app-page__stores { grid-template-columns: 1fr; }
  .app-page__title { font-size: 34px; }
  .app-page__lead { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .app-page__glow,
  .app-page__hero,
  .app-store,
  .app-page__phone {
    animation: none;
  }
}

@media (max-width: 800px) {
  .org-edit__grid { grid-template-columns: 1fr; }
  .org-edit__phone-row,
  .org-edit__menu-cat-head,
  .org-edit__menu-product { grid-template-columns: 1fr; }
  .org-submit-done {
    padding: 32px 18px 28px;
  }
  .org-submit-done__title {
    font-size: 22px;
  }
  .support-form {
    padding: 22px 16px 18px;
  }
  .promo-form {
    padding: 22px 16px 18px;
  }
  .promo-form__dates {
    grid-template-columns: 1fr;
  }
}

/* —— Org statistics —— */
.org-stats {
  max-width: 1350px;
  margin: 0 auto 40px;
  padding: 8px 0 24px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.org-stats__layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
  width: 100%;
}
.org-stats__layout > .org-stats__card {
  flex: 1 1 auto;
  min-width: 0;
}
.org-stats__aside {
  width: 350px;
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.org-stats__promo {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 16px 16px 18px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(18, 21, 28, 0.05);
}
.org-stats__example {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 16px 14px 14px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(18, 21, 28, 0.05);
}
.org-stats__example-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1d24;
}
.org-stats__example-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.org-stats__example-badge--vip { background: #7acf26; }
.org-stats__example-badge--gold { background: #FFCB46; color: #333; }
.org-stats__example-badge--platinum { background: #9C66F6; }
.org-stats__example-card {
  width: 100%;
  box-sizing: border-box;
}
.org-stats__example-card.org-card {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 12px;
  padding: 10px;
}
.org-stats__example-card .org-card__photo {
  width: 72px;
  height: 72px;
}
.org-stats__example-card .org-card__photo img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}
.org-stats__example-card .org-card__title {
  font-size: 14px;
  margin: 0;
  line-height: 1.3;
}
.org-stats__example-card .org-card__sub,
.org-stats__example-card .org-card__line {
  font-size: 12px;
}
.org-stats__example-card .org-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.org-stats__example-card .org-card__side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.org-stats__example-card .org-card__go {
  min-height: 28px;
  padding: 0 10px;
  font-size: 12px;
}
.org-stats__promo-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1d24;
}
.org-stats__promo-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.org-stats__promo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.org-stats__promo-btn:hover,
.org-stats__promo-btn:focus-visible {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  filter: none;
}
.org-stats__promo-btn:active {
  transform: translateY(1px);
}
.org-stats__promo-ico {
  flex: 0 0 auto;
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: inherit;
}
.org-stats__promo-ico svg {
  display: block;
  width: 100%;
  height: 100%;
}
.org-stats__promo-btn-text {
  flex: 1 1 auto;
  min-width: 0;
}
.org-stats__promo-btn--views {
  background: #7acf26;
}
.org-stats__promo-btn--banner {
  background: #9B59B6;
}
.org-stats__promo-btn--teaser {
  background: #9F2B68;
}
@media (max-width: 1150px) {
  .org-stats__layout {
    flex-direction: column;
  }
  .org-stats__aside {
    width: 100%;
    max-width: 350px;
    flex: 0 0 auto;
    align-self: stretch;
  }
}
.org-stats__head { margin-bottom: 22px; }
.org-stats__title {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.org-stats__title .org-stats__year-label {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45em;
  vertical-align: middle;
}
.org-stats__year-select {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  min-width: 88px;
  min-height: 36px;
  border: 1px solid #e2e7ef;
  border-radius: 10px;
  background: #f7f9fc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238a93a0' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") right 10px center no-repeat;
  padding: 6px 28px 6px 12px;
  color: #5a6270;
  font: inherit;
  font-size: 16px; /* было ~22px (0.78em от 28px), −6px */
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  cursor: pointer;
  vertical-align: middle;
}
.org-stats__year-select:hover,
.org-stats__year-select:focus {
  color: var(--red);
  border-color: #cfd7e4;
  outline: none;
}
.org-stats__year-label .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.org-stats__org {
  margin: 0 0 10px;
  color: #5a6270;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.org-stats__back {
  color: #8a93a0;
  text-decoration: none;
  font-size: 14px;
  flex: 0 0 auto;
}
.org-stats__back:hover { color: var(--red); }
.org-stats__org-name {
  color: #5a6270;
}
.org-stats__card {
  position: relative;
  margin: 0;
  padding: 14px 16px 18px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(18, 21, 28, 0.05);
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden; /* листется только .org-stats__chart-scroll */
}
.org-stats__panel {
  min-width: 0;
  max-width: 100%;
}
.org-stats__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0 0 12px;
  border-bottom: 1px solid #eef1f6;
}
.org-stats__tab {
  border: 1px solid #e2e7ef;
  background: #f7f9fc;
  color: #4a5160;
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.org-stats__tab:hover {
  border-color: #cfd7e4;
  color: #222;
}
.org-stats__tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.org-stats__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.org-stats__card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  width: 100%;
}
.org-stats__card-title-text {
  flex: 0 0 auto;
}
.org-stats__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #5a6270;
}
.org-stats__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.org-stats__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.org-stats__dot--green { background: #7acf26; }
.org-stats__dot--blue { background: #4A9FE8; }
.org-stats__chart-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
  box-sizing: border-box;
}
.org-stats__chart-wrap {
  height: 320px;
  position: relative;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.org-stats__chart-wrap canvas {
  display: block;
  max-width: none;
}
.org-stats__lifetime {
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #eef1f6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.org-stats__lifetime-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #4a5160;
}
.org-stats__lifetime-ico {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #8a93a0;
}
.org-stats__lifetime-ico svg {
  display: block;
  width: 20px;
  height: 20px;
}
.org-stats__lifetime-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  min-width: 0;
}
.org-stats__lifetime-label {
  font-weight: 600;
  color: #2d3340;
}
.org-stats__lifetime-value {
  color: #5a6270;
}
@media (max-width: 700px) {
  .org-stats__chart-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    width: 100%;
    max-width: 100%;
    scrollbar-width: thin;
  }
  .org-stats__chart-wrap {
    height: 240px;
    /* Фиксированная ширина поля графика — скролл только у .org-stats__chart-scroll */
    width: calc(var(--stats-chart-months, 12) * 56px);
    min-width: calc(var(--stats-chart-months, 12) * 56px);
    max-width: none;
  }
  .org-stats__card-title { font-size: 16px; }
  .org-stats__tab { font-size: 12px; padding: 6px 10px; }
}

/* ===== Карта города (полная версия: только шапка + карта) ===== */
.body--city-map {
  overflow: hidden;
  height: 100vh;
}
.body--city-map .page {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  padding-inline: 0;
  max-width: none;
  width: 100%;
}
.body--city-map .header-bar {
  padding-inline: var(--gutter);
}
.body--city-map .header-bar > .container {
  max-width: none;
  width: 100%;
}
.body--city-map .header {
  display: none;
}
.body--city-map .city-map-main {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.city-map {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  background: #e8eef5;
  display: block;
}
.city-map__panel {
  box-sizing: border-box;
  position: absolute;
  top: 12px;
  left: 12px;
  bottom: 12px;
  width: 400px;
  max-width: calc(100vw - 24px);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 14px 14px 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(18, 21, 28, 0.14);
  z-index: 3;
  overflow: hidden;
}
.city-map__stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  z-index: 1;
}
.city-map__modes {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  margin: 0 0 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.city-map__modes::-webkit-scrollbar { display: none; }
.city-map__mode {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  min-width: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5f6368;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.city-map__mode svg {
  display: block;
  flex-shrink: 0;
}
.city-map__mode--all {
  background: #f1f3f4;
  padding-inline: 12px;
}
.city-map__mode-icons {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #5f6368;
}
.city-map__mode:hover {
  background: #f1f3f4;
  color: #202124;
}
.city-map__mode.is-active {
  background: var(--red);
  color: #fff;
  width: 40px;
  padding: 0;
}
.city-map__mode.is-active.city-map__mode--all {
  width: auto;
  padding-inline: 12px;
}
.city-map__route {
  position: relative;
  margin-bottom: 8px;
}
.city-map__points {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 0;
}
.city-map__points.has-many {
  padding-right: 0;
}
.city-map__points.has-many .city-map__swap {
  display: none;
}
.city-map__points.has-many .city-map__point-handle {
  display: inline-flex;
}
.city-map__point {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  position: relative;
}
.city-map__point.is-dragging {
  opacity: 0.55;
}
.city-map__point.is-drag-over {
  outline: 2px dashed #d7dde8;
  outline-offset: 2px;
  border-radius: 10px;
}
.city-map__point-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-sizing: border-box;
}
.city-map__point-dot--from {
  border: 2px solid #ea4335;
  background: transparent;
}
.city-map__point-dot--to {
  background: #5f6368;
}
.city-map__point-dot--via {
  background: #9aa0a6;
  width: 8px;
  height: 8px;
  margin-inline: 2px;
}
.city-map__point-field {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.city-map__point-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 36px 0 12px;
  background: #f1f3f4;
  font: inherit;
  font-size: 15px;
  color: #202124;
  outline: none;
}
.city-map__point-input::placeholder {
  color: #80868b;
}
.city-map__point-input:focus {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.city-map__point-clear {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9aa0a6;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.city-map__point-clear:hover {
  background: #e8eaed;
  color: #5f6368;
}
.city-map__point-clear[hidden] {
  display: none !important;
}
.city-map__point-handle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 28px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: grab;
  color: #9aa0a6;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.city-map__point-handle:hover {
  background: #f1f3f4;
  color: #5f6368;
}
.city-map__point-handle:active {
  cursor: grabbing;
}
.city-map__point.is-dragging .city-map__point-handle {
  cursor: grabbing;
  color: #5f6368;
}
.city-map__point-handle span {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.city-map__swap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5f6368;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.city-map__points:not(.has-many) {
  padding-right: 44px;
}
.city-map__swap:hover {
  background: #f1f3f4;
  color: #202124;
}
.city-map__route-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 4px;
  padding-left: 22px;
  padding-right: 8px;
}
.city-map__points:not(.has-many) + .city-map__route-actions {
  padding-right: 44px;
}
.city-map__route-link {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 14px;
  color: #5f6368;
  cursor: pointer;
}
.city-map__route-link:hover {
  color: var(--red);
}
.city-map__suggest {
  position: absolute;
  left: 22px;
  right: 44px;
  top: calc(100% - 2px);
  z-index: 5;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(18, 21, 28, 0.12);
}
.city-map__suggest[hidden] { display: none; }
.city-map__suggest-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #f1f3f4;
  background: transparent;
  padding: 10px 12px;
  cursor: pointer;
  font: inherit;
}
.city-map__suggest-item:last-child { border-bottom: 0; }
.city-map__suggest-item:hover {
  background: #f8f9fa;
}
.city-map__suggest-group {
  padding: 8px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9aa0a6;
}
.city-map__suggest-badge {
  display: inline-block;
  margin-bottom: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.city-map__suggest-badge--org {
  background: #fde7ea;
  color: var(--red);
}
.city-map__suggest-badge--geo {
  background: #eef1f6;
  color: #5f6368;
}
.city-map__suggest-empty {
  margin: 0;
  padding: 12px;
  font-size: 13px;
  color: #80868b;
  line-height: 1.35;
}
.city-map__route-summary {
  margin: 8px 0 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f6f8fb;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}
.city-map__route-summary[hidden] { display: none; }
.city-map__route-summary-time {
  font-size: 20px;
  font-weight: 700;
  color: #202124;
  line-height: 1.1;
}
.city-map__route-summary-meta,
.city-map__route-summary-text {
  font-size: 14px;
  color: #5f6368;
}
.city-map__wp-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}
.city-map__wp {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #202124;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(18, 21, 28, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 12px/1 system-ui, -apple-system, Segoe UI, sans-serif;
  pointer-events: auto;
}
.city-map__wp--start {
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  font-size: 0;
}
.city-map__wp--end {
  border-radius: 6px;
  background: #202124;
}
.city-map__wp--via {
  background: #5f6368;
}
.city-map__wp-label {
  max-width: min(240px, 42vw);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 16px rgba(18, 21, 28, 0.16);
  color: #202124;
  font: 600 12px/1.35 system-ui, -apple-system, Segoe UI, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: auto;
  transform: translateY(-2px);
}
.city-map__wp-label.has-schedule {
  white-space: normal;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.city-map__wp-name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.city-map__wp-schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #202124;
  font: 500 12px/1 system-ui, -apple-system, Segoe UI, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.city-map__wp-schedule:hover {
  color: var(--red);
  border-color: var(--red);
  background: #fff0f2;
  text-decoration: none;
}
.city-map__wp-label--start {
  border-left: 3px solid var(--red);
}
.city-map__suggest-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #202124;
  line-height: 1.3;
}
.city-map__suggest-address {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #80868b;
  line-height: 1.3;
}
.city-map__saved {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid #e8eaed;
  min-height: 0;
}
.city-map__saved-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.city-map__saved-ico {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f1f3f4;
  color: #c4c7cc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.55;
  transition: color .15s, background .15s, border-color .15s, opacity .15s;
}
.city-map__saved-ico.is-set {
  color: var(--red);
  background: #fff0f2;
  border-color: var(--red);
  opacity: 1;
}
.city-map__saved-ico--add {
  color: #5f6368;
  background: #f1f3f4;
  opacity: 1;
}
.city-map__saved-ico--add.is-open,
.city-map__saved-ico--add:hover {
  color: var(--red);
  background: #fff0f2;
  border-color: var(--red);
}
.city-map__saved-ico.is-set:hover {
  background: #ffe4e8;
}
.city-map__saved-picker {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  background: #fff;
}
.city-map__saved-picker[hidden] {
  display: none !important;
}
.city-map__saved-picker-msg {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #202124;
}
.city-map__saved-picker-address {
  display: inline;
  font-weight: 600;
  color: var(--red);
}
.city-map__saved-picker-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.city-map__saved-pick {
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #202124;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.city-map__saved-pick:hover {
  background: #fff0f2;
  color: var(--red);
}
.city-map__saved-pick.is-set::after {
  content: attr(data-current);
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #80868b;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.city-map__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.city-map__canvas.org-map,
.city-map__canvas.org-map--ready {
  min-height: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
}
.city-map__empty {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(18, 21, 28, 0.12);
  color: #4a5160;
  font-size: 14px;
  pointer-events: none;
}
.city-map .maplibregl-popup-content {
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(18, 21, 28, 0.14);
}
.city-map__popup-title {
  display: block;
  font-weight: 700;
  color: #1f2430;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 4px;
}
.city-map__popup-title:hover {
  color: var(--red);
  text-decoration: none;
}
.city-map__popup-address {
  display: block;
  font-size: 12px;
  color: #6a7382;
  line-height: 1.35;
}
.city-map .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  /* На мобильной оставляем обычную прокрутку страницы */
  .body--city-map {
    overflow: auto;
    height: auto;
  }
  .body--city-map .page {
    height: auto;
    min-height: 100vh;
  }
  .body--city-map .header {
    display: block;
  }
  .city-map {
    min-height: calc(100vh - 160px);
    height: calc(100vh - 160px);
  }
  .city-map__panel {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: auto;
    width: auto;
    max-width: none;
    height: auto;
    max-height: 48vh;
  }
  .city-map__stage {
    inset: 0;
  }
}

.legal-page {
  max-width: 820px;
  margin: 0 0 40px;
  color: #444;
  font-size: 15px;
  line-height: 1.55;
}
.legal-page .page-heading {
  margin-bottom: 16px;
}
.legal-page__h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.legal-page p {
  margin: 0 0 10px;
}
.legal-page__list {
  margin: 0 0 12px;
  padding: 0 0 0 1.2em;
}
.legal-page__list li {
  margin: 0 0 6px;
}
.legal-page a {
  text-decoration: underline;
}

.cookie-notice {
  position: fixed;
  left: 13px;
  bottom: 13px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(416px, calc(100vw - 20px));
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
  color: #555;
  font-size: 11px;
  line-height: 1.35;
}
.cookie-notice[hidden] {
  display: none !important;
}
.cookie-notice__icon {
  flex: 0 0 auto;
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.cookie-notice__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-notice__text a {
  color: #555;
  text-decoration: underline;
}
.cookie-notice__text a:hover {
  color: #1e85c7;
}
.cookie-notice__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.cookie-notice__close:hover {
  color: #555;
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 8px;
    right: 8px;
    bottom: 8px;
    max-width: none;
  }
}
