@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap");

.ph-manager-banner-wrap {
  max-width: 1290px;
  margin: 0 auto 48px;
  box-sizing: border-box;
}

.ph-manager-banner {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  line-height: 0;
}

.ph-manager-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hover-картинка только на устройствах с мышью */
.ph-manager-banner__img--hover {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .ph-manager-banner__img--hover {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .ph-manager-banner:hover .ph-manager-banner__img--hover,
  .ph-manager-banner:focus-visible .ph-manager-banner__img--hover {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .ph-manager-banner-wrap {
    margin-bottom: 24px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1250px) {
  .ph-manager-banner-wrap {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
  }
}

/* Фильтры над таблицей товаров (desktop) */
@media (min-width: 1250px) {
  .catalog-pg__filters-above {
    position: relative;
    z-index: 30;
    margin-bottom: 1.5rem;
  }

  .catalog-pg__filters-above .catalog-pg__outer-wrapper {
    width: auto !important;
    display: block;
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    z-index: auto;
    overflow: visible;
    height: auto;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding-bottom: 0;
    margin-bottom: 0;
    background: transparent;
  }

  .catalog-pg__filters-above .catalog-pg__sidebar-header {
    display: none;
  }

  .catalog-pg__filters-above .catalog-pg__sidebar-inner {
    padding: 0;
  }

  .catalog-pg__filters-above .catalog-pg__filter-v {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
    padding: 1rem 1.5rem;
  }

  .catalog-pg__filters-above .catalog-pg__filter-item {
    border-bottom: none;
    flex: 0 0 auto;
  }

  .catalog-pg__filters-above .filter-wr {
    position: relative;
    padding: 0;
  }

  .catalog-pg__filters-above .filter-wr__header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-width: 11rem;
    padding: 0.65rem 1.2rem;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
    margin: 0;
  }

  .catalog-pg__filters-above .filter-wr__header.active {
    border-color: #306bc9;
  }

  .catalog-pg__filters-above .filter-wr__title {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0.25rem;
  }

  .catalog-pg__filters-above .filter-wr__title::before {
    display: none !important;
    content: none !important;
  }

  .catalog-pg__filters-above .filter-wr__title strong {
    white-space: nowrap;
    font-weight: 600;
  }

  .catalog-pg__filters-above .filter-wr__header .icon {
    flex: 0 0 auto;
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
  }

  .catalog-pg__filters-above .filter-wr__header.active .icon {
    transform: rotate(180deg);
  }

  .catalog-pg__filters-above .filter-wr__body {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 100;
    min-width: 240px;
    max-width: 320px;
    max-height: 360px;
    overflow-y: auto;
    margin-top: 0;
    padding: 1rem 1.2rem;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .catalog-pg__filters-above .catalog-pg__filter-btns {
    padding: 0;
    flex: 0 0 auto;
    align-self: center;
    margin-left: auto;
  }

  .catalog-pg__filters-above .catalog-pg__filter-btns > .btn {
    width: auto;
  }
}

.catalog-pg__filter-btns > .catalog-pg__btn-reset,
.catalog-pg__filter-btns > .btn.catalog-pg__btn-reset {
  margin: 0 !important;
  font-size: 16px;
  text-transform: capitalize;
}

.pd-request {
  --pfb-primary: #2e68c3;
  --pfb-text: #170f49;
  --pfb-muted: #6f6c90;
  --pfb-border-strong: #d9dbe9;
  --pfb-white: #ffffff;
  --pfb-font: "Manrope", "Segoe UI", system-ui, sans-serif;

  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 96px;
  padding: 20px 16px;
  background: var(--pfb-white);
  border: 1.5px dashed var(--pfb-border-strong);
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-family: var(--pfb-font);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.pd-request:hover,
.pd-request:focus-visible {
  border-color: var(--pfb-primary);
  box-shadow: 0 2px 6px rgba(46, 104, 195, 0.12);
  outline: none;
  text-decoration: none;
}

.pd-request__icon {
  display: flex;
  color: var(--pfb-primary);
  margin-bottom: 2px;
}

.pd-request__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pd-request__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pfb-text);
  line-height: 1.35;
}

.pd-request__hint {
  font-size: 13px;
  color: var(--pfb-muted);
  line-height: 1.35;
}

#feedback-form-inline {
  scroll-margin-top: 160px;
}

/* Детальная товара: скрыть выбор количества */
.item-page .pd-cart__qty {
  display: none !important;
}

.pd-request-slot--mobile {
  display: none;
}

@media (max-width: 1249px) {
  .pd-request {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 0;
    padding: 14px 16px;
    text-align: left;
  }

  .pd-request__icon {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .pd-request__texts {
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
  }

  .pd-request__title {
    font-size: 15px;
  }

  .pd-request__hint {
    font-size: 12px;
  }

  .pd-request-slot--mobile {
    display: block;
    margin-bottom: 1.5rem;
  }

  .item-page:has(.pd-request-slot--mobile) .pd-request--cart,
  .item-page:has(.pd-request-slot--mobile) .pd-cart__processing-wrapper {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .pd-price__ask,
  .pd-price__ask .price {
    font-size: 36px;
  }
}

/* Детальная товара: ширина колонок описания и корзины */
@media (min-width: 1250px) {
  .item-page .b-row-ip__col-info > .b-row-ip__col-descr,
  .item-page .b-row-ip__col-info > .b-row-ip__col-cart {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 38rem;
    flex: 0 0 38rem;
    max-width: 38rem;
    min-width: 38rem;
    width: 38rem;
  }

  .item-page .b-row-ip__col-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 76rem;
    flex: 0 0 76rem;
    max-width: 76rem;
    width: 76rem;
  }
}

/* Блок описания товара: .douter / .dh2 / .dimg / .dp (legacy-разметка) */
.douter {
  --douter-title: #170f49;
  --douter-text: #484848;
  --douter-border: #eef0f6;
  --douter-radius: 12px;

  box-sizing: border-box;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--douter-text);
}

.douter::after {
  content: "";
  display: table;
  clear: both;
}

.douter .dh2 {
  clear: both;
  margin: 0 0 1rem;
  padding: 0;
  font-size: clamp(1.375rem, 3.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--douter-title);
}

.douter .dh2:not(:first-child) {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--douter-border);
}

.douter .dimg,
.douter figure {
  display: block;
  margin: 0 0 1rem;
  max-width: 100%;
}

.douter .dimg,
.douter figure img {
  width: 100%;
  height: auto;
  border-radius: var(--douter-radius);
  box-shadow: 0 4px 16px rgba(23, 15, 73, 0.08);
}

