:root {
  --ui-v2-header-height: 82px;
  --ui-v2-nav-height: 0px;
  --ui-v2-content-offset: 8px;
}

body.ui-v2-mobile-search-open {
  overflow: hidden;
}

body.ui-v2 {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.ui-v2 header.top {
  background: #ffffff;
  border-bottom: 0;
  backdrop-filter: none;
  padding: 8px 0;
  height: auto !important;
  z-index: 120;
  transition:
    padding 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ui-v2 header.top.is-scrolled {
  padding: 4px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.35);
}

.ui-v2 header.top .navbar {
  padding: 0;
}

.ui-v2 header.top .container {
  max-width: 1320px;
}

.ui-v2 .container {
  width: 100% !important;
  max-width: 1320px !important;
}

.ui-v2 header.top .navbar > .container > .row {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  overflow: visible;
}

.ui-v2 header.top .navbar-brand {
  display: inline-flex;
  align-items: center;
}

.ui-v2 header.top .navbar-brand img {
  width: 210px !important;
  max-width: 210px !important;
  height: auto;
  transition:
    width 0.2s ease,
    max-width 0.2s ease;
}

.ui-v2 header.top.is-scrolled .navbar-brand img {
  width: 178px !important;
  max-width: 178px !important;
}

.ui-v2 header.top .col-8.col-md-4 {
  padding-left: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
}

.ui-v2 header.top .col-4.col-md-8 {
  padding-right: 0;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  gap: 12px;
}

.ui-v2 .header-search-v2-wrap {
  flex: 0 1 390px;
  min-width: 220px;
  max-width: 460px;
  padding: 0 14px;
}

.ui-v2 .header-search-v2 {
  position: relative;
  width: 100%;
}

.ui-v2 .header-search-v2__icon {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  color: #5e7191;
  pointer-events: none;
}

.ui-v2 .header-search-v2__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ui-v2 .header-search-v2__input {
  width: 100%;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(31, 95, 191, 0.22);
  background: #ffffff;
  color: #1c345e;
  font-size: 14px;
  font-weight: 600;
  padding: 0 34px 0 36px;
  outline: none;
  box-shadow: 0 12px 20px -22px rgba(31, 95, 191, 0.55);
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.ui-v2 .header-search-v2__input::placeholder {
  color: #7f8ea9;
  font-weight: 500;
}

.ui-v2 .header-search-v2__input::-webkit-search-decoration,
.ui-v2 .header-search-v2__input::-webkit-search-cancel-button,
.ui-v2 .header-search-v2__input::-webkit-search-results-button,
.ui-v2 .header-search-v2__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.ui-v2 .header-search-v2__input::-ms-clear,
.ui-v2 .header-search-v2__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.ui-v2 .header-search-v2__input:focus {
  border-color: rgba(31, 95, 191, 0.48);
  box-shadow:
    0 0 0 3px rgba(31, 95, 191, 0.14),
    0 18px 28px -26px rgba(31, 95, 191, 0.6);
}

.ui-v2 .header-search-v2__clear {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7d8ca5;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.ui-v2 .header-search-v2__clear:hover {
  color: #1f5fbf;
  background: rgba(31, 95, 191, 0.1);
}

.ui-v2 .header-search-v2__results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(31, 95, 191, 0.2);
  border-radius: 12px;
  box-shadow: 0 22px 34px -24px rgba(15, 23, 42, 0.5);
  z-index: 250;
  max-height: min(62vh, 420px);
  overflow: auto;
}

.ui-v2 .header-search-v2__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 95, 191, 0.1);
  color: #1c345e;
}

.ui-v2 .header-search-v2__item:last-child {
  border-bottom: none;
}

.ui-v2 .header-search-v2__item:hover,
.ui-v2 .header-search-v2__item.is-active {
  background: #f1f6ff;
}

.ui-v2 .header-search-v2__item-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ui-v2 .header-search-v2__item-model {
  color: #0f274c;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.ui-v2 .header-search-v2__item-meta {
  color: #617390;
  font-size: 12px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-v2 .header-search-v2__item-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  white-space: nowrap;
}

.ui-v2 .header-search-v2__item-old-price {
  color: #8f99aa;
  font-size: 12px;
  text-decoration: line-through;
}

.ui-v2 .header-search-v2__item-new-price {
  color: #1f5fbf;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.ui-v2 .header-search-v2__empty {
  padding: 12px;
  color: #5f7190;
  font-size: 13px;
  line-height: 1.3;
}

.ui-v2 .header-search-mobile-toggle {
  display: none;
}

.ui-v2 .mobile-search-panel[hidden] {
  display: none !important;
}

.ui-v2 .mobile-search-panel {
  position: fixed;
  inset: 0;
  z-index: 1650;
  pointer-events: none;
}

