@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

html,
body,
* {
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.25;
  transition: all 0.2s;
  padding:0px;
}

body {
  background: #0e1324;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.mobile {
  display: none;
}

@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}
a{
  text-decoration: none;
}

:root {
  --container-max: 1360px;
  --gap: 16px;
  --radius: 12px;
  --shadow-1: 0 2px 12px rgba(0, 0, 0, 0.08);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Noto Color Emoji", sans-serif;
  --c-text: #111;
  --c-muted: #6b7280;
  --c-bg: #fff;
  --c-primary: #3b82f6;
}

.container {
  max-width: var(--container-max);

  margin-inline: auto;
  padding-inline: 16px
}

@media(max-width:768px) {
  .container {
    padding-inline: 8px
  }
}
button{
  cursor:pointer
}
.header {
  width: 100%;
  background-color: #f1f1f1;
  position: relative;
}

.header__top {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #2c3e50;
  color: white;
  align-items: center;
}

.header__menu-button,
.header__search-button,
.header__language-button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.header__logo img {
  height: 40px;
}

.header__language button {
  margin-left: 10px;
}

.header__bottom {
  display: none;
  /* Скрыто по умолчанию */
  background-color: #34495e;
  padding: 20px;
}

.header__menu-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header__menu-list li {
  padding: 10px 0;
}

.header__menu-list li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

@media (max-width: 768px) {
  .header__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__menu-list {
    display: none;
    width: 100%;
    padding: 0;
  }

  .header__menu-list li {
    padding: 10px;
    text-align: left;
  }
}

.cookie-consent {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 1000;
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: center;
  pointer-events: none;
}

.cookie-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 47, 60, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
}

.cookie-consent.active {
  display: block;
}

.cookie-consent__inner {
  box-shadow: inset 0px 20px 40px 0px rgba(0, 0, 0, 0);

  pointer-events: auto;
  width: 100%;
  padding: 16px 32px 24px;
  border-radius: 24px;
  background: rgba(58, 65, 88, 0.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
}

.cookie-consent__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-consent__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 16px + 1.2vw, 32px);
  line-height: 1.3;
  color: #fff;
}

.cookie-consent__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-consent__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  appearance: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 0 32px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  transition: 0.2s;
}

.cookie-consent__btn--primary {
  background: #ed1c57;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-consent__btn--primary:hover {
  background: #ff2d6b;
}

.cookie-consent__btn--ghost {
  background: #e4ecf5;
  color: #2b2f3c;
}

.cookie-consent__btn--ghost:hover {
  background: #cde5fe;
  color: #2879ff;
}

/* Ссылки */
.cookie-consent__links {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.cookie-consent__link {
  color: rgba(40, 121, 255, 0.8);
  text-decoration: underline;
  transition: 0.2s;
}

.cookie-consent__link:hover {
  color: rgba(40, 121, 255, 1);
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 20px;
    width: calc(100% - 16px);
  }

  .cookie-consent__inner {
    padding: 16px 16px 40px;
    gap: 20px;
  }

  .cookie-consent__content {
    margin-bottom: 4px;
  }

  .cookie-consent__title {
    font-size: 24px;
    line-height: 1.15;
  }

  .cookie-consent__desc {
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie-consent__actions {
    gap: 8px;
  }

  .cookie-consent__btn {
    border-radius: 8px;
    padding: 0 20px;
    font-size: 14px;
  }

  .cookie-consent__links {
    font-size: 12px;
  }
}

/* ===== MAIN HEADER (collapsed) ===== */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1501;
}

.main-header__bar {
  min-height: clamp(60px, 6vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Бургер */
.main-header__burger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: #1a2233;
  cursor: pointer;
}

.main-header__icon {
  display: block;
}

.main-header__burger-text {
  display: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #2B2F3C;
}

/* Лого по центру независимо от ширины сторон */
.main-header__brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.main-header__logo {
  width: 120px;
  display: block;
  height: auto;
}

/* Правая зона */
.main-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Desktop-pill "English" */
.main-header__lang {
  display: none;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(43, 47, 60, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #2B2F3C;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  transition: 0.2s;
}

.main-header__lang:hover {
  background: #EDF3F9;
}

/* Mobile search square */
.main-header__search {
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(43, 47, 60, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #2B2F3C;
  cursor: pointer;
}

/* focus-visible */
.main-header__burger:focus-visible,
.main-header__lang:focus-visible,
.main-header__search:focus-visible {
  outline: 0;
}

.lang-switch {
  display: none;
}

@media (max-width: 767px) {
  .lang-switch {

    margin-bottom: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    outline: 1px solid rgba(43, 47, 60, 0.1);
    outline-offset: -1px;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
  }

  .lang-switch__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    text-decoration: none;
    color: #2B2F3C;

    transition: .2s;
    user-select: none;

  }

  .lang-switch__text {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
  }

  /* вертикальный разделитель */
  .lang-switch__link+.lang-switch__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #EAEBEC;
  }

  .lang-switch__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #2B2F3C;
  }

  /* активный сегмент */
  .lang-switch__link[aria-current="true"],
  .lang-switch__link.lang-switch__link--active {
    background: #EDF3F9;

    outline: 1px solid rgba(43, 47, 60, 0.1);
    outline-offset: -1px;
  }

  .lang-switch__link:first-of-type.lang-switch__link--active {
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
  }

  .lang-switch__link:last-of-type.lang-switch__link--active {
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
  }
}


/* --- desktop switches --- */
@media (min-width: 768px) {
  .main-header__logo {
    width: 153px;
    display: block;
    height: auto;
  }

  .main-header__burger {
    padding: 8px 0;
  }

  .main-header__burger-text {
    display: inline;
  }

  .main-header__lang {
    display: inline-flex;
  }
  .main-header__search {
    padding:11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(43, 47, 60, 0.1);
    border-radius: 8px;
    background: #fff;
    color: #2B2F3C;
    cursor: pointer;
  }
  .main-header__search:hover {
  background: #EDF3F9;
  }
  .main-header__search svg{
    width: 22px;
    height: 22px;
  }
 
}

/* ============ BURGER MENU ============ */
.burger-menu[hidden] {
  display: none;
}

.burger-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  /* ровно под шапкой */
  z-index: 1090;
  /* ниже самой шапки, но выше контента */
}

.main-header__btn-open,
.main-header__btn-close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* по умолчанию показываем "Меню", скрываем "Закрыть" */
.main-header__btn-close {
  display: none;
}

/* когда меню открыто (aria-expanded="true"), меняем видимость */
.main-header__burger[aria-expanded="true"] .main-header__btn-open {
  display: none;
}

.main-header__burger[aria-expanded="true"] .main-header__btn-close {
  display: inline-flex;
}

/* панель */
.burger-menu__panel {
  background: #fff;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
  max-height: calc(100vh - 60px);
  overflow: auto;
}

.burger-menu.is-open .burger-menu__panel {
  transform: translateY(0);
  opacity: 1;
}

.burger-menu__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.burger-menu__close-text {
  font-size: 14px;
  color: #6b7280;
}

.burger-menu__brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
}

.burger-menu__head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* desktop pill */
.burger-menu__lang-pill {
  display: none;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

/* mobile search */
.burger-menu__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #111;
  cursor: pointer;
}

/* mobile segmented switch */
.burger-menu__lang-switch {
  display: flex;
  gap: 0;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 4px;
  margin-top: 8px;
  width: fit-content;
}

.burger-menu__seg-btn {
  border: 0;
  background: transparent;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: #111;
}

.burger-menu__seg-btn.is-active {
  background: #fff;
  border: 1px solid #e5e7eb;
}

/* списки */
.burger-menu__cols {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 16px 30px;
}


.burger-menu__col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.header-tiny .burger-menu__col{
  max-width: 100%;
}
.burger-menu__col {
  padding-bottom: 12px;
  position: relative;
}

.burger-menu__col::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: calc(100% + 32px);
  left: -16px;
  height: 1px;
  background: rgba(43, 47, 60, 0.1);
}



.burger-menu__badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2B2F3C;
  background: transparent;
  outline: 1px solid rgba(43, 47, 60, 0.2);
  outline-offset: -1px;
}

.burger-menu__badge svg {
  width: 22.67px;
  height: 22.67px;
}



.burger-menu__item .burger-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #252525;
  transition: 0.2s;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.27;
  transition: 0.2s;
}

.burger-menu__item:hover .burger-menu__link {
  background: #F3F6FF;
}

.burger-menu__item:active .burger-menu__link {
  background: #EEF1FA;
}

/* Синяя кнопка */
.burger-menu__item.burger-menu__item--blue .burger-menu__link {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10.5px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.27;
  background-color: #3D9CD7;
  outline: none;
}

.burger-menu__item.burger-menu__item--blue .burger-menu__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(101deg, #2983CD 0%, #3D9CD7 100%);
  opacity: 1;
  transition: .3s;
}

.burger-menu__item--blue .burger-menu__link>* {
  position: relative;
  z-index: 1;
}

.burger-menu__item.burger-menu__item--blue:hover .burger-menu__link::before {
  opacity: 0;
}

.burger-menu__item.burger-menu__item--blue .burger-menu__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;

  border: 3px solid rgba(255, 255, 255, .2);
}


.burger-menu__item.burger-menu__item--blue .burger-menu__badge {
  background-color: rgba(255, 255, 255, .2);
  color: #fff;
  outline: 0px solid rgba(43, 47, 60, 0.2);
}

.burger-menu__badge--pink {
  background: #DD1B5F;
}

.burger-menu__badge--lime {
  background: #E4BF25;
}

.burger-menu__badge--green {
  background: #91D459;
}

.burger-menu__badge--purple {
  background: #C18BE3;
}

.burger-menu__badge--blue {
  background: #47B0E4;
}


.burger-menu__badge--pink,
.burger-menu__badge--lime,
.burger-menu__badge--green,
.burger-menu__badge--purple,
.burger-menu__badge--blue {
  color: #fff;
  outline: 0px solid rgba(43, 47, 60, 0.2);
}

.burger-menu__badge--pink svg,
.burger-menu__badge--lime svg,
.burger-menu__badge--green svg,
.burger-menu__badge--purple svg,
.burger-menu__badge--blue svg {
  width: 25.5px;
  height: 25.5px;
}

/* контакты (мобила) */
.burger-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.burger-menu__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger-menu__phone-link {
  text-decoration: none;
  color: #111;
}

.burger-menu__addr {
  font-style: normal;
  color: #6b7280;
  font-size: 13px;
}

.burger-menu__route {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111;
  text-decoration: none;
  border: 1px solid #e5e7eb;
}

.burger__contacts {
  display: none;
}

@media (min-width: 768px) {
  .burger-menu__col {
    padding-bottom: 0;
  }
  .header-tiny .burger-menu__col{
  max-width: 300px;
}

  .burger-menu__col::after {
    display: none;
  }

  .burger-menu__panel {
    max-height: calc(100vh - 82px);
  }

  .burger-menu__search {
    display: none;
  }

  .burger-menu__lang-pill {
    display: inline-flex;
  }

  .burger-menu__lang-switch {
    display: none;
  }

  .burger-menu__head {
    padding-block: 16px;
  }

  .burger-menu__cols {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0 65px;
    padding-inline: clamp(8px, 4vw, 16px);
  }

  .burger-menu__col+.burger-menu__col {
    border-top: 0;
    padding-top: 0;
  }

  .burger-menu__col {
    max-width: 350px;
    width: 100%;
  }

  .burger-menu__contacts {
    display: none;
  }
}

@media(max-width:768px) {
  .burger-menu__col {
    gap: 4px;
  }

  .burger-menu__badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex: 0 0 28px;
    color: #2B2F3C;
    background: transparent;
    outline: 1px solid rgba(43, 47, 60, 0.2);
    outline-offset: -1px;
  }

  .burger-menu__badge svg {
    width: 18.67px;
    height: 18.67px;
  }

  .burger-menu__item .burger-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4.5px 6px 5.5px;
    font-size: 14px;
    line-height: 1.28;
    transition: 0.2s;
  }

  .burger-menu__text {
    font-weight: 500;
  }

  .burger-menu__badge--pink {
    background: #DD1B5F;
  }

  .burger-menu__badge--lime {
    background: #E4BF25;
  }

  .burger-menu__badge--green {
    background: #91D459;
  }

  .burger-menu__badge--purple {
    background: #C18BE3;
  }

  .burger-menu__badge--blue {
    background: #47B0E4;
  }


  .burger-menu__badge--pink,
  .burger-menu__badge--lime,
  .burger-menu__badge--green,
  .burger-menu__badge--purple,
  .burger-menu__badge--blue {
    color: #fff;
    outline: 0px solid rgba(43, 47, 60, 0.2);
  }

  .burger-menu__badge--pink svg,
  .burger-menu__badge--lime svg,
  .burger-menu__badge--green svg,
  .burger-menu__badge--purple svg,
  .burger-menu__badge--blue svg {
    width: 21px;
    height: 21px;
  }

  .burger-menu__item.burger-menu__item--blue .burger-menu__link {
    gap: 10px;
    padding: 5.5px 6px 6.5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
    background-color: #3D9CD7;
    outline: none;
  }

  .burger-menu__item.burger-menu__item--blue .burger-menu__link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(101deg, #2983CD 0%, #3D9CD7 100%);
    opacity: 1;
    transition: .3s;
  }

  .burger-menu__item.burger-menu__item--blue .burger-menu__link::after {
    border: 2px solid rgba(255, 255, 255, .2);
  }


  .burger-menu__item.burger-menu__item--blue .burger-menu__badge {
    background-color: rgba(255, 255, 255, .2);
    color: #fff;
    outline: 0px solid rgba(43, 47, 60, 0.2);
  }


  .burger__contacts {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 16px
  }

  .burger__contact:first-of-type {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .burger__contact:last-of-type {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .burger__contact:first-of-type .burger__icon {
    color: #74747F;
    width: 22px;
    height: 22px;
  }

  .burger__contact:last-of-type .burger__icon {
    color: #74747F;
    width: 18px;
    height: 18px;
  }

  .burger__phone {
    color: #2B2F3C;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    transition: 0.2s;
  }

  .burger__phone:active {
    color: #ED1C57;
    text-decoration: underline;
  }

  .burger__address {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    color: rgba(43, 47, 60, .8);
  }

  .burger__route {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15.5px 16px 16.5px 12px;
    border-radius: 8px;
    background: #EDF3F9;
    border: 0px solid rgba(255, 255, 255, 0.1);
    color: #2B2F3C;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    transition: 0.2s;
  }

  .burger__route svg {
    width: 18px;
    height: 18px;
  }

  .burger__route:hover {
    background: #EEF1FA;
  }

}

/* reduce-motion */
@media (prefers-reduced-motion: reduce) {
  .burger-menu__link {
    transition: none;
  }
}


/* ===== FOOTER ===== */
.footer {
  background: #090E1F;
  margin-top: auto;
  flex: 0 0 auto;
}

/* верхняя зона */
.footer__top {
  padding-top: 32px;
  padding-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer__brand-column {
  flex: 1 0 458px;
}

/* колонки */
.footer__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  margin-bottom: 48px;
}

.footer__brand img {
  width: 240px;
  height: auto;
  display: block;
}

.footer__nav {
  flex: 0 0 210px;
}


.footer__worktime {
  flex: 0 0 100%;
  display: none;
}

.footer__brand-column .footer__worktime {
  display: block;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer__nav-link {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.2s;
}

.footer__nav-link:hover {
  color: rgba(237, 28, 87, 0.8);
}

.footer__contacts {
  flex: 0 0 304px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__icon {
  color: #74747F;
  width: 20px;
  height: 20px;
}

.footer__phone {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  transition: 0.2s;
}

.footer__phone:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.footer__address {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}

.footer__route {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 41.5px 15px 29.5px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: 0.2s;
}

.footer__route svg {
  width: 24px;
  height: 24px;
}

.footer__route:hover {
  background: #313749;
  border: 1px solid #313749;
}


.footer__social {
  flex: 1 0 236px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
}

.footer__social-link svg {
  width: 36px;
  height: 36px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  transition: 0.2s;
}

.footer__social-link:hover svg {
  color: #ED1C57;
}

/* блок времени работы (отдельный БЭМ-блок .worktime) */
.worktime__title {
  margin: 0 0 16px;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.worktime__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.worktime__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 6px 24px;
  border-radius: 8px;
}

.worktime__day {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  line-height: 1.25;
  width: 100%;
  text-align: left;
}

.worktime__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18PX;
  font-weight: 400;
}

.worktime__time {
  font-size: 18px;
  line-height: 1.25
}

.worktime__item--active:after {
  content: url('/assets/img/main/worktime-arrow.svg');
  display: block;
  position: absolute;
  color: #fff;
  width: 20px;
  height: 21.28px;
  bottom: 0;
}

.worktime__item--active .worktime__day {
  color: rgba(255, 255, 255, 0.8);
}

.worktime__item--active .worktime__box {
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}

.worktime__item--active {
  background: #252B3D;
  outline: 2px solid #252B3D;

}

.worktime__item--active .worktime__pin {
  display: block
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.footer__link {
  color: rgba(255, 255, 255, .2);
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  transition: 0.2s;
}

.footer__link:hover {
  color: rgba(255, 255, 255, .6);
}

.footer__bottom-wrapper {
  margin-top: 16px;
  width: 100%;
  position: relative
}

.footer__bottom {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom::after {
  content: '';
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.06)
}


.footer__copy {
  color: rgba(255, 255, 255, .2);
  font-size: 14px;
  font-weight: 400
}


.footer__dev {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: 0.2s;
  font-size: 12px;
  font-weight: 400;
}

.footer__dev:after {
  content: url(/assets/img/main/nbd.svg);
  -webkit-filter: grayscale(100%) brightness(0) invert(1);
  -moz-filter: grayscale(100%) brightness(0) invert(1);
  -ms-filter: grayscale(100%) brightness(0) invert(1);
  -o-filter: grayscale(100%) brightness(0) invert(1);
  filter: grayscale(100%) brightness(0) invert(1);
  width: 103px;
  height: 27px;
  opacity: 0.2;
  transition: all 0.2s;
}

.footer__dev:hover:after {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
  opacity: 1;
}

.footer__dev:hover {
  color: rgba(255, 255, 255, 0.6);
}


@media (max-width:1050px) {
  .footer__brand-column {
    flex: 1 1 100%;
  }
}

@media (max-width:768px) {
  .footer__brand-column {
    flex: 0 0 100%;
  }

  .footer__brand {
    margin-bottom: 0;
  }

  .footer__brand img {
    width: 140px;
  }

  .footer__nav {
    display: none
  }


  .footer__worktime {
    flex: 0 0 100%;
    display: block;
  }

  .footer__brand-column .footer__worktime {
    display: none;
  }

  .worktime__title {
    margin: 0 0 12px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
  }

  .worktime__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 3px 19px;
    border-radius: 6px;
  }

  .worktime__day {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 500;
  }

  .worktime__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13PX;
    font-weight: 500;
  }

  .worktime__time {
    line-height: 1.25;
    font-size: 13PX;
  }

  .worktime__item--active:after {
    content: '';
    background: url(/assets/img/main/worktime-arrow.svg) center/contain no-repeat;
    display: block;
    position: absolute;
    color: #fff;
    width: 18px;
    height: 18px;
    bottom: 0;
  }


  .footer__contacts {
    flex: 0 0 100%;
    gap: 16px
  }

  .footer__contact {
    gap: 8px;
  }

  .footer__contact:first-of-type {
    gap: 10px;
  }

  .footer__icon {
    width: 18px;
    height: 18px;
  }

  .footer__contact:first-of-type .footer__icon {
    width: 22px;
    height: 22px;
  }

  .footer__phone {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
  }

  .footer__address {
    font-size: 14px;
  }

  .footer__route {
    gap: 6px;
    margin-top: 0px;
    padding: 15.5px 15px 16.5px 11px;
    background: #252B3D;
    border: 1px solid #252B3D;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    transition: 0.2s;
  }

  .footer__route svg {
    width: 18px;
    height: 18px;
  }

  .footer__social {
    flex: 0 0 100%;
    gap: 8px;
    margin-left: 0;
  }

  .footer__social-link {
    display: block;
    height: 36px;
  }

  .footer__top {
    padding-top: 16px;
    padding-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .footer__links {
    padding-inline: 16px;
    flex-direction: column;
    gap: 16px;
  }

  .footer__link {
    font-size: 12px;
  }

  .footer__link:hover {
    color: rgba(255, 255, 255, .6);
  }


  .footer__bottom-wrapper {
    margin-top: 20px;
  }

  .footer__bottom {
    height: 44px;
  }

  .footer__copy {
    font-size: 12px;
  }

  .footer__dev-text {
    display: none;
  }

  .footer__dev:after {
    content: '';
    background: url(/assets/img/main/nbd.svg) center/cover no-repeat;
    width: 90px;
    height: 20px;
  }
}

/* ===== Каркас секции ===== */
.triniti {
  margin: 160px 0 80px;
}

.triniti__grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap-reverse;
  /* чтобы на узких экранах колонки падали вниз */
}

.about {
  flex: 1 1 520px;
}

/* левая колонка */
.social {
  flex: 0 1 495px;
}

/* правая колонка */

@media (max-width:980px) {
  .triniti {
    margin: 28px 0;
  }

  .about {
    flex: 1 1 100%;
  }
}

/* ===== ABOUT ===== */
.about__header {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 0px 0 24px;
}

.about__title {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.27;
  color: #fff;
}

.about__more {
  color: rgba(40, 121, 255, .7);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  margin-bottom: 7px;
  transition: 0.2s;
}

.about__more:hover {
  color: rgba(40, 121, 255, 1);
}

.about__video {
  position: relative;
  height: 522px;
  overflow: hidden;
  background: #171e2b;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25) inset, 0 1px 0 rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__video iframe {
  width: 100%;
  height: 100%;
}

.about__play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  left: 20px;
  top: 10px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .25));
}