.douter figure {
  float: left;
  margin-right: 1.5rem;
}

.douter .dp {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--douter-text);
}

@media (min-width: 640px) {
  .douter .dimg,
  .douter figure {
    float: left;
    width: min(26%, 200px);
    margin: 0.25rem 1.25rem 0.75rem 0;
  }

  .douter .dp {
    overflow: hidden;
  }
}

@media (max-width: 639px) {
  .douter .dh2:not(:first-child) {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .douter .dimg,
  .douter figure {
    float: none;
    width: auto;
    max-width: 220px;
    margin-right: 0;
  }
}

/* Строчный список категории: таблица товаров */
.catalog-pg:has(.ph-product-table) .catalog-pg__options {
  display: none;
}

.ph-product-table {
  --ph-table-text: #170f49;
  --ph-table-muted: #6f6c90;
  --ph-table-border: #eef0f6;
  --ph-table-head: #f7f8fc;
  --ph-primary: #2e68c3;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--ph-table-text);
  border: 1px solid var(--ph-table-border);
  border-radius: 8px;
  overflow: hidden;
}

.ph-product-table__head,
.ph-product-table .item-line-c {
  display: grid;
  grid-template-columns: minmax(12rem, 2fr) repeat(3, minmax(6rem, 1fr)) minmax(
      7rem,
      0.9fr
    );
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--ph-table-border);
}

.ph-product-table__head {
  background: var(--ph-table-head);
  border-radius: 0;
  border-bottom: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ph-table-muted);
  text-transform: none;
}

.ph-product-table .item-line-c {
  margin: 0;
  background: #fff;
  position: relative;
  border: none;
  border-bottom: 1px solid var(--ph-table-border);
  border-radius: 0 !important;
  box-shadow: none;
  cursor: pointer;
}

.ph-product-table .item-line-c [itemprop="offers"] {
  display: none;
}

.ph-product-table .item-line-c:hover {
  background: #fafbff;
  box-shadow: none;
}

.ph-product-table .item-line-c:hover .item-line-c__title {
  color: var(--ph-primary);
}

.ph-product-table .item-line-c__title::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ph-product-table__more {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}

.ph-product-table.is-expanded .ph-product-table__more {
  max-height: 20000px;
}

@media (prefers-reduced-motion: reduce) {
  .ph-product-table__more {
    transition: none;
  }
}

.ph-product-table .item-line-c__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ph-table-text);
  text-decoration: none;
  min-width: 0;
}

.ph-product-table .item-line-c__title:hover {
  color: var(--ph-primary);
  text-decoration: none;
}

.ph-product-table .item-line-c__feat {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ph-table-text);
  min-width: 0;
  word-break: break-word;
}

