/*
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-black: 42 44 47;           /* #2A2C2F */
    --color-white: 255 255 255;        /* #FFFFFF */
    --color-gray-darker: 130 136 143;  /* #82888F */
    --color-gray-dark: 150 160 174;    /* #96A0AE */
    --color-gray: 212 215 224;         /* #D4D7E0 */
    --color-gray-light: 242 244 246;   /* #F2F4F6 */
    --color-red: 233 56 56;            /* #E93838 */
    --color-green: 82 183 19;          /* #52B713 */

    --gradient: linear-gradient(90deg, #FDB720 0%, #FDCF19 100%);
    --gradient-v2: linear-gradient(90deg, #FD6220 0%, #FDA419 100%);
    --gradient-dark: linear-gradient(90deg, #233153 0%, #314F65 100%);

    --color-text: rgb(var(--color-black));
    --color-bg: rgb(var(--color-white));
    --color-bg-light: rgb(var(--color-gray-light));
    --color-bg-dark: var(--gradient-dark);
    --color-border: rgb(var(--color-gray));
    --color-placeholder: rgb(var(--color-gray-dark));
    --color-success: rgb(var(--color-green));
    --color-error: rgb(var(--color-red));

    --border-radius: 1.35823vw;

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

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

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

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

.main {
    flex-grow: 1;
    padding-top: 3.90492vw;
    padding-bottom: 6.45161vw;
}

.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, .50934vw, .50934vw);
    text-decoration-skip-ink: none;
    text-underline-offset: clamp(2px, .33956vw, .33956vw);
}

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

h1 {
    font-size: 6.79117vw;
}

h2 {
    font-size: 5.09338vw;
}

h3 {
    font-size: 4.07470vw;
}

.input {
    background: var(--color-bg);
    height: 8.31919vw;
    border-radius: var(--border-radius);
    border: none;
    padding: 0 3.05603vw;
    font-size: 2.37691vw;
    box-shadow: 0 .67912vw .67912vw rgb(0 0 0 / .04);
    transition: .3s;
}

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

.textarea {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    border: none;
    resize: none;
    box-shadow: 0 .67912vw .67912vw rgb(0 0 0 / .04);
    padding: 2.54669vw 3.22581vw;
    font-size: 2.37691vw;
    transition: .3s;
}

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

.file {
    display: flex;
    align-items: center;
    gap: .67912vw;
    position: relative;
    font-size: 2.37691vw;
    text-decoration: underline clamp(1px, .16978vw, .16978vw) dashed rgb(42 44 47 / .4);
    text-underline-offset: .50934vw;
    cursor: pointer;
    transition: .3s;
}

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

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

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

.file__text {
    white-space: nowrap;
    max-width: 25.46689vw;
    text-overflow: ellipsis;
    overflow: hidden;
}

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

.checkbox__mark {
    width: 3.39559vw;
    height: 3.39559vw;
    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);
    border-radius: .8489vw;
    display: block;
    width: 100%;
    height: 100%;
}

.checkbox__custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.86757vw;
    height: 1.35823vw;
    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.37691vw;
    font-weight: 500;
    line-height: 1.14286;
    padding: 2.20713vw 2.71647vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .33956vw;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
    border: none;
}

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

.btn__icon {
    width: 4.07470vw;
    height: 3.73514vw;
    margin-top: clamp(-.16978vw, -.16978vw, -1px);
}

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

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

    --img-margin-top: 3.90492vw;
    --img-margin-bottom: 4.41426vw;
    --p-margin-top: 3.90492vw;
    --p-margin-bottom: 4.41426vw;
    --h-margin-top: 3.90492vw;
    --h-margin-bottom: 3.90492vw;
    --l-margin-top: 3.90492vw;
    --l-margin-bottom: 4.41426vw;
    --l-margin-left: 6.62139vw;
}

.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 {
    flex-shrink: 0;
}

.header__top {
    padding: 3.05603vw 0 2.20713vw;
}

.header__top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 2.54669vw;
    padding-right: 2.54669vw;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 2.88625vw;
    color: inherit;
    text-decoration: none;
    font-size: 4.58404vw;
    font-weight: 800;
}

.header__logo-img {
    width: clamp(20px, 6.79117vw, 40px);
}

.header__nav {
    display: none;
}

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

.header__location {
    display: none;
}

.header__email {
    display: flex;
    align-items: center;
    gap: 1.52801vw;
}

.header__email-icon {
    width: 4.07470vw;
    aspect-ratio: 1;
    margin-top: -.33956vw;
}

.header__email-link {
    font-size: 2.88625vw;
    color: inherit;
    text-decoration-color: #CDD1D7;
    text-decoration-thickness: clamp(1px, .16978vw, .16978vw);
    text-underline-offset: clamp(1px, .50934vw, .50934vw);
}

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

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

.header__phone-icon {
    width: 4.07470vw;
    aspect-ratio: 1;
}