.ui-v2 .mobile-search-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 38, 0.42);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ui-v2 .mobile-search-panel__sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, calc(100vw - 18px));
  height: 100%;
  background: #f6f8fc;
  border-left: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: -14px 0 34px -24px rgba(15, 23, 42, 0.58);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.ui-v2 .mobile-search-panel.is-open {
  pointer-events: auto;
}

.ui-v2 .mobile-search-panel.is-open .mobile-search-panel__backdrop {
  opacity: 1;
}

.ui-v2 .mobile-search-panel.is-open .mobile-search-panel__sheet {
  transform: translateX(0);
}

.ui-v2 .mobile-search-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.ui-v2 .mobile-search-panel__title {
  color: #14284e;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}

.ui-v2 .mobile-search-panel__close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 95, 191, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: #5b6d8a;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.ui-v2 .mobile-search-panel__body {
  padding: 12px;
  overflow: auto;
}

.ui-v2 .mobile-search-panel .header-search-v2__results {
  position: static;
  margin-top: 8px;
  max-height: none;
}

.ui-v2 .mainmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: nowrap;
  min-width: 0;
}

.ui-v2 .mainmenu li {
  float: none;
  margin: 0;
}

.ui-v2 .mainmenu li a {
  margin: 0;
  padding: 0;
  font-size: 15px;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: none;
  line-height: 1.2;
  color: #1c345e;
  white-space: nowrap;
}

.ui-v2 .mainmenu li a:hover {
  color: #1f5fbf;
  background: transparent;
}

.ui-v2 .header-contacts-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}

.ui-v2 .header-contact-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a2f56;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.ui-v2 .header-contact-card:hover {
  color: #1f5fbf;
}

.ui-v2 .header-contacts-v2 .header-contact-card[href^="mailto:"] {
  display: none;
}

.ui-v2 .header-contact-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #1f5fbf;
}

.ui-v2 .header-contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.ui-v2 .header-contact-value {
  line-height: 1;
}

.ui-v2 .lang-switch-v2 {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: #f4f6fa;
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}

.ui-v2 .lang-switch-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  color: #1e355f;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.ui-v2 .lang-switch-v2__btn:not(.is-active):hover {
  background: #e7edf8;
  color: #1f5fbf;
}

.ui-v2 .lang-switch-v2__btn.is-active {
  background: #1f5fbf;
  color: #ffffff;
}

.ui-v2 .lang-switch-v2__btn.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.ui-v2 nav.top {
  position: relative !important;
  top: 0 !important;
  width: 100%;
  margin-top: calc(var(--ui-v2-header-height) + 2px);
  margin-bottom: 0;
  padding: 4px 0 8px;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  z-index: 1;
}

.ui-v2 nav.top .container {
  max-width: 1320px;
}

.ui-v2 nav.top .row {
  margin: 0;
}

.ui-v2 nav.top .col-md-12 {
  padding-left: 0;
  padding-right: 0;
}

.ui-v2 nav.top ul.nav {
  display: none !important;
}

.ui-v2 .breadcrumbs-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  min-width: 0;
}

.ui-v2 .breadcrumbs-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 95, 191, 0.22);
  color: #1f5fbf;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  box-shadow: none;
  position: relative;
  z-index: 2;
  order: 1;
}

.ui-v2 .breadcrumbs-action:hover {
  background: rgba(31, 95, 191, 0.12) !important;
  color: #1b3e7a !important;
  transform: none !important;
  box-shadow:
    0 0 0 1px rgba(31, 95, 191, 0.18),
    0 0 16px rgba(96, 140, 255, 0.3) !important;
}

.ui-v2 .breadcrumbs-action-icon {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.ui-v2 .breadcrumbs-action-icon--invert {
  filter: none;
}

.ui-v2 .breadcrumbs-track {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  z-index: 1;
  border-top: 1px solid rgba(15, 23, 42, 0.14);
  border-bottom: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  order: 2;
  overflow: hidden;
}

.ui-v2 .breadcrumbs-track::before,
.ui-v2 .breadcrumbs-track::after {
  display: none;
}

.ui-v2 .breadcrumbs-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.82rem;
  line-height: 1.3;
  color: #576886;
  padding: 0 8px 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-v2 .breadcrumbs-nav--mobile {
  display: none;
}

.ui-v2 .breadcrumbs-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ui-v2 .breadcrumbs-more__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 22px;
  padding: 0;
  border: 1px solid rgba(31, 95, 191, 0.2);
  border-radius: 6px;
  background: #ffffff;
  color: #5f6f8b;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.ui-v2 .breadcrumbs-more.is-open .breadcrumbs-more__toggle {
  color: #1f5fbf;
  border-color: rgba(31, 95, 191, 0.36);
}