.ph-product-table .item-line-c__price {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.ph-product-table .item-line-c__price .price--ask {
  font-weight: 500;
  color: var(--ph-table-muted);
}

button.ph-product-table__toggle {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1rem 0 0;
  padding: 0.9rem 1.25rem;
  border: 1px dashed var(--ph-primary) !important;
  border-radius: 12px;
  background: #fff !important;
  box-shadow: none;
  color: var(--ph-primary) !important;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

button.ph-product-table__toggle:hover,
button.ph-product-table__toggle:focus-visible {
  background: #f3f6fd !important;
  border-color: var(--ph-primary) !important;
  color: var(--ph-primary) !important;
  outline: none;
}

.ph-product-table.is-expanded button.ph-product-table__toggle {
  background: #f7f8fc !important;
}

@media (max-width: 1249px) {
  .ph-product-table__head {
    display: none;
  }

  .ph-product-table .item-line-c {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .ph-product-table .item-line-c__feat,
  .ph-product-table .item-line-c__feat.is-empty {
    display: none !important;
  }

  .ph-product-table .item-line-c__title {
    font-size: 14px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .ph-product-table .item-line-c__price {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 auto !important;
    flex: 0 0 auto !important;
    height: auto;
    min-height: 0;
    font-size: 18px;
    text-align: right;
  }

  .ph-product-table .item-line-c__price.is-empty {
    display: none;
  }
}

/* Sidebar catalog sections */
.home-pg__sidebar-menu {
  position: relative;
  z-index: 50;
}

.home-pg__sidebar-menu,
.home-pg__sidebar-menu .vert-m__list {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.home-pg__sidebar-menu .vert-m__list {
  border-radius: 0 0 8px 8px;
}

.home-pg__sidebar-menu .sidebar-menu-section {
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1.6rem;
}

.home-pg__sidebar-menu .sidebar-menu-section:not(.is-open) {
  overflow: hidden;
}

.home-pg__sidebar-menu .sidebar-menu-section.is-open,
.home-pg__sidebar-menu .sidebar-menu-section:hover {
  z-index: 5;
  overflow: visible;
}

.home-pg__sidebar-menu .vert-m__submenu {
  z-index: 7;
}

.home-pg__sidebar-menu
  .vert-m__list.side-menu
  > .vert-m__item
  > .vert-m__submenu {
  width: 46.8rem;
  max-width: calc(100vw - 28rem);
  max-height: calc(100vh - 24px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2rem 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  visibility: hidden;
}

.home-pg__sidebar-menu
  .vert-m__list.side-menu
  > .vert-m__item
  > .vert-m__submenu.is-placed {
  visibility: visible;
}

.home-pg__sidebar-menu
  .vert-m__list.side-menu
  > .vert-m__item
  > .vert-m__submenu
  > .vert-m__item {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.home-pg__sidebar-menu
  .vert-m__list.side-menu
  > .vert-m__item
  > .vert-m__submenu_ph-subcats
  > .vert-m__item {
  float: none;
  width: auto;
}

.home-pg__sidebar-menu
  .vert-m__list.side-menu
  > .vert-m__item
  > .vert-m__submenu_ph-subcats {
  padding: 2.4rem 1.2rem;
  width: 58rem;
  max-width: calc(100vw - 24rem);
}

.home-pg__sidebar-menu .vert-m__submenu_ph-subcats > .vert-m__item_subcats,
.home-pg__sidebar-menu
  .vert-m__submenu_ph-subcats
  > .vert-m__item_subcats:hover,
.home-pg__sidebar-menu
  .vert-m__submenu_ph-subcats
  > .vert-m__item_subcats.hover {
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.home-pg__sidebar-menu
  .vert-m__list.side-menu
  > .vert-m__item
  > .vert-m__submenu::after {
  content: "";
  display: table;
  clear: both;
}

.home-pg__sidebar-menu .sidebar-menu-section:last-child,
.home-pg__sidebar-menu > .vert-m:last-child {
  margin-bottom: 2.4rem;
}

.home-pg__sidebar-menu > .vert-m {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.home-pg__sidebar-menu .vert-m_g {
  width: 100%;
}

.home-pg__sidebar-menu
  .sidebar-menu-section
  .cat-menu-btn-desk.cat-menu-btn-desk_sec.on-sidebar {
  display: flex;
  width: 100%;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #444444 !important;
  border-radius: 8px 8px 0 0;
}

.home-pg__sidebar-menu
  .sidebar-menu-section:not(.is-open)
  .cat-menu-btn-desk.cat-menu-btn-desk_sec.on-sidebar {
  border-radius: 8px;
}

.home-pg__sidebar-menu
  .sidebar-menu-section
  .cat-menu-btn-desk.cat-menu-btn-desk_sec.on-sidebar:hover {
  background-color: #e8e8e8;
  color: #444444 !important;
}

.home-pg__sidebar-menu .sidebar-menu-section .cat-menu-btn-desk__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  line-height: 1.3;
  padding: 1.2rem 1.4rem;
}

.home-pg__sidebar-menu .sidebar-menu-section .cat-btn-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  white-space: normal;
  color: #444444 !important;
}

.home-pg__sidebar-menu .sidebar-menu-section .cat-btn-text__text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  color: #444444 !important;
}

.home-pg__sidebar-menu .sidebar-menu-section__toggle {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.home-pg__sidebar-menu .sidebar-menu-section__toggle-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background-color: #306bc9;
  border-radius: 50%;
  -webkit-transform: rotate(0deg) translate(0, 0);
  transform: rotate(0deg) translate(0, 0);
  -webkit-transition:
    width 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    height 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-radius 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    margin 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
  transition:
    width 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    height 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-radius 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    margin 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.home-pg__sidebar-menu .sidebar-menu-section__toggle-bar:last-child {
  -webkit-transition-delay: 40ms;
  transition-delay: 40ms;
}

.home-pg__sidebar-menu
  .sidebar-menu-section.is-open
  .sidebar-menu-section__toggle-bar {
  width: 10px;
  height: 2px;
  margin: -1px 0 0 -5px;
  border-radius: 1px;
}

.home-pg__sidebar-menu
  .sidebar-menu-section.is-open
  .sidebar-menu-section__toggle-bar:first-child {
  -webkit-transform: rotate(40deg) translate(-3px, 1px);
  transform: rotate(40deg) translate(-3px, 1px);
}

.home-pg__sidebar-menu
  .sidebar-menu-section.is-open
  .sidebar-menu-section__toggle-bar:last-child {
  -webkit-transform: rotate(-40deg) translate(3px, 1px);
  transform: rotate(-40deg) translate(3px, 1px);
}

.home-pg__sidebar-menu
  .sidebar-menu-section:not(.is-open)
  > .vert-m
  > .vert-m__list {
  height: 0;
  overflow: hidden;
}

.home-pg__sidebar-menu
  .sidebar-menu-section
  .vert-m__list
  > .vert-m__item:last-child {
  border-radius: 0 0 8px 8px;
}

@-webkit-keyframes sidebar-menu-item-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(-14px);
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes sidebar-menu-item-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(-14px);
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.home-pg__sidebar-menu
  .sidebar-menu-section.is-revealing
  > .vert-m
  > .vert-m__list
  > .vert-m__item {
  -webkit-animation: sidebar-menu-item-in 0.32s cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
  animation: sidebar-menu-item-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: calc(var(--sidebar-item-i, 0) * 45ms);
  animation-delay: calc(var(--sidebar-item-i, 0) * 45ms);
}

@media (prefers-reduced-motion: reduce) {
  .home-pg__sidebar-menu
    .sidebar-menu-section.is-revealing
    > .vert-m
    > .vert-m__list
    > .vert-m__item {
    -webkit-animation: none;
    animation: none;
  }
}

.home-pg__sidebar-menu .vert-m__item.active:not(.vert-m__item_minisubm),
.home-pg__sidebar-menu .vert-m__item.active:not(.vert-m__item_minisubm):hover {
  background-color: transparent;
}

.home-pg__sidebar-menu
  .vert-m__item.active:not(.vert-m__item_minisubm)
  > .vert-m__link {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.home-pg__sidebar-menu .vert-m__item.active > .vert-m__link,
.home-pg__sidebar-menu .vert-m__item.active > .vert-m__link .vert-m__text,
.home-pg__sidebar-menu .vert-m__item.active > .vert-m__link .vert-m__text-node {
  font-weight: 400;
  color: #306bc9;
}

.home-pg__sidebar-menu
  .vert-m__item.active
  > .vert-m__link
  .vert-m__arrow
  .icon,
.home-pg__sidebar-menu
  .vert-m__item.active
  > .vert-m__link
  .vert-m__arrow
  .icon-hover {
  color: #306bc9;
  fill: currentColor;
}

/* ===== Mobile mmenu: overlay left, blur, new content ===== */
@media (max-width: 1249px) {
  html.mm-wrapper_opening .mm-slideout,
  html.mm-wrapper_opened .mm-slideout {
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-filter: blur(6px);
    filter: blur(6px);
    pointer-events: none;
  }

  .mm-menu_offcanvas#mmenu,
  #mmenu.mm-menu_offcanvas {
    display: block !important;
    width: calc(100% - 40px);
    min-width: 0;
    max-width: none;
    z-index: 10002;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    visibility: hidden;
    pointer-events: none;
  }

  #mmenu.mm-menu_offcanvas.mm-menu_opened {
    visibility: visible;
    pointer-events: auto;
  }

  html.mm-wrapper_opening #mmenu.mm-menu_offcanvas.mm-menu_opened {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker,
  .mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
    background: rgba(255, 255, 255, 0.28) !important;
    opacity: 1 !important;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 10001 !important;
  }

  /* Nested panels slide from the left (same direction as root) */
  #mmenu.mm-menu .mm-panel {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  #mmenu.mm-menu .mm-panel_opened,
  #mmenu.mm-menu .mm-panel_opened-parent {
    -webkit-transform: none;
    transform: none;
  }

  #mmenu .mm-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 56px;
    padding-right: 56px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    background: #fff;
  }

  #mmenu .ph-mmenu-panel-root > .mm-navbar,
  #mmenu .mm-panels > .mm-panel:first-child > .mm-navbar {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    height: 56px;
    padding-left: 16px;
    padding-right: 48px;
  }

  #mmenu .ph-mmenu-panel-root {
    padding-top: 56px;
    padding-left: 16px;
    padding-right: 16px;
  }

  #mmenu .ph-mmenu-panel-root > .mm-listview {
    margin-left: 0;
    margin-right: 0;
  }

  #mmenu .ph-mmenu-logo,
  #mmenu .ph-mmenu-panel-root > .mm-navbar .mm-navbar__title,
  #mmenu .mm-panels > .mm-panel:first-child > .mm-navbar .mm-navbar__title {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    left: auto;
    right: auto;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 8px);
    margin: 0;
    padding: 0 !important;
    overflow: visible;
    text-align: left;
    line-height: 0;
    text-decoration: none;
  }

  #mmenu .ph-mmenu-logo__img {
    display: block;
    width: 160px;
    height: 13px;
    max-width: 160px;
    max-height: 13px;
    object-fit: contain;
    object-position: left center;
  }

  #mmenu .mm-panel:not(:first-child) > .mm-navbar {
    height: 56px;
  }

  #mmenu .mm-panel:not(:first-child) {
    padding-top: 56px;
    font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  }

  #mmenu .mm-panel:first-child .mm-navbar__title {
    color: inherit;
  }

  #mmenu .mm-panel:not(:first-child) .mm-navbar .mm-navbar__title {
    position: relative;
    left: auto;
    right: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
    text-align: left;
    font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1b2430;
    padding-left: 4px !important;
  }

  #mmenu .mm-navbar__btn.mm-btn_prev {
    width: 56px;
    height: 56px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 2;
  }

  #mmenu .mm-btn_prev:before {
    left: 20px;
    width: 10px;
    height: 10px;
    border-width: 2px;
    border-color: #5b6775;
  }

  #mmenu .mm-listitem {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  #mmenu .mobile-nav__item_catalog,
  #mmenu .mobile-nav__item_request,
  #mmenu .mobile-nav__item_callback-btn {
    position: relative;
    padding: 8px 0;
    font-weight: 400;
  }

  #mmenu .mobile-nav__item_catalog::after,
  #mmenu .mobile-nav__item_request::after,
  #mmenu .mobile-nav__item_callback-btn::after,
  #mmenu .mm-panel:first-child .mm-listitem:after {
    display: none !important;
    content: none !important;
    border: 0 !important;
  }

  #mmenu .mm-panel:not(:first-child) .mm-listitem {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 0 !important;
  }

  #mmenu .mm-panel:not(:first-child) .mm-listitem:after {
    display: block !important;
    content: "";
    left: 68px;
    right: 16px;
    border-bottom: 1px solid #e8edf3;
  }

  #mmenu .mm-panel:not(:first-child) .mm-listitem:last-child:after {
    display: none !important;
    content: none !important;
  }

  #mmenu .mm-panel:not(:first-child) .mm-listitem > .mm-listitem__text,
  #mmenu .mm-panel:not(:first-child) .mm-listitem > .mobile-nav__btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100% !important;
    min-width: 0;
    max-width: none !important;
    height: auto !important;
    min-height: 0;
    margin: 0;
    padding: 6px 16px !important;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25 !important;
    color: #1b2430;
    text-decoration: none;
    white-space: normal;
    -webkit-tap-highlight-color: transparent;
  }

  #mmenu
    .mm-panel:not(:first-child)
    .mm-listitem
    > .mm-listitem__text.mm-btn_next {
    padding-right: 52px !important;
  }

  #mmenu .mm-panel:not(:first-child) .mobile-nav__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 13px;
  }

  #mmenu .mm-panel:not(:first-child) .mobile-nav__icon,
  #mmenu .mm-panel:not(:first-child) .mobile-nav__icon_big {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f6f8fb;
    overflow: hidden;
  }

  #mmenu .mm-panel:not(:first-child) .mobile-nav__icon img,
  #mmenu .mm-panel:not(:first-child) .mobile-nav__icon_big img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  #mmenu
    .mm-panel:not(:first-child)
    .mm-listitem
    > .mm-listitem__text.mm-btn_next:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    left: auto;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    border: 0;
    border-radius: 50%;
    background: #f6f8fb;
    -webkit-transform: none;
    transform: none;
  }

  #mmenu .mm-panel:not(:first-child) .mm-listitem > .mm-btn_next:after {
    width: 8px;
    height: 8px;
    border-width: 2px;
    border-color: #8a93a0;
    left: auto;
    right: 23px;
    z-index: 1;
  }

  #mmenu .mm-panel:not(:first-child) .mm-listitem > .mm-listitem__text:active {
    background: #f6f8fb;
  }

  #mmenu .mobile-nav__item_catalog > .mobile-nav__btn,
  #mmenu .mobile-nav__item_catalog > a,
  #mmenu .mobile-nav__item_catalog > span,
  #mmenu .mobile-nav__item_catalog > .mm-listitem__text {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    box-sizing: border-box;
    width: auto;
    height: 38px !important;
    margin: 0;
    padding: 0 44px 0 14px !important;
    border: 1px solid #dee5ed;
    border-radius: 8px;
    background: #f6f8fb;
    background-image: none;
    color: #1b2430 !important;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1 !important;
    text-decoration: none;
    text-transform: none !important;
    white-space: nowrap;
  }

  #mmenu .mobile-nav__item_catalog > .mm-next,
  #mmenu .mobile-nav__item_catalog > a.mm-btn_next:not(.mm-listitem__text) {
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 38px;
    height: 38px !important;
    padding: 0 !important;
    background: transparent;
    z-index: 2;
  }

  #mmenu .mobile-nav__item_catalog > .mm-next:after,
  #mmenu .mobile-nav__item_catalog > .mm-next:before,
  #mmenu
    .mobile-nav__item_catalog
    > a.mm-btn_next:not(.mm-listitem__text):after,
  #mmenu
    .mobile-nav__item_catalog
    > a.mm-btn_next:not(.mm-listitem__text):before {
    border-color: #5b6775;
  }

  #mmenu .nh-menu-btn,
  #mmenu .ph-mmenu-btn {
    --nh-control-h: 38px;
    --nh-radius: 6px;
    --nh-font: Roboto, Arial, sans-serif;
    --nh-weight-medium: 500;

    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    width: 100%;
    height: 38px !important;
    padding: 0 14px !important;
    border: 0;
    border-radius: 6px;
    background-image: linear-gradient(90deg, #ffb085 0%, #ff8c52 100%);
    color: #fff !important;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1 !important;
    text-align: center;
    text-decoration: none;
    text-transform: none !important;
    white-space: nowrap;
    cursor: pointer;
  }

  #mmenu .nh-menu-btn:hover,
  #mmenu .nh-menu-btn:focus,
  #mmenu .ph-mmenu-btn:hover,
  #mmenu .ph-mmenu-btn:focus {
    text-decoration: none;
    filter: brightness(0.95);
    color: #fff !important;
  }

  #mmenu .nh-menu-btn__icon,
  #mmenu .mobile-nav__item_catalog .nh-menu-btn__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: inherit;
  }

  #mmenu .nh-menu-btn__text,
  #mmenu .mobile-nav__item_catalog .mobile-nav__text,
  #mmenu .mobile-nav__item_catalog .nh-menu-btn__text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: inherit;
    text-transform: none !important;
    white-space: nowrap;
  }

  #mmenu .mobile-nav__item_request > a,
  #mmenu .mobile-nav__item_callback-btn > a,
  #mmenu .mobile-nav__item_request .pd-request,
  #mmenu .mobile-nav__item_callback-btn .pd-request {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    height: auto !important;
    min-height: 0;
    padding: 14px 16px !important;
    text-align: left;
    line-height: 1.35 !important;
    background: #fff8f3 !important;
    border: 1px solid #ffb085 !important;
    border-radius: 12px !important;
    color: inherit;
    box-shadow: none;
  }

  #mmenu .mobile-nav__item_request .pd-request:hover,
  #mmenu .mobile-nav__item_callback-btn .pd-request:hover,
  #mmenu .mobile-nav__item_request > a:hover,
  #mmenu .mobile-nav__item_callback-btn > a:hover {
    border-color: #ff8c52 !important;
    background: #fff1e8 !important;
    box-shadow: 0 2px 8px rgba(255, 140, 82, 0.16);
  }

  #mmenu .pd-request--mmenu .pd-request__icon {
    color: #ff8c52;
  }

  #mmenu .pd-request--mmenu .pd-request__title {
    font-size: 15px;
    font-weight: 700;
    color: #1b2430;
  }

  #mmenu .pd-request--mmenu .pd-request__texts {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #mmenu .mobile-nav__close {
    width: 56px;
    height: 56px;
    z-index: 3;
  }

  #mmenu .mobile-nav__close::before,
  #mmenu .mobile-nav__close::after {
    width: 16px;
    height: 2px;
  }

  .ph-mmenu-sales {
    font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
    color: #1b2430;
    padding: 8px 0 24px;
    box-sizing: border-box;
  }

  .ph-mmenu-sales[hidden] {
    display: none !important;
  }

  .ph-mmenu-sales__section {
    padding: 14px 16px 16px;
    border-radius: 12px;
    background: #f6f8fb;
    border: 1px solid #e8edf3;
  }

  .ph-mmenu-sales__label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #8a93a0;
  }

  .ph-mmenu-sales__hours {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #8a93a0;
  }

  .ph-mmenu-sales__phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin: 0;
  }

  .ph-mmenu-sales__phone,
  .ph-mmenu-sales__email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: #1b2430;
    text-decoration: none;
  }

  .ph-mmenu-sales__phone-icon,
  .ph-mmenu-sales__email-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #2e68c3;
  }

  .ph-mmenu-sales__phone-icon svg,
  .ph-mmenu-sales__email-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }

  .ph-mmenu-sales__phone:hover,
  .ph-mmenu-sales__email:hover {
    color: #2e68c3;
  }

  .ph-mmenu-sales__email {
    margin-top: 8px;
  }

  .ph-mmenu-sales__managers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 0;
  }

  .ph-mmenu-sales__person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 10px;
    background: #fff;
  }

  .ph-mmenu-sales__avatar {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #d9e4f2;
  }

  .ph-mmenu-sales__avatar img {
    position: absolute;
    inset: 0;
    display: block;
    width: 44px;
    height: 44px;
    object-fit: cover;
    z-index: 1;
  }

  .ph-mmenu-sales__initials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2e68c3;
    background: #d9e4f2;
  }

  .ph-mmenu-sales__meta {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .ph-mmenu-sales__name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .ph-mmenu-sales__role {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.3;
    color: #5b6775;
  }

  #mmenu .mm-panel:not(:first-child) .mobile-nav__item_l1-group.mm-listitem {
    min-height: 0 !important;
    padding: 8px 16px 8px 0;
    background: #f2f6ff;
  }

  #mmenu
    .mm-panel:not(:first-child)
    .mobile-nav__item_l1-group.mm-listitem:after {
    display: none !important;
    content: none !important;
    border: 0 !important;
  }

  #mmenu .mm-panel:not(:first-child) .mobile-nav__item_l1-group_sep {
    margin-top: 24px;
    padding-top: 0;
  }

  #mmenu .mm-panel:not(:first-child) .mm-listitem > .mobile-nav__btn_l1-group,
  #mmenu
    .mm-panel:not(:first-child)
    .mm-listitem
    > .mobile-nav__btn_l1-group.mm-listitem__text {
    padding: 0 0 0 16px !important;
    min-height: 0 !important;
  }

  #mmenu .mobile-nav__btn_l1-group {
    display: block !important;
    min-height: 0 !important;
    padding: 0 0 0 16px !important;
    pointer-events: none;
    cursor: default;
    background: transparent !important;
  }

  #mmenu .mobile-nav__btn_l1-group .mobile-nav__group-title {
    margin: 0;
  }

  #mmenu .mobile-nav__group-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #1b2430;
  }

  #mmenu .mm-panel:not(:first-child):has(.mobile-nav__list_ph-subcats) {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #mmenu .mm-panel:not(:first-child) .mobile-nav__list_ph-subcats {
    padding: 0;
  }
}

