@charset "UTF-8";

@font-face {
  font-family: 'Wix Madefor Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/WixMadeforDisplay-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Wix Madefor Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/WixMadeforDisplay-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Wix Madefor Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/WixMadeforDisplay-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Wix Madefor Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/WixMadeforDisplay-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Wix Madefor Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/WixMadeforDisplay-ExtraBold.ttf') format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
    font-family: "Wix Madefor Display", sans-serif;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.flex {
    display: flex;
}

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

.flex-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.flex-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.flex-start {
    justify-content: flex-start;
}

.container {
    width: 100%;
    margin: 0 auto;
}

/* Узкая колонка: 1172px при ширине макета 1440px (отзывы и др.) */
@media (min-width: 992px) {
    .container--narrow {
        max-width: 1172px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .footer {
        padding: 67px 20px;
    }
}

section {
    padding-bottom: 100px;
}

section:not(.hero-section) {
    padding-left: 16px;
    padding-right: 16px;
}

.hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-section__content {
    position: absolute;
    left: 50%;
    bottom: 90px;
    z-index: 4;
    flex-direction: column;
    width: min(100% - 40px, 520px);
    color: #ffffff;
    text-align: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-section__title {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-section__title-line {
    display: block;
}

.hero-section__link {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    pointer-events: auto;
}

.hero-section__link:hover,
.hero-section__link:focus {
    opacity: 0.85;
}

.hero-section__dots {
    display: none;
}

@media (min-width: 992px) {
    .hero-section__title-line {
        display: inline;
    }

    .hero-section__title-line + .hero-section__title-line::before {
        content: " ";
    }

    .hero-slider {
        aspect-ratio: unset;
        height: 1000px;
        max-height: none;
    }

    .hero-slider .slick-list,
    .hero-slider .slick-track {
        max-height: none;
    }
}

@keyframes hero-dot-progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.hero-slider {
    width: 100%;
    max-height: 1000px;
    aspect-ratio: 16 / 9;
}

.hero-slider:not(.slick-initialized) {
    overflow: hidden;
}

.hero-slider:not(.slick-initialized) > .hero-slider__item:not(:first-child) {
    display: none;
}

.hero-slider:not(.slick-initialized) > .hero-slider__item:first-child {
    height: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
    max-height: 1000px;
}

.hero-slider .slick-list {
    overflow: hidden;
}

.hero-slider .slick-slide {
    height: 100%;
}

.hero-slider .slick-slide > div {
    height: 100%;
}

.hero-slider__item {
    height: 100%;
    overflow: hidden;
}

.hero-slider__media,
.hero-slider__item img,
.hero-slider__item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider.slick-slider {
    position: relative;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    z-index: 2;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 18px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    display: none;
}

.hero-slider .slick-prev {
    left: 16px;
    right: auto;
    background-image: url("../img/hero-section-slider-left.svg");
}

.hero-slider .slick-next {
    right: 16px;
    left: auto;
    background-image: url("../img/hero-section-slider-right.svg");
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-prev:focus,
.hero-slider .slick-next:hover,
.hero-slider .slick-next:focus {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 18px;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-prev:focus {
    background-image: url("../img/hero-section-slider-left.svg");
}

.hero-slider .slick-next:hover,
.hero-slider .slick-next:focus {
    background-image: url("../img/hero-section-slider-right.svg");
}

.hero-slider .slick-prev.slick-disabled,
.hero-slider .slick-next.slick-disabled {
    opacity: 0.35;
}

[dir="rtl"] .hero-slider .slick-prev {
    right: 16px;
    left: auto;
}

[dir="rtl"] .hero-slider .slick-next {
    left: 16px;
    right: auto;
}

header {
    position: relative;
    width: 100%;
    z-index: 100;
    color: #000000;
    padding: 0 20px;
}

.header-top {
    padding: 16px 0;
    border-bottom: 1.33px solid;
    font-size: 13px;
    border-image-source: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 50.97%,
        rgba(0, 0, 0, 0) 100%
    );
    border-image-slice: 1;
}

.header-navigation__items a {
    color: #000000;
    text-transform: uppercase;
}

.header-top__items-item-logo img,
.header-top__items-item-address img,
.header-top__items-item-contact-phone img,
.header-navigation__search-toggle img {
    filter: invert(1);
}

body.page-home header,
body.home header,
body.front-page header {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
}

body.page-home .header-navigation__items a,
body.home .header-navigation__items a,
body.front-page .header-navigation__items a {
    color: #ffffff;
}

body.page-home .header-top,
body.home .header-top,
body.front-page .header-top {
    border-image-source: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50.97%,
        rgba(255, 255, 255, 0) 100%
    );
}

body.page-home .header-top__items-item-logo img,
body.page-home .header-top__items-item-address img,
body.page-home .header-top__items-item-contact-phone img,
body.home .header-top__items-item-logo img,
body.home .header-top__items-item-address img,
body.home .header-top__items-item-contact-phone img,
body.front-page .header-top__items-item-logo img,
body.front-page .header-top__items-item-address img,
body.front-page .header-top__items-item-contact-phone img {
    filter: none;
}

body.page-home .header-navigation__search-toggle img,
body.home .header-navigation__search-toggle img,
body.front-page .header-navigation__search-toggle img {
    filter: none;
}

.header-top__items-item-logo img {
    max-height: 47px;
}

.header-top__items-item-contact-phone img,
.header-top__items-item-address img {
    width: 15px;
    height: 15px;
}

.header-navigation {
    padding-top: 24px ;
    overflow: visible;
}

.header-top__items-item-address {
    gap: 8px;
    font-weight: 400;
}

.header-top__items-item-contact-time {
    font-weight: 400;
}

.header-top__items-item-contact-phone {
    font-weight: 600;
}

.header-top__items-item-contact {
    gap: 24px;
}

.header-navigation__items {
    position: relative;
    gap: 32px;
    font-size: 13px;
    font-weight: 500;
}

.header-navigation__search {
    --search-icon-size: 18px;
    --search-panel-width: 520px;
    position: relative;
    flex-shrink: 0;
    width: var(--search-icon-size);
    height: var(--search-icon-size);
    z-index: 6;
}

.header-navigation__search.is-open {
    z-index: 120;
    overflow: visible;
    width: var(--search-icon-size);
}

.header-navigation__search-toggle {
    position: relative;
    z-index: 2;
    width: var(--search-icon-size);
    height: var(--search-icon-size);
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

.header-navigation__search-toggle img {
    flex: 0 0 var(--search-icon-size);
    width: var(--search-icon-size);
    height: var(--search-icon-size);
    display: block;
}

.header-navigation__search-panel {
    transition:
        width 0.28s ease,
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.header-navigation__search-panel .search-live-form form {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
    background: none;
    background-color: transparent;
    box-shadow: none;
}

.header-navigation__search-input {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: none;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 2px;
    width: 100%;
    border-bottom: 1px solid currentColor;
    font: inherit;
    color: inherit;
}

.header-navigation__search-input::-webkit-search-decoration,
.header-navigation__search-input::-webkit-search-cancel-button,
.header-navigation__search-input::-webkit-search-results-button,
.header-navigation__search-input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.header-navigation__search-input:focus {
    outline: none;
}

.header-navigation__search-input::placeholder {
    color: inherit;
    opacity: 0.65;
}

.header-navigation__search-panel .search-live-field,
.header-mobile-bar__search-panel .search-live-field {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: #ffffff;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 2px;
    width: 100%;
    border-bottom: 1px solid currentColor;
    font: inherit;
    color: inherit;
}

body.page-home .header-navigation__search-panel .search-live-field,
body.home .header-navigation__search-panel .search-live-field,
body.front-page .header-navigation__search-panel .search-live-field,
body.page-home .header-mobile-bar__search-panel .search-live-field,
body.home .header-mobile-bar__search-panel .search-live-field,
body.front-page .header-mobile-bar__search-panel .search-live-field {
    background: transparent;
}

.header-navigation__search.is-open .header-navigation__search-toggle img {
    width: 20px;
    height: 20px;
}

@media (min-width: 992px) {
    .header-navigation__items.is-search-open > a {
        visibility: hidden;
        pointer-events: none;
    }
}

.header-top__items-item-contact a {
    text-decoration: none;
}

.header-top__items-item-contact a:hover,
.header-top__items-item-contact a:focus {
    opacity: 0.85;
}

.header-mobile-bar,
.header-mobile-menu {
    display: none;
}

body.menu-open {
    overflow: hidden;
}


.products__title {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #000000;
    font-size: 20px;
    font-weight: 500;
}

.products-row__slider {
    position: relative;
    padding: 0;
}

.products-row__slider .slick-slide {
    padding: 0 4px;
}

.products-row__slider .slick-list {
    margin: 0 -5px;
}

.products-row__slider .slick-prev,
.products-row__slider .slick-next {
    z-index: 2;
    top: var(--products-row-arrow-top, 200px);
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    transform: translate(0, -50%);
}

.products-row__slider .slick-prev {
    left: 12px;
    right: auto;
}

.products-row__slider .slick-next {
    right: 12px;
    left: auto;
}

[dir="rtl"] .products-row__slider .slick-prev {
    right: 12px;
    left: auto;
}

[dir="rtl"] .products-row__slider .slick-next {
    left: 12px;
    right: auto;
}

.products-row__slider .slick-prev:before,
.products-row__slider .slick-next:before {
    content: "";
    display: block;
    width: 7px;
    height: 13px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    font-family: initial;
    font-size: 0;
    line-height: 0;
}

.products-row__slider .slick-prev:before {
    background-image: url("../img/products-slider-arrow-left.svg");
}

.products-row__slider .slick-next:before {
    background-image: url("../img/products-slider-arrow-right.svg");
}

.products-row__slider .slick-prev:hover,
.products-row__slider .slick-prev:focus,
.products-row__slider .slick-next:hover,
.products-row__slider .slick-next:focus {
    background-color: #ffffff;
}

.products-row__slider .slick-prev.slick-disabled,
.products-row__slider .slick-next.slick-disabled {
    opacity: 0.35;
}

.products-card {
    text-align: center;
}

.products-card__media {
    position: relative;
    margin-bottom: 20px;
}

.products-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    background: #000000;
    text-transform: uppercase;
}

.products-card__img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.products-card__title {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.products-card__price {
    font-size: 12px;
}

.products-card__price-current {
    font-weight: 700;
    margin-right: 6px;
    color: #000000;
}

.last-chance .products-card__price-current {
    font-weight: 500;
    color: #E03131;
}

.products-card__price-old {
    color: #4D4D4D;
    font-weight: 400;
    text-decoration: line-through;
}

.shuby-norki__layout,
.shuby-colors__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.shuby-norki__banner,
.shuby-colors__banner {
    position: relative;
    display: block;
    max-height: 973px;
    color: #fff;
}

.shuby-norki__banner::after,
.shuby-colors__banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.shuby-norki__banner-img,
.shuby-colors__banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shuby-norki__banner-inner,
.shuby-colors__banner-inner {
    position: absolute;
    left: 58px;
    bottom: 59px;
    z-index: 1;
}

.shuby-norki__banner-title,
.shuby-colors__banner-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.shuby-norki__banner-btn,
.shuby-colors__banner-btn {
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid #FFFFFF4D;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.shuby-norki__slider,
.shuby-colors__slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 8px;
    min-width: 0;
}

@media (min-width: 992px) {
    .shuby-norki__layout,
    .shuby-colors__layout {
        align-items: start;
    }

    .shuby-norki__banner,
    .shuby-colors__banner {
        position: sticky;
        top: 0;
        align-self: start;
        width: 100%;
        height: min(973px, 100vh);
        min-height: 520px;
        max-height: 973px;
    }
}

.vkontakte__layout {
    display: grid;
    grid-template-columns: minmax(200px, 270px) 1fr;
    grid-template-areas: "intro media";
    gap: 20px clamp(20px, 3vw, 48px);
    align-items: start;
}

.vkontakte__intro {
    grid-area: intro;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.vkontakte__kicker {
    margin: 0 0 6px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
}

.vkontakte__title {
    margin: 0;
    border-bottom: 2px solid #000000;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.vkontakte__btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 48px;
    background: #000000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.vkontakte__btn:hover,
.vkontakte__btn:focus {
    opacity: 0.88;
}

.vkontakte__media {
    grid-area: media;
    min-width: 0;
}

.vkontakte__grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.vkontakte__cell {
    flex: 1 1 0;
    min-width: 0;
}

.vkontakte__cell-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #e8e8e8;
}

.vkontakte__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vkontakte__cell--1 .vkontakte__cell-inner,
.vkontakte__cell--4 .vkontakte__cell-inner {
    min-height: 347px;
}

.vkontakte__cell--2 .vkontakte__cell-inner {
    min-height: 254px;
}

.vkontakte__cell--3 .vkontakte__cell-inner {
    min-height: 292px;
}

.vkontakte__cell--5 .vkontakte__cell-inner {
    min-height: 313px;
}

section.reviews {
    background: #f2f3f5;
    padding-top: 100px;
}

.reviews__head {
    gap: 12px 20px;
    margin-bottom: 40px;
}

.reviews__head-right {
    gap: 16px;
}

.reviews__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 2px solid #000000;
    width: fit-content;
    max-width: 100%;
}

.reviews__all {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
}

.reviews__all:hover,
.reviews__all:focus {
    text-decoration: underline;
}

.reviews__slider-wrap {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.reviews__arrows {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews__arrows .slick-prev,
.reviews__arrows .slick-next {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    background: #000000;
    border: none;
    border-radius: 50%;
}

.reviews__arrows .slick-prev:hover,
.reviews__arrows .slick-prev:focus,
.reviews__arrows .slick-next:hover,
.reviews__arrows .slick-next:focus {
    background: #000000;
}

.reviews__arrows .slick-prev:before,
.reviews__arrows .slick-next:before {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    font-family: initial;
    font-size: 0;
    line-height: 0;
}

.reviews__arrows .slick-prev:before {
    background-image: url("../img/reviews-left.svg");
}

.reviews__arrows .slick-next:before {
    background-image: url("../img/reviews-right.svg");
}

.reviews__slider .slick-list {
    margin: 0 -10px;
}

.reviews__slider .slick-slide {
    padding: 0 10px;
}

.reviews__slide-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
    min-height: 100%;
}

.reviews-card {
    flex-direction: column;
    height: 100%;
    padding: 24px;
    background: #ffffff;
    box-sizing: border-box;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.reviews-card__name {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.reviews-card__meta {
    margin: 0 0 17px;
    font-size: 12px;
    font-weight: 400;
    color: #888888;
}

.reviews-card__text {
    flex: 1 1 auto;
    margin: 0 0 35px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    color: #000000;
}

.reviews-card__stars {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2px;
    margin-top: auto;
}

.reviews-card__stars img {
    display: block;
    width: 18px;
    height: auto;
    flex-shrink: 0;
}

section.contacts {
    padding-top: 100px;
}

body.contacts-page section.contacts {
    padding-top: 40px;
}

body.product-page section.contacts {
    padding-top: 0px;
}

.contacts__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 2fr);
    gap: 25px 8px;
    align-items: stretch;
}

.contacts__content {
    min-width: 0;
}

.contacts__map {
    min-width: 0;
    width: 100%;
    min-height: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.contacts__map iframe {
    display: block;
    width: 100%;
    flex: 1 1 auto;
    min-height: 280px;
    height: 100%;
    border: 0;
    max-width: 100%;
}

.contacts__title {
    margin: 0 0 40px;
    width: fit-content;
    max-width: 100%;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 2px solid #000000;
    line-height: 1.2;
}

.contacts__intro {
    margin: 0 0 82px;
    max-width: 360px;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
}

.contacts-page__title {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    width: fit-content;
    border-bottom: 2px solid #000000;
    text-align: center;
    margin: 0 auto 60px;
}

.contacts__block {
    margin-bottom: 22px;
}

.contacts__label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #000000B2;
}

.contacts__phones {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
}

.contacts__phones a {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

.contacts__phones a:hover,
.contacts__phones a:focus {
    text-decoration: underline;
}

.contacts__hours {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 32px;
}

.contacts__address {
    margin: 0 0 20px;
    max-width: 480px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
}

.contacts__route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 3px;
    color: #000000;
}

.contacts__route:hover,
.contacts__route:focus {
    text-decoration: none;
    opacity: 0.75;
}

.contacts__route-icon {
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.contacts__social {
    gap: 12px;
}

.contacts__social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000000;
    text-decoration: none;
}

.contacts__social-btn:hover,
.contacts__social-btn:focus {
    opacity: 0.88;
}

.contacts__social-btn img {
    display: block;
    width: 20px;
    height: auto;
    max-height: 20px;
}

.footer {
    background: #232323;
}

.footer .container {
    display: grid;
    grid-template-columns: minmax(200px, 1.05fr) minmax(130px, 0.65fr) minmax(0, 2.3fr);
    column-gap: 50px;
    row-gap: 40px;
    align-items: start;
}

.footer__grid {
    display: contents;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer__logo img {
    display: block;
    width: 130px;
    max-width: 100%;
    height: auto;
}

.footer__legal,
.footer__copy {
    font-size: 12px;
    font-weight: 400;
    color: #B6B7B8;
}

.footer__copy {
    margin-top: 8px;
    margin-bottom: 24px;
}

.footer__social {
    gap: 12px;
}

.footer__social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    text-decoration: none;
}

.footer__social-btn:hover,
.footer__social-btn:focus {
    opacity: 0.85;
}

.footer__social-btn img {
    display: block;
    max-width: 26px;
    max-height: 22px;
    width: auto;
    height: auto;
}

.footer__heading {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.footer__accordion {
    border: none;
}

.footer__accordion-title {
    display: none;
    list-style: none;
}

.footer__accordion-title::-webkit-details-marker {
    display: none;
}

.footer__links {
    flex-direction: column;
    gap: 6px;
}

.footer__links a {
    font-size: 12px;
    font-weight: 400;
    color: #B6B7B8;
    text-decoration: none;
}

.footer__links a:hover,
.footer__links a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.footer__catalog-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 40px;
}

.footer__bottom {
    grid-column: 2 / -1;
    margin-top: 0;
    max-width: 1090px;
}

.footer__disclaimer {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 400;
    color: #B6B7B8;
}

.footer__privacy {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #B6B7B8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__privacy:hover,
.footer__privacy:focus {
    opacity: 0.85;
}

@media (max-width: 991px) {
    .reviews, .contacts {
        padding-top: 50px!important;
    }

    body.contacts-page section.contacts {
        padding-top: 0 !important;
    }

    .reviews__slider,
    .reviews__slider .slick-list {
        margin: 0;
    }

    section:not(.hero-section) {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 50px;
        padding-top: 0px;
    }
    .hero-section {
        padding-bottom: 0;
        margin-bottom: 50px;
    }   
    .products__title {
        margin-bottom: 24px;
        font-size: 20px;
    }
    .products-card__badge {
        top: 12px;
        left: 12px;
    }
    .products-card__media {
        margin-bottom: 12px;
    }
    .products-card__title {
        margin-bottom: 6px;
    }
    .products-card__title {
        font-size: 11px;
    }
    .products-card__price {
        font-size: 10px;
    }

    .hero-slider {
        aspect-ratio: 390 / 640;
        max-height: none;
    }

    .hero-slider .slick-list,
    .hero-slider .slick-track {
        max-height: none;
    }

    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        display: none !important;
    }

    .hero-section__content {
        bottom: 85px;
    }

    .hero-section__title {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .hero-section__link {
        font-size: 14px;
    }

    .hero-section__dots {
        position: absolute;
        bottom: 35px;
        left: 50%;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transform: translateX(-50%);
        pointer-events: auto;
    }

    .hero-section__dot {
        flex-shrink: 0;
        width: 6px;
        height: 6px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.45);
        cursor: pointer;
    }

    .hero-section__dot.is-active {
        position: relative;
        width: 32px;
        height: 6px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.35);
        overflow: hidden;
    }

    .hero-section__dot:not(.is-active) .hero-section__dot-progress {
        display: none;
    }

    .hero-section__dot-progress {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        border-radius: 3px;
        background: #ffffff;
        animation: hero-dot-progress var(--hero-autoplay-ms, 2000ms) linear forwards;
    }

    header {
        padding: 0;
    }

    .header__container .header-top,
    .header__container .header-navigation {
        display: none;
    }

    .header-mobile-bar {
        position: relative;
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1.33px solid;
        border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50.97%, rgba(0, 0, 0, 0) 100%);
        border-image-slice: 1;
        overflow: visible;
    }

    .header-mobile-bar__search-panel {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 16px;
        z-index: 4;
        display: flex;
        align-items: center;
        width: 44px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            width 0.28s ease,
            opacity 0.22s ease,
            visibility 0.22s ease;
    }

    .header-mobile-bar.is-search-open .header-mobile-bar__search-panel {
        width: calc(100% - 16px - 44px - 16px);
        height: auto;
        min-height: 44px;
        overflow: visible;
        align-items: flex-start;
        padding-top: 14px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: none;
        background-color: transparent;
        box-shadow: none;
    }

    .header-mobile-bar.is-search-open .header-mobile-bar__search {
        visibility: hidden;
        pointer-events: none;
    }

    .header-mobile-bar.is-search-open {
        z-index: 120;
        overflow: visible;
    }

    .header-mobile-bar.is-search-open .header-mobile-bar__logo {
        visibility: hidden;
        pointer-events: none;
    }

    .header-mobile-bar__search-panel form {
        width: 100%;
        padding-left: 44px;
        padding-right: 8px;
        box-sizing: border-box;
        background: none;
        background-color: transparent;
        box-shadow: none;
    }

    .header-mobile-bar.is-search-open .header-mobile-bar__search-panel form {
        padding-left: 0;
    }

    .header-mobile-bar__search-input {
        appearance: none;
        -webkit-appearance: none;
        width: 100%;
        margin: 0;
        padding: 0 0 2px;
        border: 0;
        border-bottom: 1px solid currentColor;
        border-radius: 0;
        background: none;
        background-color: transparent;
        box-shadow: none;
        outline: none;
        font: inherit;
        color: inherit;
    }

    .header-mobile-bar__search-input::-webkit-search-decoration,
    .header-mobile-bar__search-input::-webkit-search-cancel-button,
    .header-mobile-bar__search-input::-webkit-search-results-button,
    .header-mobile-bar__search-input::-webkit-search-results-decoration {
        -webkit-appearance: none;
        appearance: none;
        display: none;
    }

    .header-mobile-bar__search-input:focus {
        outline: none;
    }

    .header-mobile-bar__search-input::placeholder {
        color: inherit;
        opacity: 0.65;
    }

    .header-mobile-bar__search {
        position: relative;
        z-index: 5;
    }

    .header-mobile-bar__burger {
        position: relative;
        z-index: 5;
    }

    .header-mobile-bar__logo {
        position: relative;
        z-index: 1;
    }

    .header-mobile-bar__logo img,
    .header-mobile-bar__search img {
        filter: invert(1);
    }

    .header-mobile-bar.is-search-open .header-mobile-bar__search img {
        filter: none;
    }

    body.page-home .header-mobile-bar.is-search-open .header-mobile-bar__search img,
    body.home .header-mobile-bar.is-search-open .header-mobile-bar__search img,
    body.front-page .header-mobile-bar.is-search-open .header-mobile-bar__search img {
        filter: none;
    }

    body.page-home .header-mobile-bar__search img {
        width: 24px;
        height: 24px;
    }

    .header-mobile-bar__search,
    .header-mobile-bar__burger,
    .header-mobile-menu__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        color: inherit;
    }

    .header-mobile-bar__search img {
        display: block;
    }

    .header-mobile-bar__logo,
    .header-mobile-menu__logo {
        justify-self: center;
        display: flex;
        justify-content: center;
    }

    .header-mobile-bar__logo img,
    .header-mobile-menu__logo img {
        display: block;
        width: auto;
        height: 50px;
    }

    .header-mobile-bar__burger {
        justify-self: end;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
        width: 44px;
        height: 44px;
    }

    .header-mobile-bar__burger-line {
        display: block;
        width: 18px;
        height: 1.5px;
        border-radius: 1px;
        background: #000000;
    }

    body.page-home .header-mobile-bar,
    body.home .header-mobile-bar,
    body.front-page .header-mobile-bar {
        border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50.97%, rgba(255, 255, 255, 0) 100%);
    }

    body.page-home .header-mobile-bar__logo img,
    body.page-home .header-mobile-bar__search img,
    body.home .header-mobile-bar__logo img,
    body.home .header-mobile-bar__search img,
    body.front-page .header-mobile-bar__logo img,
    body.front-page .header-mobile-bar__search img {
        filter: none;
    }

    body.page-home .header-mobile-bar__burger-line,
    body.home .header-mobile-bar__burger-line,
    body.front-page .header-mobile-bar__burger-line {
        background: #ffffff;
    }

    .header-mobile-bar__burger-line:last-child {
        width: 14px;
    }

    .header-mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: #000000;
        color: #ffffff;
        padding: 16px 20px 36px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .header--menu-open .header-mobile-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-mobile-menu__top {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
        flex-shrink: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #FFFFFF1A;
    }

    .header-mobile-menu__logo {
        grid-column: 2;
        justify-self: center;
    }

    .header-mobile-menu__close {
        position: relative;
        grid-column: 3;
        justify-self: end;
    }

    .header-mobile-menu__close-line {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22px;
        height: 1.5px;
        margin-left: -11px;
        margin-top: -0.75px;
        background: #ffffff;
    }

    .header-mobile-menu__close-line:first-child {
        transform: rotate(45deg);
    }

    .header-mobile-menu__close-line:last-child {
        transform: rotate(-45deg);
    }

    .header-mobile-menu__nav {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 24px 0;
        text-align: center;
    }

    .header-mobile-menu__nav a {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .header-mobile-menu__nav a:hover,
    .header-mobile-menu__nav a:focus {
        opacity: 0.75;
    }

    .header-mobile-menu__footer {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-mobile-menu__phone {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 400;
    }

    .header-mobile-menu__phone img {
        display: block;
        flex-shrink: 0;
    }

    .header-mobile-menu__address {
        max-width: 320px;
        margin-bottom: 20px;
        font-size: 14px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .header-mobile-menu__social {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding-top: 20px;
        border-top: 1px solid #FFFFFF1A;
        width: 100%;
    }

    .header-mobile-menu__social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .header-mobile-menu__social-btn:hover,
    .header-mobile-menu__social-btn:focus {
        opacity: 0.88;
    }

    .header-mobile-menu__social-btn img {
        display: block;
    }

    .shuby-norki__layout,
    .shuby-colors__layout {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .shuby-norki__banner,
    .shuby-colors__banner {
        min-height: 400px;
    }

    .shuby-norki__banner-inner,
    .shuby-colors__banner-inner {
        left: 20px;
        bottom: 20px;
    }

    .shuby-norki__banner-title,
    .shuby-colors__banner-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .shuby-norki__banner-btn,
    .shuby-colors__banner-btn {
        padding: 16px 32px;
        font-size: 12px;
    }

    
    .shuby-colors__banner {
        order: -1;
    }

    .shuby-norki__slider:not(.slick-initialized),
    .shuby-colors__slider:not(.slick-initialized) {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .shuby-norki__slider.slick-initialized,
    .shuby-colors__slider.slick-initialized {
        display: block;
        width: 100%;
    }

    .shuby-norki__slider.slick-initialized .slick-list,
    .shuby-colors__slider.slick-initialized .slick-list {
        margin: 0;
        padding-left: 0;
    }

    .shuby-norki__slider.slick-initialized .slick-track,
    .shuby-colors__slider.slick-initialized .slick-track {
        display: flex;
    }

    .shuby-norki__slider.slick-initialized .slick-slide,
    .shuby-colors__slider.slick-initialized .slick-slide {
        width: min(300px, calc(100vw - 148px));
        margin-right: 8px;
        padding: 0;
        box-sizing: border-box;
    }

    .vkontakte__layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .vkontakte__intro {
        display: contents;
    }

    .vkontakte__kicker {
        order: 1;
        width: 100%;
        margin-bottom: 0;
        font-size: 9px;
        text-align: center;
    }

    .vkontakte__title {
        order: 2;
        width: fit-content;
        margin: 0 auto;
        font-size: 20px;
        text-align: center;
    }

    .vkontakte__media {
        order: 3;
        width: 100%;
        min-width: 0;
    }

    .vkontakte__btn {
        order: 4;
        align-self: center;
        margin-top: 0;
        padding: 14px 48px;
        font-size: 11px;
    }

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

    .vkontakte__cell--4,
    .vkontakte__cell--5 {
        display: none;
    }

    .vkontakte__cell--1 .vkontakte__cell-inner,
    .vkontakte__cell--2 .vkontakte__cell-inner,
    .vkontakte__cell--3 .vkontakte__cell-inner {
        min-height: min(320px, 52vw);
    }
}

@media (max-width: 700px) {
    .footer__disclaimer,
    .footer__privacy,
    .footer__links a {
        font-size: 12px;
    }
    .footer__social {
        margin-bottom: 24px;
    }
    .footer__social-btn {
        width: 36px;
        height: 36px;
    }
    .footer__legal, .footer__copy {
        font-size: 12px;
    }
    .contacts__route {
        font-size: 9px;
        font-weight: 600;
        border-bottom: 1px solid currentColor;
        margin-bottom: 20px;
    }
    .contacts__address {
        margin-bottom: 12px;
    }
    .contacts__hours {
        margin-bottom: 20px;
    }
    .contacts__hours,
    .contacts__address {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    .contacts__label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .contacts__phones {
        gap: 2px;
        margin-bottom: 20px;
    }
    .contacts__phones a {
        font-size: 12px;
        font-weight: 500;
    }
    .reviews-card__text {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .reviews-card__meta {
        font-size: 12px;
    }
    .reviews-card__name {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .reviews-card {
        padding: 18px;
    }
    .reviews__title {
        font-size: 20px;
    }

    .products-row__slider:not(.slick-initialized) {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .products-row__slider.slick-initialized {
        width: 100%;
    }

    .products-row__slider.slick-initialized .slick-list {
        margin: 0;
        padding-left: 0;
    }

    .products-row__slider.slick-initialized .slick-slide {
        width: min(300px, calc(100vw - 148px));
        margin-right: 8px;
        padding: 0;
        box-sizing: border-box;
    }

    .reviews__arrows {
        display: none !important;
    }

    .reviews__head {
        margin-bottom: 24px;
    }

    .reviews__slide-inner {
        display: block;
    }

    .reviews__slider {
        margin: 0;
    }

    .reviews__slider.slick-initialized {
        width: 100%;
    }

    .reviews__slider .slick-list {
        margin: 0;
        padding-left: 0;
    }

    .reviews__slider .slick-slide {
        width: min(310px, calc(100vw - 88px));
        margin-right: 10px;
        padding: 0;
        box-sizing: border-box;
    }

    .contacts__layout {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }

    .contacts__map {
        align-self: stretch;
        display: block;
    }

    .contacts__map iframe {
        height: 300px;
        flex: none;
        min-height: 0;
    }

    .contacts__title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    body.contacts-page .contacts-page__title {
        margin: 24px auto 32px;
        font-size: 24px;
    }

    .contacts__intro,
    .contacts__address {
        max-width: none;
    }

    .contacts__intro {
        font-size: 13px;
        letter-spacing: 0.5px;
        margin-bottom: 24px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        row-gap: 0;
        column-gap: 0;
    }

    .footer__grid {
        display: block;
    }

    .footer {
        padding: 48px 10px;
    }

    .footer__logo {
        margin-bottom: 24px;
    }

    .footer__heading--desktop {
        display: none;
    }

    .footer__accordion {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer__accordion-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        color: #ffffff;
        cursor: pointer;
    }

    .footer__accordion-title::after {
        content: "";
        flex-shrink: 0;
        width: 8px;
        height: 8px;
        margin-left: 12px;
        border-right: 1.5px solid #ffffff;
        border-bottom: 1.5px solid #ffffff;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .footer__accordion[open] .footer__accordion-title::after {
        transform: rotate(-135deg);
    }

    .footer__accordion .footer__links,
    .footer__accordion .footer__catalog-cols {
        padding-bottom: 12px;
    }

    .footer__catalog-cols {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer__bottom {
        grid-column: auto;
        margin-top: 24px;
        max-width: none;
    }
}

.scroll-top {
    display: none;
}

@media (min-width: 992px) {
    .scroll-top {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 30px;
        bottom: 100px;
        z-index: 50;
        width: 60px;
        height: 60px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #000000;
        box-shadow:
            0 80px 106.67px 0 rgba(15, 15, 15, 0.08),
            0 33.33px 44px 0 rgba(15, 15, 15, 0.05);
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
    }

    .scroll-top.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .scroll-top:hover,
    .scroll-top:focus-visible {
        transform: translateY(-2px);
    }

    .scroll-top:focus-visible {
        outline: 2px solid #ffffff;
        outline-offset: 3px;
    }
}

/* MAX в виджете «Поделиться» (uSocial) */
.meha2-share-widget {
    display: inline-block;
}

.meha2-share-max-item.uscl-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 4px;
    box-sizing: border-box;
    vertical-align: top;
}

.meha2-share-max {
    display: block;
    width: 32px;
    height: 32px;
    background: url("../img/max-icon-32.png") center / contain no-repeat;
    text-decoration: none;
}

.meha2-share-max:hover,
.meha2-share-max:focus {
    opacity: 0.92;
}