@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import "https://www.nwht.ru/kober/NWHT2/headerFooter/global.css";
@import "https://www.nwht.ru/kober/NWHT2/headerFooter/reset.css";

body {
  font-family: "Manrope", serif;
  background-color: var(--bg);
  font-size: var(--base);
}

:root {
  --h2: 38px;
  --h3: 22px;
  --marginBlock: 56px;
}

.none {
  display: none !important;
}

#headerfixed {
  display: none !important;
}

.wrapper {
  display: grid;
  grid-template-areas:
    "header"
    "main"
    "footer";
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.footer-review__block-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/*! Header-Fixed */
.header-top,
.header-main {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--white);
}

.header--options {
  /* position: fixed; */
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--white);
}

.header-top {
  position: unset !important;
  top: 0;
}


/*! -- Header -- */
.header {
  position: relative;
  z-index: 1002;
  grid-area: header;
  /* padding-top: calc(var(--padding) * 3); */ 
  padding-bottom: 16px;
  background-color: #fff;
}

.header-wrapper {
  max-width: unset !important;
  margin: 0 auto;
  padding: 0 calc(var(--padding) * 2);
}

/*! -- Header-Top -- */

.header-top {
  padding: 0 23px;
}

.header-wrapper--top {
  max-width: 1400px;
  margin: 0 auto;
  padding-right: 22px;
  padding-left: 12px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: var(--base);
  font-weight: var(--text-Bold);
}

.header-nav__item {
  padding-left: 0;
}

.header-nav::before,
.header-nav__item::before {
  display: none !important;
  content: none;
}

.header-faces {
  display: flex;
  gap: 10px;
  transition: all .3s ease-in-out;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--orange);
  margin-left: 12px;
}

.header-faces:hover {
  color: #1976D2 !important;
  color: var(--primary-Accent);
  background-color: var(--hover-Bg);
}

.header-faces svg path {
  transition: stroke 0.3s ease;
}
.header-faces:hover svg path {
  stroke: #1976D2;
}

.header-faces p {
  margin: 0 !important
}

.header-nav__list {
  display: flex;
  gap: 24px;
  font-size: var(--base);
  font-weight: var(--text-Bold);
  align-items: center;
}

.header-nav__link {
  transition: all .3s ease-in-out;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: #000;
}

.header-nav__link:hover {
  color: var(--primary-Accent);
  background-color: var(--hover-Bg);
}

.header-about {
  display: flex;
  gap: calc(var(--margin) * 3);
  align-items: center;
}

.header-about__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--text-Medium);
}

.header-about__link span {
  font-family: Manrope !important;
  font-size: 16px;
  color: #000;
}

.header-about__link--active {
  color: var(--primary-Accent);
  transition: .2s ease;
  font-weight: var(--text-Bold);
}

.header-about__link--active span {
  color: #1976D2;
}

.header-about__link--active:hover {
  color: var(--hover-Seek);
}

.header-about__link--active svg {
  transition: stroke .2s ease;
  stroke: var(--hover-Seek);

}

.header-about__link--active svg:hover {
  stroke: var(--hover-Seek);
}



.header-actions {
  display: flex;
  align-items: center;
  gap: calc(var(--margin) * 6);
  font-size: var(--sm) !important;
  color: var(--text-Accent) !important;
  font-weight: var(--text-Bold) !important;
}

.header-actions a {
  font-family: Manrope;
  color: #707070;
}
.header-actions__favorites:hover a {
  color: #1976D2;
}

.header-actions__favorites {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: calc(var(--margin) / 2);
  align-items: center;
  transition: .2s ease;
}

.js-basket-block .count {
  position: absolute;
  top: 0;
  right: 12px;
  background: #e30613 !important;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.js-basket-block .basket-count {
  right: 6px !important;
}



.header-actions__favorites:hover {
  color: var(--primary-Accent);
}

.header-actions__favorites:hover svg path {
  stroke: var(--primary-Accent);
}

.header-actions__basket {
  display: flex;
  flex-direction: column;
  gap: calc(var(--margin) / 2);
  align-items: center;
  transition: .2s ease;
}

.header-actions__basket:hover {
  color: var(--primary-Accent);
}

.header-actions__basket:hover svg path {
  stroke: var(--primary-Accent);
}

.header-actions__person {
  display: flex;
  flex-direction: column;
  gap: calc(var(--margin) / 2);
  align-items: center;
  transition: .2s ease;
}

