/* сброс стандартных стилей  */
/* ссылки */

.redesign a,
.redesign a:link,
.redesign a:visited {
	text-decoration: none;
	color: var(--black);
}

.redesign a:hover {
	text-decoration: none;
}

/* общий */

aside, nav, footer, header, section, main {
	display: block;
}

.redesign ul,
.redesign ul li {
	list-style: none;
}

.redesign img,
.redesign svg {
	max-width: 100%;
	height: auto;
}

.redesign address {
	font-style: normal;
}

/* формы */

.redesign input,
.redesign textarea,
.redesign button,
.redesign select {
    font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

.redesign input::-ms-clear {
    display: none;
}

.redesign button,
.redesign input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

.redesign input:focus,
.redesign input:active,
.redesign button:focus,
.redesign button:active {
    outline: none;
}

.redesign button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.redesign .button-default {
    display: inline-block;
    text-align: center;
    transition: all var(--transition);
    font-weight: var(--fw-500);
}

.redesign .button-default__color--yellow {
    background-color: var(--yellow);
}

.redesign .button-default__color--border {
    border: 1px solid #1A1B1C;
}

.redesign .button-default__color--white {
    background-color: var(--white);
}

.redesign .button-default__color--orange {
    background-color: var(--orange);
    color: var(--white);
}

.redesign .button-default__size--xl {
    max-width: 192px;
    padding: clamp(12px, 2vw, 16px) 36px;
    border-radius: 500px;
    font-size: var(--bt-l);
    line-height: var(--bt-lh-l);
}

.redesign .button-default__size--l {
    max-width: 177px;
    padding: 14px 36px;
    border-radius: 500px;
    font-size: var(--bt-m);
    line-height: var(--bt-lh-m);
}

.redesign .button-default__size--m {
    max-width: 169px;
    padding: clamp(8px, 1vw, 12px) clamp(12px, 2vw, 32px);
    border-radius: 500px;
    font-size: var(--bt-m);
    line-height: var(--bt-lh-m);
    display: flex;
    align-items: center;
    justify-content: center;
}

.redesign .button-default__fix-size--m {
    max-width: 160px;
    padding: clamp(8px, 1vw, 12px) 12px;
    border-radius: 500px;
    font-size: var(--bt-m);
    line-height: var(--bt-lh-m);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}

.redesign .button-default__size--s {
    max-width: 153px;
    padding: 8px 24px;
    border-radius: 500px;
    font-size: var(--bt-m);
    line-height: var(--bt-lh-m);
}

.redesign .button-default__size--xs {
    max-width: 130px;
    padding: 8px 20px;
    border-radius: 500px;
    font-size: var(--bt-s);
    line-height: var(--bt-lh-s);
}

.redesign .button-default__color--yellow:disabled,
.redesign .button-default__color--yellow:hover,
.redesign .button-default__color--yellow:active {
    background-color: var(--yellow-h);
}

.redesign .button-default__color--border:disabled,
.redesign .button-default__color--border:hover,
.redesign .button-default__color--border:active {
    border: 1px solid var(--yellow-h);
}

.redesign .button-default__color--white:disabled,
.redesign .button-default__color--white:hover,
.redesign .button-default__color--white:active {
    background-color: var(--light-gray);
}

.redesign .button-default__color--orange:disabled,
.redesign .button-default__color--orange:hover,
.redesign .button-default__color--orange:active {
    background-color: var(--orange-h);
}

.redesign .button-default__color--yellow:disabled,
.redesign .button-default__color--border:disabled,
.redesign .button-default__color--opacity:disabled,
.redesign .button-default__color--orange:disabled {
    opacity: 30%;
}

.redesign .button-hidden {
    display: none !important;
}


body#new-design,
body#camelia,
.header label, .header li, .header p, .header td, .header th,
.footer label, .footer li, .footer p, .footer td, .footer th {
    font-family: 'LT Wave', sans-serif;
}

body {
    color: var(--black);
}

.noto-serif {
    font-family: "Noto Serif", serif;
}

.redesign__container {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--padding);
    padding-right: var(--padding);
}

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
    background-color: transparent;
    transition: background-color var(--transition), transform var(--transition);
}

.header:hover {
    background-color: var(--white);
}

.header__top {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding-top: 24px;
    padding-bottom: 20px;
}