/* ===== SOCIAL ===== */
.social__title {
  margin: 0 0 24px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.27;
  color: #fff;
}

.social__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Подготовим слой и изоляцию не меняя твои базовые стили визуально */
.social-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Контент всегда поверх стекла (переопределим ниже, где нужно) */
.social-card>* {
  position: relative;
  z-index: 1;
}

/* Базовый стеклянный слой — изначально скрыт */
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;

  /* «толщина» стекла + матовый мороз (Frost ~16) */
  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(16px) saturate(1.15) contrast(1.03);

  /* глубина */
  box-shadow:
    0 12px 20px rgba(0, 0, 0, .35),
    inset 0 2px 6px rgba(0, 0, 0, .20);

  opacity: 0;
  transform: translateY(6px) scale(.995);
  transition: opacity .25s ease, transform .25s ease;
}

/* Блик под углом −45° — тоже скрыт по умолчанию */
.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(-45deg,
      rgba(255, 255, 255, .32) 0%,
      rgba(255, 255, 255, .12) 14%,
      rgba(255, 255, 255, 0) 45%,
      rgba(0, 0, 0, .18) 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .25s ease;
}

/* Активируем стекло ТОЛЬКО когда ховер на кнопке */
.social-card:has(.social-card__btn:hover)::before,
.social-card:has(.social-card__btn:focus-visible)::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.social-card:has(.social-card__btn:hover)::after,
.social-card:has(.social-card__btn:focus-visible)::after {
  opacity: .9;
}

/* Лёгкая «дисперсия» по кромке в активном состоянии */
.social-card:has(.social-card__btn:hover),
.social-card:has(.social-card__btn:focus-visible) {
  filter:
    drop-shadow(1px 0 0 rgba(255, 80, 80, .18)) drop-shadow(0 1px 0 rgba(80, 255, 120, .16)) drop-shadow(-1px -1px 0 rgba(90, 140, 255, .16));
}


/* Карточка соцсети — FLEX */
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px 18px;
  border-radius: 14px;

  box-shadow: 0 6px 14px rgba(0, 0, 0, .28);

  background-position: left;
  background-size: cover;
  background-repeat: no-repeat !important;

}

.social-card__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #0c111b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social-card__icon img {
  width: 44px;
  height: 44px;
  display: block;
}

.social-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.social-card__row {
  margin-left: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.social-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.27;
}

.social-card__count {
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #fff;
  position: relative;
}

.social-card__count::after {
  content: '';
  position: absolute;
  right: -22px;
  bottom: 8px;
  width: 16PX;
  height: 16px;
  background: url('/assets/img/about/subs.svg') center/cover no-repeat;
}

.social-card__btn {
  margin-left: auto;
  /* уезжает вправо */
  padding: 13px 20px 14px;
  border-radius: 8px;
  background: #fff;
  color: #2B2F3C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  backdrop-filter: none;
  transition: all 0.45s ease;
}

.social-card__btn:hover {
  background: #ED1C57;
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -1px;
  color: #fff;
}



/* Темы (модификаторы) */
.social-card_theme_instagram {
  background-image: url('/assets/img/about/inst-bg.webp');
}

.social-card_theme_vk {
  background-image: url('/assets/img/about/vk-bg.webp');
}

.social-card_theme_telegram {
  background-image: url('/assets/img/about/tg-bg.webp');
}

.social-card_theme_youtube {
  background-image: url('/assets/img/about/yt-bg.webp');
}

.social-card_theme_tiktok {
  background-image: url('/assets/img/about/tt-bg.webp');
}

.social-card_theme_instagram .social-card__icon,
.social-card_theme_vk .social-card__icon,
.social-card_theme_telegram .social-card__icon,
.social-card_theme_youtube .social-card__icon,
.social-card_theme_tiktok .social-card__icon {
  background: rgba(0, 0, 0, .18);
}

/* Адаптив */
@media (max-width:980px) {

  .about__title,
  .social__title {
    font-size: 24px;
  }

  .about__video {
    height: 300px;
  }
}

@media (max-width:768px) {
  .social__title {
    margin-bottom: 12px;
  }


  .about__video {
    height: 260px;
  }

  .triniti__grid {
    gap: 56px;
  }

  .about__header {
    margin-bottom: 16px;
  }

  .social-card__row {
    gap: 4px;
    margin-left: 115px;
  }

  .social-card__name {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
  }

  .social-card {
    gap: 4px;
    padding: 12px 12px 16px;
    border-radius: 12px;
  }

  .social-card__count {
    font-size: 28px;
  }

  .social-card__count::after {
    content: '';
    position: absolute;
    right: -18px;
    bottom: 5px;
    width: 12PX;
    height: 12px;
    background: url('/assets/img/about/subs.svg') center/cover no-repeat;
  }

  .social-card__btn {
    margin-left: auto;
    /* уезжает вправо */
    padding: 12px 8px 13px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;

  }

  .about__header {
    gap: 8px;
  }

  .about__more {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 4px;
  }

}

@media (max-width:420px) {
  .social-card__row {

    margin-left: 84px;
  }

}

/* ===== ПЕРЕОПРЕДЕЛЕНИЯ, ЧТОБЫ КОНТЕНТ ТОЖЕ БЫЛ "ПОД СТЕКЛОМ" ===== */
/* Поднимаем стеклянные слои выше контента, чтобы они визуально накрывали .social-card__body и .social-card__icon */
.social-card::before,
.social-card::after {
  z-index: 2;
  /* выше чем z-index:1 у детей */
  border-radius: 14px;
  /* совпадает с карточкой */

}

/* Кнопку оставляем чистой и поверх стекла */
.social-card__btn {
  z-index: 3;
  /* выше стекла */
}

/* Дополнительно слегка «смягчим» контент под стеклом при активном состоянии */
.social-card:has(.social-card__btn:hover) .social-card__body,
.social-card:has(.social-card__btn:focus-visible) .social-card__body,
.social-card:has(.social-card__btn:hover) .social-card__icon,
.social-card:has(.social-card__btn:focus-visible) .social-card__icon {
  filter: saturate(.95) contrast(.98);
}

/* ===== PROMO-VIDEO (desktop only) ===== */
.promo-video {
  margin: 80px auto 160px;
  width: 100%;
}

.promo-video__title {
  margin: 0 0 24px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.27;
  color: #fff;
}

.promo-video__player {
  position: relative;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  background: #181D2E;
  box-shadow:
    inset 0 8px 24px rgba(0, 0, 0, .25),
    0 1px 0 rgba(255, 255, 255, .04);
}

.promo-video__player-logo {
  position: absolute;
  width: 126px;
  height: 100px;
  display: block;
  bottom: 24px;
  left: 32px;
  z-index: 3;
}

.promo-video__player-logo img {
  width: 100%;
  height: 100%;
}

/* Видео на весь контейнер */
.promo-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* затемнение как на макете */
.promo-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  pointer-events: none;
}

/* CTA по центру — стекло в базовом состоянии */
.promo-video__cta {
  position: absolute;
  inset: 0;
  width: max-content;
  height: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px 17px 21px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;

  /* общая база */
  background: transparent;
  /* стекло рисуем в ::before */
  outline: 2px solid rgba(255, 255, 255, .10);
  outline-offset: -2px;
  backdrop-filter: blur(4px) saturate(1.1);
  /* Frost = 4 на контейнере */
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);

  /* Dispersion = 50 — лёгкий цветной ореол (ТОЛЬКО в базовом состоянии) */
  filter:
    drop-shadow(1.5px 0 0 rgba(255, 80, 80, .20)) drop-shadow(0 1.5px 0 rgba(80, 255, 120, .18)) drop-shadow(-1.5px -1.5px 0 rgba(90, 140, 255, .18));

  transition: filter .25s ease, box-shadow .25s ease, transform .25s ease, outline-color .25s ease;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
}

/* контент над декоративными слоями */
.promo-video__cta>* {
  position: relative;
  z-index: 2;
}

/* ── GLASS слой (включён по умолчанию) ──
   Refraction ≈80 (чуть насыщ/контраст), Depth=20, Light −45° */
.promo-video__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(-45deg,
      rgba(255, 255, 255, .80) 0%,
      rgba(255, 255, 255, .35) 18%,
      rgba(255, 255, 255, 0) 48%,
      rgba(0, 0, 0, .22) 100%),
    rgba(255, 255, 255, .08);
  /* «масса» стекла */
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(4px) saturate(1.15) contrast(1.08);
  /* Frost + Refraction */
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, .18),
    /* Depth внутренняя */
    0 12px 20px rgba(0, 0, 0, .35);
  /* Depth внешняя */
  opacity: 0.2;
  transition: opacity .25s ease;
  z-index: 0;
}

/* ── Градиент (синий) — появляется на hover, как раньше ── */
.promo-video__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, #2F99CD 48%, #75DFFF 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
  /* над светом, под контентом */
}

/* ── HOVER: стекло убираем ── */
.promo-video__cta:hover {
  outline-color: transparent;
  transform: translate(-50%, -50%);
  /* убираем «дисперсию» на ховере */
  filter: none;
  /* можно чуть усилить обычную тень, без стекла */
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.promo-video__cta:hover::before {
  opacity: 0;
}

/* стеклянная масса пропадает */
.promo-video__cta:hover::after {
  opacity: 1;
}

/* синий градиент проявляется */

/* Иконка/текст */
.promo-video__cta-icon {
  height: 31px;
  width: 31px;
  display: block;
}

.promo-video__cta-text {
  line-height: 1.27;
  font-weight: 500;
  font-size: 18px;
}

/* ===== СНЕЖИНКИ — без изменений ===== */
.promo-video__flakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promo-video__flake {
  --uri: url("/assets/img/about/flake.svg");
  position: absolute;
  width: 35px;
  height: 35px;
  background: var(--uri) center/contain no-repeat;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .15));
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(.9) rotate(0deg);
  transition: transform .8s ease, opacity .5s ease;
}

.promo-video__flake--1 {
  top: -36px;
  right: 25px;
  transition: transform .6s ease, opacity .5s ease;
}

.promo-video__flake--2 {
  bottom: 19px;
  right: -30px;
  transform: scale(.63) rotate(-15deg);
  transition: transform 1.2s ease, opacity .5s ease;
}

.promo-video__flake--3 {
  bottom: -40px;
  right: 19.3px;
  transform: scale(.94) rotate(20deg);
  transition: transform 1.8s ease, opacity .5s ease;
}

.promo-video__cta:hover .promo-video__flake--1 {
  opacity: 1;
  top: -18px;
  right: 24px;
  transform: scale(1) rotate(15deg);
}

.promo-video__cta:hover .promo-video__flake--2 {
  opacity: 1;
  bottom: 19px;
  right: -10px;
  transform: scale(.63) rotate(-55deg);
}

.promo-video__cta:hover .promo-video__flake--3 {
  opacity: 1;
  bottom: -20px;
  right: 19.3px;
  transform: rotate(-40deg);
}

.promo-video__control {
  position: absolute;
  right: 35px;
  bottom: 27px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #2B2F3C;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 3;
}

.promo-video__control:hover {
  transform: scale(1.15);
}

.promo-video__icon {
  width: 18px;
  height: 18px;
  display: none;
}

.promo-video_paused .promo-video__icon--play {
  display: block;
}

.promo-video_playing .promo-video__icon--pause {
  display: block;
}

/* Прогресс-бар внизу */
.promo-video__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  cursor: pointer;
  z-index: 2;
}

.promo-video__progress-track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
}

.promo-video__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #ED1C57;
}

/* Состояния блока */
.promo-video_playing .promo-video__overlay {
  background: rgba(0, 0, 0, .35);
}

.promo-video_paused .promo-video__overlay {
  background: rgba(0, 0, 0, .4);
}

@media(max-width:768px) {
  .promo-video__control {
    right: 19px;
    bottom: 19px;
  }

  .promo-video__title {
    padding: 0 8px;
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.29;
  }

  .promo-video {
    margin: 28px auto 80px;
    padding: 0;
  }

  .promo-video__player {
    height: 300px;
    border-radius: 12px;

  }

  .promo-video__player-logo {
    width: 70px;
    height: 56px;
    bottom: 16px;
    left: 12px;
  }

  .promo-video__cta {
    padding: 13px 24px 14px 12.55px;
    gap: 9.55px;
    border-radius: 8px;
  }

  .promo-video__cta-icon {
    height: 28px;
    width: 28px;
  }

  .promo-video__cta-text {
    font-size: 14px;
  }
}


/* ===== EVENTS ===== */
.events {
  width: 100%;
  margin: 60px auto 120px;

}

.events__head {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.events__title {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.events__all-link {
  color: rgba(40, 121, 255, .7);
  font-size: 18px;
  line-height: 1.1;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  margin-bottom: 7px;
}

.events__all-link:hover {
  color: rgba(40, 121, 255, 1);
}

.events__tabs-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.events__tabs {
  display: flex;
  gap: 8px;
}

.events__tab {
  appearance: none;
  border: 0;
  padding-inline: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  transition: all 0.2s;
}

.events__tab:hover {
  background: rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 1);
}

.events__tab:active {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 1);
}

.events__tab.is-active {
  background: #ED1C57;
  color: rgba(255, 255, 255, 1);
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

/* Слайдер */
.events__slider {
  position: relative;
}


.events__nav,
.photos__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.events__btn,
.photos__btn {
  width: 42px;
  height: 42px;
  border-radius: 24px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.events__btn::before,
.photos__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  mask-size: 19.38px 19.38px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: rgba(255, 255, 255, .4);
  transition: 0.2s;
}

.events__btn:hover,
.photos__btn:hover {
  background: #ED1C57;
}

.events__btn:hover::before,
.photos__btn:hover::before {

  background-color: rgba(255, 255, 255, 1);

}

.events__btn--prev::before,
.photos__btn--prev::before {
  mask-image: url('/assets/img/main/swiper-arrow-left.svg')
}

.events__btn--next::before,
.photos__btn--next::before {
  mask-image: url('/assets/img/main/swiper-arrow-left.svg');
  transform: rotate(180deg);
}

.events .swiper {
  overflow: hidden;
}

.events .swiper-wrapper {
  align-items: stretch;
}

.events .swiper-slide {
  height: auto;
  width: 325px !important;
}

/* авто-ширина на ПК */

.events-card {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  background: #121824;
}

.events-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}

.events-card:hover .events-card__img {
  transform: scale(1.03);
}

.events-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
}

.events-card__date {
  position: absolute;
  opacity: 0.6;
  padding: 10px 12px;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  gap: 8px;

}

.events-card__date::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #fff; 
  -webkit-mask: url('/assets/img/gallery/date1.svg') no-repeat center / contain;
  mask: url('/assets/img/gallery/date1.svg') no-repeat center / contain;
}
@media (max-width:768px){
  .events-card__date {
    position: absolute;
    opacity: 0.6;
    padding:12px 8px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    gap:6px;
    font-size: 13px;
  }

  .events-card__date::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color: #fff; 
    -webkit-mask: url('/assets/img/gallery/date1.svg') no-repeat center / contain;
    mask: url('/assets/img/gallery/date1.svg') no-repeat center / contain;
  }
}


.events-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.65) 75%);
  ;
}

.events-card__title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.events-card__tag {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #181D2E;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}

.events-card__tag svg {
  width: 14px;
  height: 14px;
}

.events-card-discounts .events-card__tag svg {
  color: #ED1C57;
}

.events-card-news .events-card__tag svg {
  color: #3EB0E2;
}

.events-card-afisha .events-card__tag svg {
  color: #E1BF20;
}

/* Пагинация только мобильная */
.events__pagination {
  display: none;
}

/* ====== DROPDOWNS ====== */
.events__filters {
  margin-bottom: 16px;
}

.events__filters-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.events__filters-row .events__tabs {
  margin-right: auto;
}

/* мобайл: табы прячем, показываем категорию-дыроп */
@media (max-width: 768px) {
  .events__filters-row .events__tabs {
    display: none;
  }

  .filter--category {
    display: block;
  }
}

/* десктоп: категорию-дроп скрываем (есть табы) */
@media (min-width: 769px) {
  .filter--category {
    display: none;
  }
}

/* общий вид фильтра */
.filter {
  position: relative;
  width: auto;
}

.filter--year {
  width: auto;
}

/* кнопка фильтра — стилистически как твои табы */
.filter__button {
  position: relative;
  width: auto;
  height: 46px;
  padding: 0 38px 0 16px;
  border: 0;
  border-radius: 10px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  background: transparent;
  color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: all .2s;
}

.filter--category {
  margin-right: auto;
}

.filter--category .filter__button {
  background: #ED1C57;
}

.filter.is-open .filter__button,
.filter__button:hover {
  background: #252B3D;
  outline: 1px solid rgba(255, 255, 255, 0);
}

.filter__label {
  opacity: .4;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.filter__value {
  opacity: .8;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.filter--category .filter__button:hover {
  background: #D21D4F;
}

.filter__chevron {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 0;
  pointer-events: none;
}

.filter__chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  mask: url('/assets/img/main/arrow-bottom.svg') center / 22px 22px no-repeat;
  background: rgba(255, 255, 255, .6);
  transform: rotate(0deg);
  transition: all .2s;
}

.filter--category .filter__chevron::before {
  background: rgba(255, 255, 255, .8);
}

.filter.is-open .filter__chevron::before {
  transform: rotate(180deg);
}

.filter__menu {
  position: absolute;
  z-index: 10;
  min-width: 115px;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  border-radius: 8px;
  background: #181D2E;
  margin: 0;
  list-style: none;
  max-height: 440px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0px);
  transition: all 0.2s;
}

.filter__menu {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* инерция на iOS */
}

/* Chrome / Edge / Safari */
.filter__menu::-webkit-scrollbar {
  width: 6px;
  /* толщина */
  height: 6px;
}

.filter__menu::-webkit-scrollbar-track {
  background: transparent;
}

.filter__menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  /* цвет ползунка */
  border-radius: 6px;
}