.header-actions__person:hover {
  color: var(--primary-Accent);
}

.header-actions__person:hover svg path {
  stroke: var(--primary-Accent);
}

/*! -- Header-Main -- */
/* .header--options {
  margin-top: calc(var(--margin) * 4);
} */

.header-main {
  margin-top: 16px;
  padding-bottom: calc(var(--padding) * 2);
}

.header-main__logo {
  width: 134px;
  height: 48px;
}

.header--options.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-main__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--margin) * 3);
}

.header-main {
  position: relative;
}

.header-main__btn {
  display: flex;
  gap: var(--margin);
  align-items: center;
  padding: 12px calc(var(--padding) * 2);
  background-color: var(--primary-Accent);
  color: var(--white);
  border-radius: 12px;
}

.header-main__btn span {
  font-size: var(--sm);
  font-weight: var(--text-Bold);
}

.header-main__search {
  background-color: var(--primary-Accent);
  padding: 1px;
  width: 100%;
  max-width: 754px;
  border-radius: 12px;
  position: relative;
  height: 48px !important;
  z-index: 1300 !important;
}

/* .title-search-result .title-search-input_fixed {
  position: fixed !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
} */
.title-search-result {
  position: fixed !important;
  top: 92px !important;
  margin-top: 46px !important;
}

.search-overlay {
  display: none;
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 40, 40, 0.45);
  transition: opacity 0.3s;
  pointer-events: none;
}
.search-overlay.active {
  display: block;
  pointer-events: auto;
}
.header-main__search-input {
  height: 44px !important;
  width: 91% !important;
  max-width: 691px !important;
  position: absolute !important;
  top: 2px !important;
  left: 2px !important;
  border: none !important;
  border-radius: var(--radius-medium) !important;
  outline: none ;
  padding: 0 14px !important;
}

.search-input {
  height: 44px !important;
  width: 91% !important;
  max-width: 691px !important;
  position: absolute !important;
  top: 2px !important;
  left: 2px !important;
  border: none !important;
  border-radius: var(--radius-medium) !important;
  outline: none ;
  padding: 0 14px !important;
}

.btn-search {
  /* display: none; */
  padding: 6px 12px !important;
  position: absolute;
  right: 12px;
  top: 3px !important;
  border: unset !important;
}

.btn-search img {
  height: 28px;
  width: 28px;
}

.inline-search-hide {
  display: none;
}

/*! Header-Catalog  */
.catalog-menu {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  /* column-gap: 32px; */
  row-gap: 50px;
  justify-content: space-between;
  padding-bottom: 32px;
  height: 675px;
  overflow-y: auto;
  padding-right: var(--padding);
}

.catalog-menu__link-title:hover {
  color: #1976D2;
}
.catalog-menu__link:hover {
  color: #1976D2;
}
.catalog-menu__title:hover {
  color: #1976D2;
}

.catalog-menu__block ul li::before { 
  content: none !important;
}

.catalog-menu__block {
  width: 257px;
}

.catalog-menu__item {
  padding-left: 0 !important;
  margin-bottom: 12px;
}

.catalog-menu::-webkit-scrollbar {
  width: 5px;
  background: #e6f0fa;
}

.catalog-menu::-webkit-scrollbar-thumb {
  background: var(--primary-Accent);
  border-radius: 8px;
}

.catalog-menu::-webkit-scrollbar-thumb:hover {
  background: #1565c0;
}

.catalog-menu__block img {
  width: 68px;
  height: 68px;
}

.catalog-menu__title {
  display: inline-block;
  font-family: Manrope;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #000;
  margin-top: 12px;
  margin-bottom: 32px;
}

.catalog-menu__link {
  font-family: Manrope;
  font-size: 13px;
  font-weight: var(--text-Medium);
  color: #000;
}

.catalog-menu__list ul {
  list-style: none !important;
  padding-left: 0 !important;
}


/*! Стили для кнопки каталога */
.header-main__btn {
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
  cursor: pointer;
}

.catalog-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.catalog-icon img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.icon-close {
  opacity: 0;
}

.catalog-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-radius: 0px 0px 24px 24px;
}

body.menu-open .catalog-overlay {
  opacity: 1;
  visibility: visible;
  display: block;
}

body.menu-open .catalog-menu-wrapper {
  max-height: 100vh;
}

/*! Header-Footer  */
.header-footer {
  /* margin-top: 150px; */
}

.header-footer__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 12px;
}