.header__top::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(226, 226, 226, 0.6) 0%, #C1C1C1 50.21%, rgba(226, 226, 226, 0.6) 100%);
    transition: opacity var(--transition);
}

.header__right {
    justify-self: end;
}

.header-nav {
    display: flex;
    gap: clamp(20px, 5vw, 32px);
}

.header-nav__item {
    flex-shrink: 0;
    max-width: 24px;
}

.header-nav__item a {
    display: block;
}

.header-nav__item a svg,
.header-nav__item button svg {
    stroke: var(--black);
    transition: all var(--transition);
}

.header-nav__item--cart {
    position: relative;
}

.header-nav__item--cart .badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 14px;
    padding: 0 4px;
    border-radius: 16px;
    background-color: var(--yellow);
    transform: translateX(2px);
    text-align: center;
    font-size: 8px;
    font-weight: var(--fw-400);
    line-height: 15px;
    color: var(--black);
}

html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon {
    max-width: 24px;
}

html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon.dgwt-wcas-layout-icon-open {
    max-width: none;
}

html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon .dgwt-wcas-search-form {
    min-width: clamp(240px, 25vw, 350px);
    top: -7px;
    right: 0;
    left: auto !important;
}

.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    margin: auto 8px auto auto;
    padding: 0;
    border-radius: 50%;
    background-color: var(--yellow);
}

.dgwt-wcas-open .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit {
    border-radius: 50%;
}


.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before {
    content: none;
}


.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 12px 8px 12px 48px;
    border: 0;
    border-radius: 32px;
    font-family: 'LT Wave', serif;
}