.catalog-pg__descr {
  font-size: 16px;
}

.catalog-pg__catalog-title {
  margin: 96px 0 24px;
  padding: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.breadcrumbs.breadcrumbs_border {
  margin-bottom: 24px;
}

.ph-subcats {
  margin: 0 0 24px;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
}

.ph-subcats_mobile {
  display: none;
}

.ph-subcats_collapsed .ph-subcats__full {
  display: none;
}

.ph-subcats:not(.ph-subcats_collapsed) .ph-subcats__preview {
  display: none;
}

.ph-subcats__group-title {
  margin: 0 0 12px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #5b6775;
}

.ph-subcats__group + .ph-subcats__group {
  margin-top: 28px;
}

.ph-subcats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.ph-subcats__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 0;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #ffb085;
  border-radius: 10px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  line-height: 1.35;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.ph-subcats__card:hover,
.ph-subcats__card:focus-visible {
  border-color: #ff8c52;
  background: #fff1e8;
  box-shadow: 0 2px 8px rgba(255, 140, 82, 0.16);
  text-decoration: none;
  outline: none;
}

.ph-subcats__more {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 0;
  padding: 6px 10px;
  background: #fff8f3;
  border: 1px solid #ffb085;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #1b2430;
  line-height: 1.25;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.ph-subcats__more:hover,
.ph-subcats__more:focus-visible {
  border-color: #ff8c52;
  background: #fff1e8;
  box-shadow: 0 2px 8px rgba(255, 140, 82, 0.16);
  text-decoration: none;
  color: #1b2430;
  outline: none;
}

.ph-subcats__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  color: #ff8c52;
}

.ph-subcats__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ph-subcats__texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.ph-subcats__title {
  font-size: 13px;
  font-weight: 700;
  color: #1b2430;
  line-height: 1.25;
}

.ph-subcats__slider {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ph-subcats__slider::-webkit-scrollbar {
  display: none;
}

.ph-subcats__slider .ph-subcats__card {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 8px 10px;
  gap: 8px;
}

.ph-subcats__slider .ph-subcats__icon {
  width: 32px;
  height: 32px;
}

.ph-subcats__slider .ph-subcats__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .ph-subcats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ph-subcats__preview .ph-subcats__card_preview-last {
    display: none;
  }
}

@media (max-width: 767px) {
  .ph-subcats_page .ph-subcats_desktop {
    display: none;
  }

  .ph-subcats_page .ph-subcats_mobile {
    display: block;
  }

  .ph-subcats__icon {
    width: 32px;
    height: 32px;
  }

  .ph-subcats__card {
    padding: 8px 10px;
    gap: 8px;
  }

  .ph-subcats__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
  }
}