.header__phone-link {
    font-size: 3.73514vw;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

.header__callback-btn {
    display: none;
}

.header__whatsapp {
    width: 9.50764vw;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    background: #2CB742;
    fill: rgb(var(--color-white));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header__whatsapp-icon {
    width: 5.43294vw;
    aspect-ratio: 1;
    display: block;
}

.header__bottom {
    background: var(--color-bg-dark);
    padding: 2.20713vw 0 2.03735vw;
}

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

.header__catalog {
    background: var(--gradient);
    border-radius: var(--border-radius);
    width: 9.50764vw;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header__catalog-text {
    display: none;
}

.header__catalog-icon {
    width: 5.09338vw;
    aspect-ratio: 1;
    display: block;
}

.header__search {
    flex-grow: 1;
    position: relative;
}

.header__search-input {
    display: block;
    width: 100%;
    height: 9.50764vw;
    border-radius: var(--border-radius);
    border: none;
    padding: 0 2.54669vw 0 8.48896vw;
}

.header__search-btn {
    position: absolute;
    top: 50%;
    left: 2.54669vw;
    width: 4.24448vw;
    aspect-ratio: 1;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    fill: var(--color-placeholder);
}

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

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

.footer {
    padding: 6.96095vw 0 19.52462vw;
    background: var(--color-bg-light);
    flex-shrink: 0;
}

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

.footer__info {
    display: contents;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 2.37691vw;
    font-size: 4.24448vw;
    font-weight: 800;
    text-decoration: none;
    color: inherit;
    opacity: .5;
    flex-shrink: 0;
}

.footer__logo-img {
    width: clamp(20px, 6.79117vw, 40px);
}

.footer__contacts {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 2.2071307301vw;
    width: calc(50% - 5.43294vw / 2 + 6.96095vw);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.52801vw;
}

.footer__contact-icon {
    width: 4.07470vw;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.footer__contact-link,
.footer__contact-text {
    margin-top: .50934vw;
    color: inherit;
    text-decoration: none;
    display: block;
    width: fit-content;
    line-height: 1.22222;
}

.footer__contact-link--bold {
    font-weight: 700;
}

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

.footer__social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 1.86757vw;
    flex-grow: 1;
}

.footer__social-link {
    width: 6.96095vw;
    aspect-ratio: 1;
    border-radius: calc(var(--border-radius) / 2);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: var(--color-text);
}

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

.footer__social-icon {
    width: 2.88625vw;
    aspect-ratio: 1;
}

.footer__nav {
    order: 4;
    align-self: flex-start;
    margin-top: .8489vw;
    display: flex;
    flex-direction: column;
    gap: 3.05603vw;
    width: calc(50% - 5.43294vw / 2 - 6.96095vw);
}

.footer__nav-title {
    font-size: 2.71647vw;
    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.03735vw;
}

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

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

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

.hidden {
    display: none !important;
}

.bg-light {
    margin: 0 calc(var(--page-wrap) * -1);
    padding: 6.62139vw var(--page-wrap) 7.97963vw;
    background: var(--color-bg-light);
}

.fixed-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 2.54669vw 5.26316vw 2.03735vw;
    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: .50934vw;
    color: rgb(var(--color-white));
    fill: rgb(var(--color-white));
    text-decoration: none;
    font-size: 2.88625vw;
}

.fixed-nav__icon {
    width: 4.24448vw;
    aspect-ratio: 1;
    display: block;
}

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

.banner:first-child {
    margin-top: -3.90492vw;
}

.banner__slide {
    background: url(../image/bg/lines.webp) no-repeat center / cover;
    display: flex;
}

.banner__content {
    width: 49.236%;
    padding: 7.47029vw 0 7.13073vw 3.22581vw;
}

.banner__title {
    font-size: 3.90492vw;
    line-height: 1;
    font-weight: 600;
    margin-right: -4.24448vw;
}

.banner__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.20713vw;
    margin-top: 1.18846vw;
}

.banner__logo {
    max-width: 16.97793vw;
    max-height: 3.73514vw;
}

.banner__description {
    font-size: 3.39559vw;
    font-weight: 600;
    line-height: 1.15;
    margin: .67912vw 0 0;
}

.banner__img-container {
    width: 50.764%;
    position: relative;
}

.banner__img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(29% 0%, 100% 0%, 100% 100%, 27% 100%, 2% 57%);
    background: linear-gradient(16.7deg, #FD6220 -4.63%, #FDA419 84.59%);
}

.banner__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(29% 0%, 100% 0%, 100% 100%, 29% 100%, 0% 33%);
    object-fit: cover;
    z-index: 2;
}

.banner__btn {
    margin-top: 5.26316vw;
    text-transform: uppercase;
    padding: 2.54669vw 3.39559vw 2.37691vw 5.09338vw;
    font-weight: 900;
}

.banner__pagination {
    --swiper-pagination-bottom: 3.39559vw;
    --swiper-pagination-bullet-size: 2.37691vw;
    --swiper-pagination-bullet-border-radius: calc(var());
    --swiper-pagination-bullet-border-radius: calc(var(--border-radius) / 2);
    --swiper-pagination-bullet-horizontal-gap: 0;
    --swiper-pagination-bullet-inactive-color: #d9d9d9;
    --swiper-pagination-bullet-inactive-opacity: .4;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.12054vw;
}

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

.banner__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;
}

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

.banner__nav {
    display: none;
}

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

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

.edges__item:nth-child(2n) {
    gap: 3.73514vw;
}

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

.edges__item-icon-container--big {
    height: 7.47029vw;
}

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

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

.products-slider {
    padding: 6.96095vw 0 3.39559vw;
}

.products-slider__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4.07470vw;
    margin-bottom: 3.39559vw;
}

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

.products-slider__nav-item {
    width: 8.48896vw;
    height: 8.48896vw;
    border-radius: var(--border-radius);
    border: none;
    background: var(--color-bg-light);
    fill: var(--color-text);
    padding: 2.37691vw;
    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;
    padding: 0 0 1.69779vw;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.86757vw;
}

.products-slider__tabs-nav-btn {
    background: var(--color-bg-light);
    border: none;
    border-radius: var(--border-radius);
    padding: 2.20713vw 3.29371vw;
    font-size: 2.71647vw;
    line-height: 1.125;
    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) 6.11205vw;
}

.products-slider__slide {
    width: 40.57724vw;
}

.product-slide {
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 3.85399vw;
    padding: 3.39559vw 4.07470vw 2.88625vw;
}

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

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

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

.product-slide__title {
    font-size: 2.71647vw;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    color: var(--color-text);
    margin-right: -2.37691vw;
}

.product-slide__attrs {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 2.37691vw;
    display: flex;
    flex-direction: column;
    gap: clamp(1px, .16978vw, .16978vw);
}

.product-slide__attrs-item span {
    color: rgb(var(--color-gray-darker));
}

.product-slide__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-slide__info {
    display: flex;
    flex-direction: column;
    gap: clamp(1px, .50934vw, .50934vw);
}

.product-slide__price {
    font-size: 4.41426vw;
    line-height: 1.23077;
    font-weight: 200;
}

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

.product-slide__availability {
    --availability-color: var(--color-success);
    color: var(--availability-color);
    font-size: 2.37691vw;
    display: flex;
    align-items: center;
    gap: .67912vw;
}

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

.product-slide__availability-dot {
    width: 1.69779vw;
    aspect-ratio: 1;
    border-radius: 50%;
    border: clamp(1px, .16978vw, .16978vw) solid var(--availability-color);
    position: relative;
}

.product-slide__availability-dot::before {
    content: '';
    width: .67912vw;
    aspect-ratio: 1;
    position: absolute;
    top: calc(50% - .33956vw);
    left: calc(50% - .33956vw);
    background: var(--availability-color);
    border-radius: 50%;
}

.products-slider__pagination {
    --swiper-pagination-bottom: 0;
    --swiper-pagination-bullet-size: 2.37691vw;
    --swiper-pagination-bullet-border-radius: calc(var());
    --swiper-pagination-bullet-border-radius: calc(var(--border-radius) / 2);
    --swiper-pagination-bullet-horizontal-gap: 0;
    --swiper-pagination-bullet-inactive-color: #d9d9d9;
    --swiper-pagination-bullet-inactive-opacity: .4;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.12054vw;
}