.filter__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Firefox */
.filter__menu {
  scrollbar-width: thin;
  /* thin | auto | none */
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
  /* thumb | track */
}

.filter.is-open .filter__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter--month .filter__option, .filter--year .filter__option, .filter__option a {
  padding: 9px 16px 11px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  display: block;
  white-space: nowrap;
}

.filter--month .filter__option:hover, .filter--year .filter__option:hover,.filter__option:hover a,
.filter__option[aria-selected="true"] a {
  background: rgba(34, 39, 56, 1);
  color: rgba(255, 255, 255, 1);
}

.filter--month .filter__option.is-selected, .filter--year .filter__option.is-selected,.filter__option.is-selected a{
  background: rgba(34, 39, 56, 1);
  color: #DD1B5F;
}



/* ===== Адаптив ===== */
@media (max-width: 768px) {
  .filter__button {
    height: 40px;
    padding: 0 28px 0 10px;
    border: 0;
    border-radius: 8px;
    outline: 1px solid rgba(255, 255, 255, 0.1);
    outline-offset: -1px;
    background: transparent;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    transition: all .2s;
  }
  .filter__menu {
    min-width: 84px;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    border-radius: 8px;
    background: #181D2E;
    margin: 0;
    list-style: none;
    max-height: 374px;
  }
  
.filter__label {
  font-size: 12px;
}

.filter__value {
  font-size: 12px;
}
.filter--category .filter__menu {
  min-width: 100px;
}
.filter__chevron {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 0;
  pointer-events: none;
}

.filter__chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  mask: url('/assets/img/main/arrow-bottom.svg') center / 18px 18px no-repeat;
  background: rgba(255, 255, 255, .6);
  transform: rotate(0deg);
  transition: all .2s;
}

.filter--month .filter__option, .filter--year .filter__option,.filter__option a{
  padding: 9px 16px 9px;
  font-size: 13px;
}


.filter--category .filter__chevron::before {
  background: rgba(255, 255, 255, .8);
}
  .events__filters .events__tabs {
    display: none;
  }

  .events__filters-row {
    gap: 6px;
  }


  .events {
    margin: 24px auto 56px;

  }

  .events__head {
    flex-wrap: wrap;
    gap: 8px;
  }

  .events__all-link {

    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .events__title {
    font-size: 24px;
  }

  .events__nav {
    display: none;
  }

  .events .swiper-slide {
    width: 260px !important;
  }

  .events-card {
    height: 325px;
  }

  .events__tabs-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .events__tabs {
    overflow-x: scroll;
    display: flex;
    gap: 4px;
  }

  .events__tab {
    padding-inline: 16px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    outline: 1px solid rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    outline-offset: -1px;
    transition: all 0.2s;
  }

  .events__tab.is-active,
  .events__tab:hover,
  .events__tab:active {
    background: #ED1C57;
    color: rgba(255, 255, 255, 1);
    outline: 1px solid rgba(255, 255, 255, 0.1);
  }

  .events__pagination {
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    margin-top: 16px;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
  }

  .events__pagination .swiper-pagination-bullet {
    margin: 0px !important;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
  }

  .events__pagination .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background-color: #F22D35;
  }

  .events-card__title {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .events-card__tag {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: #181D2E;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
  }


}



.seсtion__title-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 4px;
}

.services {
  padding-bottom: 4px;
  margin: 40px 0 60px;
  color: #FFFFFF;
  overflow: hidden;
}

.services__container {
  position: relative
}

.services__header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px
}

.section__title {
  margin: 0;
  font-weight: 600;
  line-height: 1.27;
  color: #fff;
}

.services__more {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  color: rgba(40, 121, 255, .7);
  transition: 0.2s;
}

.services__more:hover {

  color: rgba(40, 121, 255, 1);
}

/* title sizes for both layouts */
@media (max-width:767.98px) {
  .services {
    padding-bottom: 0px;
    margin: 0px 0 28px;

  }

  .services__more {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 4px;
  }

  .seсtion__title-wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    margin-bottom: 0px;
  }

  .section__title {
    font-size: 24px
  }
}

@media (min-width:768px) {
  .section__title {
    font-size: 36px
  }
}

/* Nav (desktop only) */
.services__nav {
  margin-left: auto;
  display: none;
  gap: 8px
}

.services__btn {
  width: 42px;
  height: 42px;
  border-radius: 24px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.services__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  mask-size: 19.38px 19.38px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: rgba(255, 255, 255, .4);
  transition: 0.2s;
}

.services__btn:hover {
  background: #ED1C57;
}

.services__btn:hover::before {

  background-color: rgba(255, 255, 255, 1);

}

.services__btn--prev::before {
  mask-image: url('/assets/img/main/swiper-arrow-left.svg')
}

.services__btn--next::before {
  mask-image: url('/assets/img/main/swiper-arrow-left.svg');
  transform: rotate(180deg);
}

/* Slider vs Grid toggles */
.services__slider {
  display: none
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px
}

@media (min-width:768px) {
  .services__nav {
    display: flex
  }

  .services__slider {
    display: block;
    overflow: visible
  }

  .services__grid {
    display: none
  }
}

/* ====== Card ====== */
.services-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 7px;
  height: auto;
  background: #252B3D;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  padding: 16px 8px 11px;
  transform: scale(1);

  transition: .2s;
}

.services-card::before {
  content: '';
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #47B0E4;
  top: 10px;
  left: 10px;
  border-radius: 3px;
  width: 5px;
  height: 5px;
}

.services-card:hover {
  transform: scale(1.03)
}

.services-card__icon {
  height: 26px;
  width: 26px;
  display: inline-flex;
}

.services-card__icon svg {
  height: 26px;
  width: 26px;

}

.services-card__label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;

  line-height: 1.25
}



/* Slide sizing (desktop) */
@media (min-width:768px) {
  .services-card__icon {
    width: 42px;
    height: 42px;
    padding-top: 10px;
    display: inline-flex;
  }

  .services-card__icon svg {
    width: 42px;
    height: 42px;
  }

  .services-card__label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;

    line-height: 1.3
  }

  /* ====== Card ====== */
  .services-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 12px;
    height: 100%;
    background: #252B3D;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    padding: 0px 22px 0px;
    transform: scale(1);

    transition: .2s;
  }

  .services-card::before {
    content: '';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/img/main/services/service-icon-after.png') center/contain no-repeat;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
  }

  .services__wrapper {
    align-items: center;
    height: 190px;
  }

  /* Убираем фикс. ширину: Swiper сам поделит контейнер на 5 равных */
  .services__slide {
    height: 100%;
    width: auto
  }

  /* По умолчанию приглушаем все слайды... */
  .services .swiper-slide {
    transition: filter .2s ease, opacity .2s ease;
    filter: blur(10px);
    opacity: .5;
    pointer-events: none;
  }

  /* ...а все ВИДИМЫЕ (в вьюпорте) считаем «активными» */
  .services .swiper-slide.swiper-slide-visible {
    filter: none;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===== HERO ===== */
.hero {
  padding-bottom: 76px;
  background: transparent;
  color: #fff;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 0px;
  margin: 0px 0 40px;
  background: transparent;
}

/* контейнер слайдера */
.hero__swiper {
  position: relative;
  overflow: visible;
  background: transparent;
}

/* ===== СЛАЙД ===== */
.hero-slide {
  position: relative;
  width: 100%;
  max-width: var(--container-max);

  aspect-ratio: 1360 / 550;
  max-height: 550px;
  min-height: 200px;
  z-index: 1;
  border-radius: 24px;
  overflow: visible;
  background: transparent;

}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  /* тоже под контентом */
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .35) 88%, rgba(0, 0, 0, .55) 100%);
  border-radius: 22px;
}

.hero-slide__media {
  border-radius: 22px;
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.hero-slide__img,
.hero-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA (стекло) */
.hero-slide__cta {
  position: absolute;
  left: 50%;
  bottom: 40px;

  transform: translate(-50%, 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 290px;
  width: 100%;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.27;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -1px;
  transition: all 0.2s;
  z-index: 4;
}

.hero-slide__cta:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* per-slide ПРОГРЕСС */
.hero-slide__progress {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  z-index: 3;
}

.hero-slide__progress-fill {
  height: 100%;
  width: 0%;
  background: #ED1C57;
  transition: width 0.1s linear;
}

/* состояниe боковых слайдов */
.hero .swiper-slide {
  transform: scaleY(.75) scaleX(0.89);
  filter: blur(30px);
  opacity: .6;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
  z-index: 1;
}

.hero .swiper-slide-active {
  transform: scale(1);
  filter: none;
  opacity: 1;
  z-index: 2;
}

/* Пагинация и Пуск/Пауза — всегда выше */
.hero__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  top: auto !important;

  right: auto !important;
  position: relative;
  left: auto !important;
  bottom: auto !important;
  margin-top: 16px;

  z-index: 10;
}

.hero__pagination .swiper-pagination-bullet {
  opacity: 1 !important;
  margin: 0px !important;
  background-color: rgba(255, 255, 255, 0.4);
  width: 6px;
  height: 6px;
}

.hero__pagination .swiper-pagination-bullet-active {
  background-color: #ED1C57;
  width: 8px;
  height: 8px;
}

/* Пуск/Стоп — ТЕПЕРЬ ВНУТРИ СЛАЙДА */
.hero-slide__toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: #111;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.hero-slide__toggle-ico {
  width:18px;
  height: 18px;
  color:#2B2F3C;
  display: none;
  font-weight: 900;
}

.hero-slide__toggle[data-state="playing"] .hero-slide__toggle-ico--pause {
  display: block;
}

.hero-slide__toggle[data-state="paused"] .hero-slide__toggle-ico--play {
  display: block;
}

.hero__swiper {
  overflow: visible;
}

/* сама тень */
.hero-slide__shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  bottom: -30px;
  /* сразу под баннером */

  transform: translateX(-50%) scale(0.9);
  filter: blur(28px);
  opacity: .6;
  pointer-events: none;
  z-index: -1;
  /* под контентом слайда */

}

.hero-slide__shadow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* смещаем копию вверх, чтобы низ совпал с низом баннера */

  border-radius: 22px;
  /* как у баннера, чтобы совпали углы */
}

.main-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.main-category-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 17px 16px;
  background: #252B3D;
  border-radius: 10px;
  width: 100%;
  outline: 1px solid rgba(255, 255, 255, 0);
  outline-offset: -1px;
  transition: all 0.2s;
}

.main-category-item:hover {
  background: #313749;
}

.main-category-item:active {
  background: #ED1C57;
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

.main-category-item {
  text-decoration: none !important;
}

.main-category-item .burger-menu__text {

  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.27;
}

.main-category-item .burger-menu__badge {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;

}

@media(max-width:768px) {
  .hero {
    padding-bottom: 52px;
  }

  .main-category-row {
    flex-wrap: wrap;
    gap: 10px 8px;
  }

  .main-category-item {
    gap: 10px;
    padding: 14.5px 14px 16.5px;
    border-radius: 8px;
    width: calc(50% - 32px);
  }

  .main-category-item .burger-menu__text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.27;
  }

  .main-category-item .burger-menu__badge {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 4px;

  }

  .main-category-item .burger-menu__badge--pink svg,
  .main-category-item .burger-menu__badge--lime svg,
  .main-category-item .burger-menu__badge--green svg,
  .main-category-item .burger-menu__badge--purple svg,
  .main-category-item .burger-menu__badge--blue svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== Адаптив ===== */
@media (max-width:600px) {
  .hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0px 0 26px;
  }

  .hero-slide {
    position: relative;
    width: 100%;
    max-width: var(--container-max);

    aspect-ratio: 360 / 300;
    max-height: 600px;
    min-height: 200px;

    border-radius: 16px;

  }

  .hero-slide__cta {
    bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    max-width: 160px;
  }

  .hero .swiper {
    overflow: visible;
  }

  .hero__pagination {
    margin-top: 12px;
  }
}

.main-subheader {
  margin: 15px 0 60px;
}


.main-subheader-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.main-subheader-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 50px;
  gap: 10px;
  border-radius: 8px;
  background-color: #252B3D;
  padding: 0 32px 0 20px;
  transition: all 0.2s;
}

.main-subheader-item:hover {
  background-color: #313749;
}

.main-subheader-item:nth-child(2) {
  margin-right: auto;
}

.main-subheader-icon,
.main-subheader-icon svg {
  width: 24px;
  height: 24px;
}

.main-subheader-text {
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

@media(max-width:768px) {
  .main-subheader{
    margin: 10px 0 20px;
  }
  .main-subheader-row {
    gap: 7px;
  }

  .main-subheader-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: 30px;
    gap: 6px;
    border-radius: 8px;
    background-color: #252B3D;
    padding: 0 10px 0 10px;
    transition: all 0.2s;
  }

  .main-subheader-icon,
  .main-subheader-icon svg {
    width: 18px;
    height: 18px;
  }

  .main-subheader-text {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
  }

  .main-subheader-text .desktop {
    display: none !important;
  }

  .main-subheader-item:nth-child(3) .main-subheader-text {
    display: none !important;
  }

  .main-subheader-item:nth-child(3) {
    order: 4;
  }

  .main-subheader-item:nth-child(2) .main-subheader-text {
    white-space: wrap;
    width: min-content;
    flex: 1 1 min-content;
  }
}

/* ====== Breadcrumbs ====== */
.breadcrumbs-wrapper {
  padding: 15px 0 17px;
  background: #181D2E;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  flex-wrap: wrap;

}

.breadcrumbs__item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.2s;
}

.breadcrumbs__item:hover {
  color: #fff;
}

.breadcrumbs__item:last-child,
.breadcrumbs__sep,
.breadcrumbs__item:last-child:hover {
  color: rgba(255, 255, 255, 0.2);
}



/* ====== Gallery ====== */
.gallery {
  margin-top: 64px;
  margin-bottom: 160px;

  max-width: var(--container-max);
}

.gallery__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.28;
  color: #fff;
  margin: 0 0 24px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 20px;
  width: 100%;
}

/* ====== Card ====== */
.gallery-card {
  position: relative;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  transform-origin: center;
  transition: all .2s;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.6) 75%);
  z-index: 1;
  border-radius: 12px;
  transform: scale(0.971963, 0.958333);
  transform-origin: center;
  transition: all .2s;
}

.gallery-card a {
  text-decoration: none;
}

.gallery-card:hover .gallery-card__image,
.gallery-card:hover::after {
  transform: scale(1, 1);

}

.gallery-card__image {
  display: block;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.971963, 0.958333);
  transform-origin: center;
  transition: all .2s;
}

.gallery-card__body {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 7px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* overlay line above meta (imitates the caption over image bottom) */
.gallery-card__overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;


}


.gallery-card__meta-item {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  transition: all .2s;
}

.gallery-card__meta-item:hover {

  color: #ED1C57;

}

.gallery-card__meta-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  opacity: 0.6;

}

.gallery-card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  white-space: nowrap;
}

/* ====== Footer (results + pagination) ====== */
.gallery__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.gallery__results {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.4);
}

/* Блок */
.pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}

/* Стрелки */
.pagination__arrow {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  transition: all 0.2s;
}

.pagination__arrow svg {
  width: 22px;
  height: 22px;
}

.pagination__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 1);
}



.pagination__item,
.pagination__dots {
  min-width: 40px;
  height: 40px;

  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  align-items: center;
  justify-content: center;
  display: flex;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination__arrow--prev {
  transform: rotate(180deg);
}

.pagination__item:hover,
.pagination__dots:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 1);
}

.pagination__item--active {
  background: #ED1C57;
  color: #fff;
}

.pagination__item--active:hover {
  background: #ED1C57;
  color: #fff;
}



/* Скрыть стрелки по модификаторам состояния */
.pagination--first .pagination__arrow--prev {
  display: none;
}

.pagination--last .pagination__arrow--next {
  display: none;
}

/* Адаптив до 768px: делаем элементы чуть меньше, чтобы вмещались */
@media (max-width: 768px) {
  .pagination {
    gap: 6px;
  }

  .pagination__item,
  .pagination__arrow,
  .pagination__dots {
    width: 36px;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
  }

  .pagination__icon {
    width: 20px;
    height: 20px;
  }
}

.gallery-single .gallery__title {
  margin-bottom: 8px;

}

.gallery-single .gallery-card__meta-item {
  font-size: 18px;
  margin-bottom: 4px;
}

.gallery-card__meta-icon {
  width: 24px;
  height: 24px;
}

.gallery-single .gallery-card__date {
  font-size: 17px;
  gap: 10px;
  margin-bottom: 23px;
  opacity: 0.4;
}

.gallery-single .gallery-card__date svg {
  color: rgba(255, 255, 255, 0.6);
  width: 20px;
  height: 20px;
}

/* ====== Responsive ====== */
@media (max-width: 1200px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-single .gallery-card__meta-item {
    font-size: 14px;

  }

  .gallery-card__meta-icon {
    width: 16px;
    height: 16px;
  }

  .gallery-single .gallery-card__date {
    font-size: 14px;
    gap: 8px;
    margin-bottom: 20px;
    opacity: 0.4;
  }

  .gallery-single .gallery-card__date svg {
    color: rgba(255, 255, 255, 0.6);
    width: 16px;
    height: 16px;
  }

  .breadcrumbs-wrapper {
    padding: 16px 0 16px;
    background: #181D2E;
  }

  .breadcrumbs {
    gap: 8px;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.28;


  }

  /* ====== Card ====== */
  .gallery-card {

    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    outline: 1px solid rgba(255, 255, 255, 0.1);
    outline-offset: -1px;
  }

  .gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.6) 75%);
    z-index: 1;
    border-radius: 10px;
    transform: none;

    transition: all .2s;
  }

  .gallery-card:hover .gallery-card__image,
  .gallery-card:hover::after {
    transform: none;

  }

  .gallery-card__image {
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: all .2s;
  }

  .gallery-card__body {
    position: absolute;
    z-index: 2;
    left: 12px;
    right: 12px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .gallery-card__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    padding-bottom: 7px;
  }

  .gallery-card__overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;


  }


  .gallery-card__meta-item {

    font-size: 14px;
  }

  .gallery-card__meta-icon {
    width: 16px;
    height: 16px;
  }

  .gallery-card__date {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.8);
  }

  .gallery {
    margin-inline: 0px;
    margin: 24px 0 80px;
  }

  .gallery__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }


  .gallery__footer {
    gap: 15px;
  }

  .gallery__results {
    font-size: 13px;
  }
}

@media (max-width: 650px) {
  .gallery__grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

}

.events__cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 3 колонки */
  gap: 16px 20px;
  /* как на скрине */
  align-items: stretch;
}