.dgwt-wcas-open .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    border-radius: 32px;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
    color: var(--dark-gray);
    font-weight: 400;
    font-style: normal;
    line-height: normal
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-webkit-input-placeholder {
    color: var(--dark-gray);
    font-weight: 400;
    font-style: normal;
    line-height: normal
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:-moz-placeholder {
    color: var(--dark-gray);
    font-weight: 400;
    font-style: normal;
    line-height: normal
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-moz-placeholder {
    color: var(--dark-gray);
    font-weight: 400;
    font-style: normal;
    line-height: normal
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:-ms-input-placeholder {
    color: var(--dark-gray);
    font-weight: 400;
    font-style: normal;
    line-height: normal
}

.dgwt-wcas-layout-icon-open .dgwt-wcas-search-icon-arrow {
    opacity: 0;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    font-size: var(--caption);
    line-height: var(--caption-lh);
}

.dgwt-wcas-search-icon {
    width: 24px;
}

.dgwt-wcas-suggestions-wrapp {
    border-radius: 32px;
}

.dgwt-wcas-open-pirx .dgwt-wcas-open .dgwt-wcas-suggestions-wrapp {
    border-radius: 32px;
}

.recommended-products-widget h3 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 5px;
}

.dgwt-wcas-search-form__icon-search {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    margin: auto auto auto 12px;
}

.dgwt-wcas-search-form__icon-search svg {
    stroke: var(--black);
}

.header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.header__bottom .menu-main-container .main-menu,
.header__bottom .menu-main-container .mobile-menu {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
}


.header__bottom .menu-main-container .main-menu li a,
.header__bottom .menu-main-container .mobile-menu li a {
    font-size: var(--p-ultra-small);
    font-weight: var(--fw-400);
}

.header__bottom__other-menu {
    padding: 0 var(--padding);
}

.header__bottom__other-menu__title {
    font-size: 16px;
    font-weight: var(--fw-500);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__bottom__other-menu__title svg {
    transform: rotate(90deg);
    transition: all var(--transition);
}

.header__bottom__other-menu > div {
    border-bottom: 1px solid var(--gray, #F0F0F0);
    padding: 12px 0;
}

.header__bottom__other-menu > div > div:nth-child(2) {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
}

.header__bottom__other-menu > div.active > div:nth-child(2) {
    opacity: 1;
    visibility: visible;
}

.header__bottom__other-menu > div.active svg {
    transform: rotate(-90deg);
}

.header__bottom__other-menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
    font-size: var(--p-ultra-small-2);
    font-weight: var(--fw-400);
}

/* изменение цвета */

.header:not(:hover,.header--solid).stile-light a {
    color: var(--black);
}

.header:not(:hover,.header--solid).stile-light svg {
    color: var(--black);
}

.header:not(:hover,.header--solid).stile-light .header-nav__item svg {
    stroke: var(--black);
}

.header:not(:hover,.header--solid).stile-dark a {
    color: var(--white);
}

.header:not(:hover,.header--solid).stile-dark svg {
    fill: var(--white);
}

.header:not(:hover,.header--solid).stile-dark .header-nav__item svg {
    stroke: var(--white);
}

/* mega-menu */

.mega-menu {
    padding: 48px 20px 100px;
    background: white;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    height: 0;
    min-height: 0;
    transform: translateX(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mega-menu.visible {
    opacity: 1;
    visibility: visible;
    min-height: 600px;
    height: 100%;
}

.mega-menu__container {
    display: flex;
}

.mega-menu__content .js-back-to-main {
    position: fixed;
    top: 0;
    left: 0;
}

.mega-menu__left {
    width: 20%;
    padding-bottom: 56px;
    border-right: 1px solid #DDD;
}

.mega-menu__left p {
    margin-bottom: 24px;
    font-size: var(--p-small);
    font-weight: var(--fw-500);
    line-height: var(--p-lh-small);
}

.mega-menu__categories > li {
    margin-bottom: 12px;
    font-size: var(--p-ultra-small);
    font-weight: var(--fw-400);
    line-height: var(--p-lh-ultra-small);
    cursor: pointer;
}

.mega-menu__categories > li.active,
.mega-menu__categories > li:hover {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0;
    text-decoration-thickness: 2px;
}

.mega-menu__right {
    position: relative;
    width: 80%;
    padding-left: 20px;
}

.mega-menu__content {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    grid-template-columns: repeat(auto-fill, clamp(172px, 14vw, 204px));
    grid-auto-rows: clamp(172px, 14vw, 204px);
    flex-wrap: wrap;
    gap: clamp(8px, 5vw, 25px);
    padding-left: 70px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition);
    z-index: -1;
    max-height: 500px;
    overflow-y: auto;
}

.mega-menu.visible .mega-menu__content.active {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    background: var(--white);
    transition: all var(--transition);
}

.mega-menu__card {
    padding: 19px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid transparent;
    background-color: var(--light-gray);
    transition: border var(--transition);
    overflow: hidden;
}

.mega-menu__card:hover {
    border: 1px solid #E2E2E2
}

.mega-menu__card a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.mega-menu__card--no_display a {
    justify-content: center;
}

.mega-menu__card img {
    width: auto;
    border-radius: 6px;
}

@media screen and (max-width: 1024px) {
    .mega-menu__card img {
        height: 60%;
    }
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #00000000;
    z-index: 42;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition);
}

.mega-menu-overlay.visible {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 961px) {
    .header__bottom .menu-item:not(.menu-item-has-children) > a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: var(--black);
    }

    .header__bottom .menu-item:not(.menu-item-has-children) > a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 0;
        transition: all 0.2s ease;
    }

    .header__bottom .menu-item:not(.menu-item-has-children) > a:hover::after {
        opacity: 1;
    }


    .header__bottom .menu-item.menu-item-has-children > .menu-item--special-wrapper {
        padding: 10px 18px;
        background: var(--yellow, #FFC600);
        display: flex;
        gap: 15px;
        border-radius: 999px;
        flex-direction: row;
        align-items: center;
    }

    .header__bottom .menu-item.menu-item-has-children > .menu-item--special-wrapper:hover {
        color: var(--black, #1A1B1C) !important;
    }

    .header__bottom .menu-main-container > ul.main-menu > li.menu-item > a {
        font-weight: var(--fw-400);
    }

    .desktop-burger--wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
        width: 24px;
        height: 24px;
    }

    .desktop-burger--wrapper span {
        display: block;
        width: 19px;
        height: 2px;
        background: var(--black, #1A1B1C);
        border-radius: 999px;
        transition: all 0.3s ease;
    }

    .desktop-burger--wrapper.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .desktop-burger--wrapper.active span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
    }

    .desktop-burger--wrapper.active span:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
    }
}

/* narrow menu */
.narrow-dropdown {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.narrow-dropdown__link-wrapper {
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.narrow-dropdown.active .narrow-dropdown__link-wrapper {
    transform: rotate(180deg) translate(3px, 2px);
}

.narrow-dropdown__link-wrapper span {
    display: block;
    height: 1px;
    width: 8px;
    background: #000;
    border-radius: 999px;
}

.narrow-dropdown__link-wrapper span:first-child {
    transform: rotate(45deg) translate(-3px, 2px);
}

.narrow-dropdown__link-wrapper span:last-child {
    transform: rotate(-45deg) translate(2px, 0px);
}

.narrow-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: auto;
    top: 0;
}

.narrow-dropdown.active .narrow-menu {
    opacity: 1;
    visibility: visible;
    top: 60px;
}

.narrow-container {
    position: relative;
    padding: 20px;
    width: max-content;
    min-width: 225px;
    background: var(--white);
    border: 1px solid #F0F0F0;
    border-radius: 24px;
    left: -25%;
}

.narrow-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #F0F0F0;
}

.narrow-container::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #ffffff;
}

