/*
1. Reset CSS
2. Fonts
3. Main Setting
4. Basic elements
5. Header
6. Footer
7. Content
8. Popup
9. Media
*/

/**************************************/
/************ 1. Reset Css ************/
/**************************************/

html{line-height:1.15;-webkit-text-size-adjust:100%}
body{margin:0}
h1{font-size:2em;margin:.67em 0}
hr{box-sizing:content-box;height:0;overflow:visible}
pre{font-family:monospace,monospace;font-size:1em}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
code,kbd,samp{font-family:monospace,monospace;font-size:1em}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-.25em}
sup{top:-.5em}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,input{overflow:visible}
button,select{text-transform:none}
button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{padding:.35em .75em .625em}
legend{box-sizing:border-box;display:table;max-width:100%;padding:0;white-space:normal}
progress{vertical-align:baseline}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}
[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
details{display:block}
summary{display:list-item}
*,*::before,*::after{box-sizing:border-box}

/**********************************/
/************ 2. Fonts ************/
/**********************************/

@font-face {
    font-family: 'Gilroy';
    font-weight: 200;
    font-style: normal;
    font-display: auto;
    src: url('../fonts/Gilroy-UltraLight.woff2') format('woff2');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 400;
    font-style: normal;
    font-display: auto;
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 500;
    font-style: normal;
    font-display: auto;
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 600;
    font-style: normal;
    font-display: auto;
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 700;
    font-style: normal;
    font-display: auto;
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 800;
    font-style: normal;
    font-display: auto;
    src: url('../fonts/Gilroy-Extrabold.woff2') format('woff2');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 900;
    font-style: normal;
    font-display: auto;
    src: url('../fonts/Gilroy-Black.woff2') format('woff2');
}

/*****************************************/
/************ 3. Main Setting ************/
/*****************************************/

:root {
    --color-2A2C2F: 42 44 47;           /* #2A2C2F */
    --color-FFFFFF: 255 255 255;        /* #FFFFFF */
    --color-F0F0F0: 240 240 240;        /* #F0F0F0 */
    --color-82888F: 130 136 143;        /* #82888F */
    --color-ADADAD: 173 173 173;        /* #ADADAD */
    --color-96A0AE: 150 160 174;        /* #96A0AE */
    --color-D4D7E0: 212 215 224;        /* #D4D7E0 */
    --color-F2F4F6: 242 244 246;        /* #F2F4F6 */
    --color-E93838: 233 56 56;          /* #E93838 */
    --color-52B713: 82 183 19;          /* #52B713 */

    --gradient: linear-gradient(90deg, #FDB720 0%, #FDCF19 100%);
    --gradient-reverse: linear-gradient(270deg, #FDB720 0%, #FDCF19 100%);
    --gradient-v2: linear-gradient(90deg, #FD6220 0%, #FDA419 100%);
    --gradient-dark: linear-gradient(180deg, #052B47 1.26%, #05599A 343.05%);

    --color-text: rgb(var(--color-2A2C2F));
    --color-text-secondary: rgb(var(--color-ADADAD));
    --color-bg: rgb(var(--color-F0F0F0));
    --color-bg-white: rgb(var(--color-FFFFFF));
    --color-bg-dark: var(--gradient-dark);
    --color-bg-input: rgb(var(--color-FFFFFF));
    --color-bg-modal: rgb(var(--color-FFFFFF));
    --color-border: rgb(var(--color-D4D7E0));
    --color-placeholder: rgb(var(--color-96A0AE));
    --color-success: rgb(var(--color-52B713));
    --color-error: rgb(var(--color-E93838));

    --border-radius: 1.06667vw;

    --font-main: 'Gilroy', serif;
}

::placeholder {
    color: var(--color-placeholder);
}

body {
    font-family: var(--font-main);
    font-size: 2.93333vw;
    line-height: normal;
    color: var(--color-text);
    background: var(--color-bg);
    --page-wrap: 6.4vw;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex-grow: 1;
    padding-top: 3.73333vw;
    padding-bottom: 10.66667vw;
}

.main > *:first-child {
    padding-top: 0;
}

.main > *:last-child {
    padding-bottom: 0;
}

.wrap {
    padding-left: var(--page-wrap);
    padding-right: var(--page-wrap);
}

/*******************************************/
/************ 4. Basic elements ************/
/*******************************************/

a,
button {
    cursor: pointer;
    transition: .3s;
}

a:not([class]) {
    color: rgb(var(--color-accent));
    text-decoration: underline;
    text-decoration-thickness: clamp(1px, .26667vw, .26667vw);
    text-decoration-skip-ink: none;
    text-underline-offset: clamp(2px, .53333vw, .53333vw);
}

a:not([class]):hover {
    text-decoration-color: transparent;
}

h1 {
    font-size: 4.8vw;
}

h2 {
    font-size: 4vw;
}

h3 {
    font-size: 3.2vw;
}

.input {
    background: var(--color-bg-input);
    height: 10.13333vw;
    border-radius: var(--border-radius);
    border: none;
    padding: 0 4vw;
    font-size: 2.93333vw;
    transition: .3s;
}

.input.error {
    box-shadow: inset 0 0 0 1px var(--color-error);
}

.textarea {
    background: var(--color-bg-input);
    border-radius: var(--border-radius);
    border: none;
    resize: none;
    height: 33.06667vw;
    padding: 3.2vw 4vw;
    font-size: 2.93333vw;
    transition: .3s;
}

.textarea.error {
    box-shadow: inset 0 0 0 1px var(--color-error);
}

.file {
    display: flex;
    align-items: center;
    gap: 2.4vw;
    position: relative;
    font-size: 2.93333vw;
    cursor: pointer;
    transition: .3s;
}

.file__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.file__icon {
    width: 5.33333vw;
    height: 6.4vw;
    flex-shrink: 0;
}

.file__text {
    width: 17.33333vw;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 2.4vw;
    font-size: 2.93333vw;
    cursor: pointer;
}

.checkbox__mark {
    width: 6.4vw;
    height: 6.4vw;
    position: relative;
    flex-shrink: 0;
}

.checkbox__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.checkbox__custom {
    background: var(--color-bg-input);
    border-radius: calc(var(--border-radius) * 1.5);
    display: block;
    width: 100%;
    height: 100%;
}

.checkbox__custom::before {
    content: '';
    position: absolute;
    top: calc(50% - clamp(2px, .53333vw, .53333vw));
    left: 50%;
    width: 3.46667vw;
    height: 2.4vw;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 11 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.8064 0.643261C11.0612 0.898078 11.0612 1.31122 10.8064 1.56604L4.71638 7.65604C4.46157 7.91085 4.04843 7.91085 3.79361 7.65604L0.31361 4.17604C0.0587933 3.92122 0.0587933 3.50808 0.31361 3.25326C0.568427 2.99844 0.981568 2.99844 1.23638 3.25326L4.255 6.27187L9.88361 0.643261C10.1384 0.388444 10.5516 0.388444 10.8064 0.643261Z' fill='%23FDB720'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.checkbox__input.error + .checkbox__custom {
    box-shadow: inset 0 0 0 1px var(--color-error);
}

.checkbox__input:checked + .checkbox__custom::before {
    opacity: 1;
    visibility: visible;
}

.btn {
    background: var(--gradient);
    color: var(--color-text);
    fill: var(--color-text);
    stroke: var(--color-text);
    border-radius: var(--border-radius);
    font-size: 2.66667vw;
    font-weight: 500;
    line-height: 1.2;
    padding: 2.66667vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2px, .53333vw, .53333vw);
    vertical-align: middle;
    position: relative;
    text-decoration: none;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-reverse);
    border-radius: inherit;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.btn[disabled] {
    opacity: .5;
    pointer-events: none;
}

.btn span {
    position: relative;
    z-index: 2;
}

.title {
    margin: 0;
    font-size: 4.8vw;
    font-weight: 700;
    line-height: 1.22222;
}

.content {
    line-height: 1.44444;
    --h-line-height: 1.23333;

    --img-margin-top: 4.26667vw;
    --img-margin-bottom: 4.26667vw;
    --p-margin-top: 4.26667vw;
    --p-margin-bottom: 4.26667vw;
    --h-margin-top: 4.26667vw;
    --h-margin-bottom: 4.26667vw;
    --l-margin-top: 4.26667vw;
    --l-margin-bottom: 4.26667vw;
    --l-margin-left: 10.4vw;
}

.content > *:first-child {
    margin-top: 0;
}

.content > *:last-child {
    margin-bottom: 0;
}

.content a {
    text-decoration-skip-ink: none;
}

.content a:not([class]) {
    color: inherit;
}

.content a:hover {
    text-decoration-color: transparent;
}

.content img {
    max-width: 100%;
    border-radius: var(--border-radius);
    margin-top: var(--img-margin-top);
    margin-bottom: var(--img-margin-bottom);
    display: block;
}

.content p {
    margin-top: var(--p-margin-top);
    margin-bottom: var(--p-margin-bottom);
}

.content h1,
.content h2,
.content h3,
.content h4 {
    margin-top: var(--h-margin-top);
    margin-bottom: var(--h-margin-bottom);
    line-height: var(--h-line-height);
}

.content ul:not([class]),
.content ol:not([class]) {
    margin-top: var(--l-margin-top);
    margin-bottom: var(--l-margin-bottom);
    padding: 0;
}

.content ul:not([class]) {
    list-style: disc;
    margin-left: var(--l-margin-left);
}

.content ol:not([class]) {
    list-style: decimal;
    margin-left: var(--l-margin-left);
}

/***********************************/
/************ 5. Header ************/
/***********************************/

.header__top {
    display: none;
}

.header__middle {
    padding: 4.8vw 0 4.26667vw;
}

.header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.66667vw;
}

.header__logo {
    max-width: 44vw;
}

.header__logo-img {
    max-width: 100%;
    display: block;
}

.header-catalog {
    display: none;
}

.header__search {
    flex-grow: 1;
    position: relative;
    margin-right: 2.4vw;
}

.header__search-input {
    background: var(--color-bg-input);
    color: var(--color-text);
    height: 9.06667vw;
    border-radius: var(--border-radius);
    border: none;
    padding: 0 2.66667vw 0 8.8vw;
    width: 100%;
    font-size: 2.93333vw;
}

.header__search-btn {
    position: absolute;
    top: 50%;
    left: 1.6vw;
    width: 5.86667vw;
    height: 5.86667vw;
    stroke: var(--color-text);
    background: none;
    padding: 0;
    border: none;
    transform: translateY(-50%);
}

.header__search-btn-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.header__contacts {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.6vw;
}

.header__email {
    display: flex;
    align-items: center;
    gap: 2.13333vw;
    color: var(--color-text);
    fill: var(--color-text);
    font-weight: 500;
    line-height: 3.46667vw;
    text-underline-offset: .53333vw;
}

.header__email:hover {
    text-decoration-color: transparent;
}

.header__email-icon {
    width: 3.2vw;
    height: 3.2vw;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 2.13333vw;
    color: var(--color-text);
    fill: var(--color-text);
    text-decoration: none;
    font-size: 3.46667vw;
    font-weight: 700;
    line-height: 3.2vw;
}

.header__phone-icon {
    width: 3.2vw;
    height: 3.2vw;
}

.header__callback {
    display: none;
}

.header__social {
    display: none;
}

.header__social-item {
    width: 8vw;
    height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__social-icon {
    width: 100%;
    height: 100%;
}

.header__bottom {
    background: var(--color-bg-dark);
    padding: 1.6vw 0;
    position: relative;
}

.header-menu {
    display: none;
}

.header-cart {
    display: none;
}

.header__mob-nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.13333vw;
    background: linear-gradient(128.15deg, #FDCC1A 4.57%, #FD7A1D 151.55%);
    border-radius: var(--border-radius);
    width: 9.06667vw;
    height: 9.06667vw;
    flex-shrink: 0;
    stroke: var(--color-text);
    border: none;
    order: 2;
}

.header__mob-nav-btn-icon {
    width: 100%;
    height: 100%;
}

/***********************************/
/************ 6. Footer ************/
/***********************************/

.footer {
    padding: 9.6vw 0 10vw;
    background: var(--color-bg-white);
    flex-shrink: 0;
    margin-bottom: 17.06667vw;
}

.footer__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6.93333vw;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 7.46667vw;
    width: 100%;
}

.footer__logo {
    display: flex;
    max-width: 68vw;
}

.footer__logo-img {
    max-width: 100%;
}

.footer__communication {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 5.33333vw;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
}

.footer__contacts-item {
    display: flex;
    align-items: center;
    gap: 2.13333vw;
}

.footer__contacts-icon {
    width: 3.2vw;
    height: 3.2vw;
    flex-shrink: 0;
}

.footer__contacts-link,
.footer__contacts-text {
    color: inherit;
    text-decoration: none;
    width: fit-content;
    line-height: 1.18182;
}

.footer__contacts-link--bold {
    font-weight: 700;
    line-height: 1.27273;
}

.footer__contacts-link:hover {
    color: #FDB720;
}

.footer__social {
    margin: 0 2.13333vw 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
    flex-shrink: 0;
}

.footer__social-link {
    width: 10.13333vw;
    height: 10.13333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link:hover {
    fill: #FDB720;
}

.footer__social-icon {
    width: 100%;
    height: 100%;
}

.footer__navs {
    display: flex;
    flex-wrap: wrap;
    gap: 9.6vw 2.66667vw;
    padding: 0 1.6vw;
}

.footer__nav {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 5.06667vw;
    width: 28.53333vw;
}

.footer__nav-title {
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.footer__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
}

.footer__nav-link {
    color: inherit;
    text-decoration: none;
    line-height: 1.22222;
    display: block;
}

.footer__nav-link:hover {
    color: #FDB720;
}

.footer__nav--wide {
    flex-grow: 1;
    width: 100%;
}

.footer__nav--wide .footer__nav-list {
    display: grid;
    grid-template-columns: 28.53333vw auto;
    gap: 2.13333vw 2.66667vw;
}

.footer__disclaimer {
    display: none;
}

/************************************/
/************ 7. Content ************/
/************************************/

.hidden {
    display: none !important;
}

.bg-white {
    margin: 0 calc(var(--page-wrap) * -1);
    padding: 10.4vw var(--page-wrap) 7.46667vw;
    background: var(--color-bg-white);
}

.mob-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #05375D 0%, #052B48 100%);
    color: #fff;
    fill: #fff;
    padding: 8.8vw 5.33333vw 7.2vw;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
    transform: translateY(26.66667vw);
    transition: .6s;
    opacity: 0;
    visibility: hidden;
}

.mob-nav.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.mob-nav__close {
    position: absolute;
    top: 4.26667vw;
    right: 5.33333vw;
    width: 3.73333vw;
    height: 3.73333vw;
    background: none;
    padding: 0;
    border: none;
    stroke: #fff;
}

.mob-nav__close-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.mob-nav__nav {
    list-style: none;
    padding: 0;
    margin: 0 2.13333vw 0 0;
}

.mob-nav__nav .mob-nav__nav {
    display: none;
    margin: 0;
    border-top: clamp(1px, .26667vw, .26667vw) solid rgb(var(--color-FFFFFF) / .2);
}

.mob-nav__nav .mob-nav__nav .mob-nav__nav-item:last-child {
    border: none;
}

.mob-nav__nav-item {
    border-bottom: clamp(1px, .26667vw, .26667vw) solid rgb(var(--color-FFFFFF) / .2);
}

.mob-nav__nav-link {
    display: flex;
    align-items: center;
    color: #fff;
    fill: #fff;
    text-decoration: none;
    font-size: 3.46667vw;
    gap: 2.13333vw;
    padding: 2.66667vw 0 2.4vw;
}

.mob-nav__nav-icon {
    width: 7.2vw;
    height: 5.33333vw;
    object-fit: contain;
}

.mob-nav__nav-dropdown {
    width: 3.2vw;
    height: 1.6vw;
    fill: #fff;
    flex-shrink: 0;
    transition: .3s;
    margin-left: auto;
}

.mob-nav__nav-sub-menu {
    margin: 0;
    padding: 0 0 2.4vw;
    list-style: none;
    display: none;
}

.mob-nav__nav-sub-menu-link {
    display: flex;
    align-items: center;
    color: #fff;
    fill: #fff;
    text-decoration: none;
    font-size: 3.2vw;
    gap: 2.66667vw;
    padding: 1.6vw 0 1.6vw 3.2vw;
}

.mob-nav__nav-sub-menu-total {
    color: #ADADAD;
}

.mob-nav__nav-sub-menu-dropdown {
    width: 3.2vw;
    height: 1.6vw;
    fill: #fff;
    flex-shrink: 0;
    margin-left: auto;
    transition: .3s;
}

.mob-nav__nav-third-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}

.mob-nav__nav-third-menu-link {
    display: block;
    color: #fff;
    fill: #fff;
    text-decoration: none;
    font-size: 3.2vw;
    padding: 1.6vw 0 1.6vw 6.4vw;
}

.mob-nav__nav-third-menu-total {
    color: #ADADAD;
}

.mob-nav__nav-link.active .mob-nav__nav-dropdown {
    transform: rotate(180deg);
}

.mob-nav__nav-sub-menu-link.active .mob-nav__nav-sub-menu-dropdown {
    transform: rotate(180deg);
}

.mob-nav__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.66667vw;
    margin-right: 2.13333vw;
}

.mob-nav__second-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
}