.header-footer__blocks {
  display: flex;
  align-items: center;
  gap: calc(var(--margin) * 3);
}

.header-footer__block {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s ease;
  cursor: pointer;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--text-Grey);
  height: 38px;
}

.header-footer__block:hover {
  background-color: var(--hover-Bg);
  color: var(--text);
}

.header-footer__block svg path {
  transition: stroke 0.3s ease;
}
.header-footer__block:hover svg path {
  /* fill: black !important; */
  stroke: black !important;
}

.black-icon:hover svg path {
  fill: black !important;
  stroke: unset !important;
}

.header-footer__block span {
  margin-top: 1px;
}

/*! Адаптация хедера */

.catalog-overlay {
  position: fixed;
  top: 200px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #53535380;
  z-index: 998;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.catalog-menu-wrapper.active {
  max-height: 90vh;
}

.catalog-menu {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
}


.header-main__btn.active .icon-open {
  opacity: 0;
}

.header-main__btn.active .icon-close {
  opacity: 1;
}

.catalog-menu__btn {
  font-size: var(--sm);
  font-weight: var(--text-Bold);
  color: var(--primary-Accent);
}

.icon-close {
  margin-top: 6px;
}

/*! -- Main -- */
.main {
  grid-area: main;
}

/*! -- Footer -- !*/
.footer {
  grid-area: footer;
  background-color: var(--bg-Accent);

}

.footer-wrapper {
  padding: calc(var(--padding) * 4);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.footer-contacts {
  align-items: end;
  padding-right: 60px;
}

.footer-logo {
  width: 215px;
  margin-bottom: 50px;
}

.footer-about {
  display: grid;
  grid-template-columns: auto auto;
}

.footer-about span {
  display: inline-block;
  color: var(--text-Grey);
  font-weight: var(--text-Medium);
  margin-bottom: 40px;
  font-size: var(--lg);
}

.about-company__list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--margin) * 3);
}

.about-company__item::before,
.about-company__link::before {
    display: none !important;
    content: none;
}

.about-company__item {
  padding-left: 0;
}

.about-buyers__item::before,
.about-buyers__link::before {
    display: none !important;
    content: none;
}

.about-buyers__item {
  padding-left: 0;
}

.about-company__link {
  font-weight: var(--text-Bold);
  transition: color .2s ease;
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #000;
}

.about-company__link:hover {
  color: var(--primary-Accent);
}


.about-buyers__list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--margin) * 3);
}


.about-buyers__link {
  font-weight: var(--text-Bold);
  transition: color .2s ease;
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #000;
}

.about-buyers__link:hover {
  color: var(--primary-Accent) !important;
}


.footer-contacts span {
  color: var(--text-Grey);
  font-size: var(--lg);
  font-weight: var(--text-Medium);
  margin-bottom: 40px;
  display: inline-block;
}

.footer-contacts__blocks {
  display: flex;
  gap: calc(var(--margin) * 6);
}

.footer-contacts__block {
  display: flex;
  flex-direction: column;
  gap: calc(var(--margin) * 3);
}

.footer-contacts__block div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts__title {
  font-size: var(--lg);
  font-weight: var(--text-Bold);
  color: #000;
}

.footer-contacts__email {
  color: var(--primary-Accent);
}

.footer-contacts__block a {
  transition: color .2s ease;
}

.footer-contacts__block a:hover {
  color: var(--primary-Accent);
}

.footer-contacts__wrapper {
  font-family: 'Manrope';
  font-size: 16px;
}

.address {
  margin-top: 41px;
}

.address-title {
  font-size: var(--lg);
  font-weight: var(--text-Bold);
  color: #000;
}

.address-block {
  max-width: 460px;
}

.address-block__content {
  max-width: 441px;
}
.address-block__content button img{
  width: 24px;
  height: 24px;
}

.address-btn {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  color: #1976D2;
}

.address-block__text {
  margin-top: 12px;
}

.email-copy-wrapper {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
}

.copy-icon {
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  margin-bottom: 0 !important;
}

.toast {
  position: fixed;
  top: 220px;
  left: 50%;
  transform: translate(-50%, -20px);
  background-color: #1976D2;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.schedule {
  margin-top: 41px;
}

.schedule-title {
  font-size: var(--lg);
  font-weight: var(--text-Bold);
  color: #000;
}

.schedule-blocks {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  gap: 12px;
}

.schedule-block {
  display: flex;
  gap: 105px;
}

.schedule-block__days {
  font-weight: var(--text-Regular);
  margin: 0 !important;
}