.narrow-container .mega-menu__categories {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.narrow-container .mega-menu__categories li {
    margin: 0
}

.narrow-dropdown .narrow-menu .narrow-container ul li a {
    text-decoration: none;
    font-weight: 400;
}

/* анимация header */


.header--solid,
.header--hide-menu {
    background-color: var(--white);
}

.header--hide-menu .header__top {
    padding-bottom: 0;
    transition: padding var(--transition);

}

.header--hide-menu .header__top::after {
    opacity: 0;
}

.header--hide-menu {
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.header__bottom {
    transition: transform var(--transition), opacity var(--transition), padding-top var(--transition);
}

/* footer */
.footer {
    padding-top: 112px;
    padding-bottom: 100px;
}

.footer__grid {
    display: grid;
    grid-template-areas: 'c1 c2' 'c1 c3' 'c1 c4' 'c1 c6' 'c5 c5';
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto 118px 1fr;
    gap: var(--gap-h);
}

.footer__cell {
    padding: clamp(16px, 5vw, 32px);
    border-radius: 24px;
    background-color: var(--footer-bg);
}

.footer__cell--1 {
    grid-area: c1;
}

.footer__cell--2 {
    grid-area: c2;
}

.footer__cell--3 {
    grid-area: c3;
}

.footer__cell--4 {
    grid-area: c4;
    grid-auto-rows: 20px;
}

.footer__cell--5 {
    grid-area: c5;
}

.footer__cell--6 {
    grid-area: c6;
}

.footer__cell--4,
.footer__cell--5,
.footer__cell--6 {
    padding: 0;
    background-color: var(--white);
}

.footer__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 72px clamp(8px, 4.5vw, 56px);
    margin-top: 32px;
}

.footer__categories-sub {
    display: flex;
    flex-direction: column;
    gap: 72px;
    width: 100%;
    max-width: 189px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.footer__menu li a {
    font-size: var(--p-ultra-small-2);
    font-weight: var(--fw-400);
    line-height: var(--p-lh-ultra-small-2);
    color: #484848;
}

.footer__menu li a:hover {
    color: var(--black);
}

.footer__info,
.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-v) clamp(8px, 4vw, 64px);
}

footer.redesign a.footer__link {
    text-decoration: underline;
}

.footer__social {
    display: grid;
    grid-template-columns: repeat(auto-fill, clamp(82px, 10vw, 135px));
    height: 100%;
    justify-content: space-between;
    gap: clamp(8px, 0.5vw, 24px);
}

.footer__title {
    font-size: var(--p-ultra-small);
    font-weight: var(--fw-500);
    line-height: var(--p-lh-ultra-small);
}

.footer__main-title {
    font-size: var(--p-medium-bigger);
    font-weight: var(--fw-500);
    line-height: var(--p-lh-medium);
}

.footer__body {
    display: block;
    margin-top: 8px;
    font-size: var(--p-ultra-small-2);
    font-weight: var(--fw-400);
    line-height: var(--p-lh-ultra-small-2);
}

.footer__body--gray {
    color: #484848;
}

.footer__body--tl {
    text-align: left;
}

.footer__body--tooltip {
    margin-top: 12px;
    font-size: var(--caption);
    font-weight: var(--fw-400);
    line-height: var(--caption-lh);
}

a.footer__link,
.footer__link {
    text-decoration: underline;
    text-decoration-style: solid;
    transition: all var(--transition);
}

.footer__body--tooltip .footer__link {
    color: #484848;
}

.footer__link:hover {
    text-decoration: none;
}

/* social */
a.social__item,
.social__item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 135px;
    width: 100%;
    border-radius: 24px;
    background-color: var(--footer-bg);
    font-size: var(--p-medium);
    font-weight: var(--fw-400);
    line-height: var(--p-lh-medium);
    color: var(--black);
}