/* 2 колонки — промежуточные ширины */
@media (max-width: 1024px) {
  .events__cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
  }
}

/* 1 колонка — до 768px */
@media (max-width: 768px) {
  .events__cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 8px;
  }
}

/* ========== Catalog ========== */
.catalog {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 16px 60px 16px;
}

/* Tabs (Список / На карте) */
.catalog__tabs {
  display: flex;
  background: #121a2b;
  border-radius: 12px;
  padding: 6px;
  width: 280px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.catalog__tab {
  flex: 1 1 auto;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

.catalog__tab--active {
  background: #20293d;
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25) inset;
}

/* Layout */
.catalog__body {
  display: flex;
  column-gap: 16px;
  margin-top: 18px;
}

/* ========== Sidebar / Accordion ========== */
.catalog__sidebar {
  width: 260px;
  flex: 0 0 260px;
}

.catlist {
  background: #0f1728;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.catlist__group {
  background: #121a2b;
  border-radius: 10px;
  margin: 8px 0;
  overflow: hidden;
}

.catlist__header {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 14px;
}

.catlist__badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f1422;
  font-weight: 700;
  font-size: 16px;
}

.catlist__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.catlist__chevron {
  margin-left: auto;
  width: 18px;
  height: 18px;
  transition: transform 150ms ease;
  opacity: .9;
}

.catlist__group--open .catlist__chevron {
  transform: rotate(180deg);
}

.catlist__panel {
  display: none;
  padding: 8px;
  background: #0f1728;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.catlist__group--open .catlist__panel {
  display: block;
}

.catlist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 8px;
  color: #cfd6e6;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
}

.catlist__item:hover {
  background: #182138;
  color: #fff;
}

.catlist__item--active {
  background: #20293d;
  color: #fff;
}

.catlist__icon {
  width: 18px;
  height: 18px;
  opacity: .9;
}

/* Badge colors (match screenshot theme) */
.badge--pink {
  background: #ff2e85;
}

.badge--green {
  background: #6dd58c;
}

.badge--yellow {
  background: #ffd45e;
}

.badge--purple {
  background: #b78cff;
}

.badge--blue {
  background: #6ec2ff;
}

/* ========== Subcategories area (right) ========== */
.catalog__content {
  flex: 1 1 auto;
  background: #0f1728;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.subcats__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 2px 12px 2px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.subcats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.subcat-card {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  /* 4 in row on wide */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 116px;
  border-radius: 12px;
  background: #1a2337;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 6px 16px rgba(0, 0, 0, 0.25);
  padding: 10px;
  transition: transform 120ms ease, background 120ms ease;
  cursor: pointer;
}

.subcat-card:hover {
  background: #202c47;
  transform: translateY(-2px);
}

.subcat-card__icon {
  width: 26px;
  height: 26px;
  display: block;
  margin: 0 auto 10px auto;
  opacity: .95;
}

.subcat-card__title {
  font-size: 14px;
  line-height: 18px;
  color: #e6ebf5;
  max-width: 140px;
}

.subcat-card__badge {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #ff2e85;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25) inset;
}

.subcat-card__badge svg {
  width: 12px;
  height: 12px;
  fill: #0f1422;
}

/* 3 columns medium */
@media (max-width: 1080px) {
  .subcat-card {
    flex-basis: calc(33.333% - 11px);
  }
}

/* 2 columns small desktop / tablet */
@media (max-width: 880px) {
  .catalog__sidebar {
    width: 240px;
    flex-basis: 240px;
  }

  .subcat-card {
    flex-basis: calc(50% - 8px);
  }
}

/* Mobile: hide right part entirely, keep accordion only */
@media (max-width: 680px) {
  .catalog {
    padding: 16px 12px 40px 12px;
  }

  .catalog__tabs {
    width: 240px;
  }

  .catalog__body {
    flex-direction: column;
  }

  .catalog__sidebar {
    width: auto;
    flex: none;
  }

  .catalog__content {
    display: none;
  }
}

/* Small helper icon style (for sidebar items) */
.icon {
  display: inline-block;
  vertical-align: middle;
}



/* ===== Mall Sidebar (mobile-first) ===== */
.mall-sidebar,
.mall-sidebar * {
  box-sizing: border-box;
}



.mall-sidebar__tabs {
  display: flex;
  gap: 0;
  background: #181D2E;
  border-radius: 12px;
  overflow: hidden;
}
.mall-sidebar__tab-icon{
  height: 50px;
  width: 50px;
  border-radius: 40px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mall-sidebar__tab-text{
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.mall-sidebar__tab {
  padding: 20px 16px 24px;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  gap: 16px;
  height: 133px;
  border: 0;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.mall-sidebar__tab--active {
  background: #252B3D;
  color: #FFFFFF;
}

.mall-sidebar__tab:hover .mall-sidebar__tab-text{
  color: rgba(255, 255, 255, 0.8);
}
.mall-sidebar__tab:hover .mall-sidebar__tab-icon{
  outline: 1px solid rgba(255, 255, 255, 0.2);
}
.mall-sidebar__tab:hover{
  background: #222738;
}

.mall-sidebar__tab--active .mall-sidebar__tab-text{
  color: rgba(255, 255, 255, 1);
}

.mall-sidebar__tab--active:hover .mall-sidebar__tab-icon,
.mall-sidebar__tab--active .mall-sidebar__tab-icon{
  outline: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.1);
}
.mall-sidebar__tab--active:hover {
  background: #252B3D;
}
.mall-sidebar__tab--active:hover .mall-sidebar__tab-text{
  color: #FFFFFF;
}

/* Accordion block */
.mall-sidebar__accordion {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #181D2E;
  text-decoration: none;
  
  overflow: hidden;
}


.mall-acc__header {
  margin: 0;

}

.mall-acc__toggle {
  width: 100%;
  height: 55px;
  padding: 0 16px;
  border: 0;
  background: #252B3D;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.mall-acc.is-active .mall-acc__toggle {
  background: #313749;
}
.mall-acc__toggle:hover {
  background: #313749;
}

.mall-acc__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  flex: 0 0 32px;
}

.mall-acc__icon::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
 
}


.mall-acc__title {
  flex: 1;
  text-align: left;
  font-size: 15px;
  line-height: 20px;
  color: #E8EDF5;
}

.mall-acc__chevron {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 24px;

}

.mall-acc__chevron::before {
  content: url('/assets/img/main/catalog-arrow.svg');
  position: absolute;
  inset: 0;
  transform: rotate(180deg);

}

.mall-acc__panel {
  display: none;
}

.mall-acc__panel.is-open {
  display: block;
}

.mall-acc[open] .mall-acc__panel {
  display: block;
}

.mall-acc[open] .mall-acc__chevron::before,
.mall-acc.is-active .mall-acc__chevron::before {
  transform: rotate(0deg);
}

/* Subcategories */
.mall-acc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mall-acc__item {
  display: block;
}

.mall-acc__subcat,
.mall-acc__subcat-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: transparent;

  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  

}
.mall-acc--red .mall-acc__subcat {
  border-left: 1px solid rgba(221, 27, 95, 0.2);
}
.mall-acc--green .mall-acc__subcat {
  border-left: 1px solid  rgba(145, 212, 89,0.2);
}

.mall-acc--yellow .mall-acc__subcat {
  border-left: 1px solid rgba(228, 191, 37,0.2);
}

.mall-acc--purple .mall-acc__subcat {
  border-left: 1px solid rgba(193, 139, 227,0.2);
}

.mall-acc--blue .mall-acc__subcat {
  border-left: 1px solid rgba(71, 176, 228,0.2);
}

.mall-acc--red .mall-acc__subcat.is-active {
  color: rgba(221, 27, 95, 1);
  border-left: 1px solid rgba(221, 27, 95, 1);
}
.mall-acc--green  .mall-acc__subcat.is-active {
  color: rgba(145, 212, 89,1);
  border-left: 1px solid  rgba(145, 212, 89,1);
}
.mall-acc--yellow  .mall-acc__subcat.is-active {
  color: rgba(228, 191, 37,1);
  border-left: 1px solid rgba(228, 191, 37,1);
}
.mall-acc--purple .mall-acc__subcat.is-active  {
  color: rgba(193, 139, 227,1);
  border-left: 1px solid rgba(193, 139, 227,1);
}
.mall-acc--blue  .mall-acc__subcat.is-active  {
  color: rgba(71, 176, 228,1);
  border-left: 1px solid rgba(71, 176, 228,1);
}
.mall-acc--red .mall-acc__icon::after{
  background: url('/assets/img/main/menu/stores.svg') no-repeat center / contain;
}
.mall-acc--green .mall-acc__icon::after{
  background: url('/assets/img/main/menu/razvlecheniya.svg') no-repeat center / contain;
}
.mall-acc--yellow .mall-acc__icon::after{
  background: url('/assets/img/main/menu/restoran.svg') no-repeat center / contain;
}
.mall-acc--purple .mall-acc__icon::after{
  background: url('/assets/img/main/menu/kids.svg') no-repeat center / contain;
}
.mall-acc--blue .mall-acc__icon::after{
  background: url('/assets/img/main/menu/services-white.svg') no-repeat center / contain;
}



.mall-acc.is-active .mall-acc__icon--shop {
  background: #DD1B5F;
}

.mall-acc.is-active .mall-acc__icon--fun {
  background: rgb(145, 212, 89);
}

.mall-acc.is-active .mall-acc__icon--food {
  background: rgb(228, 191, 37);
}

.mall-acc.is-active .mall-acc__icon--kids {
  background: rgb(193, 139, 227);
}

.mall-acc.is-active .mall-acc__icon--services {
  background: rgb(71, 176, 228);
}


.mall-acc__subcat:hover {
  background: #222738;

}
.mall-acc__subcat.is-active {
  background: #222738;

}

.mall-acc__subcat.is-active::after{
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;

  -webkit-mask: url("/assets/img/main/catalog-close.svg") no-repeat center / contain;
          mask: url("/assets/img/main/catalog-close.svg") no-repeat center / contain;

  background-color: currentColor; 
}


.mall-acc__places {
  position: relative;
  display: none;
  background: #EAEBEC;
  padding: 8px 12px 12px;
}
.mall-acc__places::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;         
  height: 10px;        
  pointer-events: none;
  box-shadow: 0 8px 10px rgba(0,0,0,0.08);
}
.mall-acc__floor {

  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
}
.mall-acc__floor:first-of-type {
  margin: 0px 0 8px;
}

.mall-acc__cards {
  list-style: none;
 
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.mall-acc__card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #FFFFFF;
  color: #2B2F3C;
  border-radius: 12px;
  padding: 0px;
  height: 68px;
}

.mall-acc__logo {
  display: block;
  height: 100%;
  margin-bottom: 3px;

}
.mall-acc__logo {
  padding: 12px 8px 13px;
  display: block;
  width: 64px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 3px;

}

.mall-acc__card-meta {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mall-acc__card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #2B2F3C;
}

.mall-acc__card-sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(45, 54, 81, 0.6);
}

.mall-sidebar {
  min-width: 310px;
  width: auto;
}

.mall-sidebar__root {
  max-width: 310px;
}

.mall-acc__places {
  display: none !important;
}
/* ===== Desktop ≥768 ===== */
@media (max-width: 768px) {
  .mall-acc__subcat.is-active {
    background: transparent
  
  }

  .mall-sidebar {
    width: 100%;
  }
  .mall-sidebar__root {
    max-width: 100%;
    width: 100%;
  }
  .mall-sidebar__tabs {
    background: #252B3D;
  }
  .mall-sidebar__tab-icon{
    height: 28px;
    width: 28px;
  }
  .mall-sidebar__tab-icon svg{
    height: 16px;
    width: 16px;
  }
  .mall-sidebar__tab-text{
    font-size: 15px;
    line-height: 19px;
  }
  .mall-sidebar__tab {
    padding: 10px 20px 12px 12px;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    cursor: pointer;
    gap: 8px;
    height: 50px;
    border: 0;
    background: #252B3D;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mall-sidebar__tab--active {
    background: #313749;
    color: #FFFFFF;
  }

  
/* Accordion block */
.mall-sidebar__accordion {
  
  background: #FFFFFF;
}

.mall-acc__toggle {
  padding: 0 12px;
  background: #fff;
  color: #2B2F3C;
  font-size: 16px;
  font-weight: 500;
}
.mall-acc.is-active .mall-acc__toggle {
  background: #fff;
}
.mall-acc__toggle:hover {
  background: #fff;
}

.mall-acc__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  flex: 0 0 32px;
}

.mall-acc__icon::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
 
}


.mall-acc__title {
  flex: 1;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  color: #2B2F3C;
}

.mall-acc__chevron {
  width: 24px;
  height: 24px;
  position: relative;
  color: #2B2F3C; 

  flex: 0 0 24px;

}

.mall-acc__chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;

  -webkit-mask: url('/assets/img/main/catalog-arrow.svg') no-repeat center / contain;
          mask: url('/assets/img/main/catalog-arrow.svg') no-repeat center / contain;

  background-color: currentColor;
  transform: rotate(180deg);
}
.mall-acc[open] .mall-acc__chevron,
.mall-acc.is-active .mall-acc__chevron {
  background: rgba(43, 47, 60, 0.1);
  border-radius: 100px;
}


.mall-acc__subcat,
.mall-acc__subcat-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14.5px 14px;
  background: transparent;

  color: rgba(43, 47, 60, 0.7);
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;

}

.mall-acc--red .mall-acc__subcat {
  border-left: 2px solid rgba(221, 27, 95, 1);
}
.mall-acc--green .mall-acc__subcat {
  border-left: 2px solid  rgba(145, 212, 89,1);
}

.mall-acc--yellow .mall-acc__subcat {
  border-left: 2px solid rgba(228, 191, 37,1);
}

.mall-acc--purple .mall-acc__subcat {
  border-left: 2px solid rgba(193, 139, 227,1);
}

.mall-acc--blue .mall-acc__subcat {
  border-left: 2px solid rgba(71, 176, 228,1);
}
.mall-acc__subcat.is-active{color: rgba(43, 47, 60, 0.7) !important;}
.mall-acc--red .mall-acc__subcat.is-active {
  color: rgba(43, 47, 60, 1);
  border-left: 2px solid rgba(221, 27, 95, 1);
}
.mall-acc--green  .mall-acc__subcat.is-active {
  color: rgba(145, 212, 89,1);
  border-left: 2px solid  rgba(145, 212, 89,1);
}
.mall-acc--yellow  .mall-acc__subcat.is-active {
  color: rgba(228, 191, 37,1);
  border-left: 2px solid rgba(228, 191, 37,1);
}
.mall-acc--purple .mall-acc__subcat.is-active  {
  color: rgba(193, 139, 227,1);
  border-left: 2px solid rgba(193, 139, 227,1);
}
.mall-acc--blue  .mall-acc__subcat.is-active  {
  color: rgba(71, 176, 228,1);
  border-left: 2px solid rgba(71, 176, 228,1);
}


.mall-acc__subcat:hover{
  background: transparent;
}
.mall-acc .mall-acc__icon--shop {
  background: #DD1B5F;
}

.mall-acc .mall-acc__icon--fun {
  background: rgb(145, 212, 89);
}

.mall-acc .mall-acc__icon--food {
  background: rgb(228, 191, 37);
}

.mall-acc .mall-acc__icon--kids {
  background: rgb(193, 139, 227);
}

.mall-acc .mall-acc__icon--services {
  background: rgb(71, 176, 228);
}
.mall-acc__subcat {
  position: relative;
  padding-right: 36px; /* место под стрелку */
}
.mall-acc__subcat::after,  .mall-acc__subcat.is-active::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%) rotate(180deg);
  transition: transform .2s ease;

  /* svg-стрелка через маску, красится currentColor */
  -webkit-mask: url('/assets/img/main/catalog-arrow.svg') no-repeat center / contain;
          mask: url('/assets/img/main/catalog-arrow.svg') no-repeat center / contain;
  background-color: currentColor;
  opacity: .7;
}
.mall-acc__subcat.is-active::before {
  content: "";
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background: rgba(43, 47, 60, 0.1);
}
.mall-acc__subcat.is-active::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0.7;
}

.mall-acc__floor{
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(43, 47, 60, 0.8);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 9.5px;

}
.mall-acc__floor::before{
  
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  -webkit-mask: url('/assets/img/catalog/floor.svg') no-repeat center / contain;
          mask: url('/assets/img/catalog/floor.svg') no-repeat center / contain;
  background-color: currentColor;
  opacity: .6;
}


/* показываем список точек при .is-open */
.mall-acc__places { display: none !important; }
.mall-acc__item .mall-acc__places.is-open { display: block !important; }

  
}


@media (prefers-reduced-motion: reduce) {
  .mall-acc__panel {
    transition: none;
  }
}

/* ===== mall-catalog (mobile-first) ===== */
.mall-catalog,
.mall-catalog * {
  box-sizing: border-box;
}

.mall-catalog {
  display: flex;
  gap: 35px;
  width: 100%;
  margin: 32px 0 120px;
}

@media (max-width: 768px) {
  .mall-catalog {
    margin: 17px 0 120px;
    flex-direction: column;
  }
}

/* Колонка сайдбара */
.mall-catalog__sidebar {
  flex: 0 0 300px;
  max-width: 340px;
}

.mall-catalog__sidebar-placeholder {
  display: none;
  /* только как заглушка, реальный сайдбар вставится сюда */
  height: 200px;
  border-radius: 16px;
  background: #141C2C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #98A3B7;
  font-size: 14px;
}

/* Контент (desktop-only), на мобилке скрыт */
.mall-catalog__content {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}

/* Заголовок категории */
.mall-catalog__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
}

.mall-catalog__title-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 42, 122, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mall-catalog__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

/* Сетка карточек (Flexbox) */
.mall-catalog__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.mall-catalog__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  height: 180px;
  background: transparent;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  padding: 36px 12px 24px;
  flex: 0 1 calc((100% - 18px) / 2);
}

.mall-catalog__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(37, 43, 61, 1);
  transform: scaleX(0.966) scaleY(0.955);
  transition: transform 0.2s;
  z-index: 0;
  pointer-events: none;
}

/* ховер теперь только на фон */
.mall-catalog__card:hover::before {
  transform: scaleX(1) scaleY(1);
}

.mall-catalog__card:hover {
  gap: 14px;
  padding: 30px 12px 22px;
}

.mall-catalog__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
}

.mall-catalog__card:hover .mall-catalog__badge {
  left: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
}

.mall-catalog__icon,
.mall-catalog__label {
  position: relative;
  z-index: 1;
}

.mall-catalog__icon,
.mall-catalog__icon svg {
  color: rgba(255, 255, 255, 0.8);
  width: 42px;
  height: 42px;

}

.mall-catalog__card:hover .mall-catalog__icon,
.mall-catalog__card:hover .mall-catalog__icon svg {
  color: rgba(255, 255, 255, 1);
  width: 48px;
  height: 48px;
}

.mall-catalog__label {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;

}

.mall-catalog__card:focus-visible {
  outline: 2px solid #76B7FF;
  outline-offset: 2px;
}

/* ===== ≥768: показываем правый блок, 3 колонки ===== */
@media (min-width: 768px) {
  .mall-catalog__content {
    display: block;
  }

  .mall-catalog__card {
    flex: 0 1 calc((100% - 18px) / 2);
  }

  /* Заголовок категории */
  .mall-catalog__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 24px;
  }

  .mall-catalog__title-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mall-catalog__title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
  }

}

@media (min-width: 920px) {

  .mall-catalog__card {
    flex: 0 1 calc((100% - 36px) / 3);
  }
}