.ui-v2 .breadcrumbs-more__menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 180px;
  max-width: min(78vw, 280px);
  padding: 8px;
  border: 1px solid rgba(31, 95, 191, 0.18);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 20px 28px -22px rgba(24, 62, 124, 0.55);
  z-index: 30;
  display: none;
  gap: 6px;
}

.ui-v2 .breadcrumbs-more.is-open .breadcrumbs-more__menu {
  display: grid;
}

.ui-v2 .breadcrumbs-more__item {
  display: block;
  padding: 5px 6px;
  border-radius: 6px;
  color: #4d5d78;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
}

.ui-v2 a.breadcrumbs-more__item:hover {
  color: #1f5fbf;
  background: rgba(31, 95, 191, 0.08);
}

.ui-v2 .breadcrumbs-link {
  color: #576886;
  text-decoration: none;
  flex: 0 0 auto;
}

.ui-v2 .breadcrumbs-link:hover {
  color: #1f5fbf;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.ui-v2 .breadcrumbs-sep {
  color: #8a99b3;
  flex: 0 0 auto;
}

.ui-v2 .breadcrumbs-current {
  color: #1f355f;
  font-weight: 700;
  flex: 0 0 auto;
}

.ui-v2 .breadcrumbs-model-nav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  order: 3;
  max-width: 44%;
  min-width: 0;
}

.ui-v2 .breadcrumbs-model-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 240px;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(31, 95, 191, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #355070;
  text-decoration: none;
}

.ui-v2 .breadcrumbs-model-nav__link:hover {
  border-color: rgba(31, 95, 191, 0.32);
  color: #1f5fbf;
}

.ui-v2 .breadcrumbs-model-nav__arrow {
  color: #1f5fbf;
  font-size: 15px;
  line-height: 1;
  flex: 0 0 auto;
}

.ui-v2 .breadcrumbs-model-nav__label {
  font-size: 11px;
  color: #7383a0;
  white-space: nowrap;
  flex: 0 0 auto;
}

.ui-v2 .breadcrumbs-model-nav__model {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.catalog-open-v2 {
  overflow: hidden;
}

.ui-v2 .catalog-overlay-v2 {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--ui-v2-header-height) + var(--ui-v2-nav-height) + 12px)
    12px 12px;
}

.ui-v2 .catalog-overlay-v2[hidden] {
  display: none !important;
}

.ui-v2 .catalog-overlay-v2__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.ui-v2 .catalog-panel-v2 {
  position: relative;
  width: min(1450px, 94vw);
  height: min(88vh, 760px);
  max-height: min(88vh, 760px);
  border-radius: 20px;
  border: 1px solid rgba(31, 95, 191, 0.18);
  box-shadow: 0 34px 70px -40px rgba(31, 95, 191, 0.45);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.ui-v2 .catalog-overlay-v2.is-open .catalog-overlay-v2__backdrop {
  opacity: 1;
}

.ui-v2 .catalog-overlay-v2.is-open .catalog-panel-v2 {
  transform: translateY(0);
  opacity: 1;
}

.ui-v2 .catalog-panel-v2__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 16px;
  background: #f4f7ff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ui-v2 .catalog-panel-v2__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.ui-v2 .catalog-panel-v2__back {
  display: none;
}

.ui-v2 .catalog-panel-v2__close {
  border: none;
  background: transparent;
  color: #485266;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.ui-v2 .catalog-panel-v2__close:hover {
  color: #1f5fbf;
}

.ui-v2 .catalog-panel-v2__body {
  display: grid;
  grid-template-columns: minmax(260px, 0.27fr) minmax(0, 0.73fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

.ui-v2 .catalog-panel-v2__aside {
  background: #f1f5ff;
  border-right: 1px solid rgba(31, 95, 191, 0.16);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px 0 16px;
  min-height: 0;
}

.ui-v2 .catalog-panel-v2__aside-title {
  margin: 0 16px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 53, 95, 0.65);
  font-weight: 700;
}

.ui-v2 .catalog-panel-v2__sections {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
}

.ui-v2 .catalog-panel-v2__section-item {
  margin: 0;
}

.ui-v2 .catalog-panel-v2__section-btn {
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(31, 95, 191, 0.12);
  border-radius: 0;
  background: transparent;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f172a;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.ui-v2 .catalog-panel-v2__section-btn:hover {
  background: rgba(31, 95, 191, 0.08);
  color: #1b3e7a;
}

.ui-v2 .catalog-panel-v2__section-btn.is-active {
  position: relative;
  border-color: transparent;
  background: #1f5fbf;
  color: #ffffff;
}

.ui-v2 .catalog-panel-v2__section-btn.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.75);
}

.ui-v2 .catalog-panel-v2__makers {
  display: grid;
  gap: 4px;
  padding: 8px 12px 8px 22px;
  margin-left: 12px;
  border-left: 2px solid rgba(31, 95, 191, 0.18);
}