.mob-nav__second-nav-link {
    color: #fff;
    font-size: 3.46667vw;
    text-decoration: none;
}

.header-cart {
    display: none;
    align-items: center;
    gap: 1.86667vw;
    fill: #fff;
    stroke: #fff;
    color: #fff;
    position: relative;
    flex-shrink: 0;
    text-decoration: none;
    margin: 0 .53333vw 0 0;
    font-size: 3.46667vw;
}

.mob-nav .header-cart {
    display: flex;
}

.header-cart__icon {
    width: 6.66667vw;
    height: 5.06667vw;
    display: block;
}

.header-cart__count {
    min-width: 4.53333vw;
    height: 4.53333vw;
    line-height: 4.53333vw;
    font-size: 3.46667vw;
    font-weight: 700;
    background: #FDCC1A;
    color: var(--color-text);
    display: block;
    text-align: center;
    border-radius: 5.33333vw;
    padding: .26667vw .8vw 0;
}

.mob-nav__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 7.46667vw;
    border-top: clamp(1px, .26667vw, .26667vw) solid rgb(var(--color-FFFFFF) / .2);
}

.mob-nav__work-hours {
    display: flex;
    align-items: center;
    gap: 2.13333vw;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 3.46667vw;
}

.mob-nav__work-hours-icon {
    width: 4.26667vw;
    height: 4.26667vw;
    flex-shrink: 0;
}

.mob-nav__location {
    display: flex;
    align-items: center;
    gap: 2.13333vw;
    position: relative;
}

.mob-nav__location-icon {
    width: 3.46667vw;
    height: 4.53333vw;
}

.mob-nav__location-current {
    display: flex;
    align-items: center;
    gap: 2.13333vw;
    cursor: pointer;
}

.mob-nav__location-dropdown {
    width: 2.66667vw;
    height: 1.33333vw;
}

.mob-nav__location-list {
    position: absolute;
    top: calc(100% + 1.33333vw);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(180deg, #05375D 0%, #052B48 100%);
    color: #fff;
    border: clamp(1px, .26667vw, .26667vw) solid rgb(var(--color-FFFFFF) / .1);
    border-radius: var(--border-radius);
    transform: translateY(13.33333vw);
    transition: .6s;
    opacity: 0;
    visibility: hidden;
}

.mob-nav__location-list.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.mob-nav__location-item:not(:last-child) {
    border-bottom: clamp(1px, .26667vw, .26667vw) solid rgb(var(--color-FFFFFF) / .1);
}

.mob-nav__location-link {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 2.66667vw;
}

.mob-nav__social {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mob-nav__social-link {
    width: 8vw;
    height: 8vw;
    display: block;
}

.mob-nav__social-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.fixed-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.6vw 6.93333vw 1.86667vw;
    background: var(--color-bg-dark);
    z-index: 10;
}

.fixed-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.fixed-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.06667vw;
    color: rgb(var(--color-FFFFFF));
    stroke: rgb(var(--color-FFFFFF));
    text-decoration: none;
    font-size: 2.93333vw;
    line-height: 1;
    position: relative;
}

.fixed-nav__icon {
    width: 4.8vw;
    height: 4.8vw;
    display: block;
}

.fixed-nav__counter {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    background: #FDCC1A;
    color: #052B47;
    font-size: 3.2vw;
    font-weight: 700;
    line-height: 1;
    min-width: 4.53333vw;
    height: 4.53333vw;
    text-align: center;
    line-height: 4.53333vw;
    border-radius: 4.53333vw;
    padding: clamp(1px, .26667vw, .26667vw) .8vw 0;
}

.promo {
    padding: 4.53333vw 0;
}

.promo:first-child {
    margin-top: -3.73333vw;
}

.promo-banner {
    display: none;
}

.banner-slider {
    margin: 0 calc(var(--page-wrap) * -1);
}

.banner-slider__item {
    display: block;
}

.banner-slider__item-img {
    display: block;
    width: 100%;
}

.banner-slider__pagination {
    --swiper-pagination-bottom: 3.46667vw;
    --swiper-pagination-bullet-border-radius: 0.53333vw;
    --swiper-pagination-bullet-size: 2.66667vw;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-inactive-color: var(--color-bg-white);
    --swiper-pagination-color: var(--gradient);
    --swiper-pagination-bullet-horizontal-gap: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.13333vw;
}

.banner-slider__nagination {
    position: absolute;
    top: calc(50% - 2.5vw);
    left: 1vw;
    fill: #fdb720;
    z-index: 10;
    transform: rotate(90deg);
    background: none;
    padding: 0;
    border: none;
    width: 5vw;
    height: 5vw;
}

.banner-slider__nagination[data-direction="next"] {
    left: auto;
    right: 1vw;
    transform: rotate(270deg);
}

.banner-slider__nagination-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.edges {
    padding: 4.8vw 0 6.66667vw;
}

.edges__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5.6vw 2.93333vw;
}

.edges__item {
    display: flex;
    align-items: center;
    gap: 1.06667vw;
}

.edges__item:nth-child(n+5) {
    display: none;
}

.edges__item-icon-container {
    width: 8vw;
    height: 8vw;
    flex-shrink: 0;
}

.edges__item-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.edges__item-text {
    margin: 0;
    line-height: 1.08333;
}

.products-slider {
    padding: 2.93333vw 0 4.8vw;
    display: flex;
    flex-direction: column;
    gap: 4vw;
}

.products-slider__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.93333vw;
}

.products-slider__nav {
    display: flex;
    gap: 1.6vw;
    flex-shrink: 0;
    margin-left: auto;
}

.products-slider__nav-item {
    width: 8.53333vw;
    height: 8.53333vw;
    border-radius: var(--border-radius);
    border: none;
    background: var(--color-bg-white);
    fill: var(--color-text);
    padding: 2.93333vw;
    position: relative;
}

.products-slider__nav-item[data-direction="prev"] {
    transform: rotate(180deg);
}

.products-slider__nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.products-slider__nav-item:hover::before {
    opacity: 1;
    visibility: visible;
}

.products-slider__nav-item-icon {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.products-slider__tabs-nav {
    width: 100%;
    margin: 0 0 -2.66667vw;
    padding: 0 0 2.66667vw;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2.66667vw;
}

.products-slider__tabs-nav-btn {
    background: var(--color-bg-white);
    color: var(--color-text);
    border: none;
    border-radius: var(--border-radius);
    padding: 2.66667vw 3.46667vw;
    font-size: 2.66667vw;
    line-height: 1.2;
    position: relative;
}

.products-slider__tabs-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.products-slider__tabs-nav-btn.active {
    cursor: default;
}

.products-slider__tabs-nav-btn.active::before {
    opacity: 1;
    visibility: visible;
}

.products-slider__tabs-nav-btn span {
    position: relative;
    z-index: 2;
}

.products-slider__tabs-content {
    display: none;
}

.products-slider__tabs-content.active {
    display: block;
}

.products-slider__list {
    margin: 0 calc(var(--page-wrap) * -1);
    padding: 0 var(--page-wrap) 8vw;
}

.products-slider__slide {
    width: 41.33333vw;
    height: auto;
}

.product-slide {
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    padding: 1.6vw 3.2vw 2.93333vw;
    background: var(--color-bg-white);
    gap: 2.13333vw;
    height: 100%;
}

.product-slide__img-container {
    width: 100%;
    height: 33.06667vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-slide__img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.product-slide__content {
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
    flex-grow: 1;
}

.product-slide__title {
    font-size: 2.66667vw;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: var(--color-text);
}

.product-slide__attrs {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
    font-size: 2.4vw;
    display: flex;
    flex-direction: column;
    gap: clamp(1px, .26667vw, .26667vw);
    --attr-line-height: 2.93333vw;
    line-height: var(--attr-line-height);
}

.product-slide__attrs-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: .3s;
    overflow: hidden;
}

.product-slide__attrs-item--spoiler {
    height: var(--attr-line-height);
    cursor: pointer;
}

.product-slide__attrs-item-title {
    color: rgb(var(--color-82888F));
}

.product-slide__attrs-item-dropdown {
    width: 2.4vw;
    height: var(--attr-line-height);
    margin-left: auto;
    flex-shrink: 0;
    transition: .3s;
}

.product-slide__attrs-item.active {
    height: var(--attr-height);
}

.product-slide__attrs-item.active .product-slide__attrs-item-dropdown {
    transform: rotate(180deg);
}

.product-slide__footer {
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
}

.product-slide__cart {
    white-space: nowrap;
}

.product-slide__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 4.8vw;
}

.product-slide__price {
    font-size: 3.2vw;
    font-weight: 500;
}

.product-slide__price--small {
    font-size: 3.2vw;
}

.product-slide__price span {
    font-size: 3.73333vw;
}

.product-slide__price b {
    font-weight: 700;
}

.product-slide__availability {
    --availability-color: var(--color-success);
    color: var(--availability-color);
    font-size: 2.13333vw;
    display: flex;
    align-items: center;
    gap: clamp(2px, .53333vw, .53333vw);
}

.product-slide__availability--error {
    --availability-color: var(--color-error);
}

.product-slide__availability-dot {
    width: 2.05067vw;
    height: 2.05067vw;
    border-radius: 50%;
    border: clamp(1px, .26667vw, .26667vw) solid var(--availability-color);
    position: relative;
}

.product-slide__availability-dot::before {
    content: '';
    width: .8vw;
    height: .8vw;
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--availability-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.products-slider__pagination {
    --swiper-pagination-bottom: 0;
    --swiper-pagination-bullet-size: 2.66667vw;
    --swiper-pagination-bullet-border-radius: calc(var(--border-radius) / 2);
    --swiper-pagination-bullet-horizontal-gap: 0;
    --swiper-pagination-bullet-inactive-color: var(--color-bg-white);
    --swiper-pagination-bullet-inactive-opacity: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.13333vw;
}

.products-slider__pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.products-slider__pagination .swiper-pagination-bullet {
    position: relative;
    background: var(--swiper-pagination-bullet-inactive-color);
}

.products-slider__pagination .swiper-pagination-bullet-active::before {
    opacity: 1;
    visibility: visible;
}

.card-grid {
    padding: 12.53333vw 0 14.4vw;
    display: flex;
    flex-direction: column;
    gap: 5.33333vw;
}

.card-grid__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4vw;
}

.card-grid__link {
    display: flex;
    flex-direction: column;
    gap: 1.6vw;
    border-radius: var(--border-radius);
    background: var(--color-bg-white);
    padding: 1.6vw 2.66667vw 3.73333vw;
    text-align: center;
    font-size: inherit;
    font-weight: 500;
    line-height: 1.18182;
    color: var(--color-text);
    text-decoration: none;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-grid__img-container {
    width: 100%;
    height: 26.93333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-grid__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: .3s;
}

.card-grid__name {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8vw;
    font-size: 2.93333vw;
    line-height: 3.46667vw;
}

.card-grid__count {
    color: var(--color-text-secondary);
    transition: .3s;
}

.card-grid__list--sm .card-grid__link {
    padding: 4vw 3.2vw;
}

.card-grid__list--sm .card-grid__img-container {
    height: 14.4vw;
}

.card-grid__link:hover,
.card-grid__link:hover .card-grid__count {
    color: #FDB720;
}

.card-grid__link:hover .card-grid__img {
    transform: scale(1.05);
}

.info {
    display: flex;
    flex-direction: column;
    gap: 6.66667vw;
}

.info__content {
    display: flex;
    flex-direction: column;
    gap: 5.33333vw;
}

.info__text {
    line-height: 1.45455;
    max-width: calc(100% - 2.13333vw);
}

.info__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2.93333vw;
}