/* subscribe-form-item */
.subscribe-form-item--container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 8px 8px 8px 24px;
    border-radius: 500px;
    background-color: var(--white);
    height: clamp(3rem, 2.7359rem + 1.1268vw, 3.75rem);
}

.subscribe-form-item--input-email {
    width: 100%;
}

.subscribe-form-item--container input {
    width: 100%;
    font-size: var(--p-ultra-small-2);
    font-weight: var(--fw-400);
    line-height: var(--p-lh-ultra-small-2);
}

.subscribe-form-item--container input::placeholder {
    color: var(--dark-gray);
}

.subscribe-form-item--container input,
.subscribe-form-item--btn-submit button {
    font-family: 'LT Wave', sans-serif;
}

.subscribe-form-item--container button {
    height: clamp(2rem, 1.7359rem + 1.1268vw, 2.75rem);
}

.footer__copyright {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4px;
}

.cart-notice {
    z-index: 30;
    width: 100vw;
    height: 0;
    background-color: var(--yellow);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    pointer-events: none;
    overflow: hidden;
    position: absolute;
    left: 0;
}

.cart-notice.active {
    height: 2.5rem;
    pointer-events: initial;
}

.copy-notice {
    z-index: 30;
    width: 100vw;
    height: 0;
    background-color: var(--yellow);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    pointer-events: none;
    overflow: hidden;
}

.copy-notice.active {
    top: 0;
    height: 2.5rem;
    pointer-events: initial;
}

[data-tabs-list] {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    position: absolute !important;
    width: 100%;
}

[data-tabs-list].active {
    opacity: 1;
    pointer-events: auto;
    position: relative !important;
}

.header-nav__item--mobile {
    display: none;
}

.menu-main-container .back-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 24px;
    margin: 24px var(--padding) 20px;
    border-radius: 4px;
    background-color: var(--yellow);
}

.mobile {
    display: none;
}

.header__bottom__socials-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 12px;
    gap: 16px;
}


.header__bottom__socials__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.header__bottom__contacts__item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.header__bottom__contacts-wrapper {
    padding: 12px;
    background: var(--gray);
    margin: 0 12px 12px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
}

.header__bottom__contacts__title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 16px;
}

.header__bottom__contacts__items-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header__bottom__socials__item svg,
.header__bottom__contacts__item svg {
    width: 28px;
    height: 28px;
}

.header__bottom__socials__item a,
.header__bottom__contacts__item__svg-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--yellow);
}

.header__bottom__contacts__item a {
    text-decoration: underline;
}

.header__bottom__socials__item #telegram_icon {
    background-color: #26A5E4;
}

.header__bottom__socials__item #wa_icon {
    background-color: #27D367;
}

.site-content {
    margin-top: 105px;
}

@media screen and (max-width: 1130px) {
    .footer__grid {
        grid-template-areas: 'c2 c2' 'c1 c1' 'c3 c4' 'c3 c6' 'c5 c5';
        grid-template-rows: auto auto clamp(5.625rem, -4.3262rem + 16.568vw, 7.375rem) 1fr;
    }

    .footer__categories-sub {
        flex-direction: row;
        max-width: none;
        width: auto;
    }
}

@media screen and (max-width: 1240px) {
    .footer__info {
        justify-content: space-between;
    }
}