@media (min-width: 1200px) {
  .mall-catalog__sidebar {
    flex-basis: 310px;
  }

  .mall-catalog__card {
    flex: 0 1 calc((100% - 54px) / 4);
  }
}

/* Контраст при фокусе и без анимаций */
@media (prefers-reduced-motion: reduce) {
  .mall-catalog__card {
    transition: none;
  }
}




/* Контент (desktop-only), на мобиле скрыт */
.mall-store__content {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}

/* Заголовок */
.mall-store__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
}

.mall-store__title-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 42, 122, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mall-store__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

/* Сетка */
.mall-store__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}


.mall-store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 312px;
  border-radius: 16px;
  color: #1f2430;
  background: transparent;
  flex: 0 1 calc((100% - 16px) / 2);
}

.mall-store-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #fff;
  transform: scaleX(.966) scaleY(.975);
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 0;
  pointer-events: none;
}

.mall-store-card__main {
  position: absolute;
  inset: 0;
  bottom: 30px;
  z-index: 2;
  outline: none;
}


.mall-store-card__map-link {
  position: relative;
  z-index: 2;
  text-decoration: none;
  transition: color .2s;
  color: rgba(43, 47, 60, .8);
}

.mall-store-card__map-link:hover {
  color: #ED1C57;
}



/* Превью/логотип */
.mall-store-card__thumb {
  position: relative;
  z-index: 1;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .2s ease;
  padding: 16px 19px 17px;
  margin-bottom: 4px;
}

.mall-store-card__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Название и тип */
.mall-store-card__title {
  position: relative;
  z-index: 1;
  margin: 0px 0 8px;
  font-size: 16px;
  font-weight: 400;
  color: #2B2F3C;
  text-align: left;
  padding: 0 16px;
}

.mall-store-card__type {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  color: rgba(45, 54, 81, .6);
  text-align: left;
  padding: 0 16px;
}

/* Мета-строка */
.mall-store-card__meta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0px 20px 16px;
  font-size: 14px;
  color: rgba(43, 47, 60, .8);
}

.mall-store-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mall-store-card__meta-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.8;
}

.mall-store-card__map-link {
  text-decoration: none;
  transition: all 0.2s;
}

.mall-store-card__map-link:hover {
  color: #ED1C57;
}

.mall-store-card:hover::before {
  transform: scaleX(1) scaleY(1);

}

.mall-store-card:hover .mall-store-card__thumb {
  height: 187px;
  width: auto;
  padding: 16px 10px 17px;
}

.mall-store-card:hover .mall-store-card__title {

  padding: 0 14px;
}

.mall-store-card:hover .mall-store-card__type {

  padding: 0 14px;
}

.mall-store-card:hover .mall-store-card__meta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0px 16px 14px;

}



/* ===== брейкпоинты ===== */
@media (min-width: 768px) {
  .mall-store__content {
    display: block;
}


  .mall-store-card {
    flex: 0 1 calc((100% - 18px) / 2);
  }

  .mall-store__title-icon {
    width: 36px;
    height: 36px;
  }

  .mall-store__title {
    font-size: 28px;
  }
}

@media (min-width: 920px) {
  .mall-store-card {
    flex: 0 1 calc((100% - 36px) / 3);
  }
}

@media (min-width: 1200px) {
  .mall-store-card {
    flex: 0 1 calc((100% - 54px) / 4);
  }
}
@media (max-width: 768px){
    .mall-store__content{
        display:flex;
        flex-direction:column;
    }
}
/* Без анимаций */
@media (prefers-reduced-motion: reduce) {

  .mall-store-card,
  .mall-store-card::before,
  .mall-store-card__badge,
  .mall-store-card__thumb {
    transition: none;
  }
}








/*---------------------------------- STORE ------------------------------*/
/* ========== Store (BEM) ========== */

.store {
  width: 100%;
  min-width: 0;
}

.store__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.store__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  color: #FFFFFF;
}

.store__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
}

.store__floor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.store__floor-icon {
  color: #fff;
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.store__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store__btn {
  height: 44px;
  width: 44px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.store__btn svg {
  width: 19.56px;
  height: auto;
}

.store__btn:hover {
  outline: 1px solid rgba(255, 255, 255, 0.2);
  background: #252B3D;
  color: rgba(255, 255, 255, 1);
}

.store__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 4px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s, color .2s;
  padding: 11px 24px 13px 16px;
  background: #ED1C57;
  color: #fff;
}

.store__btn--primary svg {
  width: 20px;
  height: 20px;
}

.store__btn--primary:hover {
  background: #D21D4F;
}

.store__btn-icon {
  display: block;
  color: currentColor;
}

.store__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 24px 0 16px;
}

.store__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px 8px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  background: #252B3D;
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.store__chip svg {
  width: 22px;
  height: 22px;
}

.store__chip:hover {
  background: #313749;
  color: #fff;
}

.store__desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.store__top {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.store__media {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22.84px 22.31px;
  flex: 0 1 345px;
  min-width: 280px;
  height: 203px;
}

.store__img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.store__hours .footer__worktime {
  display: block;
  flex: 0 0 auto;
}

.store__hours-wrapper {

  flex: 1 1 535px;
  position: relative;

}


.store__hours {
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  inset: 0;
  background: #181D2E;
  border-radius: 12px;
  padding: 16px;

  min-width: 300px;
}

@media(max-width:850px) {
  .store__hours-wrapper {
    height: auto;

  }

  .store__hours {
    height: auto;
    position: relative;

  }
}

.store__hours-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}

.store__hours-dot {
  width: 20px;
  height: 20px;
  color: #49DE63;
}

.store__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  background: transparent;
  cursor: pointer;
}

.store__more:hover {
  color: rgba(255, 255, 255, 1);
}

.store__more-icon {
  width: 24px;
  height: 24px;
}



.store__hours .worktime__list {
  gap: 8px;
}

.store__hours .worktime__day {
  font-size: 16px;
  font-weight: 500;
}

.store__hours .worktime__box {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18PX;
  font-weight: 400;
}

.store__hours .worktime__time {
  font-size: 18px;
  line-height: 1.25
}

.store__hours .worktime__item--active:after {
  content: url('/assets/img/main/worktime-arrow.svg');
  display: block;
  position: absolute;
  color: #fff;
  width: 20px;
  height: 21.28px;
  bottom: 0;
}

.store__hours .worktime__item--active .worktime__day {
  color: rgba(255, 255, 255, 0.8);
}

.store__hours .worktime__item--active .worktime__box {
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}

.store__hours .worktime__item--active {
  background: #252B3D;
  outline: 2px solid #252B3D;

}

.store__details {
  display: flex;
  flex-direction: column;
  gap: 16px;

  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 2s ease,
    opacity 200ms ease;
  pointer-events: none;
}

.store__details.is-open {
  max-height: 100%;
  opacity: 1;
  pointer-events: auto;
  height: auto;
  margin-top: 16px;
  margin-bottom: 4px;
  flex-direction: column;
  display: flex;
  gap: 16px;

  transform: translateY(0);
  pointer-events: auto;
}

.store__details-item {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.store__details-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.4)
}

.store__details-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 1)
}

/* Кнопка: переворот стрелок и цвет при открытии */
.store__more {
  transition: color 160ms ease;
}

.store__more-icon {
  transition: transform 160ms ease;
}

.store__more.is-open .store__more-icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .mall-catalog-store .mall-sidebar {
    display: none;
  }

  .store__header {
    gap: 4px;
    margin-bottom: 12px;
  }

  .store__title {
    font-size: 28px;
  }

  .store__meta {
    gap: 16px;
  }

  .store__floor {
    gap: 6px;
    font-size: 14px;
  }

  .store__floor-icon {
    width: 16px;
    height: 16px;
  }

  .store__actions {
    gap: 10px;
  }

  .store__btn {
    height: 36px;
    width: 36px;
  }

  .store__btn svg {
    width: 16px;
  }

  .store__btn--primary {
    gap: 8px;
    margin-right: 2px;
    font-size: 14px;
    padding: 10px 16px 12px 12px;
  }

  .store__btn--primary svg {
    width: 16px;
    height: 16px;
  }

  .store__chips {
    margin: 32px 0 12px;
  }

  .store__desc {
    line-height: 1.8;
    font-size: 14px;
  }

  .store__hours {
    flex: 0 1 400px;
    min-width: 0px;
  }

  .store__hours-head {
    font-size: 16px;
  }

  .store__hours-dot {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
  }

  .store__more {
    margin-top: 12px;
    font-size: 14px;
  }

  .store__hours .worktime__list {
    flex-wrap: wrap;
    gap: 4px;
  }

  .store__hours .worktime__item {
    padding: 6px 5px 20px;
  }


  .store__hours .worktime__day {

    font-size: 14px;
  }

  .store__hours .worktime__box {
    font-size: 16PX;
    font-weight: 400;
  }

  .store__hours .worktime__time {
    font-size: 16px;
    line-height: 1.25
  }

  .store__hours .worktime__item--active:after {
    content: url('/assets/img/main/worktime-arrow.svg');
    display: block;
    position: absolute;
    color: #fff;
    width: 20px;
    height: 21.28px;
    bottom: 0;
  }

  .store__hours .worktime__item--active .worktime__day {
    color: rgba(255, 255, 255, 0.8);
  }

  .store__hours .worktime__item--active .worktime__box {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
  }

  .store__hours .worktime__item--active {
    background: #252B3D;
    outline: 2px solid #252B3D;

  }

  .store__top {
    gap: 12px;
    align-items: flex-start;
  }

  .store__media {
    background: #FFFFFF;
    border-radius: 8px;

    padding: 13px;
    flex: 0 1 535px;
    min-width: 280px;
    height: 120px;
  }

  .store__img {
    max-width: 241px;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }


  .store__hours-head {
    font-size: 16px;
  }

  .store__hours-dot {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, .6);
  }

  .store__more {
    gap: 6px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;

  }

  .store__details.is-open {
    margin-top: 12px;
    margin-bottom: 2px;
    gap: 12px;
  }

  .store__details-item {
    gap: 6px;
  }

  .store__details-title {
    font-size: 14px;
  }

  .store__details-text {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .store__details,
  .store__more-icon {
    transition: none;
  }
}

.store .events {
  margin-bottom: 0;
}

.events__head-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}

.events__head-wrapper .events__head {
  margin-bottom: 0px;
}

.photos {
  color: #fff;
  margin: 60px auto 48px;
}

.photos .seсtion__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.photos__slider {
  position: relative;
  overflow: hidden;
}

.photos__slide {
  width: auto !important;
}

.photos__img {
  display: block;
  height: 469px;
  width: auto;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .photos {
    margin: 56px auto 56px;
  }

  .photos__img {
    height: 280px;
  }

  .photos__nav {
    display: none;
  }

  .photos__slider {
    overflow: hidden;
  }

  .photos .seсtion__title-wrapper {
    margin-bottom: 16px;
  }

  .events__head-wrapper {
    margin-bottom: 16px;
  }

  .events__head-wrapper .events__head {
    margin-bottom: 0px;
  }
}

.single-event {
  margin: 64px 0 60px;
}

.single-event__card {
  max-width: 995px;
}

.single-event__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.single-event__tag svg {
  width: 18px;
  height: 18px;
  color: #E01A5F;
  display: inline-block;
}

.single-event__title {
  margin: 0 0 8px 0;
  font-size: 42px;
  font-weight: 600;
  color: #FFFFFF;
}

.single-event__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.4;

}

.single-event__meta-icon {
  width: 18px;
  height: 18px;
}

.single-event__media {
  position: relative;
  margin: 26px 0 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #101522;
}

.single-event__img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.single-event__brand {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(228, 228, 228, 0.4);
  border-radius: 8px;
  padding: 14.62px 14.22px;
}

.single-event__brand img {
  display: block;
  width: 191px;
  height: auto;
}

.single-event__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 32px;
}

.single-event__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px 23px;
  border-radius: 8px;
  text-decoration: none;
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -1px;
  background: #ED1C57;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.2s;
}

.single-event__btn:hover {
  background: #FF2D6B;
}

.events-single-event {
  margin-bottom: 99px;
}


@media (max-width: 768px) {
  .events-single-event {
    margin-bottom: 56px;
  }

  .single-event {
    margin: 24px 0 28px;
  }


  .single-event__tag {
    gap: 6px;
    font-size: 15px;
    margin-bottom: 8px;
  }

  .single-event__tag svg {
    width: 14px;
    height: 14px;
  }

  .single-event__title {
    font-size: 28px;
  }

  .single-event__meta {
    gap: 8px;
    font-size: 14px;
  }

  .single-event__meta-icon {
    width: 16px;
    height: 16px;
  }

  .single-event__media {
    margin: 16px 0 16px;
    border-radius: 12px;
  }

  .single-event__img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
  }

  .single-event__brand {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background: rgba(228, 228, 228, 0.4);
    border-radius: 8px;
    padding: 7.87px 7.76px;
  }

  .single-event__brand img {
    display: block;
    width: 104px;
    height: auto;
  }

  .single-event__body {
    gap: 8px;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .single-event__btn {
    padding: 15px 32px 16px;

    font-size: 15px;

  }


}
.static-page, .map-page{
  margin: 64px 0 60px;
}
.site-search{
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;               
  pointer-events: none;
  font-family: inherit;
}
.site-search.is-open{ display:block; pointer-events:auto; }