.info__gallery-item:first-child {
    width: 100%;
    aspect-ratio: 1.38136;
}

.info__gallery-item:nth-child(n+2) {
    width: calc(50% - 2.93333vw / 2);
}

.info__gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.info__edges {
    list-style: none;
    margin: 2.66667vw 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.26667vw 2.93333vw;
}

.info__edges-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5.33333vw;
    text-align: center;
    background: linear-gradient(180deg, #EDF3F5 0%, rgba(243, 246, 248, 0) 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    aspect-ratio: 1;
    padding: 5.33333vw;
}

.info__edges-item-icon-container {
    width: 14.4vw;
    height: 16.53333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info__edges-item-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.info__edges-item-text {
    margin: 0;
}

.lead {
    background: url(../image/bg/lead.jpg) no-repeat center / cover;
    margin: 0 calc(var(--page-wrap) * -1) -10.66667vw;
    padding: 10.4vw var(--page-wrap);
    display: flex;
    flex-direction: column;
    gap: 6.66667vw;
}

.lead:last-child {
    padding-bottom: 14.13333vw;
}

.lead__form {
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
}

.lead__fields {
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
}

.lead__inputs {
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
}

.lead__additional {
    margin: 4vw 0;
    display: flex;
    align-items: center;
    gap: 8vw;
}

.lead__btn {
    font-size: 4.26667vw;
    padding: 1.6vw;
    line-height: 1.25;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 4.26667vw 0;
    list-style: none;
    color: #9A9EA2;
    font-size: 2.93333vw;
    gap: 2.13333vw;
}

.breadcrumb__item:not(:first-child)::before {
    content: '';
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 5 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.173743 0.173905C-0.0581312 0.405779 -0.0581312 0.781721 0.173743 1.01359L2.92056 3.76042L0.173743 6.50724C-0.0581312 6.73911 -0.0581312 7.11505 0.173743 7.34693C0.405616 7.5788 0.781558 7.5788 1.01343 7.34693L4.1801 4.18026C4.41197 3.94839 4.41197 3.57245 4.1801 3.34057L1.01343 0.173905C0.781558 -0.0579684 0.405616 -0.0579684 0.173743 0.173905Z' fill='%232A2C2F'/%3E%3C/svg%3E") no-repeat center;
    width: 1.33333vw;
    height: 2.13333vw;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 2.13333vw;
}

.breadcrumb__link {
    color: var(--color-text);
    text-decoration: none;
}

.page-title {
    margin: 0 0 1.06667vw;
    font-size: 4.8vw;
    line-height: 1.22222;
}

.catalog-title {
    text-align: center;
}

.description {
    padding-top: 11.2vw;
    line-height: 1.45455;
}

.map {
    padding: 4.07470vw 0;
}

.map__frame {
    border-radius: var(--border-radius);
    height: 50.93379vw;
    position: relative;
    overflow: hidden;
}

.contacts {
    display: grid;
    gap: 4.41426vw;
    padding: 4.07470vw 0;
}

.contacts__item {
    display: flex;
    flex-direction: column;
    gap: 2.71647vw;
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 3.90492vw 2.54669vw 3.39559vw 4.24448vw;
}

.contacts__item-title {
    font-size: 2.93333vw;
    margin: 0 0 0 clamp(2px, .33956vw, .33956vw);
}

.contacts__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .8489vw;
    flex-grow: 1;
}

.contacts__list-item {
    display: flex;
    align-items: center;
    gap: 1.18846vw;
}

.contacts__list-item-icon {
    width: 4.26667vw;
    height: 4.26667vw;
    flex-shrink: 0;
}

.contacts__list-item-link {
    color: inherit;
    text-decoration: none;
}

.contacts__list-item-link:hover {
    color: #FDB720;
}

.contacts__columns {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2.03735vw;
}

.contacts__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.35823vw;
    flex-shrink: 0;
}

.contacts__social-link {
    border-radius: var(--border-radius);
    width: 7.30051vw;
    height: 7.30051vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F6F8;
    padding: 2.03735vw;
}

.contacts__social-link:hover {
    fill: #FDB720
}

.contacts__social-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.delivery-title {
    margin-bottom: 4.9236vw;
}

.media-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 7.47029vw;
}

.media-info__content {
    flex: 1 0 0;
    line-height: 1.44476;
    --img-margin-top: 3.39559vw;
    --img-margin-bottom: 3.90492vw;
    --p-margin-top: 3.39559vw;
    --p-margin-bottom: 3.90492vw;
    --h-margin-top: 3.39559vw;
    --h-margin-bottom: 3.90492vw;
    --l-margin-top: 3.39559vw;
    --l-margin-bottom: 3.90492vw;
}

.media-info__img-container {
    width: 71.64686vw;
    margin-top: .8489vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.media-info__img {
    width: 100%;
}

.img-zoom {
    position: absolute;
    right: 2.20713vw;
    bottom: 2.20713vw;
    width: 6.62139vw;
    height: 6.62139vw;
    background: var(--gradient);
    stroke: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.52801vw;
}

.img-zoom__icon {
    display: block;
    width: 100%;
    height: 100%;
}

.checked-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 70.28862vw;
    padding: 0;
    list-style: none;
    margin: 0 -1.01868vw;
    gap: 1.52801vw;
}

.checked-list__item {
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.597 7.67353C16.8518 7.92835 16.8518 8.34149 16.597 8.59631L10.507 14.6863C10.2522 14.9411 9.83902 14.9411 9.5842 14.6863L6.1042 11.2063C5.84938 10.9515 5.84938 10.5384 6.1042 10.2835C6.35902 10.0287 6.77216 10.0287 7.02697 10.2835L10.0456 13.3021L15.6742 7.67353C15.929 7.41872 16.3422 7.41872 16.597 7.67353Z' fill='%23FDB720'/%3E%3C/svg%3E") no-repeat left center / 3.73514vw 3.73514vw;
    padding-left: 4.24448vw;
}

.checked-list__link {
    color: #3A8FC4;
    text-underline-offset: .50934vw;
}

.details {
    padding: 6.11205vw 0;
}

.details__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.73514vw 0;
}

.details__item {
    display: flex;
    align-items: flex-start;
    gap: 2.88625vw;
}

.details__item-icon-container {
    width: 8.48896vw;
    height: 6.45161vw;
    flex-shrink: 0;
}

.details__item-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.details__item-text {
    margin: 0;
    line-height: 1;
}

.gallery {
    padding: 6.11205vw 0;
    display: flex;
    flex-direction: column;
    gap: 3.39559vw;
}

.gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
}

.gallery__nav {
    display: flex;
    gap: 1.6vw;
    flex-shrink: 0;
}

.gallery__nav-item {
    width: 8.53333vw;
    height: 8.53333vw;
    border-radius: var(--border-radius);
    border: none;
    background: var(--color-bg-white);
    fill: var(--color-text);
    padding: 2.93333vw;
    position: relative;
}

.gallery__nav-item[data-direction="prev"] {
    transform: rotate(180deg);
}

.gallery__nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.gallery__nav-item:hover::before {
    opacity: 1;
    visibility: visible;
}

.gallery__nav-item-icon {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.gallery__slide {
    width: 40.57724vw;
}

.gallery__item {
    display: block;
    width: 100%;
    position: relative;
    outline: none;
}

.gallery__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery__slider {
    margin: 0 calc(var(--page-wrap) * -1);
    padding: 0 var(--page-wrap);
}

.page-content {
    padding: 3.39559vw 0;
}

.gallery__item--square {
    aspect-ratio: 1;
}

.gallery__item--radius {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product {
    display: flex;
    flex-direction: column;
    gap: 10.66667vw;
}

.product__main {
    display: flex;
    flex-direction: column;
    gap: 5.33333vw;
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 2.13333vw 2.66667vw 2.66667vw;
}

.product__gallery {
    display: flex;
    flex-direction: column;
    gap: 3.73333vw;
    margin: 0 5.06667vw;
}

.product__gallery-main {
    aspect-ratio: 1.12083;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.product__gallery-main-img {
    max-width: 100%;
    max-height: 100%;
}

.product__gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.73333vw;
}

.product__gallery-item {
    width: 21.33333vw;
    height: 21.33333vw;
    object-fit: contain;
    opacity: .4;
    transition: .3s;
    cursor: pointer;
}

.product__gallery-item.active {
    opacity: 1;
    cursor: default;
}

.product__data {
    display: flex;
    flex-direction: column;
    gap: 6.93333vw;
}

.product__title {
    font-size: 4vw;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 1.6vw;
}

.product__attrs {
    margin: 0 1.6vw;
}

.product__attrs-title {
    margin-bottom: 2.4vw;
    font-weight: 600;
}

.product__attrs-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
}

.product__attrs-item span {
    color: rgb(var(--color-82888F));
}

.product__edges {
    margin: 0 -1.06667vw;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.26667vw 1.06667vw;
    line-height: 1.09091;
}

.product__edges-item {
    display: flex;
    align-items: center;
    gap: 1.06667vw;
}

.product__edges-item-icon-container {
    width: 8vw;
    height: 8vw;
    flex-shrink: 0;
}

.product__edges-item-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.product__edges-item-text {
    margin: 0;
}

.product__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5.06667vw 2.66667vw;
    margin-top: 0.26667vw;
}

.product__info {
    margin-left: 1.33333vw;
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
}

.product__price {
    font-size: 3.73333vw;
    font-weight: 500;
    line-height: 3.73333vw;
}

.product__price--small {
    font-size: 4.26667vw;
}

.product__price span {
    font-size: 5.33333vw;
}

.product__price b {
    font-weight: 700;
}

.product__availability {
    display: flex;
    align-items: center;
    gap: 1.06667vw;
    font-size: 4vw;
    --availability-color: var(--color-success);
    color: var(--availability-color);
}

.product__availability--error {
    --availability-color: var(--color-error);
}

.product__availability-dot {
    width: 2.66667vw;
    height: 2.66667vw;
    border-radius: 50%;
    border: clamp(0.26667vw, .16978vw, .16978vw) solid var(--availability-color);
    position: relative;
}

.product__availability-dot::before {
    content: '';
    width: 1.06667vw;
    height: 1.06667vw;
    position: absolute;
    top: calc(50% - 0.53333vw);
    left: calc(50% - 0.53333vw);
    background: var(--availability-color);
    border-radius: 50%;
}

.quantity {
    display: flex;
    align-items: center;
    background: #F1F4F5;
    border-radius: var(--border-radius);
    padding: 3.46667vw;
    gap: 1.86757vw;
}

.quantity__btn {
    width: 2.66667vw;
    height: 2.66667vw;
    background: none;
    border: none;
    padding: 0;
    stroke: var(--color-text);
}

.quantity__btn:hover {
    stroke: #FDB720;
}

.quantity__btn[disabled] {
    opacity: .5;
    pointer-events: none;
}

.quantity__btn-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.quantity__input {
    padding: 0;
    border: none;
    text-align: center;
    width: 8vw;
    height: 4.8vw;
    font-size: 4vw;
    cursor: default;
    outline: none;
    background: inherit;
}

.product__quantity {
    padding: 4vw 4.26667vw;
}

.product__cart {
    font-size: 3.73333vw;
    line-height: 1;
    padding: 2.4vw;
    width: 100%;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 4.8vw;
}

.tabs__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.86667vw;
}

.tabs__nav-btn {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 2.4vw;
    border: none;
    line-height: 1.27273;
    width: 100%;
}

.tabs__nav-btn.active {
    background: #D4DBE1;
    cursor: default;
}

.tabs__content {
    display: none;
}

.tabs__content.active {
    display: block;
}

.noty_bar {
    background: #fff;
    box-shadow: 10px 10px 24px rgba(26, 27, 30, 0.15);
    border-radius: 10px;
    transition: .3s;
    overflow: visible;
    margin: 10px 0;
    color: #171818;
}

.noty_bar:hover {
    box-shadow: 10px 10px 24px rgba(26, 27, 30, 0.25);
}

.noty_body {
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.noty_img-container {
    margin: 0 5px 0 0;
}

.noty_text {
    text-align: center;
}

.noty_close_button {
    top: -5px;
    left: -5px;
    right: auto;
    box-shadow: 1px 1px 12px rgba(26, 27, 30, 0.35);
    border-radius: 50%;
    line-height: 20px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.46409 15.5354L15.5352 8.46436' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M8.46409 8.46458L15.5352 15.5356' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain #fff;
    font-size: 0;
}

.noty_text a {
    color: #FDB720;
}

.cart-wrapper {
    position: relative;
}

.cart-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--color-FFFFFF) / .75);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.cart-loading.active {
    opacity: 1;
    visibility: visible;
}

.cart-loading::before {
    content: '';
    width: 48px;
    height: 48px;
    border: 5px solid #FDB720;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: block;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cart-content {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 4vw;
}

.cart__header {
    color: #9A9EA2;
    border-bottom: clamp(1px, .16978vw, .16978vw) solid #ECF0F4;
    padding-bottom: 1.35823vw;
}

.cart__header-item:nth-child(2),
.cart__header-item:nth-child(3) {
    display: none;
}

.cart__row {
    border-bottom: clamp(1px, .16978vw, .16978vw) solid #ECF0F4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3.73333vw;
    padding: 3.73333vw 0;
    position: relative;
}

.cart__row-checkbox {
    display: none;
}