.ui-v2 .catalog-panel-v2__maker-btn {
  position: relative;
  border: none;
  background: transparent;
  border-radius: 0;
  color: #485266;
  text-align: left;
  padding: 5px 8px 5px 18px;
  font-size: 12px;
  line-height: 1.3;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ui-v2 .catalog-panel-v2__maker-btn::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 999px;
  background: rgba(31, 95, 191, 0.4);
}

.ui-v2 .catalog-panel-v2__maker-btn:hover {
  background: rgba(31, 95, 191, 0.08);
  color: #1f5fbf;
}

.ui-v2 .catalog-panel-v2__maker-btn.is-active {
  background: rgba(31, 95, 191, 0.12);
  color: #1f5fbf;
  font-weight: 700;
}

.ui-v2 .catalog-panel-v2__maker-btn.is-active::before {
  background: #1f5fbf;
}

.ui-v2 .catalog-panel-v2__content {
  overflow-y: auto;
  padding: 12px 8px 16px 16px;
  min-height: 0;
}

.ui-v2 .catalog-panel-v2__groups {
  display: grid;
  gap: 22px;
}

.ui-v2 .catalog-panel-v2__group {
  display: grid;
  gap: 8px;
}

.ui-v2 .catalog-panel-v2__group-title {
  margin: 0;
  position: relative;
  padding-left: 12px;
  color: #1b3e7a;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.25;
}

.ui-v2 .catalog-panel-v2__group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1em;
  border-radius: 999px;
  background: #1f5fbf;
  opacity: 0.45;
}

.ui-v2 .catalog-panel-v2__group-title::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 10px;
  background: rgba(31, 95, 191, 0.12);
}

.ui-v2 .catalog-panel-v2__cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  padding-right: 12px;
}

.ui-v2 .catalog-panel-v2__card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-areas:
    "media title"
    "media subtitle"
    "media meta"
    "values values";
  grid-template-rows: auto auto auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(31, 95, 191, 0.16);
  background: #f7faff;
  box-shadow: 0 14px 26px -24px rgba(31, 95, 191, 0.25);
  color: inherit;
  text-decoration: none;
  padding: 12px 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  height: 100%;
}

.ui-v2 .catalog-panel-v2__card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 95, 191, 0.45);
  box-shadow: 0 18px 34px -24px rgba(31, 95, 191, 0.35);
}

.ui-v2 .catalog-panel-v2__card-media {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background: linear-gradient(
    140deg,
    rgba(31, 95, 191, 0.12),
    rgba(255, 255, 255, 0.9)
  );
  overflow: hidden;
  grid-area: media;
}

.ui-v2 .catalog-panel-v2__card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ui-v2 .catalog-panel-v2__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef3ff 0%, #ffffff 100%);
}

.ui-v2 .catalog-panel-v2__card-body {
  display: contents;
}

.ui-v2 .catalog-panel-v2__card-title {
  grid-area: title;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ui-v2 .catalog-panel-v2__card-subtitle {
  grid-area: subtitle;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ui-v2 .catalog-panel-v2__card-meta {
  grid-area: meta;
  margin-top: 0;
}

.ui-v2 .catalog-panel-v2__card-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.ui-v2 .catalog-panel-v2__card-price--promo {
  align-items: center;
}

.ui-v2 .catalog-panel-v2__card-price-old {
  color: rgba(15, 23, 42, 0.6);
  text-decoration: line-through;
  font-size: 0.82rem;
  line-height: 1.2;
}

.ui-v2 .catalog-panel-v2__card-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.42);
  background: rgba(220, 38, 38, 0.08);
  color: #b42318;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ui-v2 .catalog-panel-v2__card-price-current {
  color: #1f5fbf;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.ui-v2 .catalog-panel-v2__card-price-current--promo {
  color: #b42318;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.28);
  border-radius: 8px;
  padding: 2px 8px;
}

.ui-v2 .catalog-panel-v2__card-values {
  grid-area: values;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
  padding-top: 4px;
  align-content: flex-start;
  border-top: 1px dashed rgba(31, 95, 191, 0.16);
}

.ui-v2 .catalog-panel-v2__card-value {
  padding: 5px 10px;
  border-radius: 6px;
  background: #e8f1ff;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1b3e7a;
  min-width: 60px;
  max-width: 100%;
  min-height: 28px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  white-space: normal;
}

.ui-v2 .catalog-panel-v2__card-value-text {
  display: block;
  font-size: 0.7rem;
  line-height: 1.2;
  color: #1b3e7a;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  text-align: left;
}

.ui-v2 .catalog-panel-v2__card-value--accent {
  border: 1px solid rgba(214, 60, 60, 0.55);
  background: rgba(214, 60, 60, 0.08);
  color: #a31a1a;
}

.ui-v2
  .catalog-panel-v2__card-value--accent
  .catalog-panel-v2__card-value-text {
  color: #a31a1a;
}