.site-search__backdrop{
  position:absolute; inset:0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(40px);
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.site-search__bar{
  box-sizing: border-box;
  position: absolute; left: 50%;
  transform: translateX(-50%);
  top: 130px;                    
  width: min(820px, 90vw);
  height: 85px;
  display:flex; align-items:center;
  gap: 10px;
  padding: 0px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 16px rgba(0,0,0,.25);
}
.site-search__icon,.site-search__icon svg{
  width: 32px; height: 32px;
  display:inline-flex; align-items:center; justify-content:center;
  background: transparent;
}
.site-search__clear,.site-search__clear svg{
  cursor:pointer;
  width: 28px; height: 28px;
  display:inline-flex; align-items:center; justify-content:center;
  background: transparent;
}
.site-search__icon{ pointer-events:none; }


.site-search__input{
  flex: 1 1 auto;
  border:0; outline:0; background:transparent;
  color:rgba(37, 37, 37, 1);
  font-size: 24px;
  font-weight: 400;
  text-align:center ; 
}
.site-search__input::placeholder{ color:rgba(37, 37, 37, 0.6);
font-size: 24px;
font-weight: 500;
text-align:center ; }

.site-search__results{
  box-sizing: border-box;
  position:absolute; left:50%; transform:translateX(-50%);
  top: calc(130px + 85px + 24px);              
  width: min(820px, 90vw);
  background: rgba(40, 42, 49, 0.6);
  color: #fff;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 20px 24px 0;
  max-height: min(60vh, 580px);
  overflow: auto;
  display:none;
}
.site-search__results.is-visible{ display:block; }

.site-search__status{
  text-align: center;
  padding: 0px 0px 12px;
  color: rgba(255,255,255,1);
  font-size: 16px;
  font-weight: 400;
}

/* карточки найденного */
.site-search__item{
  display: flex;
  padding: 0px 12px;
  height: 55px;
  align-items: center;
  cursor: pointer;
  border-radius: 12px;
  margin-bottom: 6px;
  transition: all 0.2s;

}
.site-search__item:hover{ background:rgba(255, 255, 255, 0.06); }
.site-search__snippet{
  font-size: 18px; font-weight: 500; line-height: 1; color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.site-search mark{
  background: none; color:#fff;
  position: relative;
  
}


/* "ничего не найдено" */
.site-search__empty{
  padding: 4px 0px 48px; text-align:center; color:#FFFFFF;
  font-size: 24px;font-weight: 400;
}
.site-search__empty .empty__icon{
  width:54px; height:54px; border-radius:50%;
  margin:0 auto 12px; border:1px solid rgba(255, 255, 255, 0.2);
  display:flex; align-items:center; justify-content:center; 
}
.empty__icon svg{
  width: 24px;
  height: 24px;
}
/* скролл «тонкий» */
.site-search__results{ scrollbar-width:6px; scrollbar-color: rgba(103, 107, 120, 0.4) transparent; }
.site-search__results::-webkit-scrollbar{ width:6px;  }
.site-search__results::-webkit-scrollbar-thumb{ background: rgba(103, 107, 120, 0.4); border-radius:8px; }

/* Подсветка на месте назначения */
.page-hit-pulse{ animation: hit 1.6s ease-out 1; }
@keyframes hit{
  0%{ box-shadow: 0 0 0 0 rgba(237,28,87,.5); outline: 0 solid rgba(237,28,87,.0);}
  30%{ box-shadow: 0 0 0 8px rgba(237,28,87,.35); outline: 2px solid rgba(237,28,87,.7);}
  100%{ box-shadow: 0 0 0 0 rgba(237,28,87,0); outline: 0 solid rgba(237,28,87,0);}
}

/* ===== mobile (<=768) ===== */
@media (max-width: 768px){
  .site-search__bar{
    top: 84px;
    width: calc(100vw - 16px);
    padding: 0px 16px;
    height: 55px;
    border-radius: 10px;
  }
  .site-search__input{ font-size: 15px; }
  .site-search__input::placeholder{ color:rgba(37, 37, 37, 0.6);
    font-size: 15px;
}
  .site-search__icon,.site-search__icon svg{
    width: 24px; height: 24px;
  }
  .site-search__clear,.site-search__clear svg{
    width: 16px; height: 16px;
  }
  .site-search__results{
    top: calc(84px + 55px + 24px);
    padding: 18px 16px 0;
    width: calc(100vw - 16px);
    border-radius: 10px;
    max-height: 65vh;
  }
  
.site-search__status{
  padding: 0px 0px 20px;
  font-size: 14px;
  font-weight: 400;
}

.site-search__item{
  display: flex;
  padding: 0px 12px;
  height: 50px;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 0px;
  transition: all 0.2s;
  

}
.site-search__item:hover{ background:rgba(255, 255, 255, 0.06); }
.site-search__snippet{
  font-size: 16px; font-weight: 500; line-height: 1; 
}

.site-search__empty{
  padding: 2px 0px 36px;
  font-size: 16px;
}
.site-search__empty .empty__icon{
  width:42px; height:42px;
}
.empty__icon svg{
  width: 18.67px;
  height: 18.67px;
}
}

.swiper-pagination{
  height: 8px;
}

.instagram-section{
  padding: 40px 0 57px;

}
@media(max-width:768px){
  
.instagram-section{
  padding: 18px 0 33px;
  background-color: rgba(255, 255, 255, 0.04);
  filter: blur(10%);
}
}

/* ====== HERO SEARCH ====== */
.hero-search {
  cursor:pointer;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 820px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  height: 85px;
  border-radius: 16px;
  transition: background 0.3s ease;
  z-index: 10;
  font-size: 24px;
  font-weight: 500;
  color: #252525;
  display: none; /* по умолчанию скрыт */
  box-shadow: 0 20px 16px 0 rgba(0, 0, 0, 0.25); 
}
.hero-search svg{
  width: 32px;
  height: 32px;
}


@media (min-width: 768px) {
  .hero-search {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
}

/* ====== HOURS (подшапка) ====== */
.hours.is-open { position: absolute;
left: 0; }

.hours__btn {
  position: relative;
  transition: width .22s ease, background .2s ease, padding .2s ease;
  overflow: hidden;
  padding-right: 16px;  /* место под стрелочку */
}
.hours__chev{
  width: 18px; height: 18px; margin-left: 8px; display: inline-block;
  vertical-align: middle; transform: rotate(0deg);
  transition: transform .18s ease; color:#fff;
  -webkit-mask: url("/assets/img/main/catalog-open.svg") no-repeat center/contain;
          mask: url("/assets/img/main/catalog-open.svg") no-repeat center/contain;
  background: currentColor;
}
.hours.is-open .hours__chev{ transform: rotate(180deg); }

/* при открытии расширяем кнопку до ширины карточки */
@media (min-width: 769px){
  .hours { --hours-card-w: 505px; }           /* ширина как на макете */
  .hours.is-open .hours__btn{
    width: var(--hours-card-w);
    justify-content: flex-start;
  }
}

/* выпадашка */
.hours__dropdown{
  position: absolute;
  left: 0; top: 100%;
  width: var(--hours-card-w, 505px);

  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}
.hours.is-open .hours__dropdown{
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.hours__card{
  background: #fff;
  color: #2B2F3C;
  border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  box-shadow: 0 20px 16px 0 rgba(0, 0, 0, 0.25); 
  overflow: hidden;
}

/* верхняя часть — ТРК + дни недели */
.hours__mall{ padding: 16px 24px 21px; }
.hours__mall .hours__mall-line{
  margin-top: 15px;
  height: 1px;
  width: 100%;
  background-color: rgba(43, 47, 60, 0.1);
}
.hours__mall-head{
  display:flex; align-items:center; gap:12px; margin-bottom: 16px;
  font-size:18px; font-weight:500; color:#2B2F3C;
}
.hours__mall-icon{
  width: 24px;
  height: 24px;
}

/* делаем worktime белым (как на карточке) */
.hours .worktime__item{ background: transparent; }
.hours .worktime__item--active{ background:rgba(49, 55, 73, 1); outline: 2px solid rgba(49, 55, 73, 1); }
.hours .worktime__list{ gap:4px; }
.hours .worktime__day{
  font-size: 16px;
  font-weight: 500;
  color: rgba(43, 47, 60, .6);
}
.hours .worktime__time{
  font-size: 18px;
  font-weight: 400;
  color: rgba(43, 47, 60, 1);
}
.hours .worktime__item--active .worktime__day{
  color: rgba(255, 255, 255, 0.8)
}
.hours .worktime__item--active .worktime__time{
    font-weight: 500;
    color: #fff;
}
/* список подразделов */
.hours__groups{ list-style:none; margin:0; padding: 0px 24px; display:flex; flex-direction:column; gap:12px; }
.hours__row{ display:flex;  align-items:flex-start; 
  flex-direction: column;  padding-bottom: 16px;
border-bottom: 1px solid  rgba(43, 47, 60, 0.1); }
.hours__row:last-of-type{
  border-bottom:0px solid transparent;
  padding-bottom: 0px;
}
.hours__row-header{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.hours__ico{ width:24px; height:24px; flex:0 0 24px; color:#2B2F3C; background: currentColor;   }
.hours__ico--market{ -webkit-mask:url("/assets/img/main/worktime/market.svg") no-repeat center/contain; mask:url("/assets/img/main/worktime/market.svg") no-repeat center/contain; }
.hours__ico--food{ -webkit-mask:url("/assets/img/main/worktime/food.svg") no-repeat center/contain; mask:url("/assets/img/main/worktime/food.svg") no-repeat center/contain; }
.hours__ico--cinema{ -webkit-mask:url("/assets/img/main/worktime/moon.svg") no-repeat center/contain; mask:url("/assets/img/main/worktime/moon.svg") no-repeat center/contain; }
.hours__ico--parking{ -webkit-mask:url("/assets/img/main/worktime/parking.svg") no-repeat center/contain; mask:url("/assets/img/main/worktime/parking.svg") no-repeat center/contain; }

.hours__row-body{ display:flex; flex-direction:column; gap:6px;  width: 100%;}
.hours__row-title{ font-size:18px; font-weight:500; color:#2B2F3C;  }
.hours__row-times{ display:flex; justify-content:space-between; gap:12px;}
.hours__row-times span{
  font-size:18px;  font-weight: 300;
    color: rgba(43, 47, 60, .6);
}
.hours__row-times span:last-of-type{
    color: rgba(43, 47, 60, 1);
  font-weight: 400;
}

/* нижняя ссылка */
.hours__more{
  height: 65px;
  display:flex; margin: 24px 24px 30px; align-items: center;
  justify-content: center;
  color:#2B2F3C; font-size:16px; font-weight: 500;
  border-radius:6px; border:1px solid rgba(43, 47, 60, 0.2); text-decoration:none;
}
.hours__more:hover{ background:#ED1C57; color: #fff; border: 1px solid transparent; }

/* мобильный — без «расширения»; ширина = контейнеру */
@media (max-width: 768px){
  .hours__dropdown{ width: min(100vw - 16px, 505px); }
  .hours__btn{ width: 100%;
        justify-content: flex-start; }
  .hours.is-open{
    width: 100%;
  }
  .hours__mall{
    padding: 16px 10px 12px;
  }
  .hours__mall .hours__mall-line{
    margin-top: 11px;
  }
  .hours__more{
  height: 55px;
  display:flex; margin: 16px 10px 13px; align-items: center;
  justify-content: center;
  color:#2B2F3C; font-size:14px; font-weight: 500;
  border-radius:6px; border:1px solid rgba(43, 47, 60, 0.2); text-decoration:none;
}
.hours__groups{
  padding:0 10px;

}
.hours__row-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}
.hours__row-title {
    font-size: 14px;
}
.hours__ico {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #2B2F3C;
    background: currentColor;
}
.hours__row-times span{
  font-size:14px;}
  .hours__row{
    padding-bottom: 12px;
  }
  .hours__mall-head{
  gap:8px; margin-bottom: 12px;
  font-size:14px; 
}
.hours__mall-icon{
  width: 18px;
  height: 18px;
}
.hours .worktime__day{
  font-size: 13px;
  font-weight: 500;

}
.hours .worktime__time{
  font-size: 13px;
  font-weight: 500;

}

}

.main-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  height: 44px;
  padding: 0 20px 0 12px;

  border: 1px solid rgba(43, 47, 60, 0.2);
  border-radius: 8px;

  background:transparent;
  color: #2B2F3C;

  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  line-height: 1.285;
  margin-left: 24px; 
}

.main-header__back-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: rgba(43, 47, 60, 0.6);
  transition: color .2s;
}

/* hover как на макетах: розовая плашка и белый контент */
.main-header__back:hover {
  background: #ED1C57;
  border-color: #ED1C57;
  color: #fff;
}

.main-header__back:hover .main-header__back-icon {
  color: #fff;
}

/* адаптив — компактнее на мобиле, чтобы совпадать с высотой контролов */
@media (max-width: 768px) {
  .main-header__back {
   display: none;
  }
}

.main-header__burger-text{
  display: none;
}
.header-tiny .main-header__burger-text{
  display: block;
}

/* --- store description --- */
.store__desc {
  position: relative;
  overflow: hidden;
}

/* состояние "свернуто" */
.store__desc.is-collapsed {
  max-height: 340px;        
}

/* затемнение низа при свернутом состоянии */
.store__desc.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;               /* высота градиента */
  pointer-events: none;
  /* как на скрине: прозрачность -> #0E1324 примерно с 65% */
  background: linear-gradient(180deg, rgba(14,19,36,0) 0%, #0E1324 65%, #0E1324 100%);
}

.store__desc-more {
  display: inline-flex;
  align-items: center;
  background: transparent;
  gap: 8px;
  color: rgba(40, 121, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.store__desc-more:hover {
  color: rgba(40, 121, 255, 1);
}

@media (max-width:768px){
  .header-tiny .main-header__burger-text{
    display: none;
  }
  .main-header__burger-text{
    display: none;
  }
  .store__desc.is-collapsed {
  max-height: 360px;           /* твой порог */
}
.store__desc.is-collapsed::after {

    height: 60px;
  
}

  .store__desc-more{
    font-size: 14px;
  }
  
}
* {
  box-sizing: border-box;
}

.body-bg-image {
  background-image: url('/assets/img/404/bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-404 {
  max-width: 670px;
  margin: 80px auto 99px;
}

.svg-404 {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.title-404 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 40px;
}

.link-404 {
  background: rgba(237, 28, 87, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  border-radius: 12px;
  height: 60px;
  padding: 0px 64px;
}

.link-404:hover {
  background: #FF2D6B;
}

@media (max-width:768px) {
  .section-404 {
    margin: 80px auto 94px;
    padding: 0 16px;
  }

  .svg-404 {
    margin-bottom: 28px;
  }

  .title-404 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .link-404 {
    font-size: 14px;
    border-radius: 10px;
    height: 55px;
    padding: 0px 44px;
  }
}

.steps {
  padding: 40px 0 56px;
  text-align: center;
  background-color: #131829;
}

.steps_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  text-align: center;
}

.steps_header h3 {
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
}

.steps_header p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(255, 255, 255, .4);
}

.steps_row {
  display: flex;
  gap: 20px;
}

.steps_card {
  width: calc((100% - 60px) / 4);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 20px 24px 31px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.step_card-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.step_card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.step_card-step {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #ED1C57;
}

.step_card-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.step_card-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: rgba(255, 255, 255, 1);
}

.step_card-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, .6);
  min-height: 78px;
}

.arenda-button {
  background: #ED1C57;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 127%;
  color: #fff;
  border-radius: 12px;
  height: 65px;
  padding: 0px 64px;
  margin: 32px auto 0;
}

.arenda-button:hover {
  background: #FF2D6B;
}

@media (max-width:1024px) {
  .steps_row {
    flex-wrap: wrap;
  }

  .steps_card {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width:768px) {
  .arenda-button {
    font-size: 14px;
    border-radius: 10px;
    height: 55px;
    padding: 0px 32px;
    margin: 12px auto 0;
  }

  .steps_row {
    gap: 8px;
  }

  .steps_card {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 22px 16px 12px;
    flex-direction: row;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .step_card-bottom {
    gap: 4px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .step_card-icon {
    width: 40px;
    height: 40px;
  }

  .step_card-top {
    gap: 4px;
    min-width: 62px;
  }

  .step_card-step {
    font-weight: 600;
    font-size: 12px;
  }

  .step_card-title {
    font-size: 18px;
    line-height: 130%;
  }

  .step_card-subtitle {
    font-size: 12px;
    min-height: 0px;
  }

  .steps {
    padding: 20px 0 40px;
  }

  .steps_header {
    gap: 4px;
    margin-bottom: 12px;
  }

  .steps_header h3 {
    font-size: 24px;
  }

  .steps_header p {
    font-size: 14px;
  }
}





/* ===== DESKTOP (база) ===== */

.advertisers {
  padding: 0;
  background: #181D2E;
  overflow: hidden;
}

.advertisers__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

/* левая колонка */

.advertisers__content {
  flex: 0 0 50%;
  max-width: 535px;
}

.advertisers__title {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #fff;
}

.advertisers__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.advertisers__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.advertisers__stat-card {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 20px 19px;
  min-height: 100px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.advertisers__stat-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.26;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.advertisers__stat-value {
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #fff;
}

.advertisers__stat-card-small:last-of-type .advertisers__stat-value {
  font-weight: 600;
  font-size: 24px;
  margin-top: 8px;
}

.advertisers__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  margin: 40px 0 0;
  padding: 0 69px;
  border: none;
  border-radius: 12px;
  background-color: #ed1c57;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.27;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
}

.advertisers__button:hover {
  background-color: #ff2d6b;
}

.advertisers__media {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  margin-right: calc((100vw - 100%) / -2);
}

.advertisers__slider {
  position: relative;
  width: 100%;
  max-width: 1065px;
  /* ширина слайда на десктопе */
  height: 700px;
  overflow: hidden;
  margin: 0 auto 0 0;
}

.advertisers__slide {
  position: relative;
  height: 100%;
}

.advertisers__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg,

      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, 0.5) 90%);
}


.advertisers__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.advertisers__pagination {
  position: absolute;
  right: auto;
  left: auto;
  bottom: 16px !important;
  display: flex !important;
  gap: 14px;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.advertisers__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0px !important;
  background: rgba(191, 200, 218, 0.6);
}

.advertisers__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ED1C57;
  width: 8px;
  height: 8px;
}


@media (max-width: 1024px) {
  .advertisers__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .advertisers__content {
    max-width: 100%;
    flex: 0 0 auto;
    width: 100%;
  }

  .advertisers__media {
    margin-right: 0;
    /* возвращаем в контейнер */
    width: 100%;
    justify-content: center;
  }

  .advertisers__slider {
    max-width: 100%;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .advertisers__pagination {
    bottom: 12px !important;
  }

  .advertisers {
    padding: 20px 0 0;
  }

  .advertisers__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .advertisers__subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .advertisers__stats {
    display: flex;
    flex-direction: column;
    gap: 8px;

  }

  .advertisers__stat-card {
    min-height: 70px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 8px 12px;
  }

  .advertisers__stat-label {
    font-size: 10px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.6);
  }

  .advertisers__stat-value {
    font-size: 28px;
  }

  .advertisers__stat-card-small .advertisers__stat-value {
    font-weight: 700;
    font-size: 16px;
    margin-top: 6px;
    line-height: 1;
  }

  .advertisers__title {
    font-size: 32px;
  }

  .advertisers__subtitle {
    font-size: 16px;
  }

  .advertisers__media {
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px);
  }

  .advertisers__slide {
    aspect-ratio: 9 / 16;
    height: auto;
  }

  .advertisers__slider {
    height: 280px;
  }

  .advertisers__button {
    height: 55px;
    margin: 12px 0 0;
    padding: 0 41px;

    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
  }
}

.advertisers-contacts {
  padding: 20px 0 40px;
}

/* контейнер */
.advertisers-contacts__container {}

/* GRID */
.advertisers-contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* --- Карточки отделов --- */

.advertisers-contacts__card {
  background-color: #181D2E;
  border-radius: 16px;
  padding: 26px 20px;
  min-height: 200px;
}

.advertisers-contacts__card-title {
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.advertisers-contacts__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.advertisers-contacts__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.advertisers-contacts__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.advertisers-contacts__link:hover {
  color: #ED1C57;
}

/* --- Иконки --- */

.advertisers-contacts__icon,
.advertisers-contacts__promo-button-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  position: relative;
}

.advertisers-contacts__icon::before,
.advertisers-contacts__promo-button-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.advertisers-contacts__icon_phone::before {
  background-image: url("/assets/img/icons/phone.svg");
}

.advertisers-contacts__icon_mail::before {
  background-image: url("/assets/img/icons/mail.svg");
}

.advertisers-contacts__promo-button-icon::before {
  background-image: url("/assets/img/icons/download.svg");
}

/* --- Промо-блок --- */

.advertisers-contacts__promo {
  grid-column: 1 / -1;
  background-color: #181D2E;
  border-radius: 24px;
  padding: 40px 16px 48px;
  text-align: center;
}

.advertisers-contacts__promo-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
}

.advertisers-contacts__promo-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.advertisers-contacts__promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  height: 65px;
  padding: 0 16px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

.advertisers-contacts__promo-buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.advertisers-contacts__promo-buttons .advertisers-contacts__promo-button {
  width: calc((100% - 48px) / 4);
}

@media(max-width:1320px) {
  .advertisers-contacts__promo-buttons .advertisers-contacts__promo-button {
    width: calc((100% - 16px) / 2);
  }
}

@media(max-width:620px) {
  .advertisers-contacts__promo-buttons {
    gap: 8px;
  }

  .advertisers-contacts__promo-buttons .advertisers-contacts__promo-button {
    width: 100%;
  }
}

.advertisers-contacts__promo-button:hover {
  background-color: rgba(255, 255, 255, 0.05)
}


/* --- TABLET --- */

@media (max-width: 1024px) {
  .advertisers-contacts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- MOBILE --- */

@media (max-width: 768px) {

  .advertisers-contacts__icon,
  .advertisers-contacts__promo-button-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }

  .advertisers-contacts__icon::before,
  .advertisers-contacts__promo-button-icon::before {
    width: 16px;
    height: 16px;
  }

  .advertisers-contacts {
    padding: 12px 0 20px;
  }

  .advertisers-contacts__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .advertisers-contacts__card {
    display: flex;
    gap: 8px;
    flex-direction: row;
    padding: 10px 16px 16px;
    min-height: auto;
  }

  .advertisers-contacts__card-title {
    flex: 0 0 100px;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 0px;
  }

  .advertisers-contacts__item {
    font-size: 16px;
  }

  .advertisers-contacts__list {
    gap: 12px;
    font-size: 16px;
  }

  .advertisers-contacts__promo {
    border-radius: 16px;
    padding: 16px 12px 24px;
    margin-top: 4px;
  }

  .advertisers-contacts__promo-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .advertisers-contacts__promo-text {
    font-size: 12px;
    margin-bottom: 12px;

  }

  .advertisers-contacts__promo-button {
    height: 55px;
    padding: 0 12px;
    font-size: 14px;
  }

}

.advertisers-formats {
  padding: 40px 0;
  color: #ffffff;
}

.advertisers-formats__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* GRID desktop */

.advertisers-formats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 20px;
}

/* карточка */

.advertisers-formats__card {
  background-color: rgba(37, 43, 61, 1);
  border-radius: 16px;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 240px;
}

.advertisers-formats__card:hover {
  background-color: rgba(49, 55, 73, 1)
}

.advertisers-formats__icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.advertisers-formats__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advertisers-formats__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advertisers-formats__card-title {
  font-weight: 600;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.advertisers-formats__card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

/* карточка "Подробнее" */

.advertisers-formats__card--more {
  display: block;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.advertisers-formats__card--more:hover {
  background: rgba(255, 255, 255, 0.05);
}

.advertisers-formats__more-inner {
  height: 100%;
  border-radius: 16px;


  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.advertisers-formats__more-text {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
}

/* ====== Адаптив ====== */

/* планшет: 2 колонки */

@media (max-width: 1024px) {
  .advertisers-formats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advertisers-formats__card {
    min-height: 0px;
  }
}

/* мобилка: 1 колонка */

@media (max-width: 768px) {
  .advertisers-formats__card {
    display: none;
  }

  .advertisers-formats__card:nth-child(-n + 5) {
    display: flex;
  }


  .advertisers-formats__card:last-child {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .advertisers-formats__more-text {
    font-size: 14px;
  }

  .advertisers-formats {
    padding: 20px 0;
  }

  .advertisers-formats__title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .advertisers-formats__content {
    gap: 4px;
  }

  .advertisers-formats__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .advertisers-formats__card {
    flex-direction: row;
    gap: 12px;
    padding: 12px;
  }



  .advertisers-formats__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .advertisers-formats__card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
  }

  .advertisers-formats__card-text {
    font-size: 12px;
  }

  .advertisers-formats__card--more {
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 0;
  }

  .advertisers-formats__more-inner {
    padding: 24px 16px 26px;
  }
}

.advertisers-promo {
  padding: 40px 0 80px;
  color: #ffffff;
}

/* Карточка */

.advertisers-promo__card {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(600px, 1fr);
  background-color: #181D2E;
  border-radius: 24px;
  overflow: hidden;
}

.advertisers-contacts__grid .advertisers-promo__card {
  grid-column: 1 / -1;
}

/* Левая часть (картинка) */

.advertisers-promo__media {
  position: relative;
  overflow: hidden;
}

.advertisers-promo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Правая часть (контент) */

.advertisers-promo__content {
  padding: 48px 48px 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.advertisers-promo__title {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
}

.advertisers-promo__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Кнопки */

.advertisers-promo__buttons {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.advertisers-promo__button {
  width: calc((100% - 16px) / 2);
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 65px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.advertisers-promo__button--primary {
  background-color: #ED1C57;
  color: #ffffff;
  border-color: #ED1C57;
}

.advertisers-promo__button--primary:hover {
  background-color: #ff2d6b;
  border-color: #ff2d6b;
}

.advertisers-promo__button--secondary {
  background-color: #ffffff;
  color: #181D2E;
  border-color: #ffffff;
}

.advertisers-promo__button--secondary:hover {
  background-color: #f3f3f3;
}

/* ====== Адаптив ====== */

/* планшет: чуть ужимаем отступы */

@media (max-width: 1024px) {
  .advertisers-promo__card {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  }

  .advertisers-promo__content {
    padding: 24px 24px 24px 24px;
  }
}

/* мобилка: картинка сверху, кнопки во всю ширину */

@media (max-width: 768px) {
  .advertisers-promo__media {
    max-height: 220px;
  }

  .advertisers-promo {
    padding: 20px 0 40px;
  }

  .advertisers-promo__card {
    grid-template-columns: 1fr;
  }

  .advertisers-promo__content {
    gap: 8px;
    padding: 12px 16px 24px;
  }

  .advertisers-promo__title {
    font-size: 24px;
  }

  .advertisers-promo__text {

    gap: 10px;
    font-size: 14px;

  }

  .advertisers-promo__buttons {
    flex-direction: column;
    max-width: 240px;
    gap: 8px;
    margin-top: 8px;
  }

  .advertisers-promo__button {

    width: 100%;
    height: 55px;
    font-size: 14px;
  }
}

@media (max-width: 440px) {
  .advertisers-promo__media {
    max-height: 180px;
  }
}

.business-center {
  padding: 40px 0 48px;
  color: #ffffff;
}

.business-center__header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.business-center__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.business-center__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* === Слайдер === */

.business-center__slider-wrapper {
  position: relative;
}


.business-center__slider {
  position: relative;
  height: 469px;
  overflow: hidden;
}

.business-center__slide {
  height: 469px;
  border-radius: 12px;
  overflow: hidden;
  width: auto !important;
}

.business-center__image {
  display: block;
  height: 469px;
  width: auto;
  object-fit: cover;
}

/* пагинация-точки */
.business-center__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  inset: 0 !important;
  margin-top: 24px;
  gap: 14px;

}

.business-center__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0px !important;
  inset: 0px !important;
  background-color: rgba(255, 255, 255, 0.4);
}

.business-center__pagination .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background-color: #DD1B5F;
}

/* стрелки */

.business-center__nav {
  position: absolute;
  top: 50%;
  left: -58px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);

}

@media(max-width:1500px) {
  .business-center__nav {
    display: none;
  }
}

.business-center__nav--next {
  left: auto;
  right: -58px;
}

.business-center__nav--next svg {
  transform: rotate(180deg);

}

.business-center__nav:hover {
  color: #fff;
  background-color: #ED1C57;
}

/* ===== Адаптив ===== */



@media (max-width: 768px) {
  .business-center {
    padding: 20px 0 40px;
  }

  .business-center__slider {
    height: 280px;
    overflow: hidden;
  }

  .business-center__slide {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    width: 260px !important;
  }

  .business-center__image {
    display: block;
    height: 280px;
    width: 100%;
    object-fit: cover;
  }

  .business-center__title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .business-center__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }

  .business-center__header {
    margin-bottom: 20px;
  }

  .business-center__pagination {
    margin-top: 16px;
  }
}

.advertisers-video {
  padding: 0px 0 80px;

}



.advertisers-video__frame-wrapper {
  --advertisers-video-height: 600px;

  position: relative;
  width: 100%;
  max-width: 1360px;
  height: var(--advertisers-video-height);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;

}


.advertisers-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



@media (max-width: 768px) {
  .advertisers-video__container {
    padding-inline: 0px;

  }

  .advertisers-video {
    padding: 4px 0 40px;
  }

  .advertisers-video__frame-wrapper {
    --advertisers-video-height: 320px;
    border-radius: 0px;
  }
}

.tenants-banner {
  margin: 0 0 40px;
  background-color: #131829;
  overflow: hidden;
}

.tenants-banner__container {
  display: flex;
  align-items: stretch;
}


.tenants-banner__image-wrapper {
  position: relative;
  flex: 1 1 auto;
  margin-left: calc((min(100vw, 1920px) - 100%) / -2);
  overflow: hidden;
}

.tenants-banner__image {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
}

/* правая часть (контент остаётся в контейнере) */
.tenants-banner__content {
  flex: 1 0 640px;
  background-color: #141827;
  padding: 40px 0 70px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tenants-banner__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
}

.tenants-banner__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.tenants-banner__button {
  margin-top: 24px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 65px;
  border-radius: 12px;
  border: none;
  background-color: #ED1C57;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.tenants-banner__button:hover {
  background-color: #ff2d6b;
}



@media (max-width: 1024px) {
  .tenants-banner__container {
    flex-direction: column;
  }

  .tenants-banner__image-wrapper {
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px);
    height: 260px;
  }

  .tenants-banner__image {
    width: 100%;
  }

  .tenants-banner__content {
    flex: 1 1 auto;
    padding: 12px 0px 47px;
    gap: 8px;
  }
}

@media (max-width: 768px) {


  .tenants-banner__title {
    font-size: 24px;
  }

  .tenants-banner__text {
    font-size: 14px;

  }

  .tenants-banner__image-wrapper {
    height: 180px;
  }

  .tenants-banner__button {
    margin-top: 12px;
    height: 55px;
    padding: 0 32px;
    font-size: 14px;
  }

  .tenants-banner {
    margin: 0;
  }
}

/* ========== BASE MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1503;
  display: none;
  overflow-y: auto;
  padding: 80px 0px 120px;
  box-sizing: border-box;
}

.modal--active {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 47, 60, 0.7);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal__content {
  padding: 28px 40px 24px;
}

.modal__close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #9DA3AB;
}
.map-tippy .modal__close{
    top: 15px;
    right: 15px;
}

.modal__close svg {
  width: 24px;
  height: 24px;
}

.modal__close:hover {
  color: #ff2d6b;
}

.modal__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 48px 24px 0;
  color: #181D2E;
}

body.modal-opened {
  overflow: hidden;
}



@media (max-width: 768px) {
  .modal {
    padding: 80px 0px 80px;
  }

  .modal__dialog {
    border-radius: 12px;
    box-shadow: none;
  }

  .modal__content {
    padding: 16px 8px 24px;
  }

  .modal__close {
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
  }

  .modal__close svg {
    width: 20px;
    height: 20px;
  }

  .modal__title {
    font-size: 24px;
    margin: 0 34px 16px 4px;
  }

}

/* ========== BASE MODAL FORM ========== */

.modal-form {
  display: flex;
  flex-direction: column;
}

.modal-form__section-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #181D2E;
}