.cart__row-image-container {
    width: 100%;
    height: 42.66667vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart__row-image {
    max-width: 100%;
    max-height: 100%;
}

.cart__row-title {
    width: 100%;
    color: inherit;
    text-decoration: none;
    font-size: 4vw;
    font-weight: 600;
    line-height: 1.2;
}

.cart__quantity-wrapper {
    order: 2;
    margin-left: auto;
}

.cart__quantity {
    padding: 2.13333vw 4.26667vw;
}

.cart__row-info {
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
}

.cart__row-price {
    font-size: 3.73333vw;
    line-height: 3.73333vw;
    font-weight: 500;
}

.cart__row-price--small {
    font-size: 3.73333vw;
}

.cart__row-price span {
    font-size: 5.33333vw;
}

.cart__row-price b {
    font-weight: 700;
}

.cart__row-availability {
    --availability-color: var(--color-success);
    color: var(--availability-color);
    font-size: 4vw;
    display: flex;
    align-items: center;
    gap: 1.06667vw;
}

.cart__row-availability--error {
    --availability-color: var(--color-error);
}

.cart__row-availability-dot {
    width: 2.66667vw;
    height: 2.66667vw;
    border-radius: 50%;
    border: clamp(1px, .16978vw, .16978vw) solid var(--availability-color);
    position: relative;
}

.cart__row-availability-dot::before {
    content: '';
    width: 1.06667vw;
    height: 1.06667vw;
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--availability-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cart__row-trash {
    width: 8vw;
    height: 8vw;
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
    fill: #A4A8AD;
    position: absolute;
    top: 3.73333vw;
    right: 0;
}

.cart__row-trash:hover {
    fill: var(--color-text);
}

.cart__row-trash-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.39559vw;
    margin-top: 7.30051vw;
}

.cart-total__text {
    margin: 0;
}

.cart-total__btn {
    font-size: 2.54669vw;
    padding: 2.71647vw 6.79117vw;
}

.alert {
    --alert-color: var(--color-border);
    color: var(--alert-color);
    border-radius: var(--border-radius);
    padding: 2.54669vw 10.18676vw 2.54669vw 3.39559vw;
    position: relative;
    overflow: hidden;
    margin-bottom: 3.39559vw;
    background: var(--alert-color);
    color: rgb(var(--color-FFFFFF));
    font-size: 2.71647vw;
}

.alert__close {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    padding: 0;
    width: 6.79117vw;
    height: 100%;
    font-size: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.46409 15.5354L15.5352 8.46436' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M8.46409 8.46458L15.5352 15.5356' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 5.09338vw 5.09338vw;
    opacity: .5;
}

.alert__close:hover {
    opacity: 1;
}

.alert-danger {
    --alert-color: var(--color-error);
}

.alert-success {
    --alert-color: var(--color-success);
}

.category-title {
    margin-bottom: 2.4vw;
}

.categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.13333vw 1.86667vw;
    margin: 2.4vw 0 6.4vw;
    padding: 0;
    list-style: none;
}

.categories__link {
    color: inherit;
    text-decoration: none;
    text-align: center;
    border-radius: var(--border-radius);
    background: var(--color-bg-white);
    --counter-color: rgb(var(--color-82888F));
    display: block;
    padding: 2.66667vw;
    line-height: 1.09091;
    position: relative;
    z-index: 2;
}

.categories__link::before {
    content: '';
    z-index: -1;
    background: var(--gradient);
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.categories__link:hover {
    color: var(--color-text);
    --counter-color: var(--color-text);
}

.categories__link:hover::before {
    opacity: 1;
    visibility: visible;
}

.categories__link.active {
    background: #D4DBE1;
}

.categories__total {
    color: var(--counter-color);
    margin-left: 1.33333vw;
    transition: .3s;
}

.products-container {
    position: relative;
}

.products-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgb(240 240 240 / 60%);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.products-loading.active {
    opacity: 1;
    visibility: visible;
}

.products-loading__loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FDB720;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: block;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 20px;
    left: calc(50% - 24px);
}

.row {
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
}

.filter {
    display: flex;
    align-items: flex-end;
    gap: 2.13333vw;
}

.filter__main {
    width: 67.89%;
}

.filter__item {
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
}

.filter__item-title {
    font-weight: 600;
}

.filter-search {
    position: relative;
}

.filter-search__input {
    border-radius: var(--border-radius);
    background: var(--color-bg-white);
    height: 8.53333vw;
    font-size: 2.93333vw;
    width: 100%;
    padding: 0 2.4vw 0 8.8vw;
    border: none;
}

.filter-search__btn {
    position: absolute;
    top: 50%;
    left: 2.4vw;
    width: 5.86667vw;
    height: 5.86667vw;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    stroke: #000;
}

.filter-search__btn-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.filter__more {
    position: relative;
}

.filter__more-btn {
    font-size: 3.39559vw;
    display: flex;
    align-items: center;
    gap: 1.69779vw;
    background: none;
    border: none;
    padding: 2.03735vw;
}

.filter__more-btn-icon {
    width: 3.22581vw;
    height: 3.22581vw;
}

.filter__more-content {
    position: absolute;
    right: 0;
    top: 100%;
    width: 50.93379vw;
    transform: translateY(5.09338vw);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    background: var(--color-bg);
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 3.39559vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3.39559vw;
}

.filter__more-content.active {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.settings {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2vw;
}

.settings__item {
    display: flex;
    align-items: center;
    gap: 3.2vw;
}

.settings__item-title {
    color: rgb(var(--color-82888F));
}

.settings__item-content {
    position: relative;
}

.settings__item-current {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    cursor: pointer;
}

.settings__item-dropdown {
    width: 2.13333vw;
    height: 1.33333vw;
    fill: var(--color-text);
}

.settings__item-list {
    position: absolute;
    left: 0;
    top: 100%;
    width: 50.93379vw;
    transform: translateY(5.09338vw);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    background: var(--color-bg);
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    border-radius: var(--border-radius);
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.settings__item-list.active {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.settings__item-btn {
    color: inherit;
    display: block;
    text-decoration: none;
    padding: 1.69779vw;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.settings__item-btn:hover {
    background: var(--color-border);
}

.row__content {
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
}

.products {
    display: flex;
    flex-direction: column;
    gap: 8.53333vw;
}

.products__list {
    display: flex;
    flex-direction: column;
    gap: 2.13333vw;
}

.product-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 1.6vw 2.66667vw 2.93333vw;
    display: flex;
    flex-direction: column;
    gap: 1.33333vw;
}

.product-card__img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42.66667vw;
}

.product-card__img {
    max-width: 100%;
    max-height: 100%;
}

.product-card__content {
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
}

.product-card__title {
    color: inherit;
    text-decoration: none;
    font-size: 4vw;
    font-weight: 600;
}

.product-card__attrs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6vw;
}

.product-card__attrs-item-title {
    color: rgb(var(--color-82888F));
}

.product-card__main {
    display: flex;
    flex-direction: column;
    gap: 1.86667vw;
    margin: 0 1.6vw;
}

.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.33333vw;
}

.product-card__info {
    margin-left: 1.86667vw;
    display: flex;
    flex-direction: column;
    gap: .8vw;
}

.product-card__price {
    font-size: 3.73333vw;
    line-height: 1;
    font-weight: 500;
}

.product-card__price--small {
    font-size: 4.26667vw;
    margin-bottom: .26667vw;
}

.product-card__price span {
    font-size: 5.33333vw;
}

.product-card__price b {
    font-weight: 700;
}

.product-card__availability {
    --availability-color: var(--color-success);
    color: var(--availability-color);
    font-size: 4vw;
    display: flex;
    align-items: center;
    gap: 1.06667vw;
}

.product-card__availability--error {
    --availability-color: var(--color-error);
}

.product-card__availability-dot {
    width: 2.66667vw;
    height: 2.66667vw;
    border-radius: 50%;
    border: clamp(1px, .26667vw, .26667vw) solid var(--availability-color);
    position: relative;
}

.product-card__availability-dot::before {
    content: '';
    width: 1.06667vw;
    height: 1.06667vw;
    position: absolute;
    top: calc(50% - .53333vw);
    left: calc(50% - .53333vw);
    background: var(--availability-color);
    border-radius: 50%;
}

.product-card__cart {
    font-size: 3.73333vw;
    width: 100%;
    line-height: 1;
    padding: 2.4vw;
}

.product-card__quantity {
    padding: 2.13333vw 4.26667vw;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.66667vw;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination a,
.pagination span {
    width: 10.13333vw;
    height: 10.13333vw;
    display: block;
    text-decoration: none;
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    text-align: center;
    line-height: 10.13333vw;
    font-size: 4vw;
    position: relative;
    z-index: 2;
}

.pagination a::before {
    content: '';
    z-index: -1;
    background: var(--gradient);
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.pagination a:hover::before {
    opacity: 1;
    visibility: visible;
}

.pagination .active span {
    background: #D4DBE1;
}

.filter-ul {
    list-style: none;
    padding: 0 0 0 2.71647vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .8489vw;
}

.filter-ul__btn {
    padding: 0;
    border: none;
    background: none;
    font-size: 2.71647vw;
    text-align: left;
}

.filter-ul__btn.active {
    color: #FDA419;
}

.filter-ul__total {
    color: rgb(var(--color-82888F));
}

.filter-range {
    display: flex;
    flex-direction: column;
}

.filter-range .irs {
    height: 3.565365vw;
}

.filter-range .irs-single {
    display: none;
}

.filter-range .irs-line {
    height: .76401vw;
    top: 1.52802vw;
    background: #ECF0F4;
}

.filter-range .irs-bar {
    height: .76401vw;
    top: 1.52802vw;
    border-radius: 1.01868vw;
    background: var(--gradient);
}

.filter-range .irs-handle {
    width: 3.565365vw;
    height: 3.565365vw;
    box-shadow: 0 .50934vw .76401vw rgb(42 44 47 / .2);
    background: var(--gradient);
    border: .76401vw solid var(--color-bg-input);
    border-radius: 50%;
    top: 0;
}

.filter-range .irs-handle i {
    display: none !important;
}

.filter-range .irs-min, .filter-range .irs-max, .filter-range .irs-from, .filter-range .irs-to {
    display: none;
}

.filter-range__labels {
    display: flex;
    justify-content: space-between;
    font-size: 3.565365vw;
    line-height: 1;
}

.green-text {
    color: #82B72C;
}

.contact {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 1.06667vw 4.26667vw 4.26667vw;
    display: flex;
    flex-direction: column;
    gap: 2.66667vw;
}

.contact__img {
    max-width: 71.46667vw;
    margin: 0 auto;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
}

.contact__title {
    font-size: 4.8vw;
    font-weight: 600;
    line-height: 1.22222;
}

.contact__description {
    margin: 0;
    font-size: 3.73333vw;
    line-height: 1.21429;
}

.contact__lead {
    background: #F1F4F5;
    border-radius: var(--border-radius);
    padding: 3.73333vw 3.2vw 4.8vw;
    margin-top: 1.86667vw;
    display: flex;
    flex-direction: column;
    gap: 2.4vw;
}

.contact__lead-title {
    line-height: 1.45455;
}

.contact__lead-content {
    display: flex;
    align-items: flex-end;
    gap: 4vw;
}

.contact__lead-list {
    display: flex;
    flex-direction: column;
    gap: 1.33333vw;
}

.contact__lead-email {
    font-size: 3.73333vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3.2vw;
    color: var(--color-text);
    text-underline-offset: .53333vw;
}

.contact__lead-email-icon {
    width: 4.8vw;
    height: 4vw;
}

.contact__lead-phone {
    font-size: 5.06667vw;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3.2vw;
}

.contact__lead-phone-icon {
    width: 4.26667vw;
    height: 4.26667vw;
}

.contact__lead-telegram {
    flex-shrink: 0;
    width: 11.73333vw;
    height: 11.73333vw;
}

.contact__lead-telegram-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.link-widget__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    background: rgba(33,33,33,.3);
    z-index: 100;
}

.link-widget.active .link-widget__bg {
    opacity: 1;
    visibility: visible;
}

.link-widget__button {
    position: fixed;
    right: 13.33333vw;
    bottom: 13.33333vw;
    transition: .3s;
    transform: scale(.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: none;
    z-index: 101;
    cursor: pointer;
    outline: none;
}

.link-widget.active .link-widget__button {
    transform: scale(.7);
}

.link-widget__button-default,
.link-widget__button-close {
    width: 17.6vw;
    height: 17.6vw;
    position: relative;
    border-radius: 50%;
    background: #FDB720;
    transition: .3s;
    animation: socialRotateBack .4s;
}

.link-widget__button-close {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background: #d6d6d6;
}

.link-widget__button-default::before,
.link-widget__button-close::before {
    content: '';
    position: absolute;
    top: -2.13333vw;
    left: -2.13333vw;
    height: 21.86667vw;
    width: calc(100% + 4.26667vw);
    border-radius: 50%;
    opacity: .2;
    background: #FDB720;
    z-index: -1;
}

.link-widget__button-close::before {
    background: #d6d6d6;
}

.link-widget__button-default::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 0.26667vw solid #FDB720;
    animation: widgetPulse infinite 1.5s;
}

@keyframes widgetPulse {
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.link-widget.active .link-widget__button-default {
    opacity: 0;
    visibility: hidden;
    animation: socialRotate .4s;
}

.link-widget.active .link-widget__button-close {
    opacity: 1;
    visibility: visible;
    animation: socialRotate .4s;
}

.link-widget__button-icon,
.link-widget__button-close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7.46667vw;
    height: 7.46667vw;
    margin: -3.73333vw 0 0 -3.73333vw;
    fill: #fff;
    transition: .3s;
}

.link-widget__button-icon {
    opacity: 0;
    visibility: hidden;
}

.link-widget__button-icon.active {
    opacity: 1;
    visibility: visible;
}

.link-widget__button-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes socialRotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(90deg);
    }
}

@keyframes socialRotateBack {
    0% {
        transform: rotate(90deg);
    }
    100% {
        transform: rotate(0);
    }
}

.link-widget__list {
    position: fixed;
    right: 13.33333vw;
    bottom: 33.33333vw;
    transform: translateY(5.33333vw);
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 101;
    width: 17.6vw;
    transition: .3s;
}