.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: 3.90492vw 0 8.48896vw;
    display: flex;
    flex-direction: column;
    gap: 4.41426vw;
}

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

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

.card-grid__link {
    display: flex;
    flex-direction: column;
    gap: 4.07470vw;
    border-radius: var(--border-radius);
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    padding: 3.90492vw 1.01867vw 2.88625vw;
    text-align: center;
    font-size: 3.05603vw;
    font-weight: 800;
    line-height: 1.27778;
    color: var(--color-text);
    text-decoration: none;
}

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

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

.card-grid__list--sm {
    padding: 0 4.41426vw;
    gap: 3.73514vw 3.56536vw;
}

.card-grid__list--sm .card-grid__link {
    padding: 1.69779vw 5.94227vw;
}

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

.card-grid + .card-grid {
    margin-top: -5.77284vw;
}

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

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

.info__text {
    line-height: 1.38889;
}

.info__gallery {
    display: grid;
    grid-template-columns: calc(66.757% - 3.56536vw / 2) auto;
    grid-template-rows: repeat(2, 1fr);
    gap: 2.20713vw 3.56536vw;
}

.info__gallery-item:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.info__gallery-item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.info__gallery-item:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
}

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

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

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

.info__edges-item:nth-child(2n) {
    gap: 3.90492vw;
}

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

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

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

.info__edges-item-icon-container--big {
    height: 7.13073vw;
}

.lead {
    position: relative;
    height: 0;
    overflow: hidden;
    margin-top: -2.88625vw;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 3.39559vw 0;
    list-style: none;
    color: #9A9EA2;
    font-size: 2.71647vw;
    gap: 1.35823vw 1.01868vw;
}

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

.breadcrumb__item:not(:first-child)::before {
    content: '';
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 19 19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.89298 5.91316C7.66111 6.14504 7.66111 6.52098 7.89298 6.75285L10.6398 9.49967L7.89298 12.2465C7.66111 12.4784 7.66111 12.8543 7.89298 13.0862C8.12485 13.3181 8.5008 13.3181 8.73267 13.0862L11.8993 9.91952C12.1312 9.68765 12.1312 9.3117 11.8993 9.07983L8.73267 5.91316C8.5008 5.68129 8.12485 5.68129 7.89298 5.91316Z' fill='%232A2C2F'/%3E%3C/svg%3E") no-repeat center;
    width: 3.22581vw;
    aspect-ratio: 1;
}

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

.page-title {
    margin: 0 0 .67912vw;
    font-size: 5.43294vw;
    line-height: 1.25;
}

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

.description {
    padding: 3.39559vw 0;
}

.card-grid + .description {
    margin-top: -4.9236vw;
}

.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;
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    border-radius: 2.88625vw;
    padding: 3.90492vw 2.54669vw 3.39559vw 4.24448vw;
}

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

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

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

.contacts__list-item-icon {
    width: 3.56537vw;
    aspect-ratio: 1;
    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;
    aspect-ratio: 1;
    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);
    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.31578vw;
    flex-shrink: 0;
}

.gallery__nav-item {
    width: 8.48896vw;
    height: 8.48896vw;
    border-radius: var(--border-radius);
    border: none;
    background: var(--color-bg-light);
    fill: var(--color-text);
    padding: 2.37691vw;
    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: 8.82851vw;
    padding-top: 0.67912vw;
}

.product__main {
    display: flex;
    flex-direction: column;
    gap: 4.07470vw;
}

.product__gallery {
    display: flex;
    flex-direction: column;
    gap: 2.54669vw;
    margin-bottom: 2.54669vw;
}

.product__gallery-main {
    aspect-ratio: 1.4453125;
    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: 1.69779vw;
}

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

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

.product__data {
    display: contents;
}

.product__title {
    font-size: 4.07470vw;
    order: -1;
}

.product__attrs {
    margin-bottom: 0.50934vw;
}

.product__attrs-title {
    margin-bottom: 1.18846vw;
}

.product__attrs-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 3.39559vw;
    line-height: 1.3;
}

.product__attrs-item span {
    color: rgb(var(--color-gray-darker));
}

.product__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__price {
    font-size: 7.30051vw;
    font-weight: 200;
    line-height: 1;
}

.product__price b {
    font-weight: 700;
}

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

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

.product__availability-dot {
    width: 1.86757vw;
    aspect-ratio: 1;
    border-radius: 50%;
    border: clamp(1px, .16978vw, .16978vw) solid var(--availability-color);
    position: relative;
}

.product__availability-dot::before {
    content: '';
    width: 0.84890vw;
    aspect-ratio: 1;
    position: absolute;
    top: calc(50% - 0.42445vw);
    left: calc(50% - 0.42445vw);
    background: var(--availability-color);
    border-radius: 50%;
}

.product__buy {
    display: flex;
    gap: 2.71647vw;
    margin-right: 0.67912vw;
}

.quantity {
    display: flex;
    align-items: center;
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2.20713vw;
    gap: 1.86757vw;
}

.quantity__btn {
    width: 1.86757vw;
    height: 1.86757vw;
    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: 5.09338vw;
    font-size: 2.71647vw;
    cursor: default;
    outline: none;
}

.product__cart {
    font-size: 2.88625vw;
    padding: 3.05603vw 4.92360vw;
}

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

.tabs__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    border-bottom: clamp(1px, .16978vw, .16978vw) solid #ECF0F4;
    gap: clamp(2px, .33956vw, .33956vw);
    font-size: 2.71647vw;
}

.tabs__nav-btn {
    border: clamp(1px, .16978vw, .16978vw) solid #ECF0F4;
    border-bottom: 0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: none;
    padding: 2.20713vw 3.22581vw 2.03735vw;
}

.tabs__nav-btn.active {
    background: #ECF0F4;
    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-white) / .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 {
    padding: 2.20713vw 0 0;
}

.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.39559vw;
    padding: 4.07470vw 0;
}

.cart__row-checkbox {
    display: none;
}

.cart__row-image-container {
    width: 18.33616vw;
    height: 16.46859vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cart__row-title {
    width: calc(100% - 18.33616vw - 3.39559vw);
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.cart__quantity {
    padding: 2.71647vw 1.86757vw;
}

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

.cart__row-price {
    font-size: 5.26316vw;
    line-height: 1;
    font-weight: 200;
}

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

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

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

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

.cart__row-availability-dot::before {
    content: '';
    width: .67912vw;
    aspect-ratio: 1;
    position: absolute;
    top: calc(50% - clamp(2px, .33956vw, .33956vw));
    left: calc(50% - clamp(2px, .33956vw, .33956vw));
    background: var(--availability-color);
    border-radius: 50%;
}

.cart__row-trash {
    width: 3.56537vw;
    height: 3.56537vw;
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
    fill: #A4A8AD;
}

.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-white));
    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: 5.09338vw;
}

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