.ph-subcats_sidebar {
  margin: 0;
}

.ph-subcats_sidebar .ph-subcats__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.ph-subcats_sidebar .ph-subcats__card {
  border: none;
  background: rgba(0, 0, 0, 0.035);
  box-shadow: none;
}

.ph-subcats_sidebar .ph-subcats__card:hover,
.ph-subcats_sidebar .ph-subcats__card:focus-visible {
  border: none;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: none;
}

.ph-subcats_sidebar .ph-subcats__group-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1b2430;
}

.ph-subcats_sidebar .ph-subcats__group + .ph-subcats__group {
  margin-top: 16px;
}

.ph-subcats_header {
  margin: 0;
}

.menu-categ .ph-subcats_header .ph-subcats__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.vert-m__submenu-book .ph-subcats_header {
  padding: 2rem 3rem 1.5rem;
}

.vert-m__submenu-book .ph-subcats_header .ph-subcats__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.ph-subcats_header .ph-subcats__card {
  border: none;
  background: rgba(0, 0, 0, 0.035);
  box-shadow: none;
}

.ph-subcats_header .ph-subcats__card:hover,
.ph-subcats_header .ph-subcats__card:focus-visible {
  border: none;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: none;
}

.ph-subcats_header .ph-subcats__group-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1b2430;
}