.modal-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.modal-form__field--full {
  grid-column: 1 / -1;

  max-height: 164px;
}


.modal-form__input,
.modal-form__textarea {
  width: 100%;
  border-radius: 12px;
  outline: 1px solid rgba(43, 47, 60, 0.1);
  outline-offset: -1px;
  background-color: rgba(43, 47, 60, 0.06);
  padding: 16px 20px 17px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(43, 47, 60);
  border: 0px;
}

.modal-form__input::placeholder,
.modal-form__textarea::placeholder {
  color: rgba(43, 47, 60, 0.4);
}

.modal-form__input:focus,
.modal-form__textarea:focus {
  background-color: rgba(40, 121, 255, 0.1);
  outline-color: rgba(40, 121, 255, 0.4);
}

.error_input .modal-form__input,
.error_input .modal-form__textarea {
  color: #ED1C24;
  outline-color: rgba(237, 28, 36, 0.4);
}

.error_input .error_input-message {
  color: #ED1C24;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 4px;
}

/* textarea повыше */

.modal-form__textarea {
  min-height: 164px;
  resize: none;
}

/* Загрузка файла */

.modal-form__upload {
  display: block;
  margin-top: 10px;
  border-radius: 12px;
  outline: 2px dashed rgba(43, 47, 60, 0.15);
  outline-offset: -2px;
  background-color: transparent;
  padding: 17px 12px 10px;
  text-align: center;
  cursor: pointer;
}

.modal-form__upload-input {
  display: none;
}

.modal-form__upload-text {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(43, 47, 60, 0.4);
}

.modal-form__upload-text span {
  color: #2879FF;
  text-decoration: underline;
}

.modal-form__upload-note {
  display: block;
  text-align: right;
  margin-top: 41px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(43, 47, 60, 0.4);
}

.modal-form__section--contacts {
  margin-top: 24px;
}

/* Низ формы */

.modal-form__section--footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form__policy {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(43, 47, 60, 0.6);
}

.modal-form__policy a {
  font-weight: 500;
  color: #2B2F3C;
  text-decoration: underline;
}

.modal-form__policy a:hover {
  color: #2879FF;
}

.modal-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  border-radius: 12px;
  border: none;
  background-color: #ED1C57;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.modal-form__submit:hover {
  background-color: #FF2D6B;
}

/* Мобилка для форм */

@media (max-width: 768px) {
  .modal-form__field--full {
    max-height: 110px;
  }

  .modal-form__grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .modal-form__section-title {
    font-size: 20px;
    margin-bottom: 11px;
    margin-left: 4px;
  }


  .modal-form__input,
  .modal-form__textarea {
    border-radius: 10px;
    padding: 17px 12px 17.5px;
    font-size: 13px;
    line-height: 1.2;
    height: 50px;
  }

  textarea.modal-form__input {
    padding: 6px 12px 6px;
  }

  .modal-form__upload {
    margin-top: 6px;
    padding: 12px 10px 10px;
  }

  .modal-form__upload-text {
    font-size: 13px;
  }

  .modal-form__upload-note {
    margin-top: 35px;
    font-size: 12px;
  }

  .modal-form__textarea {
    min-height: 110px;
  }

  .modal-form__section--contacts {
    margin-top: 16px;
  }

  .modal-form__section--footer {
    margin-top: 6px;
    gap: 12px;
  }

  .modal-form__policy {
    font-size: 12px;
  }

  .modal-form__submit {
    border-radius: 10px;
    height: 55px;
    font-size: 14px;
  }

  .error_input .error_input-message {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 3px;
  }
}

.modal-form__field--select {
  position: relative;

}

.modal-select {
  position: relative;
}

.modal-select__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  padding: 7.5px 11px 9.5px;
  height: 55px;
  outline: 0px;
  border: 1px solid rgba(43, 47, 60, 0.1);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  color: #2B2F3C;
}

.modal-select--open .modal-select__control {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px solid transparent;
}
.modal-select__control:focus{
 
  background-color: rgba(43, 47, 60, 0.06);
}

.modal-select__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-select__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-select__label {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;

}


.modal-select__arrow {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
}

.modal-select--open .modal-select__arrow {
  transform: rotate(180deg);
}

/* Выпадающий список */
.modal-select__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 10;
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2px);
  transition: all 0.2s;
  outline: 1px solid rgba(43, 47, 60, 0.1);
  outline-offset: -1px;
  background: #fff;
}

.modal-select--open .modal-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Пункты списка */
.modal-select__option {
  width: 100%;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8.5px 12px 10.5px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  color: #2B2F3C;
  text-align: left;
  cursor: pointer;
}

.modal-select__option+.modal-select__option {
  border-top: 1px solid rgba(43, 47, 60, 0.06);
}

/* Ховер */
.modal-select__option:hover {
  background-color: rgba(43, 47, 60, 0.06);
}

/* Активный пункт */
.modal-select__option.is-active {
  display: none;
}


/* Мобилка под твои размеры */
.modal-attention{
  padding: 12px 40px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  background-color: #FFDD5B;
  color: rgba(43, 47, 60, 0.8);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.modal-attention img{
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.modal-attention span{
 color: #ED1C57;
}
@media (max-width: 768px) {
  .modal-select__control{
    height: 50px;
    gap: 10px;
    font-size: 14px;
    line-height: 1.1;
  }
  .modal-select__icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .modal-select__option {
    padding: 10.5px 12px 12.5px;
    font-size: 14px;
    gap: 10px;
    line-height: 1.1;
  }
  .modal-attention{
    padding: 8px 8px 12px;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;

  }

}

/* ===== БЛОК РЕКЛАМНОГО МЕСТА В МОДАЛКЕ ===== */

.modal-ad {
  display: flex;
  gap: 20px;
}

/* левая картинка */
.modal-ad__image {
  flex: 0 0 49%;
  border-radius: 12px;
  overflow: hidden;
}

.modal-ad__image img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.modal-ad__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-ad__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #181D2E;
}


.modal-ad__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-ad__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.modal-ad__label {
  flex: 0 0 auto;
  min-width: 80px;
  font-size: 15px;

  color: rgba(43, 47, 60, 0.4)
}

.modal-ad__value {
  font-size: 16px;
  flex: 1 1 auto;
  text-align: right;
  color: #2B2F3C;
}


.modal-ad__row--sizes .modal-ad__value {
  white-space: normal;
}


.modal-ad__row--price {
  margin-top: auto;
  align-items: flex-end;
  justify-content: space-between;
}

.modal-ad__price {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #0060FF;
  white-space: nowrap;
}
.modal-success__icon{
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 40px;
}
.modal-success__icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal--success .modal__content{
  padding: 50px 40px 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.modal-success__title{
  margin: 0 0 12px;
}
.modal-success__text{
  font-size: 18px;
  font-weight:400;
  line-height: 1.6;
  color:rgba(43, 47, 60, 0.8);
  margin-bottom: 37px;
}
.modal-success__button{
  max-width: 400px;
}
@media (max-width: 768px) {
  .modal-ad {
    flex-direction: column;
    gap: 8px;
  }

  .modal-ad__image {
    flex: 0 0 auto;
    border-radius: 10px;
  }

  .modal-ad__image img {
    max-height: 200px;
  }

  .modal-ad__title {
    font-size: 18px;
  }

  .modal-ad__row {
    font-size: 13px;
  }

  .modal-ad__label {
    min-width: 70px;
  }

  .modal-ad__price {
    font-size: 28px;
  }
  .modal-ad__list{
    gap: 8px;
  }
  .modal-ad__info {
    gap: 12px;
  }
  .modal-ad__row--price{
    margin-top: 4px;
    margin-bottom: 4px;
  }

  
  .modal-ad__label {
    font-size: 12px;
  }
  
  .modal-ad__value {
    font-size: 12px;
  }
  .modal-success__icon{
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .modal--success .modal__content{
    padding: 40px 8px 43px;
  }
  .modal-success__title{
    margin: 0 0 8px;
  }
  .modal-success__text{
    font-size: 14px;
  
    margin-bottom: 24px;
  }
  .modal-success__button{
    max-width: 300px;
  }
}

.advertising-format-section{
  padding: 64px 0 128px;
}
.advertising-format-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 23px;
}
.advertising-format-header h1{
  font-size: 42px;
  color: #fff;
  font-weight: 600;
}
.advertising-format-header-bottom {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.advertising-format-header-attention {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  gap:10px;
}
.advertising-format-header-attention img{
  width: 18px;
  height: 18px;
}
.advertising-format-button {
  height: 60px;
  padding: 0 32px;
  margin-top: 0;  
  position: absolute;
  right: 0;
  bottom: 0;
}
@media(max-width:1024px){
  .advertising-format-header-bottom {
    align-items: center;
    gap: 15px;
  }
  .advertising-format-button {
    height: 50px;
    padding: 0 12px;
    position: relative;
    min-width:111px;
    font-size:14px
  }
}
@media(max-width:768px){
  .advertising-format-section{
    padding: 20px 0 80px;
  }
  .advertising-format-header{
    margin-bottom: 16px;
  }

  .advertising-format-header-attention{
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.4;
    gap: 8px;
  }
  .advertising-format-header-attention img{
    width: 14px;
    height: 14px;
    margin-top: 2px;
  }
  .advertising-format-header h1{
    font-size: 28px;
    line-height: 1.2;
  }
  .advertising-format-header-bottom {
    align-items: center;
    gap: 15px;
  }
  .advertising-format-button {
    height: 50px;
    padding: 0 12px;
    position: relative;
    min-width:111px;
    font-size:14px
  }
}

.advertising-layout {
  display: flex;
  gap: 20px;
}

.advertising-sidebar {
  flex: 0 0 325px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}

.advertising-sidebar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8.5px 16px 10.5px;
  background: #252B3D; 
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.advertising-sidebar__item:last-of-type{
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.advertising-sidebar__item:hover {
  background: #373D4F
}

.advertising-sidebar__item.is-active {
  background: #373D4F; 
}

.advertising-sidebar__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
}

.advertising-sidebar__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advertising-sidebar__label {
  flex: 1 1 auto;
}

.advertising-sidebar__mobile {
  display: none;
}

@media (max-width: 768px) {
  .advertising-layout {
    flex-direction: column;
    gap: 16px;
  }

  .advertising-sidebar {
    display: none;
  }

  .advertising-sidebar__mobile {
    display: block;
  }

  .advertising-sidebar__mobile .modal-select__control{
    width: 100%;
    height: 55px;
    border-radius: 10px;
    overflow: hidden;
    padding: 10.5px 12px 12.5px;
    background-color: #373D4F;
    color: #fff;
  }
  .advertising-sidebar__mobile .modal-select--open  .modal-select__control{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .advertising-sidebar__mobile .modal-select__option{
    background: #252B3D; 
    color: #fff;
  }
  .advertising-sidebar__mobile .modal-select__option+.modal-select__option{
    border-color:  rgba(255, 255, 255, 0.06)
  }

 
}


.advertising-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 15px;
}


.advertising-card {
  display: grid;
  grid-template-rows: minmax(260px, 420px) auto;
  background: #252B3D;
  border-radius: 12px;
  overflow: hidden;
  height: 480px; 
}

.advertising-card--full {
    grid-template-rows: minmax(260px, 260px) auto;
    cursor: pointer;
}
.advertising-card--no-floor      {
   grid-template-rows: minmax(320px, 320px) auto;
}
.advertising-card--price-only    {
  grid-template-rows: minmax(420px, 420px) auto;
}


.advertising-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}

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

.advertising-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0) 44.88%,
    rgba(0, 0, 0, 0.6) 79.24%);
  pointer-events: none;
  z-index: 1;
}

.advertising-card__title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
    z-index: 2; 
    text-transform: uppercase;
}

.advertising-card__info {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.advertising-card__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advertising-card__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.advertising-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 70px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.advertising-card__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-size: contain;
  background-position: center;
}

.advertising-card__icon--floor {
  background-image: url("/assets/img/catalog/floor-white.svg");
}
.advertising-card__icon--size {
  background-image: url("/assets/img/catalog/size-white.svg");
}
.advertising-card__icon--material {
  background-image: url("/assets/img/catalog/material-white.svg");
}

.advertising-card__value {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
}