.ui-v2 .catalog-panel-v2__empty {
  padding: 14px 0;
  color: #485266;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ui-v2 .catalog-panel-v2__mobile-footer {
  display: none;
}

@media (max-width: 991px) {
  .ui-v2 .catalog-overlay-v2 {
    padding: 0;
    justify-content: flex-start;
  }

  .ui-v2 .catalog-panel-v2 {
    width: min(420px, calc(100vw - 18px));
    height: 100vh;
    max-height: 100vh;
    border-radius: 0 16px 16px 0;
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid rgba(15, 23, 42, 0.16);
    transform: translateX(-104%);
    opacity: 1;
    transition: transform 0.24s ease;
  }

  .ui-v2 .catalog-overlay-v2.is-open .catalog-panel-v2 {
    transform: translateX(0);
  }

  .ui-v2 .catalog-panel-v2__top {
    margin: 0;
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.14);
    background: linear-gradient(
      180deg,
      rgba(245, 249, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.98) 100%
    );
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .ui-v2 .catalog-panel-v2__back,
  .ui-v2 .catalog-panel-v2__close {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
    border-radius: 6px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #485266;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 104px;
    white-space: nowrap;
  }

  .ui-v2 .catalog-panel-v2__back {
    grid-column: 1;
    justify-self: start;
  }

  .ui-v2 .catalog-panel-v2__title {
    grid-column: 2;
    min-width: 0;
    text-align: center;
    font-size: 1.02rem;
  }

  .ui-v2 .catalog-panel-v2__close {
    grid-column: 3;
    justify-self: end;
  }

  .ui-v2 .catalog-panel-v2__body {
    display: block;
    padding: 0;
    min-height: 0;
    overflow: hidden;
    flex: 1 1 auto;
  }

  .ui-v2 .catalog-panel-v2__aside {
    background: #ffffff;
    border-right: none;
    border-bottom: none;
    max-height: none;
    padding: 12px;
    height: 100%;
  }

  .ui-v2 .catalog-panel-v2__makers {
    display: none;
  }

  .ui-v2 .catalog-panel-v2__sections {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .ui-v2 .catalog-panel-v2__section-item {
    margin: 0;
  }

  .ui-v2 .catalog-panel-v2__section-btn {
    position: relative;
    border: 1px solid rgba(31, 95, 191, 0.14);
    border-radius: 0;
    border-bottom: none;
    padding: 10px 34px 10px 14px;
    background: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .ui-v2
    .catalog-panel-v2__section-item:last-child
    .catalog-panel-v2__section-btn {
    border-bottom: 1px solid rgba(31, 95, 191, 0.14);
  }

  .ui-v2 .catalog-panel-v2__section-btn::after {
    content: "›";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a99b3;
    font-size: 20px;
    line-height: 1;
  }

  .ui-v2 .catalog-panel-v2__section-btn.is-active::before {
    display: none;
  }

  .ui-v2 .catalog-panel-v2__content {
    overflow-y: auto;
    padding: 12px;
    min-height: 0;
    height: 100%;
  }

  .ui-v2 .catalog-overlay-v2.is-mobile-sections .catalog-panel-v2__content {
    display: none;
  }

  .ui-v2 .catalog-overlay-v2.is-mobile-products .catalog-panel-v2__aside-title,
  .ui-v2 .catalog-overlay-v2.is-mobile-products .catalog-panel-v2__aside {
    display: none;
  }

  .ui-v2 .catalog-panel-v2__mobile-footer {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    background: #f9fbff;
    padding: 6px 0;
  }

  .ui-v2 .catalog-panel-v2__mobile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 12px;
    color: #1f2c46;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .ui-v2 .catalog-panel-v2__mobile-link:first-child {
    border-top: none;
  }

  .ui-v2 .catalog-panel-v2__mobile-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    color: #5f6f8b;
    flex: 0 0 auto;
  }

  .ui-v2 .catalog-panel-v2__mobile-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ui-v2 .catalog-panel-v2__cards {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .ui-v2 .catalog-panel-v2__card {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .ui-v2 .catalog-panel-v2__card-media {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 767px) {
  .ui-v2 nav.top {
    padding: 6px 0;
  }

  .ui-v2 .breadcrumbs-row {
    gap: 8px;
  }

  .ui-v2 .breadcrumbs-action {
    height: 30px;
    width: 36px;
    padding: 0;
    justify-content: center;
  }

  .ui-v2 .breadcrumbs-action-text {
    display: none;
  }

  .ui-v2 .breadcrumbs-nav {
    font-size: 13px;
  }

  .ui-v2 .breadcrumbs-model-nav {
    display: none;
  }
}

.ui-v2 .sliderContainer {
  margin-top: var(--ui-v2-header-height) !important;
}

.ui-v2 section[style*="margin-top: 200px"],
.ui-v2 section[style*="margin-top:200px"],
.ui-v2 section[style*="margin-top: 175px"],
.ui-v2 section[style*="margin-top:175px"],
.ui-v2 section[style*="margin-top: 165px"],
.ui-v2 section[style*="margin-top:165px"],
.ui-v2 section[style*="margin-top: 153px"],
.ui-v2 section[style*="margin-top:153px"],
.ui-v2 div.container[style*="margin-top: 150px"],
.ui-v2 div.container[style*="margin-top:150px"] {
  margin-top: var(--ui-v2-content-offset) !important;
}

.ui-v2 div.container[style*="margin-top: 150px"] > .row.my-4,
.ui-v2 div.container[style*="margin-top:150px"] > .row.my-4 {
  margin-top: 0 !important;
}

.ui-v2 section#catGPS[style*="margin-top: 153px"],
.ui-v2 section#catGPS[style*="margin-top:153px"] {
  margin-top: calc(var(--ui-v2-content-offset) + 8px) !important;
}

.ui-v2 .product-top-title {
  margin-top: 8px !important;
}

.ui-v2 footer:not(.site-footer-v2) {
  display: none;
}

.ui-v2 .site-footer-v2 {
  display: block;
  padding: 56px 0 64px;
  background: #071a3b;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ui-v2 .site-footer-v2 .container {
  max-width: 1320px;
  background: transparent !important;
}

.ui-v2 .site-footer-v2 ul,
.ui-v2 .site-footer-v2 li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ui-v2 .site-footer-v2 li {
  float: none !important;
  width: auto !important;
}

.ui-v2 .site-footer-v2 .footer {
  display: block;
  background: transparent !important;
}

.ui-v2 .site-footer-v2 .footer-grid {
  display: grid;
  gap: 24px;
}

.ui-v2 .site-footer-v2 .footer-a-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  align-items: start;
}

.ui-v2 .site-footer-v2 .footer-a-about {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ui-v2 .site-footer-v2 .footer-a-logo {
  margin-bottom: 16px;
}

.ui-v2 .site-footer-v2 .footer-a-lead {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.ui-v2 .site-footer-v2 .footer-logo-img {
  display: block;
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.ui-v2 .site-footer-v2 .footer-a-text {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.ui-v2 .site-footer-v2 .footer-a-side {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(210px, 1fr);
  gap: 28px;
  justify-items: start;
  padding-left: 20px;
}

.ui-v2 .site-footer-v2 .footer-title {
  margin: 0 0 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
}

.ui-v2 .site-footer-v2 .footer-links {
  display: grid;
  gap: 10px;
}

.ui-v2 .site-footer-v2 .footer-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.35;
}

.ui-v2 .site-footer-v2 .footer-link:hover {
  color: #ffffff;
}

.ui-v2 .site-footer-v2 .footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ui-v2 .site-footer-v2 .footer-contact-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.42);
  flex: 0 0 auto;
}

.ui-v2 .site-footer-v2 .footer-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ui-v2 .site-footer-v2 .footer-work-hours {
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.92rem;
  line-height: 1.35;
}

.ui-v2 .site-footer-v2 .footer-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .ui-v2 .navbar-toggler {
    display: none;
  }

  .ui-v2 .sidebar.offcanvas {
    position: static;
    transform: none !important;
    visibility: visible !important;
    border: 0;
    background: transparent;
    width: auto !important;
    height: auto !important;
    z-index: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .ui-v2 .sidebar.offcanvas .offcanvas-header {
    display: none;
  }

  .ui-v2 .sidebar.offcanvas .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    overflow: visible;
    min-width: 0;
  }

  .ui-v2 .sidebar.offcanvas .mainmenu {
    display: flex;
  }
}

@media (max-width: 900px) {
  .ui-v2 .site-footer-v2 .footer-a-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ui-v2 .site-footer-v2 .footer-a-about {
    padding-right: 0;
    border-right: none;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ui-v2 .site-footer-v2 .footer-a-side {
    padding-left: 0;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1366px) {
  .ui-v2 header.top .navbar-brand img {
    width: 162px !important;
    max-width: 162px !important;
  }

  .ui-v2 header.top.is-scrolled .navbar-brand img {
    width: 146px !important;
    max-width: 146px !important;
  }

  .ui-v2 header.top .col-4.col-md-8 {
    gap: 6px;
    overflow: visible;
  }

  .ui-v2 .header-search-v2-wrap {
    flex: 0 1 clamp(170px, 22vw, 280px);
    min-width: 170px;
    max-width: 280px;
    padding: 0 4px;
  }

  .ui-v2 .header-search-v2__input {
    height: 34px;
    font-size: 12px;
    padding-left: 32px;
    padding-right: 26px;
  }

  .ui-v2 .mainmenu {
    gap: 5px;
  }

  .ui-v2 .mainmenu li a {
    font-size: 12px;
  }

  .ui-v2 .header-contacts-v2 {
    margin-left: 2px;
    gap: 5px;
  }

  .ui-v2 .header-contact-card {
    font-size: 12px;
    gap: 6px;
  }

  .ui-v2 .header-contact-value {
    display: none;
  }

  .ui-v2 .header-contact-icon,
  .ui-v2 .header-contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .ui-v2 .lang-switch-v2 {
    padding: 2px;
    border-radius: 7px;
    margin-left: 2px;
  }

  .ui-v2 .lang-switch-v2__btn {
    min-width: 30px;
    height: 26px;
    padding: 0 6px;
    font-size: 12px;
  }

  .ui-v2 .breadcrumbs-row {
    gap: 8px;
  }

  .ui-v2 .breadcrumbs-model-nav {
    gap: 6px;
    max-width: 26%;
  }

  .ui-v2 .breadcrumbs-model-nav__link {
    max-width: 124px;
    padding: 4px 6px;
  }

  .ui-v2 .breadcrumbs-model-nav__label {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .ui-v2 .header-contact-card {
    padding: 0 2px;
  }

  .ui-v2 .lang-switch-v2__btn {
    min-width: 30px;
    padding: 0 6px;
  }

  .ui-v2 .header-search-v2-wrap {
    flex-basis: clamp(150px, 24vw, 220px);
    min-width: 150px;
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  :root {
    --ui-v2-header-height: 74px;
  }

  .ui-v2 header.top .navbar > .container > .row {
    flex-wrap: nowrap;
    row-gap: 0;
  }

  .ui-v2 header.top {
    padding: 6px 0;
  }

  .ui-v2 header.top .navbar-brand img {
    width: 136px;
  }

  .ui-v2 header.top .col-8.col-md-4 {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    padding-right: 6px;
  }

  .ui-v2 header.top .col-4.col-md-8 {
    gap: 8px;
    flex-wrap: nowrap !important;
    width: auto;
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
  }

  .ui-v2 .header-search-v2-wrap {
    display: none;
  }

  .ui-v2 .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(31, 95, 191, 0.24);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f5fbf;
    box-shadow: none;
    font-size: 0;
    line-height: 0;
    flex: 0 0 auto;
  }

  .ui-v2 .navbar-toggler::after {
    content: none;
    display: none;
  }

  .ui-v2 .navbar-toggler:focus {
    box-shadow: none;
    border-color: rgba(31, 95, 191, 0.34);
  }

  .ui-v2 .navbar-toggler-icon {
    width: 16px;
    height: 12px;
    flex: 0 0 16px;
    background-image:
      linear-gradient(currentColor, currentColor),
      linear-gradient(currentColor, currentColor),
      linear-gradient(currentColor, currentColor);
    background-size:
      16px 2px,
      16px 2px,
      16px 2px;
    background-position:
      0 0,
      0 5px,
      0 10px;
    background-repeat: no-repeat;
  }

  .ui-v2 .header-search-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(31, 95, 191, 0.24);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f5fbf;
    box-shadow: none;
    flex: 0 0 auto;
  }

  .ui-v2 .header-search-mobile-toggle svg {
    width: 16px;
    height: 16px;
    display: block;
  }

  .ui-v2 .mobile-search-panel .header-search-v2__input {
    height: 38px;
    font-size: 14px;
    padding-left: 36px;
  }

  .ui-v2 .header-contacts-v2 {
    display: none;
  }

  .ui-v2 .lang-switch-v2 {
    display: none !important;
  }

  .ui-v2 .dropdown.ms-3.d-none {
    display: block !important;
    margin-left: 0 !important;
  }

  .ui-v2 .dropdown.ms-3 .btn.btn-secondary {
    min-width: 62px;
    height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(31, 95, 191, 0.24);
    border-radius: 6px;
    background: #ffffff;
    color: #1f5fbf;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 10px 18px -18px rgba(31, 95, 191, 0.35);
  }

  .ui-v2 .dropdown.ms-3 .btn.btn-secondary:hover,
  .ui-v2 .dropdown.ms-3 .btn.btn-secondary:focus {
    background: #ffffff;
    color: #1f5fbf;
    border-color: rgba(31, 95, 191, 0.34);
    box-shadow: none;
  }

  .ui-v2 .dropdown.ms-3 .btn.btn-secondary.show {
    border-color: #1a2b4f;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-toggle::after {
    width: 6px;
    height: 6px;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0;
    vertical-align: 1px;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-toggle.show::after {
    transform: rotate(-135deg);
    vertical-align: -1px;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-menu {
    min-width: 56px;
    right: 0;
    left: auto;
    padding: 7px;
    margin-top: 6px;
    border: 1px solid rgba(31, 95, 191, 0.22);
    border-radius: 12px;
    box-shadow: 0 16px 28px -20px rgba(31, 95, 191, 0.45);
    display: none !important;
    flex-direction: column;
    gap: 6px;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-menu.show {
    display: flex !important;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4c5a73;
    font-weight: 700;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-item::before {
    content: none;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-item.is-active {
    order: -1;
    background: #1f5fbf;
    color: #ffffff;
    border-radius: 10px;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-item:hover {
    background: #eef3ff;
    color: #1f5fbf;
  }

  .ui-v2 .dropdown.ms-3 .dropdown-item.is-active:hover {
    background: #1f5fbf;
    color: #ffffff;
  }

  .ui-v2 .sidebar.offcanvas {
    width: min(420px, calc(100vw - 18px));
    border: 0;
    border-right: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 0 16px 16px 0;
    overflow: hidden;
  }

  .ui-v2 .sidebar.offcanvas.offcanvas-end {
    left: 0;
    right: auto;
    transform: translateX(-104%);
  }

  .ui-v2 .sidebar.offcanvas.offcanvas-end.show,
  .ui-v2 .sidebar.offcanvas.offcanvas-end.showing {
    transform: translateX(0);
  }

  .ui-v2 .sidebar.offcanvas .offcanvas-header {
    margin: 0;
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.14);
    background: linear-gradient(
      180deg,
      rgba(245, 249, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.98) 100%
    );
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9);
  }

  .ui-v2 .sidebar.offcanvas .offcanvas-title {
    margin: 0;
    font-size: 1rem !important;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
  }

  .ui-v2 .sidebar.offcanvas .btn-close {
    margin: 0;
    box-shadow: none;
  }

  .ui-v2 .sidebar.offcanvas .offcanvas-body {
    padding: 10px 12px 14px;
  }

  .ui-v2 .offcanvas-body .mainmenu {
    display: grid;
    gap: 8px;
    padding-right: 0 !important;
  }

  .ui-v2 .offcanvas-body .mainmenu li {
    margin: 0 !important;
  }

  .ui-v2 .offcanvas-body .mainmenu li a {
    position: relative;
    display: block;
    padding: 11px 36px 11px 12px;
    border: 1px solid rgba(31, 95, 191, 0.18);
    border-radius: 10px;
    background: #ffffff;
    color: #1c345e;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    white-space: normal;
  }

  .ui-v2 .offcanvas-body .mainmenu li a::after {
    content: "›";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a8cab;
    font-size: 20px;
    line-height: 1;
  }

  .ui-v2 .offcanvas-body .mainmenu li a:hover {
    border-color: rgba(31, 95, 191, 0.35);
    color: #1f5fbf;
  }

  .ui-v2 .catalog-panel-v2__section-btn::after,
  .ui-v2 .offcanvas-body .mainmenu li a::after {
    content: "\203A";
  }

  .ui-v2 nav.top {
    padding: 6px 0;
  }

  .ui-v2 .breadcrumbs-row {
    gap: 6px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .ui-v2 .breadcrumbs-action {
    display: none;
  }

  .ui-v2 .breadcrumbs-track {
    order: 1;
    flex: 1 1 100%;
    min-width: 0;
    padding: 3px 0;
    position: relative;
    overflow: visible;
  }

  .ui-v2 .breadcrumbs-track.is-left-truncated::before {
    content: "\2026";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #8392ac;
    font-size: 13px;
    line-height: 1;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 72%,
      rgba(255, 255, 255, 0)
    );
    pointer-events: none;
    z-index: 3;
  }

  .ui-v2 .breadcrumbs-nav {
    display: none;
  }

  .ui-v2 .breadcrumbs-nav--mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
    overflow: visible;
    padding: 0 4px;
    font-size: 12px;
    line-height: 1.3;
    color: #576886;
  }

  .ui-v2 .breadcrumbs-nav--mobile .breadcrumbs-link,
  .ui-v2 .breadcrumbs-nav--mobile .breadcrumbs-current {
    max-width: 34%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ui-v2 .breadcrumbs-model-nav {
    display: flex;
    order: 2;
    width: 100%;
    max-width: none;
    margin-left: 0;
    gap: 8px;
  }

  .ui-v2 .breadcrumbs-model-nav__link {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
    padding: 5px 8px;
    border-radius: 6px;
  }

  .ui-v2 .breadcrumbs-model-nav__label {
    display: none;
  }

.ui-v2 .breadcrumbs-model-nav__model {
  font-size: 11px;
}
}

@media (max-width: 360px) {
  .ui-v2 header.top .navbar-brand img {
    width: 122px !important;
    max-width: 122px !important;
  }

  .ui-v2 header.top .col-8.col-md-4 {
    padding-right: 4px;
  }

  .ui-v2 header.top .col-4.col-md-8 {
    gap: 6px;
  }
}