.categories__link {
    font-size: 3.39559vw;
    color: inherit;
    text-decoration: none;
    text-align: center;
    border: clamp(1px, .16978vw, .16978vw) solid #ECF0F4;
    border-radius: var(--border-radius);
    display: block;
    padding: 1.69779vw 1.69779vw 1.86757vw;
}

.categories__link.active {
    background: #ECF0F4;
}

.categories__total {
    color: rgb(var(--color-gray-darker));
}

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

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

.filter__main {
    width: 64.685%;
}

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

.filter__item-title {
    font-size: 3.39559vw;
}

.filter-search {
    position: relative;
}

.filter-search__input {
    padding: 0 2.03735vw 0 7.81002vw;
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    border-radius: var(--border-radius);
    height: 7.97963vw;
    font-size: 3.39559vw;
    width: 100%;
}

.filter-search__btn {
    position: absolute;
    top: 50%;
    left: 2.03735vw;
    width: 4.07470vw;
    aspect-ratio: 1;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    fill: var(--color-placeholder);
}

.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;
    aspect-ratio: 1;
}

.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.39559vw;
    margin-bottom: 0.67912vw;
}

.settings__item {
    display: flex;
    align-items: center;
    gap: 1.86757vw;
    font-size: 3.39559vw;
}

.settings__item-title {
    color: rgb(var(--color-gray-darker));
}

.settings__item-content {
    position: relative;
}

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

.settings__item-dropdown {
    width: 3.22581vw;
    aspect-ratio: 1;
    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.71647vw;
}

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

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

.product-card {
    border: clamp(1px, .16978vw, .16978vw) solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.50934vw 5.94227vw 5.26316vw;
}

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

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

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

.product-card__title {
    text-align: center;
    color: inherit;
    text-decoration: none;
    display: block;
    font-size: 3.05603vw;
    font-weight: 600;
    max-width: 71.98641vw;
    margin: 0 auto;
}

.product-card__attrs {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 2.71647vw;
    display: flex;
    flex-direction: column;
    gap: clamp(1px, .16978vw, .16978vw);
}

.product-card__attrs-item span {
    color: rgb(var(--color-gray-darker));
}

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

.product-card__footer {
    margin-top: 2.88625vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-card__price {
    font-size: 5.26316vw;
    line-height: 1;
    font-weight: 200;
}

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

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

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

.product-card__availability-dot {
    width: 1.69779vw;
    aspect-ratio: 1;
    border-radius: 50%;
    border: clamp(1px, .16978vw, .16978vw) solid var(--availability-color);
    position: relative;
}

.product-card__availability-dot::before {
    content: '';
    width: .67912vw;
    aspect-ratio: 1;
    position: absolute;
    top: calc(50% - .33956vw);
    left: calc(50% - .33956vw);
    background: var(--availability-color);
    border-radius: 50%;
}

.product-card__buy {
    display: flex;
    gap: 2.88625vw;
}

.product-card__cart {
    font-size: 2.71647vw;
}

.product-card__quantity {
    padding: 1.69779vw 2.20713vw;
}

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

.pagination a,
.pagination span {
    width: 7.81002vw;
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    border: clamp(1px, .16978vw, .16978vw) solid #ECF0F4;
    border-radius: var(--border-radius);
    text-align: center;
    line-height: 7.47029vw;
    font-size: 2.71647vw;
}

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

.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;
}

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

.filter-ul__total {
    color: rgb(var(--color-gray-darker));
}

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

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

.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);
    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;
}

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

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

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