.schedule-block__hours {
  font-weight: var(--text-Medium);
  margin: 0 !important;
}

.footer-review {
  margin-top: 43px;
}

.footer-review__blocks {
  display: flex;
  gap: calc(var(--margin) * 3);
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.footer-review__block:hover{
  background-color: var(--hover-Bg);
}
.footer-review__block span {
  color: var(--text-Grey);
  font-size: var(--sm);
  font-weight: var(--text-Bold);
}

.footer-review__block {
  min-width: 300px;
  padding: calc(var(--padding) * 2);
  background-color: var(--bg);
  border-radius: calc(var(--radius) * 2);
}

.footer-review__block-content {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: var(--sm);
  margin-top: calc(var(--margin) * 2);

}

.footer-review__block-stars {
  display: flex;
  gap: 9px;
}

.footer-review__block-star {
  width: 22px;
  height: 21px;
}

.footer-review__block-logo {
  width: 28px;
  height: 28px;
}

.footer-review__block-content p {
  font-size: 28px;
  font-weight: var(--text-Bold);
  margin-bottom: 0 !important;
}

.footer-review__blocks {
  flex-wrap: wrap;
}


.confidential {
  color: var(--text-Accent);
  font-size: var(--sm);
  font-weight: var(--text-Medium);
  margin-top: 40px;
  margin-bottom: 0 !important;
  order: 4;

}

/*! Mobile None */

/* #mobileheader {
  height: 93px !important;
} */

.mobile-header {
  display: none;
}

.mobile-menu {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

.cabinet-dropdown {
  position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    z-index: 10 !important;
}

@media (min-width: 1251px) {
  .footer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .footer-about {
    display: flex;
    gap: 120px;
  }

  .footer-review {
    margin-top: auto;
  }
}

@media (max-width: 1386px) {
  .header-about {
    gap: calc(var(--margin)* 8);
  }

  .header-about__link span {
    display: none;
  }
}

@media (max-width: 1170px) {
  .main {
    margin-top: 55px;
  }
  .header-main__search-input {
    width: 89%;
  }

  .mobile-header {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-bottom-nav {
    display: block;
  }

  .header-footer__block {
    font-size: var(--sm);
  }

  .header-top,
  .header-main,
  .header-footer {
    display: none;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px; */
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .burger-menu {
    width: 30px;
    height: 22.5px;
    padding: 1px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: none;
    border: none;
  }

  .burger-line {
    height: 2px;
    background: var(--text);
    transition: 0.3s;
  }

  .mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    transition: 0.3s;
    overflow-y: auto;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 11px;
    color: var(--mobile-Menu);
  }

  .mobile-bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-bottom-nav__link--active {
    color: var(--primary-Accent);
  }

  .mobile-bottom-nav__link--active svg path {
    stroke: var(--primary-Accent);
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-options__block {
    color: var(--text-Grey);
  }

  .mobile-options__block svg path {
    stroke: var(--text-Grey);
    ;
  }

  .mobile-menu-content {
    padding: 20px;
  }

  .mobile-menu__options {
    overflow-x: auto;
    width: 100%;
    padding-bottom: var(--padding);
  }

  .mobile-menu__options {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 5px;

    scrollbar-color: var(--primary-Accent) #e6f0fa;
    scrollbar-width: thin;
  }

  .mobile-menu__options::-webkit-scrollbar {
    height: 8px;
    background: #e6f0fa;
  }

  .mobile-menu__options::-webkit-scrollbar-thumb {
    background: var(--primary-Accent);
    border-radius: 8px;
  }

  .mobile-menu__options::-webkit-scrollbar-thumb:hover {
    background: #1565c0;
  }

  .mobile-options__blocks {
    display: flex;
    gap: 35px;
    align-items: center;
  }

  .mobile-options__block {
    display: flex;
    gap: 10px;
    align-items: center;
    text-wrap: nowrap;
  }

  .mobile-nav {
    margin-top: 24px;

  }

  .mobile-nav__list {
    display: inline-block;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .mobile-nav__link {
    display: block;
    border-bottom: 1px solid var(--border);
    font-size: var(--lg);
    font-weight: var(--text-Bold);
  }

  .mobile-nav__link--active {
    color: var(--orange);
    display: flex;
    gap: 12px;
  }


  .mobile-contacts {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: calc(var(--padding) * 2);
  }

  .mobile-contacts p {
    font-size: var(--lg);
    color: var(--text-Accent);
    font-weight: var(--text-Bold);
  }

  .mobile-contacts__block {
    display: flex;
    gap: 37px;
    padding-left: var(--margin);
  }

  .mobile-contacts__social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--margin);
    max-width: 58px;
    text-align: center;
    font-size: 11px;
    font-weight: var(--text-Medium);
    color: var(--text-Accent);
  }

  .mobile-contacts__social img {
    padding: 12px;
    background-color: var(--button-Accent);
    border-radius: 12px;
  }


}

@media (max-width: 1114px) {
  .header-main__search-input {
    width: 86%;
  }
}

@media (max-width: 1050px) {
  .footer-wrapper {
    padding: calc(var(--padding) * 2);
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-contacts__wrapper {
    max-width: 100%;
  }

  .footer-info {
    order: 1;
  }

  .footer-contacts {
    order: 2;
  }

  .footer-review {
    order: 3;
    margin-top: 40px;
  }

  .footer-contacts {
    padding-right: 0;
  }
}


@media (max-width: 600px) {

  #title-search-input {
    height: 92px !important;
    background: white;
    width: 100% !important;
  }

  .footer-about {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .footer-logo {
    width: 155px;
    height: 56px;
  }

  .footer-about {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    gap: calc(var(--margin) * 4);
  }
}


/*! Мобильный каталог */
.mobile-catalog {
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100vw;
  height: calc(100vh - 56px);
  background: var(--bg);
  z-index: 2000;
  transition: transform 0.3s;
  transform: translateX(-100%);
  border-radius: 0 12px 12px 0;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-catalog.active {
  transform: translateX(0);
}

.mobile-catalog__content {
  padding: 24px 20px 20px 20px;
  height: 100%;
}

.mobile-catalog__close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text, #222);
  margin-bottom: 24px;
  cursor: pointer;
  align-self: flex-end;
  display: block;
}




.mobile-catalog__select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--bg, #f9f9f9);
  border: none;
  padding: 12px 0;
  font-size: var(--lg, 18px);
  font-weight: var(--text-Bold, 700);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-catalog__arrow {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  transition: transform 0.3s;
}

.mobile-catalog__select.open .mobile-catalog__arrow {
  transform: rotate(90deg);
}



.mobile-catalog__arrow {
  width: 10px;
  height: 10px;
}
/*! Анимация для селект каталога  */

.mobile-catalog__list {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: scaleY(0.95);
  transition:
    max-height 0.4s cubic-bezier(.4, 0, .2, 1),
    opacity 0.3s cubic-bezier(.4, 0, .2, 1),
    transform 0.3s cubic-bezier(.4, 0, .2, 1);
  flex-direction: column;
  margin-top: 8px;
  margin-left: 12px;
}

.mobile-catalog__select.open .mobile-catalog__list {
  opacity: 1;
  max-height: 500px;

  transform: scaleY(1);
  gap: 12px;
}

.mobile-catalog__list {
  margin: var(--margin 0);
  font-weight: var(--text-Medium);

}
.mobile-catalog__arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.mobile-catalog__select.open .mobile-catalog__arrow {
  transform: rotate(90deg) scale(1.2);
}

@media (min-width: 1170px) {
  .mobile-catalog {
    display: none !important;
  }
}

/*! --- Mobile Search --- */
.mobile-search-popup {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100vh;
  background: var(--white, #fff);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 20px 20px;
  transition: right 0.3s cubic-bezier(.4,0,.2,1);
}

.mobile-search-popup.active {
  right: 0;
}

.mobile-search-popup__close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text, #222);
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
}

.mobile-search-popup__input {
  width: 100%;
  padding: 14px 12px;
  font-size: var(--lg);
  border: 2px solid var(--primary-Accent);
  border-radius: 8px;
  outline: none;
  position: relative;
}
.mobile-search-popup__header  {
  display: flex;
      width: 60%;
      justify-content: space-between;
}

.mobile-search-popup__close img{
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
  margin-top: var(--margin);
}

.mobile-search-popup__input--search {
  position: absolute;
  top: 0;
}
.mobile-search-popup__input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.mobile-search-popup__input--search {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.mobile-search-popup__input {
  width: 100%;
  padding: 14px 40px 14px 40px;
  font-size: var(--lg);
  border: 2px solid var(--primary-Accent);
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
}

.mobile-search-popup__input--clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.mobile-search-popup__title{
  font-size: var(--lg);
  font-weight: var(--text-Bold);
}