.link-widget.active .link-widget__list {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.link-widget__list-link {
    width: 12vw;
    height: 11.73333vw;
    display: block;
    border-radius: 50%;
    box-shadow: 0 2.13333vw 1.6vw -1.6vw rgba(33,33,33,.2);
    background: #FDB720;
    margin: 0 auto;
    padding: 3.2vw;
    border: 0;
    fill: #fff;
    position: relative;
    cursor: pointer;
}

.link-widget__list-item:not(:last-child) {
    margin-bottom: 2.66667vw;
}

.link-widget__list-link--telegram {
    background: #2fc6f6;
}

.link-widget__list-link--social {
    padding: 0;
}

.link-widget__list-link-name {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: -1.33333vw;
    transform: translate(-100%,-50%);
    padding: 1.33333vw 2.66667vw;
    border-radius: 2.66667vw;
    background: #fff;
    color: #252A2D;
    max-width: 96vw;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .6s;
    text-align: center;
    font-size: 3.46667vw;
}

.link-widget__list-link:hover .link-widget__list-link-name {
    opacity: 1;
    visibility: visible;
}

/**********************************/
/************ 8. Popup ************/
/**********************************/

.fancybox__viewport.is-draggable {
    cursor: default;
}

.fancybox__backdrop {
    background: rgb(39 40 42 / .6);
}

.modal {
    background: var(--color-bg-modal);
    border-radius: var(--border-radius);
    width: 438px;
    max-width: calc(100vw - 16px);
    padding: 30px;
    display: none;
}

.modal__close {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 24px;
    height: 24px;
    stroke: #797F82;
    background: none;
    border: none;
    padding: 0;
}

.modal__close:hover {
    stroke: var(--color-text);
}

.modal__close-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.modal__title {
    font-size: 35px;
    font-weight: 700;
}

.modal__form {
    margin-top: 27px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal__inputs {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.modal__input {
    height: 56px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0 21px;
    font-size: 16px;
    box-shadow: 0 4px 4px rgb(0 0 0 / .04);
}

.modal__total {
    font-size: 18px;
    margin: 10px 3px 0;
}

.modal__checkbox {
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
}

.modal__checkbox .checkbox__mark {
    width: 23px;
    height: 23px;
}

.modal__checkbox .checkbox__custom {
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.modal__checkbox .checkbox__custom::before {
    width: 13px;
    height: 9px;
}

.modal__checkbox .checkbox__text {
    margin-top: 2px;
}

.modal__btn {
    align-self: flex-start;
    background: var(--gradient-v2);
    color: rgb(var(--color-FFFFFF));
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 900;
    margin-top: 13px;
    padding: 20px 26px 16px;
}

.modal__sub-title {
    font-size: 26px;
    margin-top: 35px;
    line-height: 1.11538;
}

.modal__text {
    font-size: 16px;
    margin-top: 17px;
}

.modal__btn--sm {
    margin-top: 22px;
    padding: 14px 22px;
    font-size: 14px;
}

/**********************************/
/************ 9. Media ************/
/**********************************/

@media screen and (max-width: 767px) {
    .hidden-sm {
        display: none !important;
    }
}

@media screen and (min-width: 440px) {
    .modal {
        padding: 38px 48px 44px;
    }
}

@media screen and (min-width: 768px) {
    :root {
        --border-radius: 10px;
    }

    body {
        font-size: 23px;
        --page-wrap: 24px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    a:not([class]) {
        text-decoration-thickness: 2px;
        text-underline-offset: 4px;
    }

    .input {
        height: 77px;
        padding: 0 30px;
        font-size: 22px;
    }

    .textarea {
        padding: 24px 30px;
        font-size: 22px;
        height: 254px;
    }

    .file {
        gap: 18px;
        font-size: 22px;
    }

    .file__icon {
        width: 41px;
        height: 49px;
    }

    .file__text {
        width: 133px;
    }

    .checkbox {
        gap: 18px;
        font-size: 22px;
    }

    .checkbox__mark {
        width: 49px;
        height: 49px;
    }

    .checkbox__custom::before {
        width: 26px;
        height: 18px;
        top: calc(50% - 4px);
    }

    .btn {
        font-size: 20px;
        padding: 20px;
        gap: 4px;
    }

    .header__wrap {
        gap: 20px;
    }

    .header__middle {
        padding: 36px 0 32px;
    }

    .header__logo {
        max-width: 338px;
    }

    .header__contacts {
        gap: 12px;
    }

    .header__email {
        gap: 16px;
        line-height: 26px;
    }

    .header__email-icon {
        width: 24px;
        height: 24px;
    }

    .header__phone {
        gap: 16px;
        font-size: 26px;
        line-height: 25px;
    }

    .header__phone-icon {
        width: 24px;
        height: 24px;
    }

    .header__bottom {
        padding: 12px 0;
    }

    .header__mob-nav-btn {
        padding: 16px;
        width: 70px;
        height: 70px;
    }

    .header__search {
        margin-right: 18px;
    }

    .header__search-input {
        height: 70px;
        padding: 0 20px 0 68px;
        font-size: 22px;
    }

    .header__search-btn {
        left: 12px;
        width: 44px;
        height: 44px;
    }

    .header__social-item {
        width: 62px;
        height: 62px;
    }

    .mob-nav {
        padding: 68px 41px 55px;
        gap: 20px;
        transform: translateY(205px);
    }

    .mob-nav__close {
        top: 32px;
        right: 41px;
        width: 28px;
        height: 29px;
    }

    .mob-nav__nav {
        margin-right: 16px;
    }

    .mob-nav__nav-item {
        border-width: 2px;
    }

    .mob-nav__nav-link {
        font-size: 26px;
        gap: 16px;
        padding: 20px 0 18px;
    }

    .mob-nav__nav-icon {
        width: 55px;
        height: 40px;
    }

    .mob-nav__nav-dropdown {
        width: 24px;
        height: 12px;
    }

    .mob-nav__nav-sub-menu {
        padding-bottom: 22px;
    }

    .mob-nav__nav-sub-menu-link {
        font-size: 24px;
        gap: 20px;
        padding: 12px 0 12px 24px;
    }

    .mob-nav__row {
        gap: 20px;
        margin-right: 16px;
    }

    .mob-nav__second-nav {
        gap: 20px;
    }

    .mob-nav__second-nav-link {
        font-size: 26px;
    }

    .header-cart {
        gap: 14px;
        margin: -4px 4px 0 0;
        font-size: 26px;
    }

    .header-cart__icon {
        width: 51px;
        height: 38px;
    }

    .header-cart__count {
        min-width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 26px;
        border-radius: 40px;
        padding: 2px 6px 0;
    }

    .mob-nav__footer {
        padding-top: 56px;
    }

    .mob-nav__work-hours {
        gap: 16px;
        font-size: 26px;
    }

    .mob-nav__work-hours-icon {
        width: 32px;
        height: 32px;
    }

    .mob-nav__location {
        gap: 16px;
    }

    .mob-nav__location-icon {
        width: 32px;
        height: 35px;
    }

    .mob-nav__location-current {
        gap: 16px;
    }

    .mob-nav__location-dropdown {
        width: 20px;
        height: 10px;
    }

    .mob-nav__location-list {
        top: calc(100% + 10px);
        border-width: 2px;
        transform: translateY(102px);
    }

    .mob-nav__location-link {
        padding: 20px;
    }

    .mob-nav__social {
        gap: 12px;
    }

    .mob-nav__social-link {
        width: 61px;
        height: 61px;
    }

    .footer {
        padding: 74px 0 76px;
        margin-bottom: 132px;
    }

    .footer__wrap {
        gap: 54px;
    }

    .footer__info {
        gap: 57px;
    }

    .footer__logo {
        max-width: 522px;
    }

    .footer__communication {
        gap: 40px;
    }

    .footer__contacts {
        gap: 20px;
    }

    .footer__contacts-item {
        gap: 16px;
    }

    .footer__contacts-icon {
        width: 24px;
        height: 24px;
    }

    .footer__social {
        margin-right: 16px;
        gap: 20px;
    }

    .footer__social-link {
        width: 78px;
        height: 78px;
    }

    .footer__navs {
        gap: 74px 20px;
        padding: 0 12px;
    }

    .footer__nav {
        gap: 38px;
        width: 220px;
    }

    .footer__nav--wide {
        width: 100%;
    }

    .footer__nav-list {
        gap: 16px;
    }

    .footer__nav--wide .footer__nav-list {
        gap: 16px 20px;
        grid-template-columns: 220px auto;
    }

    .fixed-nav {
        padding: 12px 54px 14px;
    }

    .fixed-nav__link {
        gap: 8px;
        font-size: 22px;
    }

    .fixed-nav__icon {
        width: 36px;
        height: 36px;
    }

    .fixed-nav__counter {
        font-size: 24px;
        min-width: 34px;
        height: 34px;
        line-height: 34px;
        border-radius: 34px;
        padding: 2px 6px 0;
    }

    .main {
        padding-top: 28px;
        padding-bottom: 82px;
    }

    .promo {
        padding: 34px 0;
    }

    .promo:first-child {
        margin-top: -28px;
    }

    .banner-slider__pagination {
        --swiper-pagination-bottom: 26px;
        --swiper-pagination-bullet-border-radius: 4px;
        --swiper-pagination-bullet-size: 20px;
        gap: 16px;
    }

    .banner-slider__nagination {
        top: calc(50% - 20px);
        left: 8px;
        width: 40px;
        height: 40px;
    }

    .banner-slider__nagination[data-direction="next"] {
        left: auto;
        right: 8px;
    }

    .edges {
        padding: 36px 0 51px;
    }

    .edges__list {
        gap: 43px 23px;
    }

    .edges__item {
        gap: 8px;
    }

    .edges__item-icon-container {
        width: 62px;
        height: 62px;
    }

    .products-slider {
        padding: 22px 0 36px;
        gap: 30px;
    }

    .products-slider__header {
        gap: 22px;
    }

    .title {
        font-size: 36px;
    }

    .products-slider__nav {
        gap: 12px;
    }

    .products-slider__nav-item {
        width: 65px;
        height: 65px;
        padding: 22px;
    }

    .products-slider__tabs-nav {
        margin: 0 0 -20px;
        padding: 0 0 20px;
        gap: 20px;
    }

    .products-slider__tabs-nav-btn {
        padding: 20px 26px;
        font-size: 20px;
    }

    .products-slider__list {
        padding-bottom: 62px;
    }

    .products-slider__slide {
        width: 318px;
    }

    .product-slide {
        gap: 16px;
        padding: 12px 24px 22px;
    }

    .product-slide__img-container {
        height: 254px;
    }

    .product-slide__content {
        gap: 16px;
    }

    .product-slide__title {
        font-size: 21px;
    }

    .product-slide__attrs {
        font-size: 18px;
        --attr-line-height: 23px;
        gap: 2px;
    }

    .product-slide__attrs-item-dropdown {
        width: 18px;
    }

    .product-slide__footer {
        gap: 16px;
    }

    .product-slide__info {
        min-height: 36px;
    }

    .product-slide__price {
        font-size: 24px;
    }

    .product-slide__price--small {
        font-size: 24px;
    }

    .product-slide__price span {
        font-size: 28px;
    }

    .product-slide__availability {
        font-size: 16px;
        gap: 4px;
    }

    .product-slide__availability-dot {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }

    .product-slide__availability-dot::before {
        width: 6px;
        height: 6px;
    }

    .products-slider__pagination {
        --swiper-pagination-bullet-size: 20px;
        gap: 16px;
    }

    .card-grid {
        padding: 96px 0 110px;
        gap: 40px;
    }

    .card-grid__list {
        gap: 30px;
    }

    .card-grid__link {
        gap: 12px;
        padding: 12px 20px 28px;
    }

    .card-grid__name {
        gap: 6px;
        font-size: 22px;
        line-height: 26px;
    }

    .card-grid__img-container {
        height: 206px;
    }

    .card-grid__list--sm .card-grid__link {
        padding: 30px 24px;
    }

    .card-grid__list--sm .card-grid__img-container {
        height: 110px;
    }

    .bg-white {
        padding-top: 80px;
        padding-bottom: 58px;
    }

    .info {
        gap: 52px;
    }

    .info__content {
        gap: 40px;
    }

    .content {
        --img-margin-top: 32px;
        --img-margin-bottom: 32px;
        --p-margin-top: 32px;
        --p-margin-bottom: 32px;
        --h-margin-top: 32px;
        --h-margin-bottom: 32px;
        --l-margin-top: 32px;
        --l-margin-bottom: 32px;
        --l-margin-left: 80px;
    }

    .info__text {
        max-width: calc(100% - 16px);
    }

    .info__gallery {
        gap: 22px;
    }

    .info__gallery-item:nth-child(n+2) {
        width: calc(50% - 22px / 2);
    }

    .info__edges {
        margin-top: 20px;
        gap: 32px 22px;
    }

    .info__edges-item {
        gap: 40px;
        padding: 40px;
    }

    .info__edges-item-icon-container {
        width: 110px;
        height: 126px;
    }

    .lead {
        margin-bottom: -82px;
        padding-top: 80px;
        padding-bottom: 80px;
        gap: 51px;
    }

    .lead:last-child {
        padding-bottom: 108px;
    }

    .lead__form {
        gap: 20px;
    }

    .lead__fields {
        gap: 20px;
    }

    .lead__inputs {
        gap: 20px;
    }

    .lead__additional {
        margin: 30px 0;
        gap: 62px;
    }

    .lead__btn {
        font-size: 32px;
        padding: 12px;
    }

    .breadcrumbs {
        padding: 32px 0;
        font-size: 22px;
        gap: 16px;
    }

    .breadcrumb__item {
        gap: 16px;
    }

    .breadcrumb__item:not(:first-child)::before {
        width: 10px;
        height: 16px;
    }

    .page-title {
        margin-bottom: 8px;
        font-size: 36px;
    }

    .description {
        padding-top: 66px;
        line-height: 1.73333;
        --img-margin-top: 26px;
        --img-margin-bottom: 26px;
        --p-margin-top: 26px;
        --p-margin-bottom: 26px;
        --h-margin-top: 26px;
        --h-margin-bottom: 26px;
        --l-margin-top: 26px;
        --l-margin-bottom: 26px;
    }

    .map {
        padding: 31px 0;
    }

    .map__frame {
        height: 390px;
    }

    .contacts {
        gap: 34px;
        padding: 31px 0;
    }

    .contacts__item {
        gap: 21px;
        border-radius: 22px;
        padding: 30px 20px 26px 33px;
    }

    .contacts__item-title {
        font-size: 20px;
        margin-left: 3px;
    }

    .contacts__columns {
        gap: 14px;
    }

    .contacts__list {
        gap: 7px;
        font-size: 20px;
    }

    .contacts__list-item {
        gap: 9px;
    }

    .contacts__list-item-icon {
        width: 27px;
        height: 27px;
    }

    .contacts__social {
        gap: 10px;
    }

    .contacts__social-link {
        width: 56px;
        height: 56px;
        padding: 16px;
    }

    .delivery-title {
        margin-bottom: 38px;
    }

    .media-info {
        gap: 57px;
    }

    .checked-list {
        width: 540px;
        margin: 0 -8px;
        gap: 12px;
    }

    .checked-list__item {
        background-size: 29px 29px;
        padding-left: 33px;
    }

    .checked-list__link {
        text-underline-offset: 3px;
    }

    .media-info__img-container {
        width: 550px;
        margin-top: 7px;
    }

    .img-zoom {
        right: 17px;
        bottom: 17px;
        width: 51px;
        height: 51px;
        padding: 12px;
    }

    .page-content {
        padding: 26px 0;
    }

    .details {
        padding: 47px 0;
    }

    .details__list {
        gap: 29px 0;
    }

    .details__item {
        gap: 22px;
    }

    .details__item-icon-container {
        width: 65px;
        height: 50px;
    }

    .gallery {
        padding: 40px 0;
        gap: 26px;
    }

    .gallery__header {
        gap: 23px;
    }

    .gallery__nav {
        gap: 12px;
    }

    .gallery__nav-item {
        width: 65px;
        height: 65px;
        padding: 22px;
    }

    .gallery__slide {
        width: 312px;
    }

    .product {
        gap: 82px;
    }

    .product__main {
        gap: 40px;
        padding: 16px 20px 20px;
    }

    .product__gallery {
        gap: 28px;
        margin: 0 38px;
    }

    .product__gallery-main {
        aspect-ratio: auto;
        height: 362px;
    }

    .product__gallery-list {
        gap: 28px;
    }

    .product__gallery-item {
        width: 100px;
        height: 100px;
    }

    .product__data {
        gap: 54px;
    }

    .product__title {
        font-size: 32px;
        margin: 0 12px;
    }

    .product__attrs {
        margin: 0;
    }

    .product__attrs-list {
        gap: 20px;
    }

    .product__attrs-title {
        margin-bottom: 18px;
    }

    .product__edges {
        margin: 0 -8px;
        gap: 32px 8px;
    }
    
    .product__edges-item {
        gap: 8px;
    }
    
    .product__edges-item-icon-container {
        width: 62px;
        height: 62px;
    }
    
    .product__footer {
        gap: 38px 20px;
        margin-top: 2px;
    }
    
    .product__info {
        margin-left: 10px;
        gap: 16px;
    }

    .product__price {
        font-size: 28px;
        line-height: 28px;
    }

    .product__price--small {
        font-size: 32px;
    }

    .product__price span {
        font-size: 40px;
    }

    .product__availability {
        gap: 8px;
        font-size: 30px;
    }

    .product__availability-dot {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .product__availability-dot::before {
        width: 8px;
        height: 8px;
        top: calc(50% - 4px);
        left: calc(50% - 4px);
    }

    .quantity {
        padding: 26px;
        gap: 14px;
    }

    .quantity__btn {
        width: 20px;
        height: 20px;
    }

    .quantity__input {
        width: 62px;
        height: 36px;
        font-size: 30px;
    }

    .product-card__quantity {
        padding: 16px 32px;
    }

    .product__quantity {
        padding: 30px 32px;
    }

    .product__cart {
        padding: 18px;
        font-size: 28px;
    }

    .tabs {
        gap: 36px;
    }

    .tabs__nav {
        gap: 14px;
    }

    .tabs__nav-btn {
        padding: 18px;
    }

    .cart-content {
        padding: 30px;
    }

    .cart__header {
        border-width: 1px;
        padding-bottom: 10px;
    }

    .cart__row {
        border-width: 1px;
        gap: 28px;
        padding: 28px 0;
    }

    .cart__row-image-container {
        height: 328px;
    }

    .cart__row-title {
        font-size: 30px;
    }

    .cart__quantity {
        padding: 16px 32px;
    }

    .cart__row-info {
        gap: 2px;
    }

    .cart__row-price {
        font-size: 28px;
        line-height: 28px;
    }

    .cart__row-price span {
        font-size: 40px;
    }

    .cart__row-availability {
        font-size: 30px;
        gap: 8px;
    }

    .cart__row-availability-dot {
        width: 20px;
        height: 20px;
        border-width: 1px;
    }

    .cart__row-availability-dot::before {
        width: 8px;
        height: 8px;
    }

    .cart__row-trash {
        width: 60px;
        height: 60px;
        top: 28px;
    }

    .cart-total {
        gap: 26px;
        margin-top: 56px;
    }

    .cart-total__btn {
        font-size: 15px;
        padding: 16px 40px;
    }

    .alert {
        padding: 15px 60px 15px 20px;
        margin-bottom: 30px;
        font-size: 18px;
    }

    .alert__close {
        width: 40px;
        background-size: 30px 30px;
    }

    .category-title {
        margin-bottom: 18px;
    }

    .categories {
        gap: 16px 14px;
        margin: 18px 0 49px;
    }

    .categories__link {
        padding: 20px;
    }

    .categories__total {
        margin-left: 10px;
    }

    .row {
        gap: 49px;
    }

    .filter {
        gap: 16px;
    }

    .filter__item {
        gap: 16px;
    }

    .filter-search__input {
        padding: 0 18px 0 68px;
        height: 66px;
        font-size: 22px;
    }

    .filter-search__btn {
        left: 16px;
        width: 45px;
        height: 45px;
    }

    .filter__more-btn {
        font-size: 26px;
        gap: 13px;
        padding: 16px;
    }

    .filter__more-btn-icon {
        width: 25px;
        height: 25px;
    }

    .row__content {
        gap: 16px;
    }

    .settings {
        gap: 24px;
    }

    .settings__item {
        gap: 24px;
    }

    .settings__item-current {
        gap: 12px;
    }

    .settings__item-dropdown {
        width: 16px;
        height: 10px;
    }

    .products {
        gap: 65px;
    }

    .products__list {
        gap: 16px;
    }

    .product-card {
        padding: 12px 20px 22px;
        gap: 10px;
    }

    .product-card__img-container {
        height: 305px;
    }

    .product-card__content {
        gap: 24px;
    }

    .product-card__main {
        gap: 14px;
        margin: 0 12px;
    }

    .product-card__title {
        font-size: 30px;
    }

    .product-card__attrs {
        gap: 12px;
    }

    .product-card__footer {
        gap: 10px;
    }

    .product-card__info {
        margin-left: 14px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .product-card__price {
        font-size: 28px;
    }

    .product-card__price--small {
        font-size: 28px;
        margin-bottom: 2px;
    }

    .product-card__price span {
        font-size: 40px;
    }

    .product-card__availability {
        font-size: 28px;
        gap: 8px;
    }

    .product-card__availability-dot {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .product-card__availability-dot::before {
        width: 8px;
        height: 8px;
        top: calc(50% - 4px);
        left: calc(50% - 4px);
    }

    .product-card__cart {
        font-size: 28px;
        padding: 18px;
    }

    .pagination {
        gap: 20px;
    }

    .pagination a,
    .pagination span {
        width: 76px;
        height: 76px;
        line-height: 76px;
        font-size: 30px;
    }

    .filter-ul {
        padding-left: 21px;
        gap: 7px;
    }

    .filter-ul__btn {
        font-size: 21px;
    }

    .filter__more-content {
        width: 392px;
        gap: 26px;
        padding: 26px;
        border-width: 1px;
    }

    .settings__item-btn {
        padding: 13px;
    }

    .settings__item-btn {
        padding: 13px;
    }

    .settings__item-list {
        width: 392px;
        border-width: 1px;
        transform: translateY(88px);
    }

    .filter-range__labels {
        font-size: 27px;
    }

    .filter-range .irs {
        height: 27px;
    }

    .filter-range .irs-line {
        height: 6px;
        top: 11px;
    }

    .filter-range .irs-bar {
        height: 6px;
        top: 11px;
        border-radius: 10px;
    }

    .filter-range .irs-handle {
        width: 27px;
        height: 27px;
        box-shadow: 0 4px 6px rgb(42 44 47 / .2);
        border-width: 6px;
    }

    .modal__input {
        height: 56px;
        font-size: 16px;
        padding: 0 21px;
    }

    .modal__checkbox {
        gap: 14px;
        font-size: 16px;
    }

    .modal__btn {
        font-size: 17px;
        padding: 20px 26px 16px;
    }

    .modal__btn--sm {
        margin-top: 22px;
        padding: 14px 22px;
        font-size: 14px;
    }

    .contact {
        padding: 8px 32px 32px;
        gap: 20px;
    }

    .contact__img {
        max-width: 548px;
    }

    .contact__info {
        gap: 24px;
    }

    .contact__title {
        font-size: 36px;
    }

    .contact__description {
        font-size: 28px;
    }

    .contact__lead {
        padding: 28px 24px 36px;
        margin-top: 14px;
        gap: 18px;
    }

    .contact__lead-content {
        gap: 30px;
    }

    .contact__lead-list {
        gap: 10px;
    }

    .contact__lead-phone {
        font-size: 38px;
        gap: 24px;
    }

    .contact__lead-phone-icon {
        width: 32px;
        height: 32px;
    }

    .contact__lead-email {
        font-size: 28px;
        gap: 24px;
        text-underline-offset: 4px;
    }

    .contact__lead-email-icon {
        width: 36px;
        height: 30px;
    }

    .contact__lead-telegram {
        width: 90px;
        height: 90px;
    }

    .link-widget__button {
        right: 103px;
        bottom: 103px;
    }

    .link-widget__button-default,
    .link-widget__button-close {
        width: 135px;
        height: 135px;
    }

    .link-widget__button-default::before,
    .link-widget__button-close::before {
        top: -16px;
        left: -16px;
        height: 168px;
        width: calc(100% + 33px);
    }

    .link-widget__button-default::after {
        border: 2px solid #FDB720;
    }

    .link-widget__button-icon,
    .link-widget__button-close-icon {
        width: 57px;
        height: 57px;
        margin: -29px 0 0 -29px;
    }

    .link-widget__list {
        right: 103px;
        bottom: 256px;
        transform: translateY(41px);
        width: 135px;
    }

    .link-widget__list-link {
        width: 92px;
        height: 90px;
        box-shadow: 0 16px 12px -12px rgba(33,33,33,.2);
        padding: 25px;
    }

    .link-widget__list-item:not(:last-child) {
        margin-bottom: 21px;
    }

    .link-widget__list-link-name {
        left: -10px;
        padding: 10px 21px;
        border-radius: 21px;
        max-width: 738px;
        font-size: 27px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hidden-md {
        display: none !important;
    }
}

@media screen and (min-width: 1024px) {
    :root {
        --border-radius: 8px;
    }

    body {
        font-size: 15px;
        --page-wrap: 20px;
    }

    a:not([class]) {
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
    }

    .input {
        height: 56px;
        padding: 0 22px;
        font-size: 15px;
    }

    .textarea {
        padding: 19px 22px;
        font-size: 15px;
        height: 202px;
    }

    .file {
        gap: 5px;
        font-size: 15px;
    }

    .file__icon {
        width: 24px;
        height: 24px;
    }

    .file__text {
        width: auto;
    }

    .checkbox {
        gap: 14px;
        font-size: 15px;
    }

    .checkbox__mark {
        width: 23px;
        height: 23px;
    }

    .checkbox__custom {
        border-radius: calc(var(--border-radius) * .75);
    }

    .checkbox__custom::before {
        width: 13px;
        height: 9px;
        top: 50%;
    }

    .btn {
        font-size: 16px;
        padding: 11px 15px;
        gap: 8px;
    }

    .title {
        font-size: 34px;
    }

    .wrap {
        width: 1240px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .header__wrap {
        width: calc(1384px + var(--page-wrap) * 2)
    }

    .header__top {
        display: block;
        border-bottom: 1px solid rgb(5 43 71 / .1);
        padding: 13px 0 11px;
    }

    .header__nav-list {
        display: flex;
        align-items: center;
        gap: 23px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header__nav-link {
        color: var(--color-text);
        text-decoration: none;
    }

    .header__location {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        margin-left: auto;
        width: 194px;
    }

    .header__location-icon {
        width: 13px;
        height: 17px;
    }

    .header__location-current {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header__location-dropdown {
        width: 9px;
        height: 5px;
    }

    .header__location-list {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        border-radius: var(--border-radius);
        background: #fff;
        border: 1px solid rgb(5 43 71 / .1);
        z-index: 2;
        transform: translateY(50px);
        transition: .6s;
        opacity: 0;
        visibility: hidden;
    }

    .header__location-list.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header__location-link {
        padding: 8px 10px;
        display: block;
        color: var(--color-text);
        text-decoration: none;
    }

    .header__location-item:not(:last-child) {
        border-bottom: 1px solid rgb(5 43 71 / .1);
    }

    .header__work-hours {
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        width: 226px;
        font-weight: 500;
    }

    .header__work-hours-icon {
        width: 16px;
        height: 16px;
    }

    .header__middle {
        padding: 21px 0 7px;
    }

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

    .header__logo {
        width: 244px;
    }

    .header-catalog {
        display: block;
        position: relative;
    }

    .header-catalog__btn {
        display: flex;
        align-items: center;
        gap: 5px;
        background: var(--gradient);
        color: var(--color-text);
        stroke: var(--color-text);
        border: none;
        padding: 5px 14px 5px 11px;
        min-height: 38px;
        border-radius: 6px;
    }

    .header-catalog__btn-icon {
        width: 17px;
        height: 17px;
    }

    .header-catalog__dropdown {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        width: var(--dropdown-width);
        background: #fff;
        z-index: 5;
        border-radius: 4px;
        padding: var(--dropdown-padding);
        --dropdown-width: 882px;
        --dropdown-padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    .header-catalog__dropdown::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 0;
        width: 100%;
        height: 5px;
    }

    .header-catalog:hover .header-catalog__dropdown {
        opacity: 1;
        visibility: visible;
    }

    .header-catalog__list {
        width: 285px;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 3px;
        position: relative;
    }

    .header-catalog__list::before {
        content: '';
        width: 1px;
        height: 100%;
        position: absolute;
        left: calc(100% + 20px);
        background: #BDBDBD;
    }

    .header-catalog__list-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: calc(var(--dropdown-width) - var(--dropdown-padding) * 2 - 285px);
        height: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .header-catalog__list-link {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        gap: 4px;
        min-height: 35px;
        padding: 3px 16px 3px 6px;
    }

    .header-catalog__sub-list {
        position: absolute;
        top: 0;
        left: calc(100% + 41px);
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2 , auto);
        gap: 11px;
        width: calc(var(--dropdown-width) - 285px - 41px - var(--dropdown-padding) * 2);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    .header-catalog__list-link-icon {
        filter: invert(1);
        width: 24px;
        height: 24px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .header-catalog__list-link-dropdown {
        transform: rotate(270deg);
        width: 10px;
        height: 10px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .header-catalog__sub-list-link {
        color: #000;
        text-decoration: none;
        font-size: 14.5px;
    }

    .header-catalog__sub-list-link-count {
        color: #ADADAD;
        margin-left: 5px;
    }

    .header-catalog__list-item:hover .header-catalog__list-link {
        background: #F0F0F0;
    }

    .header-catalog__list-item:hover .header-catalog__sub-list {
        opacity: 1;
        visibility: visible;
    }

    .header-catalog__list-item:hover::before {
        opacity: 1;
        visibility: visible;
    }

    .header__search {
        margin-right: 0;
    }

    .header__search-input {
        height: 38px;
        border-radius: calc(var(--border-radius) / 2);
        border: 1px solid #BDBDBD;
        font-size: 14px;
        padding: 0 10px 0 35px;
        background: none;
    }

    .header__search-btn {
        left: 10px;
        width: 22px;
        height: 22px;
    }

    .header__contacts {
        flex-direction: row;
        align-items: flex-start;
        gap: 6px;
        margin: 12px -10px 0 0;
    }

    .header__email {
        gap: 8px;
        line-height: 1.2;
        text-underline-offset: 3px;
        width: 210px;
        font-size: 14.5px;
    }

    .header__email-icon {
        width: 18px;
        height: 18px;
    }

    .header__call {
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 14.5px;
        width: 154px;
    }

    .header__phone {
        gap: 8px;
        font-size: 14.5px;
        line-height: 1;
    }

    .header__phone-icon {
        width: 16px;
        height: 16px;
    }

    .header__callback {
        display: block;
        font-size: 14.5px;
        font-weight: 500;
        background: none;
        border: none;
        padding: 0;
        text-decoration: underline;
        margin-left: 24px;
        text-underline-offset: 3px;
        text-align: left;
    }

    .header__callback:hover {
        text-decoration-color: transparent;
    }

    .header__social {
        display: flex;
        gap: 8px;
        align-items: center;
        width: 68px;
        margin-right: -6px;
    }

    .header__social-item {
        width: 30px;
        height: 30px;
    }

    .header__bottom {
        padding: 0;
        position: relative;
        z-index: 2;
    }

    .header__bottom::before {
        content: '';
        background: linear-gradient(180deg, #052B47 -35.58%, #05599A 175.96%);
        position: absolute;
        top: 0;
        left: -50px;
        width: calc(36.6% + 50px);
        height: 100%;
        transform: skewX(40deg);
        z-index: -1;
    }

    .header-menu {
        display: flex;
        align-items: center;
        gap: 48px;
        padding: 0;
        margin: 0 0 0 21px;
        list-style: none;
        position: relative;
    }

    .header-menu__item {
        position: relative;
    }

    .header-menu__link {
        font-size: 14.5px;
        font-weight: 500;
        line-height: 18px;
        color: #fff;
        fill: #fff;
        display: flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        padding-top: 2px;
        height: 42px;
    }

    .header-menu__link-dropdown {
        width: 9px;
        height: 5px;
    }

    .header-menu__sub-menu-container {
        position: absolute;
        top: 100%;
        left: -4px;
        background: var(--color-bg-white);
        border-radius: 0 0 calc(var(--border-radius) / 2) calc(var(--border-radius) / 2);
        width: 703px;
        padding: 19px;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 50px;
        max-width: calc(100vw - var(--position-x) - 20px);
    }

    .header-menu__item:hover .header-menu__sub-menu-container {
        opacity: 1;
        visibility: visible;
    }

    .header-menu__sub-menu {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .header-menu__sub-menu-item {
        margin-bottom: 10px;
    }

    .header-menu__sub-menu-link,
    .header-menu__third-menu-link {
        color: #000;
        text-decoration: none;
        font-size: 14.5px;
    }

    .header-menu__sub-menu-total,
    .header-menu__third-menu-total {
        color: #ADADAD;
        margin-left: 5px;
    }

    .header-menu__third-menu {
        padding: 9px 0 0 12px;
        list-style: none;
        margin: 0;
    }

    .header-menu__third-menu-item {
        margin-bottom: 2px;
    }

    .header-menu__third-menu-link {
        font-size: 12px;
    }

    .header-menu__third-menu-total {
        margin-left: 2px;
    }

    .header-cart {
        display: flex;
        gap: 7px;
        font-size: 14.5px;
        margin: 3px 10px 0 0;
    }

    .header-cart__icon {
        width: 25px;
        height: 19px;
    }

    .header-cart__count {
        min-width: 17px;
        height: 17px;
        line-height: 17px;
        font-size: 12px;
        padding: 1px 3px 0;
    }

    .header__mob-nav-btn {
        display: none;
    }

    .mob-nav {
        display: none;
    }

    .footer {
        padding: 54px 0 24px;
        margin: 0;
    }

    .footer__wrap {
        align-items: flex-start;
        gap: 28px 30px;
        width: calc(1382px + var(--page-wrap) * 2);
    }

    .footer__info {
        width: 385px;
        gap: 15px;
        flex-shrink: 0;
    }

    .footer__logo {
        max-width: 250px;
    }

    .footer__communication {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
    }

    .footer__contacts {
        gap: 6px;
    }

    .footer__contacts-item {
        gap: 9px;
    }

    .footer__contacts-icon {
        width: 20px;
        height: 20px;
        margin: 2px;
    }

    .footer__contacts-link--underline {
        text-decoration: underline 1px #CDD1D7;
        text-underline-offset: 5px;
    }

    .footer__contacts-link--underline:hover {
        text-decoration-color: transparent;
    }

    .footer__social {
        flex-direction: row-reverse;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

    .footer__social-link {
        width: 30px;
        height: 30px;
    }

    .footer__navs {
        padding: 0;
        flex-wrap: nowrap;
        gap: 84px;
        width: calc(100% - 385px - 30px);
    }

    .footer__nav {
        margin-top: 9px;
        gap: 28px;
        width: 130px;
    }

    .footer__nav-title {
        font-size: 16px;
    }

    .footer__nav-list {
        gap: 12px;
    }

    .footer__nav-link {
        font-size: 15px;
    }

    .footer__nav--wide {
        width: 455px;
        flex-grow: 0;
    }

    .footer__nav--wide .footer__nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer__disclaimer {
        display: block;
        width: 100%;
        margin: 0;
        line-height: 1.2;
        font-weight: 500;
    }

    .main {
        padding-top: 29px;
        padding-bottom: 80px;
    }

    .promo {
        display: flex;
        gap: 16px;
        margin: 0 calc((100vw - 1240px) / 2 * -1);
    }

    .promo:first-child {
        margin-top: 0;
    }

    .banner-slider {
        margin: 0;
        flex-grow: 1;
        border-radius: 12px;
    }

    .promo-banner {
        display: block;
        width: 22.205%;
        flex-shrink: 0;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }

    .promo-banner__img {
        display: block;
        width: 100%;
    }

    .banner-slider__pagination {
        --swiper-pagination-bottom: 14px;
        --swiper-pagination-bullet-border-radius: 2px;
        --swiper-pagination-bullet-size: 12px;
        --swiper-pagination-bullet-inactive-color: #ccc;
        --swiper-pagination-bullet-inactive-opacity: .5;
        gap: 12px;
    }

    .banner-slider__nagination {
        top: calc(50% - 15px);
        left: 10px;
        width: 30px;
        height: 30px;
    }

    .banner-slider__nagination[data-direction="next"] {
        left: auto;
        right: 10px;
    }

    .edges {
        padding: 36px 0 41px;
        margin: 0 calc((100vw - 1240px) / 2 * -1);
    }

    .edges__list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 58px;
    }

    .edges__item {
        gap: 27px;
    }

    .edges__item:nth-child(n+5) {
        display: flex;
    }

    .edges__item-icon-container {
        width: 41px;
        height: 46px;
    }

    .edges__item-text {
        line-height: 1.4;
    }

    .products-slider {
        padding: 42px 0;
        gap: 48px;
    }

    .products-slider__header {
        flex-wrap: nowrap;
        gap: 25px;
        align-items: flex-start;
    }

    .products-slider__title {
        flex-shrink: 0;
    }

    .products-slider__nav {
        gap: 6px;
        order: 2;
        margin-top: 5px;
    }

    .products-slider__nav-item {
        width: 38px;
        height: 38px;
        padding: 14px;
    }

    .products-slider__tabs-nav {
        width: auto;
        gap: 10px;
        padding: 0;
        margin: 5px 0 0;
    }

    .products-slider__tabs-nav-btn {
        font-size: 15px;
        padding: 10px 21px;
    }

    .products-slider__list {
        margin: 0;
        padding: 0 0 68px;
    }

    .product-slide {
        padding: 18px 15px 14px;
        gap: 12px;
    }

    .product-slide__img-container {
        height: 184px;
    }

    .product-slide__content {
        gap: 12px;
    }

    .product-slide__title {
        font-size: 15px;
        line-height: 1.2;
    }

    .product-slide__attrs {
        font-size: 14px;
        --attr-line-height: 17px;
        line-height: var(--attr-line-height);
        gap: 1px;
    }

    .product-slide__attrs-item-dropdown {
        width: 9px;
    }

    .product-slide__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .product-slide__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        min-height: auto;
    }

    .product-slide__price {
        font-size: 14px;
        line-height: 24px;
    }

    .product-slide__price span {
        font-size: 20px;
    }

    .product-slide__price--small {
        font-size: 15px;
    }

    .product-slide__availability {
        font-size: 14px;
        gap: 4px;
    }

    .product-slide__availability-dot {
        width: 10px;
        height: 10px;
        border-width: 1px;
        margin-bottom: 2px;
    }

    .product-slide__availability-dot::before {
        width: 4px;
        height: 4px;
    }

    .product-slide__cart {
        margin: 0;
        font-size: 16px;
        padding: 9px 10px;
    }

    .products-slider__pagination {
        --swiper-pagination-bullet-size: 14px;
        gap: 14px;
    }

    .card-grid {
        padding: 43px 0 72px;
        gap: 42px;
    }

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

    .card-grid__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px 20px;
    }

    .card-grid__link {
        font-size: 16px;
        padding: 16px 5px 8px;
        gap: 14px;
    }

    .card-grid__name {
        font-size: 15px;
        line-height: 1.2;
        gap: 2px;
    }

    .card-grid__img-container {
        height: 144px;
    }

    .card-grid__list--sm {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .card-grid__list--sm .card-grid__link {
        padding: 22px;
    }

    .card-grid__list--sm .card-grid__img-container {
        height: 78px;
    }

    .bg-white {
        margin-top: 48px;
        padding-top: 94px;
        padding-bottom: 51px;
        --side-offset: calc((100vw - 1240px + var(--page-wrap) * 2) / 2);
        margin-left: calc(var(--side-offset) * -1);
        margin-right: calc(var(--side-offset) * -1);
        padding-left: var(--side-offset);
        padding-right: var(--side-offset);
    }

    .info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 49px 22px;
    }

    .info__content {
        width: calc(50% - 50px);
        gap: 44px;
    }

    .info__text {
        --img-margin-top: 24px;
        --img-margin-bottom: 24px;
        --p-margin-top: 24px;
        --p-margin-bottom: 24px;
        --h-margin-top: 24px;
        --h-margin-bottom: 24px;
        --l-margin-top: 24px;
        --l-margin-bottom: 24px;
        --l-margin-left: 36px;
        line-height: 1.73333;
    }

    .info__gallery {
        width: calc(50% + 26px);
        margin-top: 7px;
        display: grid;
        grid-template-columns: calc(66.757% - 7px / 2) auto;
        grid-template-rows: repeat(2, 1fr);
        gap: 14px 12px;
    }

    .info__gallery-item:first-child {
        grid-area: 1 / 1 / 3 / 2;
        aspect-ratio: 1;
    }

    .info__gallery-item:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
        width: 100%;
    }

    .info__gallery-item:nth-child(3) {
        grid-area: 2 / 2 / 3 / 3;
        width: 100%;
    }

    .info__edges {
        margin: 0;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .info__edges-item {
        aspect-ratio: auto;
        padding: 44px 12px 29px;
        border-radius: calc(var(--border-radius) * 2) calc(var(--border-radius) * 2) 0 0;
        gap: 28px;
        font-size: 16px;
        line-height: 1.0625;
    }

    .info__edges-item-icon-container {
        width: 63px;
        height: 63px;
    }

    .lead {
        padding: 50px 0;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 47px;
        --side-offset: calc((100vw - 1240px + var(--page-wrap) * 2) / 2);
        margin: 0 calc(var(--side-offset) * -1) -80px;
        padding-left: var(--side-offset);
        padding-right: var(--side-offset);
        background: url(../image/bg/lead-desktop.jpg) no-repeat center / cover;
    }

    .lead:last-child {
        padding-bottom: 57px;
    }

    .lead__title {
        text-align: center;
    }

    .lead__form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 26px;
        width: 960px;
        margin: 0 auto;
    }

    .lead__fields {
        display: grid;
        grid-template-columns: 342px auto;
        gap: 23px;
        width: 100%;
    }

    .lead__inputs {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .lead__additional {
        margin: 0;
        gap: 28px;
        transform: translateX(8px);
    }

    .lead__btn {
        margin-top: 19px;
        padding: 9px 63px;
    }

    .breadcrumbs {
        font-size: 15px;
        padding: 41px 0;
        gap: 20px;
    }

    .breadcrumb__item {
        gap: 20px;
    }

    .breadcrumb__item:not(:first-child)::before {
        width: 5px;
        height: 8px;
    }

    .catalog-title {
        text-align: left;
    }

    .page-title {
        font-size: 34px;
        line-height: 1.23529;
        margin-bottom: 15px;
    }

    .map {
        padding: 43px 0;
    }

    .map__frame {
        height: 482px;
    }

    .contacts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px;
        padding: 24px 0;
    }

    .contacts__item {
        border-width: 1px;
        border-radius: 17px;
        padding: 23px 20px 25px 24px;
        gap: 16px;
    }

    .contacts__item-title {
        font-size: 15px;
    }

    .contacts__list {
        font-size: 15px;
        gap: 5px;
    }

    .contacts__list-item-icon {
        width: 21px;
        height: 21px;
    }

    .contacts__social {
        gap: 8px;
        margin: -2px 13px 0 0;
    }

    .contacts__social-link {
        width: 43px;
        height: 43px;
        padding: 12px;
    }

    .delivery-title {
        margin-bottom: 29px;
    }

    .media-info {
        flex-direction: row;
    }

    .media-info__img-container {
        width: 422px;
        margin-top: 5px;
    }

    .media-info__content {
        --img-margin-top: 20px;
        --img-margin-bottom: 23px;
        --p-margin-top: 20px;
        --p-margin-bottom: 23px;
        --h-margin-top: 20px;
        --h-margin-bottom: 23px;
        --l-margin-top: 20px;
        --l-margin-bottom: 23px;
    }

    .checked-list {
        margin: 0 -5px;
        width: 413px;
        gap: 9px;
    }

    .checked-list__item {
        background-size: 21px 21px;
        padding-left: 24px;
    }

    .img-zoom {
        right: 13px;
        bottom: 13px;
        width: 39px;
        height: 39px;
        padding: 9px;
    }

    .information-title {
        margin-bottom: 0;
    }

    .page-content {
        font-size: 17px;
        line-height: 1.4023;
        --img-margin-top: 20px;
        --img-margin-bottom: 24px;
        --p-margin-top: 20px;
        --p-margin-bottom: 24px;
        --h-margin-top: 20px;
        --h-margin-bottom: 24px;
        --l-margin-top: 20px;
        --l-margin-bottom: 24px;
    }

    .details {
        padding: 37px 0 28px;
    }

    .details__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0 25px;
        margin: 0;
        width: 100%;
    }

    .details__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        font-size: 17.4px;
    }

    .details__item-icon-container {
        width: 47px;
        height: 47px;
    }

    .details__item-text {
        max-width: 230px;
        margin: 0 auto;
        line-height: 1.08;
    }

    .details__item:nth-child(2n) {
        order: 2;
    }

    .gallery {
        padding: 36px 0;
        gap: 40px;
    }

    .gallery__header {
        gap: 20px;
    }

    .gallery__nav {
        gap: 6px;
    }

    .gallery__nav-item {
        width: 38px;
        height: 38px;
        padding: 14px;
    }

    .gallery__slider {
        margin: 0;
        padding: 0;
    }

    .product {
        gap: 50px;
    }

    .product__main {
        flex-direction: row;
        gap: 44px;
        padding: 21px 71px 19px 29px;
    }

    .product__gallery {
        width: 392px;
        flex-shrink: 0;
        gap: 20px;
        margin: 0;
    }

    .product__gallery-main {
        aspect-ratio: 1;
        height: auto;
        width: 360px;
    }

    .product__gallery-list {
        gap: 14px;
    }

    .product__gallery-item {
        width: 120px;
        height: 120px;
    }

    .product__data {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        gap: 27px;
        margin-top: 16px;
    }

    .product__title {
        font-size: 30px;
        line-height: 1.2;
        margin: 0;
    }

    .product__attrs-title {
        font-size: 14px;
        margin-bottom: 13px;
    }

    .product__attrs-list {
        gap: 12px;
    }

    .product__edges {
        font-size: 14px;
        line-height: 1.21429;
        max-width: 644px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 0;
    }

    .product__edges-item {
        gap: 14px;
    }

    .product__edges-item-icon-container {
        width: 34px;
        height: 34px;
    }

    .product__footer {
        margin-top: 42px;
        justify-content: flex-start;
        gap: 12px;
    }

    .product__info {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin: 0;
    }

    .product__price {
        font-size: 14px;
        line-height: 14px;
    }

    .product__price--small {
        font-size: 16px;
    }

    .product__price span {
        font-size: 20px;
    }

    .product__availability {
        font-size: 15px;
        gap: 4px;
    }

    .product__availability-dot {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }

    .product__availability-dot::before {
        width: 4px;
        height: 4px;
        top: calc(50% - 2px);
        left: calc(50% - 2px);
    }

    .quantity {
        padding: 10px;
        gap: 2px;
    }

    .quantity__btn {
        width: 10px;
        height: 10px;
    }

    .quantity__input {
        font-size: 15px;
        width: 22px;
        height: 18px;
    }

    .product__quantity {
        padding: 10px 15px;
        margin-left: auto;
    }

    .product__cart {
        width: auto;
        line-height: 1;
        padding: 11px 10px;
        margin-right: 9px;
    }

    .tabs {
        gap: 18px;
    }

    .tabs__nav {
        gap: 11px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .tabs__nav-btn {
        padding: 10px 16px;
        width: auto;
        line-height: 1.2;
    }

    .cart-content {
        padding: 20px;
    }

    .cart__header {
        display: flex;
        gap: 30px;
        padding-bottom: 8px;
    }

    .cart__header-item:nth-child(1) {
        margin-left: 293px;
        flex: 1 0 0;
    }

    .cart__header-item:nth-child(2) {
        display: block;
        flex: 0 0 154px;
    }

    .cart__header-item:nth-child(3) {
        display: block;
        flex: 0 0 233px;
    }

    .cart__row {
        flex-wrap: nowrap;
        gap: 30px;
        padding: 7px 0;
    }

    .cart__row-checkbox {
        width: 23px;
        height: 23px;
        margin-left: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #FDCC1B;
        border-radius: 5px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.9368 0.253613C11.1916 0.50843 11.1916 0.92157 10.9368 1.17639L4.84682 7.26639C4.592 7.5212 4.17886 7.5212 3.92404 7.26639L0.444043 3.78639C0.189225 3.53157 0.189225 3.11843 0.444043 2.86361C0.69886 2.6088 1.112 2.6088 1.36682 2.86361L4.38543 5.88223L10.014 0.253613C10.2689 -0.00120428 10.682 -0.00120428 10.9368 0.253613Z' fill='%232A2C2F'/%3E%3C/svg%3E") no-repeat center / 12px 8px #FDCC1B;
        flex-shrink: 0;
    }

    .cart__row-image-container {
        width: 174px;
        height: 158px;
        margin-left: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart__row-title {
        flex: 1 0 0;
        width: auto;
        max-width: 295px;
        margin-right: auto;
        margin-left: -11px;
        font-size: 15px;
    }

    .cart__quantity-wrapper {
        width: 127px;
    }

    .cart__quantity {
        padding: 10px 15px;
        margin-left: 0;
        width: fit-content;
    }

    .cart__row-info {
        gap: 8px;
        order: 3;
        min-width: 110px;
        align-items: center;
        text-align: center;
        margin-right: 59px;
    }

    .cart__row-price {
        font-size: 14px;
        line-height: 14px;
    }

    .cart__row-price--small {
        font-size: 16px;
    }

    .cart__row-price span {
        font-size: 20px;
    }

    .cart__row-availability {
        font-size: 14px;
        gap: 4px;
    }

    .cart__row-availability-dot {
        width: 10px;
        height: 10px;
    }

    .cart__row-availability-dot::before {
        width: 4px;
        height: 4px;
    }

    .cart__row-trash {
        width: 30px;
        height: 30px;
        margin-right: 31px;
        margin-left: 0;
        position: relative;
        top: auto;
        order: 4;
    }

    .cart-total {
        margin-top: 43px;
    }

    .cart-total__btn {
        font-size: 15px;
        padding: 16px 40px;
    }

    .categories {
        margin: 15px 0 44px;
        gap: 11px;
        display: flex;
        flex-wrap: wrap;
    }

    .categories__link {
        line-height: 1.2;
        font-size: 15px;
        padding: 10px 14px;
    }

    .categories__total {
        margin-left: 8px;
    }

    .row {
        flex-direction: row;
        gap: 33px;
    }

    .sidebar {
        width: 236px;
        flex-shrink: 0;
    }

    .row__content {
        flex: 1 0 0;
        gap: 15px;
    }

    .filter {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .filter__main {
        width: 100%;
    }

    .filter__item-title {
        font-size: 15px;
        font-weight: 700;
    }

    .filter-search__input {
        padding: 0 9px 0 34px;
        font-size: 14px;
        height: 40px;
    }

    .filter-search__btn {
        width: 22px;
        height: 22px;
        left: 9px;
    }

    .filter__more-btn {
        display: none;
    }

    .filter__more-content {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        padding: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .settings {
        margin-top: 2px;
        gap: 20px;
    }

    .settings__item {
        gap: 12px;
    }

    .settings__item-current {
        gap: 6px;
    }

    .settings__item-dropdown {
        width: 8px;
        height: 5px;
    }

    .products {
        gap: 20px;
    }

    .products__list {
        gap: 10px;
    }

    .product-card {
        flex-direction: row;
        padding: 7px 26px 7px 11px;
        gap: 45px;
    }

    .product-card__img-container {
        width: 174px;
        height: 158px;
        flex-shrink: 0;
    }

    .product-card__content {
        flex-direction: row;
        align-items: center;
        flex-grow: 1;
    }

    .product-card__main {
        gap: 10px;
        flex: 1 0 0;
        margin: 0;
    }

    .product-card__title {
        font-size: 15px;
    }

    .product-card__attrs {
        font-size: 12px;
        --attr-line-height: 14px;
        line-height: var(--attr-line-height);
        gap: 10px;
    }

    .product-card__attrs-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        transition: .3s;
        overflow: hidden;
    }

    .product-card__attrs-item--spoiler {
        height: var(--attr-line-height);
        cursor: pointer;
    }

    .product-card__attrs-item-dropdown {
        width: 9px;
        height: var(--attr-line-height);
        margin-left: auto;
        flex-shrink: 0;
        transition: .3s;
    }

    .product-card__attrs-item.active {
        height: var(--attr-height);
    }

    .product-card__attrs-item.active .product-card__attrs-item-dropdown {
        transform: rotate(180deg);
    }

    .product-card__footer {
        flex-shrink: 0;
        gap: 35px;
        margin: 0 0 5px;
    }

    .product-card__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 110px;
        margin: 0;
        gap: 8px;
    }

    .product-card__price {
        font-size: 14px;
    }

    .product-card__price--small {
        font-size: 16px;
    }

    .product-card__price span {
        font-size: 20px;
    }

    .product-card__availability {
        font-size: 14px;
        gap: 4px;
        margin: 0;
    }

    .product-card__availability-dot {
        width: 10px;
        height: 10px;
    }

    .product-card__availability-dot::before {
        width: 4px;
        height: 4px;
        top: calc(50% - 2px);
        left: calc(50% - 2px);
    }

    .product-card__quantity {
        padding: 10px 15px;
    }

    .product-card__cart {
        width: auto;
        padding: 11px;
    }

    .pagination {
        gap: 8px;
    }

    .pagination a,
    .pagination span {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 15px;
    }

    .filter-ul {
        padding-left: 0;
        gap: 10px;
    }

    .filter-ul__btn {
        font-size: 15px;
        line-height: 1.2;
    }

    .filter-ul__total {
        margin-left: 10px;
    }

    .settings__item-list {
        width: 240px;
        transform: translateY(30px);
    }

    .settings__item-btn {
        padding: 10px;
        font-size: 16px;
    }

    .filter-range__labels {
        font-size: 14px;
    }

    .filter-range .irs {
        height: 31px;
    }

    .filter-range .irs-line {
        height: 3px;
        top: 6px;
    }

    .filter-range .irs-bar {
        height: 3px;
        top: 6px;
    }

    .filter-range .irs-handle {
        width: 14px;
        height: 14px;
        border-width: 3px;
        box-shadow: 0 2px 3px rgb(42 44 47 / .2);
    }

    .modal__btn {
        font-size: 17px;
        padding: 20px 26px 16px;
    }

    .modal__btn--sm {
        margin-top: 22px;
        padding: 14px 22px;
        font-size: 14px;
    }

    .contact {
        flex-direction: row;
        align-items: center;
        gap: 29px;
        padding: 32px 45px 33px 31px;
    }

    .contact__img {
        max-width: 318px;
    }

    .contact__info {
        gap: 14px;
    }

    .contact__title {
        font-size: 30px;
        line-height: 1.2;
    }

    .contact__description {
        font-size: 20px;
        line-height: 1.2;
        margin-top: 1px;
        max-width: 420px;
    }

    .contact__lead {
        margin: 0;
        padding: 14px 25px 21px;
        gap: 14px;
    }

    .contact__lead-title {
        line-height: 1.2;
        max-width: 440px;
    }

    .contact__lead-content {
        gap: 18px;
    }

    .contact__lead-list {
        gap: 4px;
    }

    .contact__lead-phone {
        gap: 12px;
        font-size: 20px;
    }

    .contact__lead-phone-icon {
        width: 16px;
        height: 16px;
    }

    .contact__lead-email {
        font-size: 15px;
        gap: 12px;
    }

    .contact__lead-email-icon {
        width: 18px;
        height: 15px;
    }

    .contact__lead-telegram {
        width: 44px;
        height: 44px;
    }

    .link-widget__button {
        right: 50px;
        bottom: 50px;
    }

    .link-widget__button-default,
    .link-widget__button-close {
        width: 66px;
        height: 66px;
    }

    .link-widget__button-default::before,
    .link-widget__button-close::before {
        top: -8px;
        left: -8px;
        height: 82px;
        width: calc(100% + 16px);
    }

    .link-widget__button-default::after {
        border: 1px solid #FDB720;
    }

    .link-widget__button-icon,
    .link-widget__button-close-icon {
        width: 28px;
        height: 28px;
        margin: -14px 0 0 -14px;
    }

    .link-widget__list {
        right: 50px;
        bottom: 125px;
        transform: translateY(20px);
        width: 66px;
    }

    .link-widget__list-link {
        width: 45px;
        height: 44px;
        box-shadow: 0 8px 6px -6px rgba(33,33,33,.2);
        padding: 12px;
    }

    .link-widget__list-item:not(:last-child) {
        margin-bottom: 10px;
    }

    .link-widget__list-link-name {
        left: -5px;
        padding: 5px 10px;
        border-radius: 10px;
        max-width: 360px;
        font-size: 13px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .hidden-lg {
        display: none !important;
    }
}

@media screen and (min-width: 1280px) {
    .hidden-xl {
        display: none !important;
    }
}

@media screen and (min-width: 1400px) {
    .promo {
        margin: 0 -98px;
    }

    .edges {
        margin: 0 -98px;
    }
}