.modal {
    background: var(--color-bg);
    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__text {
    margin-top: 2px;
}

.modal__btn {
    align-self: flex-start;
    background: var(--gradient-v2);
    color: rgb(var(--color-white));
    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: 22px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .input {
        height: 49px;
        padding: 0 18px;
        font-size: 14px;
        box-shadow: 0 4px 4px rgb(0 0 0 / .04);
    }

    .textarea {
        box-shadow: 0 4px 4px rgb(0 0 0 / .04);
        padding: 15px 19px;
        font-size: 14px;
    }

    .file {
        gap: 4px;
        font-size: 14px;
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;
    }

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

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

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

    .checkbox__custom {
        border-radius: 5px;
    }

    .checkbox__custom::before {
        width: 11px;
        height: 8px;
    }

    .btn {
        font-size: 18px;
        padding: 17px 21px;
        gap: 3px;
    }

    .btn__icon {
        width: 31px;
        height: 29px;
        margin-top: -1px;
    }

    .header__top {
        padding: 24px 0 17px;
    }

    .header__top-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header__logo {
        gap: 22px;
        font-size: 35px;
    }

    .header__logo-img {
        width: 40px;
    }

    .header__email {
        gap: 12px;
    }

    .header__email-icon {
        width: 31px;
        margin-top: -3px;
    }

    .header__email-link {
        font-size: 22px;
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
    }

    .header__phone {
        gap: 9px;
    }

    .header__phone-icon {
        width: 31px;
    }

    .header__phone-link {
        font-size: 29px;
    }

    .header__bottom {
        padding: 17px 0 16px;
    }

    .header__bottom-wrap {
        gap: 16px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .header__catalog {
        width: 73px;
    }

    .header__catalog-icon {
        width: 39px;
    }

    .header__search-input {
        height: 73px;
        padding: 0 20px 0 65px;
    }

    .header__search-btn {
        left: 20px;
        width: 32px;
    }

    .header__whatsapp {
        width: 73px;
    }

    .header__whatsapp-icon {
        width: 42px;
    }

    .footer {
        padding: 53px 0 150px;
    }

    .footer__wrap {
        padding-left: 22px;
        padding-right: 22px;
        gap: 42px;
    }

    .footer__logo {
        gap: 18px;
        font-size: 33px;
    }

    .footer__logo-img {
        width: 40px;
    }

    .footer__contacts {
        gap: 17px;
        width: calc(50% - 42px / 2 + 54px);
    }

    .footer__contact-item {
        gap: 12px;
    }

    .footer__contact-icon {
        width: 31px;
    }

    .footer__contact-link,
    .footer__contact-text {
        margin-top: 4px;
    }

    .footer__social {
        gap: 14px;
    }

    .footer__social-link {
        width: 53px;
    }

    .footer__social-icon {
        width: 22px;
    }

    .footer__nav {
        margin-top: 6px;
        gap: 23px;
        width: calc(50% - 42px / 2 - 54px);
    }

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

    .footer__nav-list {
        gap: 16px;
    }

    .fixed-nav {
        padding: 20px 40px 16px;
    }

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

    .fixed-nav__icon {
        width: 33px;
    }

    .main {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .banner {
        padding: 44px 0;
    }

    .banner:first-child {
        margin-top: -30px;
    }

    .banner__content {
        padding: 57px 0 55px 25px;
    }

    .banner__title {
        font-size: 30px;
        margin-right: -32px;
    }

    .banner__logos {
        gap: 17px;
        margin-top: 9px;
    }

    .banner__logo {
        max-width: 130px;
        max-height: 28px;
    }

    .banner__description {
        font-size: 26px;
        margin-top: 5px;
    }

    .banner__btn {
        margin-top: 40px;
        padding: 20px 26px 18px 40px;
    }

    .banner__pagination {
        --swiper-pagination-bottom: 26px;
        --swiper-pagination-bullet-size: 18px;
        gap: 24px;
    }

    .edges__list {
        gap: 26px 0;
    }

    .edges__item:nth-child(n) {
        gap: 20px;
    }

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

    .products-slider {
        padding: 53px 0 26px;
    }

    .products-slider__header {
        gap: 31px;
        margin-bottom: 26px;
    }

    .title {
        font-size: 42px;
    }

    .products-slider__nav {
        gap: 10px;
    }

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

    .products-slider__tabs-nav {
        padding-bottom: 13px;
        gap: 14px;
    }

    .products-slider__tabs-nav-btn {
        padding: 17px 25px;
        font-size: 21px;
    }

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

    .products-slider__slide {
        width: 312px;
    }

    .product-slide {
        border-width: 1px;
        gap: 30px;
        padding: 26px 31px 22px;
    }

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

    .product-slide__content {
        gap: 9px;
    }

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

    .product-slide__attrs {
        font-size: 18px;
        gap: 1px;
    }

    .product-slide__info {
        gap: 4px;
    }

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

    .product-slide__availability {
        font-size: 18px;
        gap: 5px;
    }

    .product-slide__availability-dot {
        width: 13px;
        border-width: 1px;
    }

    .product-slide__availability-dot::before {
        width: 6px;
        top: calc(50% - 3px);
        left: calc(50% - 3px);
    }

    .products-slider__pagination {
        --swiper-pagination-bullet-size: 18px;
        gap: 24px;
    }

    .card-grid {
        padding: 30px 0 65px;
        gap: 34px;
    }

    .card-grid__list {
        padding: 0 60px;
        gap: 35px 42px;
    }

    .card-grid__link {
        gap: 31px;
        border-width: 1px;
        padding: 30px 8px 22px;
        font-size: 23px;
    }

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

    .card-grid__list--sm {
        padding: 0 34px;
        gap: 29px 27px;
    }

    .card-grid__list--sm .card-grid__link {
        padding: 13px 46px;
    }

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

    .card-grid + .card-grid {
        margin-top: -44px;
    }

    .bg-light {
        padding-top: 51px;
        padding-bottom: 61px;
    }

    .info {
        gap: 44px;
    }

    .info__content {
        gap: 25px;
    }

    .content {
        --img-margin-top: 24px;
        --img-margin-bottom: 34px;
        --p-margin-top: 24px;
        --p-margin-bottom: 34px;
        --h-margin-top: 24px;
        --h-margin-bottom: 24px;
        --l-margin-top: 24px;
        --l-margin-bottom: 34px;
        --l-margin-left: 51px;
    }

    .info__gallery {
        grid-template-columns: calc(66.757% - 27px / 2) auto;
        gap: 17px 27px;
    }

    .info__edges {
        margin-top: 4px;
        gap: 29px 0;
    }

    .info__edges-item {
        gap: 22px;
    }

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

    .lead {
        margin-top: -22px;
    }

    .breadcrumbs {
        padding: 26px 0;
        font-size: 21px;
        gap: 8px;
    }

    .breadcrumb__item {
        gap: 8px;
    }

    .breadcrumb__item:not(:first-child)::before {
        width: 25px;
    }

    .page-title {
        margin-bottom: 5px;
        font-size: 42px;
    }

    .description {
        padding: 26px 0;
    }

    .card-grid + .description {
        margin-top: -38px;
    }

    .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;
    }

    .contacts__social {
        gap: 10px;
    }

    .contacts__social-link {
        width: 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: 10px;
    }

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

    .gallery__slide {
        width: 312px;
    }

    .product {
        gap: 68px;
        padding-top: 5px;
    }

    .product__main {
        gap: 31px;
    }

    .product__gallery {
        gap: 20px;
        margin-bottom: 20px;
    }

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

    .product__gallery-list {
        gap: 13px;
    }

    .product__gallery-item {
        width: 104px;
        height: 94px;
    }

    .product__title {
        font-size: 32px;
    }

    .product__attrs {
        margin: 0;
    }

    .product__attrs-list {
        font-size: 26px;
    }

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

    .product__price {
        font-size: 56px;
    }

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

    .product__availability-dot {
        width: 14px;
        border-width: 1px;
    }

    .product__availability-dot::before {
        width: 6px;
        top: calc(50% - 3px);
        left: calc(50% - 3px);
    }

    .product__buy {
        gap: 21px;
        margin: 0;
    }

    .quantity {
        border-width: 1px;
        padding: 17px;
        gap: 14px;
    }

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

    .quantity__input {
        width: 39px;
        font-size: 21px;
    }

    .product__cart {
        padding: 23px 38px;
    }

    .tabs {
        gap: 55px;
    }

    .tabs__nav {
        border-width: 1px;
        gap: 3px;
        font-size: 21px;
    }

    .tabs__nav-btn {
        border-width: 1px;
        padding: 17px 25px 16px;
    }

    .cart {
        padding-top: 17px;
    }

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

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

    .cart__row-image-container {
        width: 141px;
        height: 126px;
    }

    .cart__row-title {
        width: calc(100% - 141px - 26px);
    }

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

    .cart__row-availability {
        font-size: 16px;
        gap: 4px;
    }

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

    .cart__row-availability-dot::before {
        width: 6px;
        top: calc(50% - 3px);
        left: calc(50% - 3px);
    }

    .cart__row-trash {
        width: 27px;
        height: 27px;
    }

    .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: 40px;
    }

    .categories {
        gap: 20px;
        margin: 40px 0;
    }

    .categories__link {
        font-size: 26px;
        border-width: 1px;
        padding: 13px 13px 14px;
    }

    .row {
        gap: 39px;
    }

    .filter {
        gap: 32px;
    }

    .filter__item {
        gap: 12px;
    }

    .filter__item-title {
        font-size: 26px;
    }

    .filter-search__input {
        padding: 0 16px 0 60px;
        border-width: 1px;
        height: 61px;
        font-size: 26px;
    }

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

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

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

    .row__content {
        gap: 21px;
    }

    .settings {
        gap: 26px;
        margin-bottom: 5px;
    }

    .settings__item {
        gap: 14px;
        font-size: 26px;
    }

    .settings__item-current {
        gap: 16px;
    }

    .settings__item-dropdown {
        width: 25px;
    }

    .products {
        gap: 45px;
    }

    .products__list {
        gap: 25px;
    }

    .product-card {
        border-width: 1px;
        padding: 4px 46px 40px;
    }

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

    .product-card__content {
        gap: 14px;
    }

    .product-card__main {
        gap: 13px;
    }

    .product-card__title {
        font-size: 23px;
        max-width: 552px;
    }

    .product-card__attrs {
        gap: 1px;
        font-size: 21px;
    }

    .product-card__footer {
        margin-top: 22px;
    }

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

    .product-card__availability {
        font-size: 21px;
        gap: 7px;
    }

    .product-card__availability-dot {
        width: 13px;
        border-width: 1px;
    }

    .product-card__availability-dot::before {
        width: 6px;
        top: calc(50% - 3px);
        left: calc(50% - 3px);
    }

    .product-card__buy {
        gap: 22px;
    }

    .product-card__cart {
        font-size: 20px;
    }

    .pagination {
        gap: 13px;
    }

    .pagination a,
    .pagination span {
        width: 60px;
        border-width: 1px;
        line-height: 58px;
        font-size: 21px;
    }

    .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;
    }

    .file__text {
        max-width: 150px;
    }
}

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

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

    body {
        font-size: 16px;
    }

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

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

    .title {
        font-size: 35px;
    }

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

    .header__top {
        padding: 13px 0;
    }

    .header__nav {
        display: block;
    }

    .header__nav-list {
        display: flex;
        gap: 46px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header__nav-link {
        color: inherit;
        font-size: 15px;
        text-decoration: none;
    }

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

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

    .header__contacts {
        flex-direction: row;
        gap: 37px;
    }

    .header__whatsapp {
        width: 49px;
        height: 49px;
        border-radius: 50%;
        margin-left: 23px;
    }

    .header__whatsapp-icon {
        width: 21px;
    }

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

    .header__location-icon {
        width: 21px;
        aspect-ratio: 1;
    }

    .header__location-wrapper {
        position: relative;
    }

    .header__location-current {
        display: flex;
        align-items: center;
        gap: 1px;
        font-size: 15px;
        cursor: pointer;
    }

    .header__location-dropdown {
        width: 21px;
        aspect-ratio: 1;
    }

    .header__location-list {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 200px;
        background: var(--color-bg);
        border: 1px solid var(--color-border);
        border-radius: var(--border-radius);
        z-index: 2;
        margin: 0;
        padding: 0;
        list-style: none;
        transform: translateY(30px);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        overflow: hidden;
    }

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

    .header__location-link {
        color: inherit;
        text-decoration: none;
        display: block;
        padding: 10px;
    }

    .header__location-link:hover {
        background: var(--color-border);
    }

    .header__email {
        gap: 8px;
    }

    .header__email-icon {
        width: 21px;
        margin-top: 0;
    }

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

    .header__phone {
        gap: 7px;
        margin-top: 5px;
        margin-left: 3px;
    }

    .header__phone-icon {
        width: 21px;
    }

    .header__phone-link {
        font-size: 16.5px;
    }

    .header__callback-btn {
        font-size: 15px;
        display: block;
        background: none;
        border: none;
        padding: 0;
        margin-left: 4px;
        text-decoration: underline 1px #CDD1D7;
        text-underline-offset: 2px;
    }

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

    .header__bottom {
        padding: 11px 0;
    }

    .header__bottom-wrap {
        align-items: center;
        gap: 50px;
    }

    .header__logo {
        gap: 12px;
        color: rgb(var(--color-white));
        font-size: 26px;
    }

    .header__logo-img {
        width: 35px;
    }

    .header__logo-text {
        margin-top: 5px;
    }

    .header__catalog {
        padding: 10px 16px 10px 22px;
        font-size: 15px;
        font-weight: 900;
        text-decoration: none;
        color: inherit;
        text-transform: uppercase;
        flex-shrink: 0;
        aspect-ratio: auto;
        width: auto;
        margin-left: 9px;
        gap: 36px;
        align-items: flex-end;
        min-height: 44px;
    }

    .header__catalog-text {
        display: block;
    }

    .header__catalog-icon {
        width: 21px;
    }

    .header__search-input {
        height: 44px;
        padding: 0 12px 0 42px;
        font-size: 14px;
    }

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

    .header__cart {
        width: 30px;
        aspect-ratio: 1;
        padding: 0;
        background: none;
        border: none;
        fill: #fff;
        position: relative;
        margin-right: 5px;
        margin-left: 20px;
        color: var(--color-text);
        text-align: center;
    }

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

    .header__cart-count {
        position: absolute;
        top: -1px;
        right: -4px;
        background: var(--gradient);
        min-width: 14px;
        height: 14px;
        line-height: 14px;
        font-size: 8px;
        font-weight: 600;
        border-radius: 100px;
        padding: 1px 3px 0;
    }

    .footer {
        padding: 66px 0 24px;
    }

    .footer__wrap {
        align-items: flex-start;
        gap: 30px;
    }

    .footer__info {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 335px;
    }

    .footer__logo {
        gap: 12px;
        font-size: 22px;
    }

    .footer__logo-img {
        width: 35px;
    }

    .footer__contacts {
        gap: 4px;
        width: 100%;
    }

    .footer__contact-item {
        gap: 8px;
    }

    .footer__contact-icon {
        width: 21px;
    }

    .footer__contact-link,
    .footer__contact-text {
        margin-top: 3px;
        font-size: 15px;
    }

    .footer__social {
        justify-content: flex-start;
        order: 3;
        margin-top: 5px;
        gap: 8px;
    }

    .footer__social-link {
        width: 49px;
    }

    .footer__nav {
        margin-top: 8px;
        gap: 16px;
        width: 232px;
    }

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

    .footer__nav-list {
        gap: 11px;
    }

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

    .footer__nav--wide {
        width: 406px;
    }

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

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

    .banner {
        margin: 0 clamp(-100px, calc((100vw - 1270px) / 2 * -1), 0px);
        padding: 60px 0;
    }

    .banner__slider {
        padding: 0 20px;
    }

    .banner:first-child {
        margin-top: -9px;
    }

    .banner__slide {
        background: url(../image/bg/lines-desktop.webp) no-repeat center / cover;
        border-radius: var(--border-radius);
        overflow: hidden;
    }

    .banner__content {
        width: 45.166%;
        padding: 79px 0 72px 98px;
    }

    .banner__title {
        font-size: 37px;
        line-height: .83784;
    }

    .banner__logos {
        gap: 20px;
        margin-top: 14px;
    }

    .banner__logo {
        max-width: 155px;
        max-height: 34px;
    }

    .banner__description {
        font-size: 28px;
        margin-top: 9px;
        line-height: 1.25;
    }

    .banner__btn {
        margin-top: 32px;
        font-size: 12px;
        padding: 13px 15px 9px 22px;
    }

    .btn__icon {
        width: 21px;
        height: 21px;
    }

    .banner__img-container {
        width: 54.834%;
    }

    .banner__img-container::before {
        clip-path: polygon(16.3% 0%, 100% 0%, 100% 100%, 14% 100%, 0% 56.4%);
    }

    .banner__img {
        clip-path: polygon(18.5% 0%, 100% 0%, 100% 100%, 19.2% 100%, 2.7% 33.4%);
    }

    .banner__pagination {
        --swiper-pagination-bottom: 32px;
        --swiper-pagination-bullet-size: 17px;
        gap: 21px;
    }

    .banner__nav {
        display: block;
    }

    .banner__nav-item {
        width: 38px;
        height: 48px;
        position: absolute;
        top: calc(50% - 31px);
        left: 0;
        background: var(--gradient);
        border: none;
        border-radius: var(--border-radius);
        padding: 9px;
        z-index: 2;
    }

    .banner__nav-item-icon {
        display: block;
        width: 100%;
        height: 100%;
        transform: rotate(180deg);
    }

    .banner__nav-item[data-direction="next"] {
        left: auto;
        right: 0;
        transform: rotate(180deg);
    }

    .edges__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .edges__item:nth-child(2n) {
        order: 2;
    }

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

    .edges__item-text br {
        display: none;
    }

    .edges__item-icon-container--big {
        width: 46px;
        margin-right: -10px;
    }

    .products-slider {
        padding: 86px 0 40px;
    }

    .products-slider__header {
        flex-wrap: nowrap;
        gap: 45px;
        margin-bottom: 34px;
    }

    .products-slider__title {
        flex-shrink: 0;
    }

    .products-slider__nav {
        gap: 11px;
        order: 2;
    }

    .products-slider__nav-item {
        width: 49px;
        height: 49px;
        padding: 14px;
    }

    .products-slider__tabs-nav {
        width: auto;
        gap: 10px;
        padding: 0;
    }

    .products-slider__tabs-nav-btn {
        font-size: 14px;
        padding: 11px 17px;
    }

    .products-slider__list {
        margin: 0;
        padding: 0 0 48px;
    }

    .product-slide {
        padding: 19px 20px 17px;
        gap: 24px;
    }

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

    .product-slide__content {
        gap: 6px;
    }

    .product-slide__title {
        font-size: 14px;
        line-height: 1.25;
    }

    .product-slide__attrs {
        font-size: 12px;
    }

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

    .product-slide__availability {
        font-size: 12px;
        gap: 4px;
        align-items: flex-start;
    }

    .product-slide__availability-dot {
        width: 9px;
    }

    .product-slide__availability-dot::before {
        width: 4px;
        top: calc(50% - 2px);
        left: calc(50% - 2px);
    }

    .product-slide__cart {
        margin-right: 3px;
    }

    .products-slider__pagination {
        --swiper-pagination-bullet-size: 17px;
        gap: 21px;
    }

    .card-grid {
        padding: 22px 0 112px;
        gap: 40px;
    }

    .card-grid__list {
        padding: 0;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 28px 30px;
    }

    .card-grid__link {
        font-size: 16px;
        padding: 17px 10px 23px;
        gap: 11px;
    }

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

    .card-grid + .card-grid {
        margin-top: -30px;
    }

    .card-grid__list--sm {
        gap: 26px 34px;
    }

    .card-grid__list--sm .card-grid__link {
        padding: 13px 16px;
    }

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

    .bg-light {
        padding-top: 92px;
        padding-bottom: 28px;
        --side-offset: calc((100vw - 1270px + 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: 56px 63px;
    }

    .info__content {
        width: calc(50% - 70px);
        gap: 30px;
    }

    .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.4023;
    }

    .info__gallery {
        width: calc(50% + 7px);
        margin-top: 7px;
        gap: 15px 23px;
        grid-template-columns: calc(66.757% - 23px / 2) auto;
        align-self: flex-start;
    }

    .info__edges {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0 25px;
        margin: 0;
        width: 100%;
    }

    .info__edges-item {
        background: linear-gradient(to bottom, #fff, transparent);
        border-radius: 17px 17px 0 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
        font-size: 17.4px;
    }

    .info__edges-item:nth-child(2n) {
        order: 2;
        gap: 30px;
    }

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

    .info__edges-item-text {
        max-width: 230px;
        margin: 0 auto;
        line-height: 1.08;
    }

    .lead {
        padding: 41px 0;
        margin: 0;
        height: auto;
    }

    .lead__inner {
        background: url(../image/bg/lines-desktop.webp) no-repeat center / cover;
        border-radius: var(--border-radius);
        padding: 49px 20px 56px;
        display: flex;
        flex-direction: column;
        gap: 34px;
    }

    .lead__title {
        text-align: center;
    }

    .lead__form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 23px;
        width: 835px;
        margin: 0 auto;
    }

    .lead__fields {
        display: grid;
        grid-template-columns: 298px auto;
        gap: 20px;
        width: 100%;
    }

    .lead__inputs {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .lead__additional {
        display: flex;
        justify-content: center;
        gap: 41px;
    }

    .lead__btn {
        margin-top: 8px;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 900;
        padding: 16px 24px;
    }

    .breadcrumbs {
        font-size: 12px;
        padding: 31px 0;
    }

    .breadcrumb__item:not(:first-child)::before {
        width: 17px;
    }

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

    .page-title {
        font-size: 35px;
        line-height: 1.23563;
        margin-bottom: 16px;
    }

    .description h2 {
        font-size: 26px;
    }

    .card-grid + .description {
        margin-top: -35px;
    }

    .map {
        padding: 24px 0;
    }

    .map__frame {
        height: 482px;
    }

    .contacts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px;
        padding: 43px 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;
    }

    .contacts__social {
        gap: 8px;
        margin: -2px 13px 0 0;
    }

    .contacts__social-link {
        width: 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: 11px;
    }

    .gallery__nav-item {
        width: 49px;
        height: 49px;
        padding: 14px;
    }

    .gallery__slider {
        margin: 0;
        padding: 0;
    }

    .product {
        padding-top: 8px;
        gap: 60px;
    }

    .product__main {
        flex-direction: row;
        gap: 93px;
    }

    .product__gallery {
        width: 372px;
        flex-shrink: 0;
        gap: 13px;
        margin: 5px 0 0;
    }

    .product__gallery-main {
        height: 335px;
    }

    .product__gallery-item {
        width: 70px;
        height: 62px;
    }

    .product__data {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        gap: 24px;
    }

    .product__title {
        font-size: 26px;
        line-height: 1.23077;
    }

    .product__attrs-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product__attrs-list {
        font-size: 16px;
        line-height: 1.44317;
    }

    .product__footer {
        margin: auto 0 5px;
        max-width: 645px;
    }

    .product__info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .product__price {
        font-size: 31px;
    }

    .product__availability {
        font-size: 12px;
        gap: 5px;
        align-items: flex-start;
    }

    .product__availability-dot {
        width: 9px;
        margin-top: 1px;
    }

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

    .product__buy {
        gap: 14px;
        margin: 0 0 3px;
    }

    .quantity {
        padding: 11px;
        gap: 8px;
    }

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

    .quantity__input {
        font-size: 14px;
        width: 30px;
    }

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

    .tabs {
        gap: 36px;
    }

    .tabs__nav {
        gap: 2px;
        font-size: 14px;
    }

    .tabs__nav-btn {
        padding: 11px 16px;
    }

    .cart {
        padding-top: 13px;
    }

    .cart__header {
        display: flex;
        gap: 30px;
        padding-bottom: 8px;
    }

    .cart__header-item:nth-child(1) {
        margin-left: 235px;
        flex: 1 0 0;
    }

    .cart__header-item:nth-child(2) {
        display: block;
        flex: 0 0 182px;
    }

    .cart__header-item:nth-child(3) {
        display: block;
        flex: 0 0 198px;
    }

    .cart__row {
        flex-wrap: nowrap;
        gap: 30px;
        padding: 24px 0;
    }

    .cart__row-checkbox {
        width: 20px;
        height: 20px;
        margin-left: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--color-border);
        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='%23FDB720'/%3E%3C/svg%3E") no-repeat center / 12px 8px;
        flex-shrink: 0;
    }

    .cart__row-image-container {
        width: 109px;
        height: auto;
        aspect-ratio: 1.1134;
        margin-left: 11px;
    }

    .cart__row-title {
        margin-left: 18px;
        flex: 1 0 0;
        width: auto;
        max-width: 306px;
        margin-right: auto;
    }

    .cart__quantity-wrapper {
        width: 182px;
    }

    .cart__quantity {
        padding: 15px 11px;
        margin-left: 0;
        width: fit-content;
    }

    .cart__row-info {
        width: 125px;
        gap: 6px;
    }

    .cart__row-price {
        font-size: 31px;
    }

    .cart__row-availability {
        font-size: 12px;
        gap: 4px;
    }

    .cart__row-availability-dot {
        width: 9px;
    }

    .cart__row-availability-dot::before {
        width: 4px;
        top: calc(50% - 2px);
        left: calc(50% - 2px);
    }

    .cart__row-trash {
        width: 21px;
        height: 21px;
        margin-right: 22px;
        margin-left: 0;
    }

    .cart-total {
        margin-top: 43px;
    }

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

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

    .categories {
        margin: 24px 0 46px;
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
    }

    .categories__link {
        font-size: 14px;
        padding: 11px 14px 10px;
    }

    .row {
        flex-direction: row;
        gap: 40px;
    }

    .sidebar {
        width: 209px;
        flex-shrink: 0;
    }

    .row__content {
        flex: 1 0 0;
        gap: 19px;
    }

    .filter {
        flex-direction: column;
        align-items: stretch;
        gap: 29px;
    }

    .filter__main {
        width: 100%;
    }

    .filter__item {
        gap: 10px;
    }

    .filter__item-title {
        font-size: 14px;
        font-weight: 700;
    }

    .filter-search__input {
        padding: 0 12px 0 42px;
        font-size: 14px;
        height: 49px;
    }

    .filter-search__btn {
        width: 21px;
        left: 12px;
    }

    .filter-search {
        margin-top: 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: 0;
        gap: 20px;
    }

    .settings__item {
        font-size: 14px;
        gap: 10px;
    }

    .settings__item-current {
        gap: 5px;
    }

    .settings__item-dropdown {
        width: 17px;
    }

    .products {
        gap: 37px;
        margin-bottom: 26px;
    }

    .products__list {
        gap: 11px;
    }

    .product-card {
        display: flex;
        padding: 10px 34px 10px 25px;
        gap: 19px;
    }

    .product-card__img-container {
        width: 178px;
        height: 158px;
    }

    .product-card__content {
        flex-direction: row;
        align-items: center;
        width: calc(100% - 178px - 19px);
    }

    .product-card__main {
        gap: 29px;
        flex: 1 0 0;
    }

    .product-card__title {
        font-size: 14px;
        text-align: left;
        max-width: 280px;
        margin: 0;
    }

    .product-card__attrs {
        text-align: left;
        font-size: 14px;
        gap: 0;
    }

    .product-card__footer {
        flex-shrink: 0;
        gap: 36px;
        margin: 0;
    }

    .product-card__info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

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

    .product-card__availability {
        font-size: 12px;
        gap: 3px;
    }

    .product-card__availability-dot {
        width: 9px;
    }

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

    .product-card__buy {
        gap: 14px;
    }

    .product-card__quantity {
        padding: 10px;
    }

    .pagination {
        gap: 9px;
    }

    .pagination a,
    .pagination span {
        width: 40px;
        line-height: 38px;
        font-size: 14px;
    }

    .filter-ul {
        padding-left: 17px;
        gap: 5px;
    }

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

    .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;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1239px) {
    .hidden-lg {
        display: none !important;
    }
}

@media screen and (min-width: 1280px) {
    .hidden-xl {
        display: none !important;
    }
}