@media screen and (min-width: 961px) {
    .header__top, .header__bottom.js-mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .header {
        background-color: var(--white);
    }

    .header__left .tel,
    .header-nav__item--search,
    .mega-menu__left p {
        display: none;
    }

    .header-nav__item--mobile {
        display: block;
    }

    .header__top::after {
        content: none;
    }

    .header__middle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header__bottom {
        display: none;
        padding: 0;
    }

    .header__top {
        padding-top: 11px;
        padding-bottom: 8px;
    }

    .header--hide-menu .header__top {
        padding-bottom: 12px;
    }

    .js-mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        height: 100dvh;
        width: 100%;
        background-color: var(--white);
        overflow-y: scroll;
        z-index: 101;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .js-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
    }



    .js-mobile-menu > div {
        width: 100%;
    }

    .header__bottom .menu-main-container .mobile-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .menu-main-container,
    .mega-menu__container {
        flex-direction: column;
        max-width: var(--container);
        margin-left: auto;
        margin-right: auto;
    }

    .mega-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
        transform: none;
        background-color: var(--white);
    }

    .mega-menu.visible {
        min-height: auto;
        height: auto;
    }

    .mega-menu__left,
    .mega-menu__right {
        position: unset;
        width: 100%;
        padding: 0;
        border: 0;
    }

    .mega-menu__content {
        position: absolute;
        top: 0;
        left: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        align-content: start;
        justify-content: center;
        gap: clamp(8px, 2vw, 25px);
        padding: 72px var(--padding) 20px;
        overflow-y: scroll;
        height: 100vh;
        max-height: unset;
        transition: all var(--transition);
    }

    .mega-menu__content > :first-child {
        grid-column: 1 / -1;
        font-weight: var(--fw-500);
        font-size: 18px;
        margin-bottom: 12px;
    }

    .mega-menu__card {
        height: clamp(170px, 20.5vw, 204px);
    }

    .mega-menu__content .back-btn {
        margin-bottom: 0;
        grid-column: 1/-1;
    }

    .menu-main-container .back-btn {
        display: flex;
    }

    .mega-menu__card img {
        object-fit: cover;
    }

    .back-to-site-btn--wrapper {
        display: flex;
        width: 100%;
        background-color: var(--light-gray);
    }

    .header__bottom .menu-item.menu-item-has-children {
        width: 100%;
        padding: 6px var(--padding);
        background: var(--light-gray);
    }

    .header__bottom .menu-item-has-children:not(:has(+ .menu-item-has-children)) {
        padding-bottom: 24px;
    }

    .header__bottom .menu-item:not(.menu-item-has-children) {
        padding: 12px 0;
        border-bottom: 1px solid #F0F0F0;
        margin: 0 auto;
        width: 94%;
        gap: 0;
    }

    .mobile-menu li.menu-item:not(.menu-item-has-children) a {
        font-weight: 500;
    }

    .narrow-dropdown {
        flex-direction: column;
    }

    .narrow-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
    }

    .narrow-menu-name--wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .narrow-container .mega-menu__categories {
        gap: 12px;
    }

    .narrow-container {
        position: static;
        padding: 20px;
        width: 100%;
        min-width: 225px;
        border: none;
        border-radius: 0;
    }

    .narrow-container::before,
    .narrow-container::after {
        content: unset;
    }

    .narrow-dropdown {
        justify-content: space-between;
    }

    .narrow-dropdown .narrow-menu .narrow-container ul li a {
        font-size: 14px;
    }

    .footer__grid {
        grid-template-areas: 'c2 c2' 'c3 c3' 'c4 c4' 'c6 c6' 'c1 c1' 'c5 c5';
        grid-template-rows: auto auto auto 1fr;
    }

    .footer__social {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 82px;
    }

    a.social__item, .social__item {
        max-width: none;
    }

    .footer__info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background-color: transparent;
        gap: clamp(8px, 0.5vw, 24px);;
        padding: 0;
    }

    .footer__info-col {
        padding: clamp(16px, 5vw, 32px);
        border-radius: 24px;
        background-color: var(--footer-bg);
    }

    .footer {
        padding-top: clamp(72px, 5vw, 112px);
        padding-bottom: clamp(37px, 5vw, 120px);
    }

    .site-content {
        margin-top: 50px;
    }
}


@media screen and (max-width: 600px) {
    .footer__menu {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    .footer__item.active .footer__menu {
    }

    .footer__cell,
    .footer__info-col,
    a.social__item,
    .social__item {
        border-radius: 20px;
    }

    .footer__cell--1 {
        padding-left: 0;
        padding-right: 0;
        padding-top: 56px;
        background-color: transparent;
    }

    .footer__categories {
        flex-direction: column;
        gap: 0;
        margin-top: 24px;
    }

    .footer__menu {
        margin-top: 0;
    }

    .footer__menu li a {
        font-size: 14px;
        color: var(--black);
    }

    .footer__categories-sub {
        flex-direction: column;
        gap: 0;
    }

    .footer__categories-sub .footer__item {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray);
    }

    .footer__categories-sub .footer__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        line-height: 24px;
    }

    .footer__categories-sub .footer__item.active .footer__title {
        padding-bottom: 12px;
    }

    .footer__info {
        display: flex;
        flex-flow: row wrap;
    }

    .footer__info-col {
        flex: 1 1 45%;
    }

    .mobile {
        display: block;
    }
}