.ph-subcats_header .ph-subcats__group + .ph-subcats__group {
  margin-top: 24px;
}

.site-header__nav_btn-mega {
  width: min(129rem, var(--header-nav-max-width, calc(100vw - 3rem)));
  max-width: var(--header-nav-max-width, calc(100vw - 3rem));
  box-sizing: border-box;
  overflow: hidden;
}

.site-header__nav_btn-mega .book-m {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.site-header__nav_btn-mega .book-m__side-menu {
  width: 23.4rem;
  flex-shrink: 0;
}

.site-header__nav_btn-mega .book-m__side-menu .vert-m__list,
.site-header__nav_btn-mega .book-m__side-menu .vert-m__item {
  position: static;
}

.site-header__nav_btn-mega .vert-m__submenu-book {
  left: 23.4rem;
  right: 0;
  width: auto;
  max-width: none;
  overflow-x: auto;
  overflow-y: auto;
  box-sizing: border-box;
}

.site-header__nav_btn-mega .book-m__side-menu .vert-m__link {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__nav_btn-mega .book-m__side-menu .vert-m__text,
.site-header__nav_btn-mega .book-m__side-menu .vert-m__text-node {
  font-size: 1.3rem;
}

@media (max-width: 1024px) {
  .ph-subcats_sidebar .ph-subcats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .menu-categ .ph-subcats_header .ph-subcats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vert-m__submenu-book .ph-subcats_header .ph-subcats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-pg__descr {
    font-size: 12px;
  }

  .catalog-pg__catalog-title {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .breadcrumbs.breadcrumbs_border {
    margin-bottom: 16px;
  }
}

.tf-landing .tf-mosaic-p1 .tf-mosaic-wash,
.tf-landing .tf-mosaic-p3 .tf-mosaic-wash {
  background: linear-gradient(
    180deg,
    rgba(45, 100, 188, 0) 0%,
    rgba(45, 100, 188, 0.48) 100%
  ) !important;
}

/* «От заявки до объекта»: цифра | title + subtitle, пунктир между номерами */
.tf-landing .tf-produce-list {
  --tf-step-num-col: 6.5rem;
  --tf-step-num-size: clamp(40px, 5.5vw, 56px);
  --tf-step-gap: 28px;
}

.tf-landing .tf-produce-list .tf-card {
  display: grid !important;
  grid-template-columns: var(--tf-step-num-col) minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  position: relative;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-top: none !important;
  border-radius: 0 !important;
}

.tf-landing .tf-produce-list .tf-card::before {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tf-step-num-col);
  margin: 0 !important;
  text-align: center;
  line-height: 1;
  background: #fff;
}

.tf-landing .tf-produce-list .tf-card:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(var(--tf-step-num-col) / 2);
  top: calc(50% + var(--tf-step-num-size) / 2 + 8px);
  bottom: calc(
    -1 * var(--tf-step-gap) + 50% - var(--tf-step-num-size) / 2 - 8px
  );
  width: 0;
  border-left: 1px dashed rgba(232, 117, 42, 0.4);
  transform: translateX(-50%);
  pointer-events: none;
}

.tf-landing .tf-produce-list .tf-card > * {
  grid-column: 2;
  min-width: 0;
}

.tf-landing .tf-produce-list .tf-card > :first-child,
.tf-landing .tf-produce-list .tf-card > .tf-produce-step__title {
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.35;
  color: var(--tf-text, #1a1a1a) !important;
}

.tf-landing .tf-produce-list .tf-card > :nth-child(n + 2),
.tf-landing .tf-produce-list .tf-card > .tf-produce-step__subtitle {
  margin: 4px 0 0 !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  line-height: 1.4;
  color: var(--tf-muted, #6c757d) !important;
}

@media (max-width: 767px) {
  .tf-landing .tf-produce-list {
    --tf-step-num-col: 48px;
    --tf-step-num-size: 42px;
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .tf-landing .tf-produce-list .tf-card {
    grid-template-columns: 48px minmax(0, 1fr);
    width: 100%;
  }

  .home-pg .b-row {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Колонка контента по внутренней ширине шапки (.nh-row / .nh-nav: 36px) */
@media (min-width: 1250px) {
  .wrapper {
    width: 100%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: 36px;
    padding-right: 36px;
  }

  .boxed-ui-style {
    width: min(1353px, 100%);
    max-width: 100%;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
  }

  .wrapper .b-row,
  .wrapper .row,
  .wrapper .layout-center,
  .wrapper .b-c-row,
  .wrapper .compare-row {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .wrapper .b-row .col-4-of-5,
  .wrapper .b-row .col-3-of-5 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .catalog-pg__content .home-pg__section,
  .catalog-pg__content .home-promo-wr-2,
  .col-1-of-5 + .col-4-of-5 .home-pg__section,
  .col-1-of-5 + .col-4-of-5 .home-promo-wr-2 {
    width: 100%;
    max-width: 100%;
  }
}

/* ===== Redesigned footer (.phsf) ===== */
.phsf {
  --phsf-bg: #306bc9;
  --phsf-text: #fff;
  --phsf-muted: rgba(255, 255, 255, 0.78);
  --phsf-line: rgba(255, 255, 255, 0.18);
  --phsf-accent: #ff8c52;
  --phsf-pad-y: clamp(24px, 2.5vw, 36px);
  --phsf-pad-x: clamp(16px, 3vw, 28px);
  --phsf-gap: clamp(16px, 2vw, 28px);
  --phsf-row-gap: 16px;
  --phsf-logo-max: 333px;
  --phsf-about: clamp(13px, 1.1vw, 15px);
  --phsf-cta-title: clamp(20px, 2.2vw, 28px);
  --phsf-cta-text: clamp(14px, 1.2vw, 16px);
  --phsf-dept: clamp(12px, 1vw, 13px);
  --phsf-phone: clamp(18px, 2vw, 24px);
  --phsf-email: clamp(15px, 1.4vw, 18px);
  --phsf-nav: clamp(14px, 1.2vw, 16px);
  width: 100%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background-color: var(--phsf-bg) !important;
  color: var(--phsf-text);
  align-self: center;
}

.phsf.site-footer_dark {
  background-color: var(--phsf-bg) !important;
}

@media (min-width: 1250px) {
  .boxed .phsf.site-footer_dark,
  .boxed .phsf {
    background-color: var(--phsf-bg) !important;
    max-width: 1350px;
  }

  .phsf .site-footer__top,
  .phsf .phsf__inner {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

.phsf .site-footer__top,
.phsf .phsf__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: var(--phsf-pad-y) var(--phsf-pad-x) !important;
  margin: 0;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.phsf .site-footer__bottom {
  display: none !important;
}

.phsf__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--phsf-gap);
}

.phsf__rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: var(--phsf-line);
  flex-shrink: 0;
}

.phsf__row--brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
}

.phsf__brand {
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  min-width: auto;
  max-width: none;
  position: relative;
  z-index: 1;
}

.phsf__logo {
  display: inline-block;
  flex-shrink: 0;
  max-width: var(--phsf-logo-max);
  width: var(--phsf-logo-max);
}

.phsf__logo img {
  display: block;
  width: var(--phsf-logo-max);
  max-width: none;
  height: auto;
}

.phsf__about {
  margin-top: 0;
  margin-left: 64px;
  max-width: 36em;
  position: relative;
  top: -14px;
  left: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
}

.phsf__cta {
  flex: 0 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
  min-width: 0;
  width: auto;
  max-width: none;
  box-sizing: border-box;
}

.phsf__cta-media {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.phsf__cta-body {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1139px) {
  .phsf__cta-media {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .phsf__cta-body {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .phsf__pd-request {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-left: 0 !important;
  }
}

.phsf__cta-title {
  margin: 0;
  font-size: var(--phsf-cta-title);
  font-weight: 600;
  line-height: 1.25;
  color: var(--phsf-text);
  white-space: nowrap;
}

.phsf__cta-text {
  margin: 0;
  font-size: var(--phsf-cta-text);
  line-height: 1.45;
  color: #ffffff;
}

.phsf .pd-request,
.phsf__pd-request {
  flex: 0 0 auto;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  min-height: 0 !important;
  margin-left: auto;
  padding: 8px 12px !important;
  text-align: left !important;
  width: auto !important;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 8px !important;
}

.phsf .pd-request__icon,
.phsf.site-footer_dark .pd-request__icon,
.site-footer_dark.phsf .pd-request__icon {
  margin-bottom: 0 !important;
  flex: 0 0 auto;
  width: 18px !important;
  height: 18px !important;
  color: #2e68c3 !important;
}

.phsf .pd-request__icon svg {
  width: 18px !important;
  height: 18px !important;
}

.phsf .pd-request__title {
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.phsf .pd-request__hint {
  font-size: 11px !important;
  line-height: 1.3 !important;
}

.phsf .pd-request__icon svg,
.phsf .pd-request__icon path,
.phsf.site-footer_dark .pd-request__icon svg,
.phsf.site-footer_dark .pd-request__icon path,
.site-footer_dark.phsf .pd-request__icon svg,
.site-footer_dark.phsf .pd-request__icon path {
  color: #2e68c3 !important;
  stroke: #2e68c3 !important;
  fill: none !important;
}

.phsf .pd-request__texts {
  align-items: flex-start !important;
}

.phsf__row--contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--phsf-gap);
}

.phsf__dept {
  min-width: 0;
}

.phsf__dept-name {
  margin: 0 0 6px;
  font-size: var(--phsf-dept);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--phsf-muted);
  line-height: 1.3;
}

.phsf__dept-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--phsf-phone);
  font-weight: 600;
  line-height: 1.2;
  color: var(--phsf-text) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.phsf__dept-phone:hover,
.phsf__dept-phone:focus-visible {
  color: var(--phsf-accent) !important;
  text-decoration: none !important;
}

.phsf__email-wrap {
  min-width: 0;
}

.phsf__email-wrap.ph-email-mask {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 6px !important;
  min-width: 0;
  max-width: 100%;
}

.phsf__email-head {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  flex-wrap: wrap;
  order: 0;
}

.phsf__email-head .ph-email-mask__btn {
  flex: 0 0 auto;
}

.phsf__email-wrap.ph-email-mask > .phsf__email {
  order: 1;
  width: 100%;
}

.phsf__email-label {
  margin: 0;
  font-size: var(--phsf-dept);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--phsf-muted);
  line-height: 1.3;
}

.phsf__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--phsf-phone);
  font-weight: 600;
  line-height: 1.2;
  color: var(--phsf-text) !important;
  text-decoration: none !important;
  word-break: break-all;
}

.phsf__email .ph-email-mask__link {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.phsf__email .ph-email-mask__link:hover,
.phsf__email .ph-email-mask__link:focus-visible {
  color: var(--phsf-accent) !important;
}

.ph-email-mask {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-width: 0;
  max-width: 100%;
}

.ph-email-mask__link {
  min-width: 0;
  word-break: break-all;
}

button.ph-email-mask__btn,
.ph-email-mask button.ph-email-mask__btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 2px 8px !important;
  min-height: 0 !important;
  min-width: 0 !important;
  height: auto !important;
  width: auto !important;
  border: 1px solid currentColor !important;
  border-radius: 4px !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  opacity: 1 !important;
}

.phsf button.ph-email-mask__btn,
.phsf .ph-email-mask button.ph-email-mask__btn,
.phsf__email button.ph-email-mask__btn {
  background: rgba(255, 255, 255, 0.14) !important;
  background-color: rgba(255, 255, 255, 0.14) !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 16px !important;
  padding: 2px 8px !important;
}

.phsf button.ph-email-mask__btn:hover,
.phsf button.ph-email-mask__btn:focus-visible,
.phsf .ph-email-mask button.ph-email-mask__btn:hover,
.phsf .ph-email-mask button.ph-email-mask__btn:focus-visible,
.phsf__email button.ph-email-mask__btn:hover,
.phsf__email button.ph-email-mask__btn:focus-visible {
  background: rgba(255, 255, 255, 0.22) !important;
  background-color: rgba(255, 255, 255, 0.22) !important;
  border: 0 !important;
  border-color: transparent !important;
  color: #ffffff !important;
}

.ph-contacts button.ph-email-mask__btn,
.ph-contacts .ph-email-mask button.ph-email-mask__btn {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid #2e68c3 !important;
  border-color: #2e68c3 !important;
  color: #2e68c3 !important;
  font-size: 16px !important;
  padding: 2px 8px !important;
}

.ph-contacts button.ph-email-mask__btn:hover,
.ph-contacts button.ph-email-mask__btn:focus-visible,
.ph-contacts .ph-email-mask button.ph-email-mask__btn:hover,
.ph-contacts .ph-email-mask button.ph-email-mask__btn:focus-visible {
  background: #ffffff !important;
  border-color: #2458a8 !important;
  color: #2458a8 !important;
}

@media (max-width: 767px) {
  .phsf button.ph-email-mask__btn,
  .phsf .ph-email-mask button.ph-email-mask__btn,
  .phsf__email button.ph-email-mask__btn {
    font-size: 14px !important;
    padding: 1px 6px !important;
  }

  .ph-contacts button.ph-email-mask__btn,
  .ph-contacts .ph-email-mask button.ph-email-mask__btn {
    font-size: 12px !important;
    padding: 1px 6px !important;
  }
}

.phsf__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  color: inherit;
}

.phsf__contact-icon svg,
.phsf__contact-icon .nh-icon {
  display: block;
  width: 1em;
  height: 1em;
}

.phsf__contact-text {
  min-width: 0;
}

.phsf__all-wrap {
  margin-left: 0;
}

.phsf__all-contacts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 40px;
  padding: 0 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  background: transparent;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.phsf__all-contacts:hover,
.phsf__all-contacts:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff !important;
  text-decoration: none !important;
}