.advertising-card__price-block {
  margin-top: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.advertising-card__price-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.advertising-card__price {
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
}


/* ===== АДАПТИВ ===== */
@media (max-width: 1100px) {
  .advertising-card__price-block {
  margin-top: 0px;
  gap: 8px;
}

.advertising-card__price-label {
  font-size: 12px;
}

.advertising-card__price {
  font-size: 28px;
}
}
@media (max-width: 1024px) {
  .advertising-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .advertising-card--full,.advertising-card--no-floor,.advertising-card--price-only  {
    grid-template-rows: minmax(220px, 220px) auto;
}
.advertising-card {
  height: auto;
}
.advertising-card__title {
  left: 12px;
  right: 12px;
  line-height: 1;
}

.advertising-card__info {
  padding: 8px 12px 16px;
  gap: 16px;
}
.advertising-card__meta {
  gap: 8px;
}

.advertising-card__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.advertising-card__label {
  font-size: 12px;
}

.advertising-card__icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.advertising-card__value {
  font-size: 12px;
}

}

.background_chunk {
  background-image: url('/assets/img/about/background_chunk.png');
}


.about-video {
  margin-top: 20px;
  margin-bottom: 40px;
}

.about-video__card {
  background-color: rgba(24, 29, 46, 1);
  border-radius: 24px;
  padding: 24px 20px 20px;
}

.about-video__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 40px 36px;
}

.about-video__logo img {
  display: block;
  max-width: 520px;
  height: auto;
}

.about-video__text {
  max-width: 622px;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);

}

.about-video__video {
  background-color: rgba(19, 24, 41, 1);
  border-radius: 16px;

}

.about-video__video-inner {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.about-video__video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



@media (max-width: 992px) {

  .about-video {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .about-video .container {
    padding: 0px;
  }

  .about-video__card {
    padding: 12px 12px 0px;
    border-radius: 16px;
    overflow: hidden;
  }

  .about-video__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 24px;
  }

  .about-video__logo img {
    max-width: 232px;
  }

  .about-video__text {
    max-width: 100%;
    font-size: 12px;
  }

  .about-video__video {
    border-radius: 0px;
    margin: 0 -12px;
    width: calc(100% + 24px);
  }

  .about-video__video-inner {
    border-radius: 0px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .about-video__video-inner {
    height: 260px;
  }
}

.contacts-map {
  padding: 40px 0 160px;
}

.contacts-map__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.contacts-map__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts-map__title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.contacts-map__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
}

.contacts-map__more {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  color: rgba(40, 121, 255, 0.7);
  text-decoration: underline;
}

.contacts-map__more:hover {
  color: rgba(40, 121, 255, 1);
}

.contacts-map__address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.contacts-map__address-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.contacts-map__address-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contacts-map__buttons {
  display: flex;
  gap: 12px;
}

.contacts-map__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  height: 46px;
  width: 174px;
}

.contacts-map__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}


.contacts-map__btn-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.contacts-map__map {
  background-color: transparent;

}

.contacts-map__map-inner {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.contacts-map__map-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== адаптив ===== */

@media (max-width: 992px) {
  .contacts-map {
    padding: 20px 0 80px;
  }

  .contacts-map__top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .contacts-map__title {
    font-size: 24px;
  }

  .contacts-map__title-row {

    gap: 8px;
  }

  .contacts-map__more {
    font-size: 14px;

  }

  .contacts-map__btn {
    height: 36px;
    width: 112px;
  }

  .contacts-map__buttons {
    gap: 8px;
  }

  .contacts-map__map {
    margin: 0 -8px;
    max-width: calc(100% + 16px);
    border-radius: 12px;
  }

  .contacts-map__map-inner {
    height: 320px;
    border-radius: 12px;
  }

  .contacts-map__address {
    gap: 8px;
    font-size: 14px;

  }

  .contacts-map__address-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }


}

.about-services {
  padding: 40px 0;
}

.about-services-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 20px;
}



.about-services-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.about-services__tab {
  appearance: none;
  border: 0;
  padding-inline: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  transition: all 0.2s;
}

.about-services__tab:hover {
  background: rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 1);
}

.about-services__tab:active {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 1);
}

.about-services__tab.is-active {
  background: #ED1C57;
  color: rgba(255, 255, 255, 1);
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

@media(max-width:768px) {
  .about-services {
    padding: 20px 0;
  }

  .about-services-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .about-services-tabs {
    gap: 6px 4px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .about-services__tab {
    padding-inline: 16px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    outline: 1px solid rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    outline-offset: -1px;
    transition: all 0.2s;
  }

  .about-services__tab.is-active,
  .about-services__tab:hover,
  .about-services__tab:active {
    background: #ED1C57;
    color: rgba(255, 255, 255, 1);
    outline: 1px solid rgba(255, 255, 255, 0.1);
  }


}

.about-services-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.about-services-banner {
  flex: 1 0 608px;
  position: relative;
  background: linear-gradient(119.24deg, rgba(71, 176, 228, 0.8) 35.5%, rgba(51, 156, 208, 0.8) 75.07%);
  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: -2px;
  border-radius: 16px;
  padding: 24px;
}

.about-services-banner-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-services-banner-title img {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
}

.about-services-banner-text {
  max-width: 321px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.about-services-banner-image {
  width: 340px;
  height: 300px;
  position: absolute;
  bottom: 0;
  right: 8px;
}

.about-services-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 50px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  background: rgba(255, 255, 255, 1);
  color: rgba(43, 47, 60, 1);
}

.about-services-banner-link:hover {

  background: rgb(242, 242, 242)
}

.mall-catalog__grid.about-services__grid {
  flex: 1 0 600px;
  gap: 8px;
}

.about-services__grid .mall-catalog__card {
  gap: 12px;
  height: 192px;
  background: transparent;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  padding: 36px 12px 24px;
  flex: 0 1 calc((100% - 16px) / 3);
}

.about-services__grid .mall-catalog__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(37, 43, 61, 1);
  transform: scaleX(0.966) scaleY(0.955);
  transition: transform 0.2s;
  z-index: 0;
  pointer-events: none;
}

/* ховер теперь только на фон */
.about-services__grid .mall-catalog__card:hover::before {
  transform: scaleX(1) scaleY(1);
}

.mall-catalog__card:hover {
  gap: 14px;
  padding: 30px 12px 22px;
}

@media(max-width:768px) {

  .about-services-row {
    flex-direction: column;
    gap: 10px;
  }

  .about-services-banner {
    min-height: 200px;
    flex: 0 0 auto;
    padding: 16px;
  }

  .about-services-banner-title {
    gap: 10px;
    font-size: 24px;
    margin-bottom: 6px;
    position: sticky;
    z-index: 1;
  }

  .about-services-banner-title img {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .about-services-banner-text {
    max-width: 184px;
    font-size: 13px;
    margin-bottom: 0px;
    position: sticky;
    z-index: 1;
  }

  .about-services-banner-image {
    width: 160px;
    height: 140px;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .about-services-banner-link {
    z-index: 2;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 95px;
    height: 45px;
    font-size: 12px;
    background: rgba(255, 255, 255, 1);
    color: rgba(43, 47, 60, 1);
  }

  .mall-catalog__grid.about-services__grid {
    flex: 0 0 auto;
  }

  .about-services__grid .mall-catalog__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 7px;
    height: auto;
    background: #252B3D;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    padding: 16px 8px 11px;
    transform: scale(1);

    transition: .2s;
  }

  .about-services__grid .mall-catalog__card::before {
    content: '';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #47B0E4;
    top: 10px;
    left: 10px;
    border-radius: 3px;
    width: 5px;
    height: 5px;
  }

  .about-services__grid .mall-catalog__card:hover {
    transform: scale(1.03)
  }

  .about-services__grid .mall-catalog__icon {
    height: 26px;
    width: 26px;
    display: inline-flex;
  }

  .about-services__grid .mall-catalog__icon svg {
    height: 26px;
    width: 26px;

  }


  .about-services__grid .mall-catalog__badge {
    display: none;
  }

  .about-services__grid .mall-catalog__label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    text-align: center;
  }

  /* обрезка текста до 2 строк */
  .mall-catalog__label-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* максимум 2 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }




}

.how-to-go {
  background: url('/assets/img/map/BG.jpg') center/cover no-repeat;
  padding: 80px 0 128px;
  height: 100%;
  min-height: 750px;
}

.how-to-go__wrapper {
  padding: 16px 24px 32px;
  border-radius: 16px;
  background-color: rgba(24, 29, 46, 1);
  margin: 0 auto;
  max-width: 670px;
  box-shadow: 0px 12px 16px 6px rgba(0, 0, 0, 0.1);

}

.how-to-go__wrapper .contacts-map__buttons {
  flex-direction: column;
  gap: 6px;
}

.how-to-go__wrapper .contacts-map__heading {
  gap: 12px;
}

.how-to-go__top {
  align-items: center;
}

.how-to-go__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-to-go__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.how-to-go__link-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.how-to-go__link-top img {
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.how-to-go__link-top span {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}

.how-to-go__link:hover .how-to-go__link-top span {
  color: #ED1C57;
}

.how-to-go__link-bottom {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: rgb(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
  .how-to-go__top {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .how-to-go__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .how-to-go {
    background: #181D2E;
    padding: 20px 0 56px;
    height: auto;
    min-height: 0px;
  }

  .how-to-go__wrapper {
    padding: 0;
    border-radius: 0px;
    background-color: transparent;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: none;
  }

  .how-to-go__wrapper .contacts-map__buttons {
    flex-direction: row;
    gap: 8px;
  }

  .how-to-go__top .contacts-map__title {
    font-size: 28px;
  }

  .how-to-go__wrapper .contacts-map__heading {
    gap: 6px;
  }

  .how-to-go__nav {
    gap: 4px;
  }

  .how-to-go__link {
    padding: 12px 12px 16px;
    gap: 4px;
    border-radius: 10px;
  }

  .how-to-go__link-top {
    gap: 8px;
  }

  .how-to-go__link-top img {
    flex: 0 0 24px;
    height: 24px;
    width: 24px;
  }

  .how-to-go__link-top span {
    font-size: 18px;
  }

  .how-to-go__link-bottom {
    font-size: 14px;
  }
}
#map {
    width: 100%;
    min-height: 750px; 
    height: 750px;
    transition:none !important;
    position: relative;
}
@media(max-width:768px){
  #map {
    min-height: 600px; 
        height: 600px;
}
}
#map ymaps *, #map ymaps {
      transition:none !important;
}
.ymaps-2-1-79-controls__control{
  inset: 108px 10px auto auto !important;
}
#map .container{
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
pointer-events: none;
  z-index: 1;
}
.map-info{
  position: relative;
     pointer-events:all !important;
      margin-top: 64px;
  height:500px;
  width:400px
}
.map-info *{
  transition:  0.2s all !important;
}
.map-info-top{
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.map-info-top__back-link{
  position: absolute;
  left: -66px;
  top: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 8px;
  color: #2B2F3C;
  box-shadow: 0px 12px 16px 6px rgba(0, 0, 0, 0.1);

}
.map-info-top__back-link:hover{
  background-color: #ED1C57;
  color: #fff;

}
.map-info-top__buttons{
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-info-top__buttons .contacts-map__btn{
  background: #fff;
  width: 154px;
  height: 50px;
  box-shadow: 0px 12px 16px 6px rgba(0, 0, 0, 0.1);

}
.map-info-top__buttons .contacts-map__btn:hover{
  background: #e3e3e3;
}

.map-info-content__header-top{
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-info-content__header-top img{
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.map-info-content__header-top span{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #2B2F3C;
}
.map-info-content__header-bottom{
  font-size: 18px;
  font-weight: 400;
  color: rgba(43, 47, 60, 0.6);
}
.map-info-content__list{
  display: flex;
  flex-direction: column;
  gap:12px;
}

.map-info-content__item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: rgba(43, 47, 60, 1);
}
.map-info-content__item::before{
  flex: 0 0 6px;
  margin-top: 9px;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(237, 28, 87, 1);
}
@media(max-width:1460px){
  .map-info-top__back-link{
    position: relative;
    top: 0;
    left: 0;
  }
}
@media(max-width:768px){
  .map-info{
    margin-top: 4px;
  height:500px;
  width:100%;
  }
}
.map-info-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 20px 24px;
  margin-top: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 12px 16px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* шапка как кнопка */
.map-info-content__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: default; /* на десктопе */
}

.map-info-content__header-left{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-info-content__arrow{
  display: none; 
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(43, 47, 60, 0.1);
  color: #2B2F3C;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
}

.map-info-content__arrow svg{
  transition: all 0.2s ;
}

@media(max-width:768px){
  .map-info-top__buttons .contacts-map__btn {
   
    width: 112px;
    height: 36px;
   
}
 .map-info-top__buttons{
  gap: 6px;
 }
  .map-info-top__back-link{
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .ymaps-2-1-79-controls__control{
  display: none !important;
}
  .map-info-content__header-top img{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.map-info-content__header-top span{
  font-size: 16px;;
}
.map-info-content__header-bottom{
  font-size: 12px;
}
  .map-info-content__header-top{
    gap: 8px;
  }
  .map-info-content__header{
    flex-direction: row;
    gap: 4px;
  }
  .map-info{
    margin-top: 4px;
    height: 500px;
    width: 100%;
  }

  .map-info-content__header{
    cursor: pointer;
  }

  .map-info-content__arrow{
    display: flex;
  }

  .map-info-content__body{

    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.2s;
    margin-top: 0px;
  }
  .map-info-content{
    padding: 12px 12px 14px;
    gap: 0px;
    margin-top: 4px;
  }
 
  .map-info-content.is-open .map-info-content__body{
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
  }

  .map-info-content.is-open .map-info-content__arrow svg{
    transform: rotate(180deg);
  }
   .map-info-content.is-open .map-info-content__arrow{
      color: #FFFFFF;
      background: #ED1C57;
    }
  .map-info-content__list{
    gap:6px;
  }

  .map-info-content__item{
    gap: 8px;
    font-size: 14px;
  }
  .map-info-content__item::before{
    flex: 0 0 5px;
    margin-top: 7.5px;
    content: "";
    width: 5px;
    height: 5px;
  }
}
.map-floor-container{
  position: absolute;
    right: 16px;
    top: 0;
    z-index: 2;
    display: grid;
    gap: 15px;
}
.map-floor-title {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
}
.map-floor-numbers {
    box-shadow: 0 .4rem 2.4rem rgba(0, 0, 0, .07);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
}
.map-floor-number, .map-zoom-plus, .map-zoom-minus {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    outline: 0;
    cursor: pointer;
    background-color: #181D2E;
    color: #fff;
}
.map-floor-number:not(:last-child):before, .map-zoom-plus:before{
  content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: calc(100% - 1rem);
    height: .1rem;
    background-color: #3d4251;
    transform: translateX(-50%);
}
.map-floor-number:first-child, .map-zoom-plus{
  border-radius: .8rem .8rem 0 0;
}
.map-floor-number:last-child, .map-zoom-minus{
  border-radius: 0 0 .8rem .8rem;
}
.map-floor-number:hover, .map-floor-number.active, .map-zoom-plus:hover, .map-zoom-minus:hover {
    background-color: #252B3D;
}
.map-floor-number span, .map-floor-plus span, .map-floor-minus span, .map-zoom-number span, .map-zoom-plus span, .map-zoom-minus span, .map2-floor-number span, .map2-floor-plus span, .map2-floor-minus span, .map2-zoom-number span, .map2-zoom-plus span, .map2-zoom-minus span {
    display: none;
    position: absolute;
    left: 12px;
    top: 100%;
    width: 10px;
    height: 10px;
    background-color: #ed1c24;
    border-radius: 50%;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0;
    text-align: center;
    line-height: 24px;
}
.map-container {
    position: relative;
    transition: .5s;
    display: flex;
    align-items: center;
}
.map-container-img {
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.map-container-img.active {
    position: static;
    opacity: 1;
    z-index: 1;
}
.map-page .mall-sidebar{
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 2;
  opacity: 0.96;
}
.map-page .mall-acc__list{
    max-height:400px;
    overflow-y: scroll;
}
@media(max-width:768px){
    .map-page .mall-sidebar{
        position: relative;
        top: unset;
        left: unset;
    }
}
.scheme_top {
    position: absolute;
    top: 60px;
    z-index: 2;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid #505259;
    display: flex;
    flex-direction: column-reverse;
    width: 300px;
}
.scheme_top .toggle {
    display: block;
    box-shadow: 4px 4px 16px rgb(0 0 0 / 15%);
    background: #F9F9F9;
    cursor: pointer;
}
.scheme_top .sidebar_wrapper {
    background: #fff;
    height: 95px;
    /* overflow: hidden; */
    box-shadow: none;
    border: none;
    transition: all .5s;
    padding: 15px 0;
}
.scheme_top .toggle>div {
    font-weight: 600;
    display: none;
    font-size: 10px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #737373;
    padding: 8px 15px;
}

.scheme_top .toggle span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.scheme_top .toggle .open, .scheme_top .toggle.active .close {
    display: block;
}
svg [data-name="HATCH"], svg [data-name="HATCH"] *{
  cursor: pointer;
}
.floor_1 svg [data-name="HATCH"].active path, .floor_1 svg [data-name="HATCH"].active2 path, .floor_1 svg [data-name="HATCH"]:hover path {
    fill: #1A4B36 !important;
    stroke: #33A173;
}
.floor_2 svg [data-name="HATCH"].active path, .floor_2 svg [data-name="HATCH"].active2 path, .floor_2 svg [data-name="HATCH"]:hover path {
    fill: #213C68 !important;
    stroke: #2474EF;
}
.floor_3 svg [data-name="HATCH"].active path, .floor_3 svg [data-name="HATCH"].active2 path, .floor_3 svg [data-name="HATCH"]:hover path {
    fill: #52255B !important;
    stroke: #A036BA;
}
.map-tippy, .map2-tippy {
    width: 280px;
    padding: 15px;
    border-radius: 12px;
    background-color: #fff;
    position: absolute;
    display: none;
    z-index: 10;
}
.map-tippy-img, .map2-tippy-img {
    display: grid;
    gap:15px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.map-tippy-order {
    margin-top: 15px;
}
.map-tippy-img p {
  color: rgba(43, 47, 60, 1);
  font-family: Onest;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
.map-tippy-img img, .map2-tippy-img img {
    width: 100%;
    max-width: 180px;
}
.map-tippy-order a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  background: rgba(237, 28, 87, 1);
  height: 50px;
  color: rgba(255, 255, 255, 1);
  font-family: Onest;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
.map-tippy-order a:hover {
    background-color: #ff2d6b;
}
g[data-name="HATCH"] text{
    transition:all 0.5s; 
}
svg[data-scale="1"] g[data-name="HATCH"] text{
    opacity:0;
}
svg[data-scale="1"] g[data-name="HATCH"].visible_first text{
    opacity:1;
    transition:all 0.5s;
}
svg [data-name="HATCH"].active text, svg [data-name="HATCH"].active2 text, svg [data-name="HATCH"]:hover text{
    opacity:1 !important;
}
@media(max-width:768px){
    .map-tippy, .map2-tippy{
        position: relative;
        top: unset !important;
        left: unset !important;
        right: unset;
        width: 100%;
    }
    .map-floor-container{
        position: relative;
        right: unset;
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }
    .map-floor-numbers{
        display: flex;
    }
    .map-floor-number:first-child, .map-zoom-plus {
        border-radius: .8rem 0 0 .8rem;
    }
    .map-floor-number:last-child, .map-zoom-minus {
        border-radius: 0 .8rem .8rem 0;
    }
    .map-floor-number:not(:last-child):before, .map-zoom-plus:before{
        right: 0;
        left:unset;
        width: .1rem;
        transform: translateY(-50%);
        height: calc(100% - 1rem);
        top: 50%;
    }
    .map-floor-number, .map-zoom-plus, .map-zoom-minus{
        width: 38px;
        height: 40px;
    }
}