.phsf__row--nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.phsf__nav-link {
  font-size: var(--phsf-nav);
  font-weight: 500;
  color: var(--phsf-text) !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.phsf__nav-link:hover,
.phsf__nav-link:focus-visible {
  color: var(--phsf-accent) !important;
  text-decoration: none !important;
}

@media (max-width: 1023px) {
  .phsf__row--brand {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .phsf__cta {
    flex: 0 0 auto;
    flex-grow: 0;
    width: auto;
    max-width: none;
  }

  .phsf__row--contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .phsf__all-wrap {
    margin-left: 0;
  }

  .phsf__all-contacts {
    width: auto;
  }
}

@media (max-width: 767px) {
  .phsf .site-footer__top,
  .phsf .phsf__inner {
    gap: 32px;
    padding-bottom: 12px !important;
  }

  .phsf__rule {
    display: none;
  }

  .phsf__about {
    margin-left: 44px;
    left: 0;
    top: -12px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
  }

  .phsf__logo {
    width: 230px;
    max-width: 230px;
  }

  .phsf__logo img {
    width: 230px;
    max-width: 230px;
  }

  .phsf__row--brand {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .phsf__brand {
    flex-shrink: 0;
  }

  .phsf__cta {
    justify-content: flex-start;
    align-items: center;
    flex: 1 1 auto;
    width: calc(100% + (2 * var(--phsf-pad-x)));
    max-width: none;
    margin-left: calc(-1 * var(--phsf-pad-x));
    margin-right: calc(-1 * var(--phsf-pad-x));
    padding: 32px var(--phsf-pad-x);
    box-sizing: border-box;
    background: #275eb8;
  }

  .phsf__cta-body {
    flex: 0 1 auto;
    min-width: 0;
  }

  .phsf .pd-request,
  .phsf__pd-request {
    margin-left: 0 !important;
    flex: 0 0 auto;
  }

  .phsf__row--contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    column-gap: 12px;
    row-gap: 32px;
  }

  .phsf__dept {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
    min-width: 0;
  }

  .phsf__email-wrap {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .phsf__all-wrap {
    flex: 0 0 auto;
    margin-left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .phsf__all-contacts {
    width: auto;
    max-width: none;
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .phsf__row--nav {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .phsf__nav-link {
    font-size: 12px;
    opacity: 0.5;
  }

  .phsf__dept-phone {
    white-space: normal;
    font-size: 16px;
  }

  .phsf__email,
  .phsf__email .ph-email-mask__link {
    font-size: 16px;
  }
}
