/* USER VARIABLES SECTION */

:root {
    --seryy: #76777b;
    --kraftovyy: #ceb38f;
    --krasnyy: #ac1319;
    --chernyy: #000;
    --colorbezhevyy: #fcf9f6;
    --bezhevyy-temnyy: #f4f0eb;
    --belyy: #fff;
    --zelenyy: #038c73;
    --regular-text: 16px;
    --lineheight: 1.65;
    --font-family: "Inter", sans-serif;
    --second-family: "Montserrat", sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0.938rem;
}

.row,
.row>* {
    --bs-gutter-x: 1.875rem;
}

@media (min-width: 1200px) {
    .container-fluid {
        max-width: 100%;
        padding: 0 20px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1380px;
    }
}

@media (max-width: 991px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 100%;
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    position: absolute;
    /*
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    */
    opacity: 0;
    border: none;
    z-index: 1;
    /*visibility: hidden;*/
    position: absolute;
    /*
    width: 0;
    height: 0;
    */
    pointer-events: none;
}

/* GENERAL CSS SETTINGS */

.svg-block {
    position: absolute;
    bottom: -9999px;
    left: -9999px;
    overflow: hidden;
    opacity: 0;
    /*visibility: hidden;*/
    height: 0;
}

.img-right,
.img-left {
    float: none;
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .img-right {
        float: right;
        margin-left: 55px;
        width: auto;
    }

    .img-left {
        float: left;
        margin-right: 55px;
        width: auto;
    }
}

::placeholder {
    color: #000;
    opacity: 1;
}

input,
textarea {
    outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: #14295e;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--text);
    font-weight: 400;
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    background: var(--belyy);
}

body.show::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 5;
}

/* common */
.head-title {
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .head-title {
        margin: 0 0 40px 0;
    }
}

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

.head-title__link {
    display: flex;
    align-items: center;
    gap: 0 20px;
    text-decoration: none;
}

.head-title__link span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: var(--kraftovyy);
    display: none;
}

@media (min-width: 1024px) {
    .head-title__link--clients {
        display: none;
    }
}

@media (min-width: 1024px) {
    .head-title__link span {
        display: block;
    }
}

.head-title__link svg {
    width: 35px;
    height: 11px;
    fill: none;
    stroke: var(--kraftovyy);
}

.h1 {
    font-family: var(--font-family);
    font-weight: 600;
    color: var(--chernyy);
    font-size: 20px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .h1 {
        font-size: 40px;
        line-height: 40px;
    }
}

.h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 25px;
    line-height: 25px;
    color: var(--seryy);
    margin: 0;
    padding: 0;
}

.h2 span {
    color: var(--kraftovyy);
}

@media (min-width: 1024px) {
    .h2 {
        font-size: 40px;
        line-height: 40px;
    }
}

.btn {
    background: var(--kraftovyy);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 315px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: var(--belyy);
    transition: 0.2s ease-in-out;
    border: 1px solid transparent;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: var(--belyy);
    color: #ceb18a;
    border-color: #d0b38d;
}

.logo {
    width: 100%;
    max-width: 162px;
    display: block;
}

.logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

@media (min-width: 1024px) {
    .logo {
        max-width: 183px;
    }
}

.menu {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 0 25px;
}

@media (min-width: 1200px) {
    .menu {
        gap: 0 57px;
    }
}

.menu>li {
    list-style-type: none;
    position: relative;
}

.menu>li>a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--chernyy);
    transition: 0.2s ease;
}

@media (min-width: 1200px) {
    .menu>li>a {
        font-size: 16px;
        line-height: 16px;
    }
}

.menu>li:hover>a,
.menu>li.active>a {
    color: var(--kraftovyy);
}

.menu>li:hover>a svg,
.menu>li.active>a svg {
    stroke: var(--kraftovyy);
}

.btn-menu-catalog {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    display: none;
    align-items: center;
    gap: 0 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--chernyy);
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .btn-menu-catalog {
        display: flex;
    }
}

@media (min-width: 1200px) {
    .btn-menu-catalog {
        font-size: 16px;
        line-height: 16px;
    }
}

.btn-menu-catalog svg {
    width: 19px;
    height: 15px;
    fill: var(--chernyy);
    transition: 0.2s ease;
}

.btn-menu-catalog.active,
.btn-menu-catalog:hover {
    color: var(--kraftovyy);
}

.btn-menu-catalog.active svg,
.btn-menu-catalog:hover svg {
    fill: var(--kraftovyy);
}

.social {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.social>li {
    list-style-type: none;
}

.social>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

/*
.social>li>a::before {
    content: "";
    opacity: 0.7;
    background: var(--seryy);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 5px;
    z-index: 2;
    transition: 0.2s ease-in-out;
    display: none;
}
*/

.social>li>a>svg {
    width: 17px;
    height: 17px;
    transition: opacity .3s;
    /*
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    */
    transition: 0.2s ease-in;
}

.social>li>a:hover svg:first-child {
    opacity: 0;
    /*filter: grayscale(0);*/
}

.social>li>a:hover svg:last-child {
    opacity: 1; 
}

/*
.social>li>a:hover::before {
    opacity: 0;
}
*/

.social>li>a>svg:last-child{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.btn-mobile-menu {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: var(--seryy);
}

@media (min-width: 1024px) {
    .btn-mobile-menu {
        display: none;
    }
}

.btn-mobile-menu__icon {
    width: 30px;
    height: 22px;
    position: relative;
}

.btn-mobile-menu__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background: var(--seryy);
    transition: 0.2s ease-in;
}

.btn-mobile-menu__icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.btn-mobile-menu__icon span:last-child {
    bottom: 0;
}

.address {
    display: none;
    align-items: center;
    gap: 0 9px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    text-decoration: none;
}

@media (min-width: 1024px) {
    .address {
        display: flex;
    }
}

.address svg {
    width: 15px;
    fill: var(--chernyy);
    height: 17px;
    transition: 0.2s ease-in-out;
}

.address:hover {
    color: var(--kraftovyy);
    text-decoration: underline;
}

.address:hover svg {
    fill: var(--kraftovyy);
}

.btn-search {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    display: none;
}

@media (min-width: 1024px) {
    .btn-search {
        display: block;
    }
}

.btn-search svg {
    width: 19px;
    height: 19px;
    fill: var(--chernyy);
    transition: 0.2s ease;
}

.btn-search:hover svg {
    fill: var(--kraftovyy);
}

.btn-search--mobile {
    display: block;
}

@media (min-width: 1024px) {
    .btn-search--mobile {
        display: none;
    }
}

.btn-search--mobile svg {
    fill: var(--seryy);
    width: 27px;
    height: 27px;
}

.phone {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0 14px;
}

.phone span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    display: none;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .phone span {
        display: flex;
    }
}

.phone svg {
    fill: var(--seryy);
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .phone svg {
        fill: var(--chernyy);
    }
}

.phone:hover span {
    text-decoration: underline;
    color: var(--kraftovyy);
}

.phone:hover svg {
    fill: var(--kraftovyy);
}

.lang {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 0 19px;
}

.lang li {
    list-style-type: none;
}

.lang li a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    text-transform: uppercase;
    transition: 0.4s ease-in;
}

@media (min-width: 1024px) {
    .lang li a {
        color: var(--chernyy);
    }
}

.lang li.active a,
.lang li a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--kraftovyy);
}

.email {
    display: flex;
    align-items: center;
    gap: 0 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    text-decoration: none;
}

.email svg {
    width: 20px;
    height: 20px;
    fill: var(--seryy);
}

.c-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 26px;
    padding: 0 !important;
    margin: 0 !important;
}

.c-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    border-radius: 10px;
    background: var(--bezhevyy-temnyy);
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
}

.c-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--kraftovyy);
}

.swiper-pagination-lock{
    opacity: 0;
}

.icon-block::before {
    content: "";
    position: absolute;
    display: none;
    top: 297px;
    right: -170px;
    width: 600px;
    height: 650px;
    background-image: url("../images/icon-tulip.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

@media (min-width: 1200px) {
    .icon-block::before {
        display: block;
    }
}

.icon-block-top::before {
    content: "";
    position: absolute;
    display: none;
    top: 0;
    left: -170px;
    width: 600px;
    height: 650px;
    background-image: url("../images/icon-tulip.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

@media (min-width: 1024px) {
    .icon-block-top::before {
        display: block;
    }
}

.icon-block-bottom::after {
    content: "";
    position: absolute;
    display: none;
    bottom: 66px;
    right: -170px;
    width: 600px;
    height: 650px;
    background-image: url("../images/icon-tulip.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

@media (min-width: 1024px) {
    .icon-block-bottom::after {
        display: block;
    }
}

.price {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .price {
        font-size: 18px;
        line-height: 18px;
    }
}

@media (min-width: 1200px) {
    .price {
        font-size: 22px;
        line-height: 22px;
    }
}

.old-price {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: var(--seryy);
    text-decoration: line-through;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .old-price {
        font-size: 18px;
        line-height: 18px;
    }
}

.pagination-items {
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .pagination-items {
        margin: 30px 0 0 0;
    }
}

.pagination-items ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0;
}

.pagination-items ul li {
    list-style-type: none;
}

.pagination-items ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 28px;
    height: 28px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}

.pagination-items ul li.active a,
.pagination-items ul li:hover a {
    background: var(--kraftovyy);
    border-radius: 8px;
    color: var(--belyy);
    opacity: 1;
}

.submenu {
    position: absolute;
    border: 1px solid #f2f5fc;
    border-radius: 0 0 5px 5px;
    width: 313px;
    background: var(--belyy);
    padding: 0;
    margin: 27px 0 0 -34px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.submenu.show {
    opacity: 1;
    visibility: visible;
}

.submenu li {
    display: block;
    list-style-type: none;
}

.submenu li a {
    display: flex;
    align-items: center;
    padding: 0 39px;
    height: 45px;
    border-bottom: 1px solid #f2f5fc;
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    text-decoration: none;
    transition: 0.2s ease-in;
}

.submenu li a:hover,
.submenu li.active a {
    color: var(--kraftovyy);
    background: var(--colorbezhevyy);
    border-bottom-color: transparent;
}

.menu-catalog {
    padding: 0;
    margin: 27px 0 0 0;
    border: 1px solid #f2f5fc;
    border-radius: 0 0 5px 5px;
    width: 313px;
    position: absolute;
    background: var(--belyy);
    top: 100%;
    visibility: hidden;
    opacity: 0;
}

.menu-catalog.show {
    visibility: visible;
    opacity: 1;
}

.menu-catalog-submenu {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    visibility: hidden;
    opacity: 0;
    top: -1px;
    border: 1px solid #f2f5fc;
    border-radius: 0 0 5px 5px;
    width: 313px;
    background: var(--belyy);
    height: 620px;
    overflow-y: scroll;
    transition: 0.2s ease-in;
}

.menu-catalog-submenu.show {
    left: 100%;
    visibility: visible;
    opacity: 1;
}

.menu-catalog li {
    list-style-type: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-catalog__item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    padding: 0 63px 0 40px;
    border-bottom: 1px solid #f2f5fc;
    transition: 0.2s ease;
}

.menu-catalog__item-wrapper:hover {
    background: var(--colorbezhevyy);
}

.menu-catalog__item-btn {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.menu-catalog__item-btn svg {
    fill: none;
    stroke: var(--seryy);
    width: 10px;
    height: 16px;
}

.menu-catalog__item-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 45px;
}

.menu-catalog__item-link:hover {
    color: var(--kraftovyy);
}

.menu-catalog__item-wrapper:hover .menu-catalog__item-link {
    color: var(--kraftovyy);
}

.menu-catalog__item-wrapper:hover .menu-catalog__item-btn svg {
    stroke: var(--kraftovyy);
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--kraftovyy);
    /* Цвет скроллбара */
    border-radius: 2px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--kraftovyy) transparent;
    /* Зеленый скролл на сером фоне */
}

.header-mobile-menu {
    position: absolute;
    background: var(--belyy);
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #f2f5fc;
    display: none;
    height: 100vh;
}

.header-mobile-menu.show {
    display: block;
}

.header-mobile-menu.submenu-active {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1000;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f2f2f2;
    background: var(--colorbezhevyy);
}

.mobile-back {
    border: none;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.mobile-back svg {
    width: 10px;
    height: 16px;
    transform: rotate(180deg);
    fill: none;
    stroke: var(--kraftovyy);
}

.mobile-title {
    font-size: 16px;
    line-height: 16px;
    color: var(--kraftovyy);
    font-weight: 700;
}

.mobile-close {
    border: none;
    background: none;
    padding: 0;
}

.mobile-close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--kraftovyy);
}

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

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
}

.menu-item span,
.menu-item a {
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    display: flex;
    gap: 0 10px;
    text-decoration: none;
}

.menu-item span svg,
.menu-item a svg {
    width: 19px;
    height: 15px;
    fill: var(--seryy);
}

.menu-item>svg {
    width: 10px;
    height: 16px;
    fill: none;
    stroke: var(--seryy);
}

.menu-level {
    display: none;
    height: 100%;
    background: #fff;
}

.menu-level.active {
    display: block;
}

/* end common */

/* head-info-block */
.head-info-block {
    padding: 7px 0;
    background: var(--kraftovyy);
    z-index: 6;
    position: relative;
}

.head-info-block.hide {
    display: none;
}

.head-info-block a{
    color: #fff;
}

@media (min-width: 1024px) {
    .head-info-block {
        padding: 18px 0;
    }
}

.head-info-block__wrap {
    text-align: center;
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: var(--belyy);
    padding: 0 40px;
}

@media (min-width: 1024px) {
    .head-info-block__wrap {
        font-size: 16px;
        line-height: 16px;
        padding: 0;
    }
}

.head-info-block__btn {
    position: absolute;
    top: 5px;
    right: 0;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-info-block__btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--belyy);
}

@media (min-width: 1024px) {
    .head-info-block__btn {
        top: 0;
    }
}

/* end head-info-block */

/* header */
.header {
    position: sticky;
    top: 0;
    background: var(--belyy);
    z-index: 999;
    transition: 0.2s ease-out;
}

.header--scroll {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.header__top {
    padding: 11px 0 10px 0;
}

@media (min-width: 1024px) {
    .header__top {
        padding: 14px 0 10px 0;
    }
}

.header__bottom {
    padding: 9px 0 10px 0;
}

@media (min-width: 1024px) {
    .header__bottom {
        padding: 7px 0 11px 0;
    }
}

.header__top-social {
    display: none;
    align-items: center;
    gap: 0 38px;
}

@media (min-width: 1024px) {
    .header__top-social {
        display: flex;
    }
}

.header__top-social span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
}

.header__top-right {
    display: flex;
    justify-content: end;
}

.header__top-phone {
    margin: 0 40px 0 0;
}

@media (min-width: 1024px) {
    .header__top-phone {
        margin: 0 100px 0 0;
    }
}

@media (min-width: 1200px) {
    .header__top-phone {
        margin: 0 184px 0 0;
    }
}

.header__bottom-left {
    display: flex;
    align-items: center;
    gap: 0 25px;
    position: relative;
}

@media (min-width: 1200px) {
    .header__bottom-left {
        gap: 0 57px;
    }
}

.header__bottom-logo {
    margin: 0 auto;
    display: none;
}

@media (min-width: 1024px) {
    .header__bottom-logo {
        display: block;
    }
}

.header__basket {
    position: relative;
    margin: 0 40px;
    display: none;
}

.header__basket#msMiniCart,
.header__basket.msMiniCart {
    font-size: 1em;
}

@media (min-width: 1024px) {
    .header__basket {
        display: block;
    }
}

.header__basket span {
    position: absolute;
    bottom: 3px;
    left: 0;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 9px;
    line-height: 9px;
    color: var(--seryy);
    width: 24px;
    text-align: center;
    transition: 0.2s ease-in;
}

.header__basket:hover span {
    color: var(--kraftovyy);
}

.header__basket svg {
    width: 18px;
    height: 20px;
    fill: var(--seryy);
    transition: 0.2s ease-in;
}

.header__basket:hover svg {
    fill: var(--kraftovyy);
}

@media (min-width: 1024px) {
    .header__basket span {
        width: 18px;
        color: var(--chernyy);
    }

    .header__basket svg {
        fill: var(--chernyy);
    }
}

.header__basket--mobile {
    display: block;
    margin: 0 0 0 38px;
}

@media (min-width: 1024px) {
    .header__basket--mobile {
        display: none;
    }
}

.header__basket--mobile svg {
    width: 24px;
    height: 27px;
}

.header__bottom-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header__menu {
    display: none;
}

@media (min-width: 1024px) {
    .header__menu {
        display: flex;
    }
}

.header__menu>li>a {
    display: flex;
    align-items: center;
    gap: 0 11px;
}

.header__menu>li>a>svg {
    stroke: var(--chernyy);
    width: 10px;
    height: 16px;
    fill: none;
    transform: rotate(90deg);
}

.header__mobile-logo {
    display: block;
}

@media (min-width: 1024px) {
    .header__mobile-logo {
        display: none;
    }
}

.header__top-social .social>li>a {
    width: 17px;
    height: 17px;
}

/* end header */

/* footer */
.footer__top {
    background: var(--colorbezhevyy);
    padding: 34px 0 55px 0;
    position: relative;
    overflow: hidden;
}

.footer__top::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    background-image: url("../images/mask-mobile-footer.svg");
    width: 100%;
    height: 808px;
}

.footer__top::after {
    content: "";
    display: none;
    width: 797px;
    height: 607px;
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url("../images/mask-right.svg");
    background-size: contain;
}

@media (min-width: 1024px) {
    .footer__top {
        padding: 40px 0 50px 0;
    }

    .footer__top::after {
        display: block;
    }

    .footer__top::before {
        background-image: url("../images/mask-left.svg");
        width: 797px;
        height: 607px;
        top: 0;
        bottom: unset;
        background-size: contain;
    }
}

.footer__top-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
    height: 75px;
    margin: 0 auto 52px auto;
    position: relative;
    z-index: 3;
}

@media (min-width: 1024px) {
    .footer__top-logo {
        max-width: 404px;
        height: 111px;
        margin: 0 auto 40px auto;
    }
}

.footer__top-logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.footer__top-info {
    position: relative;
    z-index: 2;
}

.footer__top-title {
    padding: 0;
    margin: 0 0 30px 0;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--seryy);
}

@media (min-width: 1024px) {
    .footer__top-title {
        margin: 0 0 25px 0;
        font-size: 24px;
        line-height: 24px;
    }
}

.footer__top-contact-social {
    gap: 0 33px;
    order: 1;
}

@media (min-width: 1024px) {
    .footer__top-contact-social {
        order: 2;
        margin: 70px 0 0 0;
    }
}

.footer__top-contact-social li a {
    border-radius: 10px;
}

.footer__top-contact-social li a svg {
    width: 40px;
    height: 40px;
}

.footer__top-contact {
    display: flex;
    flex-wrap: wrap;
}

.footer__top-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px 0;
    margin: 50px 0 0 0;
    width: 100%;
    order: 1;
}

@media (min-width: 1024px) {
    .footer__top-contact-info {
        width: auto;
    }
}

.footer__phone {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    gap: 0 24px;
    transition: 0.2s ease-out;
}

.footer__phone svg {
    fill: var(--seryy);
    width: 20px;
    height: 20px;
}

.footer__phone:hover {
    color: var(--kraftovyy);
}

.footer__address {
    gap: 0 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    display: flex;
}

.footer__address svg {
    fill: var(--seryy);
    width: 20px;
    height: 20px;
}

.footer__top-contact-time {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: var(--seryy);
    width: 50%;
    order: 0;
}

@media (min-width: 1024px) {
    .footer__top-contact-time {
        width: 100%;
    }
}

.footer__bottom {
    background: var(--bezhevyy-temnyy);
    padding: 31px 0 19px 0;
}

@media (min-width: 1024px) {
    .footer__bottom {
        padding: 10px 0 7px 0;
    }
}

.footer__bottom-copy {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
    text-align: center;
}

@media (min-width: 1024px) {
    .footer__bottom-copy {
        text-align: left;
    }
}

.footer__bottom-payment {
    padding: 0;
    margin: 23px 0 29px 0;
    display: flex;
    justify-content: center;
    /*gap: 0 30px;*/
    gap: 0 15px;
}

@media (min-width: 1024px) {
    .footer__bottom-payment {
        gap: 0 22px;
        margin: 0;
    }
}

.footer__bottom-payment li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__bottom-payment li svg {
    height: 23px;
}

.footer__bottom-payment-visa svg {
    width: 58px;
}

.footer__bottom-payment-mc svg {
    width: 34px;
}

.footer__bottom-payment-pp svg {
    width: 86px;
}

.footer__bottom-payment-apay svg {
    width: 56px;
}

.footer__bottom-payment-gpay svg {
    width: 48px;
}

.footer__bottom-payment img{
    max-height: 13px;
    filter: grayscale(1);
    opacity: .7;
}

@media (min-width: 1024px) {
    .footer__bottom-payment li svg {
        height: 16px;
    }

    .footer__bottom-payment-visa svg {
        width: 40px;
    }

    .footer__bottom-payment-mc svg {
        width: 25px;
    }

    .footer__bottom-payment-pp svg {
        width: 60px;
    }

    .footer__bottom-payment-apay svg {
        width: 40px;
    }

    .footer__bottom-payment-gpay svg {
        width: 34px;
    }
}

.footer__bottom-develop {
    display: flex;
    align-items: center;
    gap: 0 28px;
    text-decoration: none;
    justify-content: center;
}

@media (min-width: 1024px) {
    .footer__bottom-develop {
        justify-content: end;
    }
}

.footer__bottom-develop span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
}

.footer__bottom-develop svg {
    width: 36px;
    height: 42px;
}

.footer__menu {
    padding: 0;
    margin: 0 0 55px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 26px 0;
}

@media (min-width: 1024px) {
    .footer__menu {
        flex-direction: column;
        margin: 0;
    }
}

.footer__menu li {
    list-style-type: none;
    width: 50%;
    margin: 0;
}

.footer__menu li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    color: var(--seryy);
}

.footer__menu-catalog li a {
    font-weight: 500;
}

.footer__menu-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 26px 0;
    width: 100%;
}

.footer__menu-info li:nth-child(-n + 6) {
    grid-column: 1;
    width: 100%;
}

.footer__menu-info li:nth-child(n + 7) {
    grid-column: 2;
    width: 100%;
}

/* end footer */

/* slider-home */
.slider-home__slide {
    background: var(--belyy);
}

@media (min-width: 1024px) {
    .slider-home__slide {
        background: #fcf9f6;
    }
}

.slider-home__slide-wrapper {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .slider-home__slide-wrapper {
        flex-direction: row;
    }
}

.slider-home__slide-content-desc {
    padding: 17px 0 23px 0;
}

@media (min-width: 1024px) {
    .slider-home__slide-content-desc {
        padding: 125px 0 181px 0;
    }
}

.slider-home__slide-content-desc h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: var(--seryy);
    text-align: center;
    margin: 0 0 18px 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .slider-home__slide-content-desc h2 {
        font-size: 60px;
        line-height: 60px;
        margin: 0 0 23px 0;
        text-align: left;
    }
}

.slider-home__slide-content-desc p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: var(--seryy);
    margin: 0 0 34px 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .slider-home__slide-content-desc p {
        font-size: 20px;
        line-height: 36px;
        margin: 0 0 55px 0;
        text-align: left;
    }
}

.slider-home__slide-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.slider-home__slide-btn {
    max-width: 100%;
    height: 40px;
    font-size: 18px;
    line-height: 18px;
}

@media (min-width: 1024px) {
    .slider-home__slide-btn {
        max-width: 315px;
        height: 60px;
        font-size: 24px;
        line-height: 24px;
    }
}

@media (min-width: 1024px) {
    .slider-home__slide-img {
        position: absolute;
        right: 0;
        top: 0;
        width: 58%;
        height: 100%;
    }
}

.slider-home__pagination {
    position: absolute;
    bottom: 0 !important;
    z-index: 99;
}

@media (min-width: 1024px) {
    .slider-home__pagination {
        bottom: 40px !important;
    }
}

/* end slider-home */

/* category */
.category {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .category {
        padding: 80px 0;
    }
}

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

.category__item {
    width: 50%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 215px;
}

@media (min-width: 1024px) {
    .category__item {
        width: 33.333%;
        height: 450px;
    }
}

.category__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 127px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    width: 100%;
    left: 0;
    right: 0;
    transition: 0.2s ease-in-out;
}

.category__item:hover::before {
    background: linear-gradient(180deg, rgba(206, 179, 143, 0) 0%, #ceb38f 100%);
}

@media (min-width: 1024px) {
    .category__item::before {
        height: 267px;
    }
}

.category__item-img {
    height: 100%;
}

.category__item-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.category__item-title {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 15px;
    display: flex;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--kraftovyy);
    width: 100%;
    transition: 0.2s ease-in-out;
}

@media (min-width: 1024px) {
    .category__item-title {
        bottom: 34px;
        font-size: 24px;
        line-height: 24px;
    }
}

.category__item:hover .category__item-title {
    color: var(--belyy);
}

/* end category */

/* catalog */
.catalog {
    position: relative;
    padding: 0 0 40px 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .catalog {
        padding: 0 0 80px 0;
    }
}

.catalog__row {
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .catalog__row {
        gap: 40px 0;
    }
}

.catalog.icon-block::before {
    right: unset;
    left: -170px;
    top: 256px;
}

/* end catalog */

/* product-item */

.product-item {
    box-shadow: 0 4px 5px 0 rgba(177, 177, 177, 0.15);
    background: var(--belyy);
    border: 1px solid #efefef;
    border-radius: 5px;
    position: relative;
    padding: 0 0 70px 0;
    height: 100%;
}

@media (min-width: 1024px) {
    .product-item {
        border: none;
        box-shadow: none;
        background: none; 
        padding: 0 0 89px 0;
    }
}

.product-item__markers {
    position: absolute;
    top: 18px;
    right: 10px;
    z-index: 3;
    /*
    display: flex;
    flex-direction: column;
    justify-content: end;
    */
}

.product-item__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    /*
    flex: 1 1 auto;
    width: min-content; 
    margin: 0 0 3px auto;
    */
    font-size: 9px;
    line-height: 9px;
    font-family: var(--font-family);
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0 8px;
    height: 18px;
    transition: 0.2s ease-in;
    z-index: 9;
    margin-bottom: 3px;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .product-item__marker {
        font-size: 15px;
        padding: 0 7px;
        height: 28px;
    }
}

.product-item__marker--orange {
    color: #fb8a2e;
    border-color: #fb8a2e;
}

.product-item__marker--green {
    color: var(--zelenyy);
    border-color: var(--zelenyy);
}

.product-item__marker--grey {
    color: var(--seryy);
    border-color: var(--seryy);
}

.product-item__marker--red {
    color: var(--krasnyy);
    border-color: var(--krasnyy);
}

.product-item__img {
    width: 100%;
    height: 200px;
    display: flex;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .product-item__img {
        height: auto;
    }
}

.product-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.2s ease-in;
}

.product-item__title {
    margin: 10px 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: var(--seryy);
    padding: 0 13px;
}

@media (min-width: 1024px) {
    .product-item__title {
        font-size: 18px;
        line-height: 24px;
    }
}


@media (min-width: 1200px) {
    .product-item__title {
        font-size: 22px;
        line-height: 34px;
    }
}

.product-item__title a {
    text-decoration: none;
    color: var(--seryy);
}

.product-item__bottom {
    display: flex;
    gap: 0 10px;
    justify-content: center;
    align-items: center;
}

.product-item__btn {
    height: 30px;
    margin: 13px auto 0 auto;
    font-size: 14px;
    line-height: 14px;
    padding: 0;
    margin: 0;
    outline: none;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
    white-space: nowrap; 
}

.product-item__btn:focus {
    outline: none !important;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .product-item__btn { 
        height: 49px;
        font-size: 18px;
        line-height: 23px;
        bottom: 19px;
    }
}

@media (min-width: 1200px) {
    .product-item__btn {
        font-size: 23px;
        line-height: 23px;
    }
}

.product-item:hover .product-item__marker--orange {
    background: #fb8a2e;
    color: var(--belyy);
}

.product-item:hover .product-item__marker--green {
    background: var(--zelenyy);
    color: var(--belyy);
}

.product-item:hover .product-item__marker--grey {
    background: var(--seryy);
    color: var(--belyy);
}

.product-item:hover .product-item__marker--red {
    background: var(--krasnyy);
    color: var(--belyy);
}

.product-item--disabled .product-item__img::before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(252, 249, 246, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.product-item--disabled .product-item__btn {
    pointer-events: none;
    background: #ededed;
    color: var(--seryy);
}

.product-item:hover .product-item__img img {
    transform: scale(1.1);
}

/* end product-item */

/* special-desing */
.special-desing {
    position: relative;
    height: 340px;
    overflow: hidden;
}

@media (min-width: 1100px) {
    .special-desing {
        height: 783px;
    }
}

.special-desing__wrapper-link {
    display: block;
    width: 100%;
}

.special-desing__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.special-desing__info {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    top: 60px;
    left: 0;
}

@media (min-width: 1100px) {
    .special-desing__info {
        top: 205px;
    }
}

.special-desing__info-content h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    color: var(--seryy);
    margin: 0 0 11px 0;
    padding: 0;
}

@media (min-width: 1100px) {
    .special-desing__info-content h2 {
        font-size: 60px;
        line-height: 64px;
        margin: 0 0 23px 0;
    }
}

.special-desing__info-content p {
    font-family: var(--font-family);
    font-weight: 465;
    font-size: 16px;
    line-height: 18px;
    color: var(--seryy);
    margin: 0 0 45px 0;
}

@media (min-width: 1100px) {
    .special-desing__info-content p {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 87px 0;
    }
}

.special-desing__info-btn {
    height: 30px;
    max-width: 172px;
    font-size: 14px;
    line-height: 14px;
}

@media (min-width: 1100px) {
    .special-desing__info-btn {
        max-width: 315px;
        height: 60px;
        font-weight: 600;
        font-size: 24px;
        line-height: 24px;
        color: #fffcfc;
    }
}

/* end special-desing */

/* advantages */
.advantages {
    background: var(--colorbezhevyy);
    padding: 29px 0;
}

@media (min-width: 1024px) {
    .advantages {
        padding: 42px 0;
    }
}

.advantages--clients {
    margin: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .advantages--clients {
        margin: 0 0 80px 0;
    }
}

.advantages__row {
    gap: 40px 0;
}

.advantages-item {
    display: flex;
    align-items: center;
    gap: 0 43px;
    position: relative;
}

@media (min-width: 1024px) {
    .advantages-item {
        gap: 0 25px;
        align-items: flex-start;
    }
}

.advantages-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

@media (min-width: 1024px) {
    .advantages-item__icon {
        width: auto;
    }
}

.advantages-item__info h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--seryy);
    margin: 0 0 12px 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .advantages-item__info h3 {
        font-weight: 900;
    }
}

.advantages-item__info p {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--seryy);
}

.advantages-item--right-line::before {
    content: "";
    display: none;
    width: 1px;
    height: 65px;
    position: absolute;
    top: 5px;
    right: 0;
    background: var(--seryy);
    border-radius: 10px;
}

@media (min-width: 1024px) {
    .advantages-item--right-line::before {
        display: block;
    }
}

/* end advantages */

/* news */
.news {
    padding: 60px 0;
    position: relative;
}

@media (min-width: 1024px) {
    .news {
        padding: 80px 0;
    }
}

.news-inner {
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .news-inner {
        padding: 0 0 80px 0;
    }
}

.news-inner__wrapper {
    padding: 60px 0 0 0;
}

@media (min-width: 1024px) {
    .news-inner__wrapper {
        padding: 40px 0 0 0;
    }
}

.news__pc-list {
    display: none;
    flex-direction: column;
    gap: 60px 0;
}

@media (min-width: 1024px) {
    .news__pc-list {
        display: flex;
    }
}

.news-inner__list {
    display: flex;
    flex-direction: column;
    gap: 80px 0;
}

@media (min-width: 1024px) {
    .news-inner__list {
        gap: 60px 0;
    }
}

.news-inner::before {
    top: 35px;
    right: -170px;
    left: auto;
}

.news-inner::after {
    left: -170px;
    right: unset;
    top: 50%;
    transform: translateY(-50%);
}

.news-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.news-item:hover .news-item__content {
    border-right-color: #CEB38F;
    border-top-color: #CEB38F;
    border-bottom-color: #CEB38F;
    background-color: #fff;
}

@media (min-width: 1024px) {
    .news-item {
        flex-direction: row;
        align-items: center;
    }

    .news-item:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .news-item:nth-child(2n):hover .news-item__content {
        border-left-color: #CEB38F;
        border-right-color: transparent;
        border-top-color: #CEB38F;
        border-bottom-color: #CEB38F;
        background-color: #fff;
    }

}

.news-item__img {
    width: 100%;
}

@media (min-width: 1024px) {
    .news-item__img {
        width: 50%;
    }
}

.news-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news-item__content {
    padding: 19px 15px 0 15px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

@media (min-width: 1024px) {
    .news-item__content {
        height: 388px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 0 48px 0 45px;
        width: 50%;
        background: var(--colorbezhevyy);
    }
}

.news-item__content h3 {
    color: var(--seryy);
    font-family: var(--font-family);
    font-weight: 500;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .news-item__content h3 {
        font-size: 24px;
        line-height: 28px;
        margin: 0 0 30px 0;
    }
}

.news-item__content p {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    color: var(--seryy);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

@media (min-width: 1024px) {
    .news-item__content p {}
}

.news__mb {
    display: block;
}

@media (min-width: 1024px) {
    .news__mb {
        display: none;
    }
}

.news-slider {
    padding: 0 0 30px 0;
}

.news-slider-pagination {
    position: absolute;
    bottom: 0 !important;
}

/* end news */

/* gallery */
.gallery {
    padding: 60px 0 49px 0;
    background-image: url("../images/pattern-gallery.svg");
    background-repeat: repeat;
    background-position: 0 0;
    background-size: contain;
}

@media (min-width: 1024px) {
    .gallery {
        padding: 78px 0 52px 0;
    }
}

@media (min-width: 1024px) {
    .gallery-slider-wrapper {
        align-items: center;
        height: 556px;
    }
}

.gallery-slider {
    width: 100%;
}

.gallery-slider-slide-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .gallery-slider-slide {
        width: 556px;
    }
}

.gallery-slider-pagination {
    margin: 20px 0 0 0 !important;
}

@media (min-width: 1024px) {
    .gallery-slider-pagination {
        margin: 42px 0 0 0 !important;
    }
}

/* end gallery */

/* breadcrumb */
.breadcrumb {
    padding: 30px 0;
    margin: 0;
    position: relative;
    z-index: 4;
}

@media (min-width: 1024px) {
    .breadcrumb {
        padding: 40px 0;
    }
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 20px;
    padding: 0;
    margin: 0;
}

.breadcrumb__list li {
    list-style-type: none;
}

.breadcrumb__list li,
.breadcrumb__list li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: var(--seryy);
    position: relative;
}

.breadcrumb__list li a {
    text-decoration: none;
}

.breadcrumb__list li a::before {
    content: "→";
    font-size: 12px;
    display: block;
    position: absolute;
    right: -16px;
    top: 2px;
    line-height: 1;
}

.breadcrumb__list li a:hover {
    text-decoration: underline;
}

/* end breadcrumb */

/* success */
.success {
    padding: 60px 0 167px 0;
}

@media (min-width: 1024px) {
    .success {
        padding: 85px 0 136px 0;
    }
}

.success__content h1 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 70px;
    line-height: 70px;
    color: var(--seryy);
    text-align: center;
    padding: 0;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .success__content h1 {
        text-align: left;
    }
}

.success__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--seryy);
    padding: 0;
    margin: 0;
}

.success__content p strong {
    font-weight: 700;
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .success__content p {
        text-align: left;
    }
}

.success__img-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 192px;
    height: 214px;
    margin: 30px auto 0 auto;
}

@media (min-width: 1024px) {
    .success__img-mobile {
        display: none;
    }
}

.success__img-mobile img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.success__btn {
    margin: 40px auto 0 auto;
    font-size: 18px;
    line-height: 18px;
    height: 70px;
    max-width: 100%;
    border-radius: 16px;
}

@media (min-width: 1024px) {
    .success__btn {
        margin: 30px 0 0 0;
        border-radius: 5px;
        max-width: 431px;
    }
}

.success__img {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* end success */

/* error-page */
.error-page {
    padding: 20px 0 60px 0;
}

@media (min-width: 1024px) {
    .error-page {
        padding: 38px 0 115px 0;
    }
}

.error-page__content h1 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 100px;
    line-height: 100px;
    text-align: center;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .error-page__content h1 {
        font-size: 200px;
        line-height: 200px;
        text-align: left;
    }
}

.error-page__content p {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--seryy);
}

@media (min-width: 1024px) {
    .error-page__content p {
        text-align: left;
    }
}

.error-page__btn {
    margin: 30px 0 0 0;
    height: 70px;
    border-radius: 16px;
    font-size: 18px;
    line-height: 18px;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .error-page__btn {
        max-width: 431px;
        margin: 80px 0 0 0;
        border-radius: 5px;
    }
}

.error-page__img-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 373px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .error-page__img-mobile {
        display: none;
    }
}

.error-page__img-mobile img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* end error-page */

/* content-page */
.content-page {
    padding: 0 0 135px 0;
    position: relative;
}

@media (min-width: 1024px) {
    .content-page {
        padding: 0 0 66px 0;
    }
}

.content-page__cms {
    padding: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .content-page__cms {
        padding: 40px 0 0 0;
    }
}

/* end content-page */

/* cms-content */
.cms-content h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #0f1113;
    margin: 0 0 30px 0;
}

.cms-content h3 {
    margin: 0 0 13px 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: var(--seryy);
}

.cms-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    opacity: 0.8;
    margin: 0 0 30px 0;
}

.cms-content p:last-child {
    margin: 0;
}

.cms-content p i {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    opacity: 0.8;
    padding: 0 20px;
}

.cms-content p a {
    font-style: italic;
    font-weight: 700;
    color: var(--kraftovyy);
    text-decoration: none;
}

.cms-content ol {
    padding: 0 0 0 30px;
    margin: 0 0 30px 0;
}

.cms-content ol li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    opacity: 0.8;
    margin: 0 0 20px 0;
}

.cms-content ol li:last-child {
    margin: 0;
}

.cms-content ul {
    padding: 0 0 0 30px;
    margin: 0 0 30px 0;
}

.cms-content ul li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    opacity: 0.8;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.cms-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--kraftovyy);
    border-radius: 100%;
}

/* end cms-content */

/* faq */
.faq {
    padding: 0 0 60px 0;
    position: relative;
}

@media (min-width: 1024px) {
    .faq {
        padding: 0 0 80px 0;
    }
}

.faq.icon-block::before {
    top: 0;
}

.faq-item__head {
    display: flex;
    gap: 0 8px;
    align-items: flex-start;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .faq-item__head {
        gap: 0 35px;
        align-items: center;
    }
}

.faq__list {
    margin: 30px 0 0 0;
    gap: 30px 0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .faq__list {
        margin: 50px 0 0 0;
        gap: 40px 0;
    }
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 7px 0;
}

@media (min-width: 1024px) {
    .faq-item {
        gap: 15px 0;
    }
}

.faq-item__head-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    background: var(--seryy);
}

.faq-item__head-arrow svg {
    fill: none;
    stroke: var(--belyy);
    width: 10px;
    height: 16px;
    transition: 0.2s ease-in;
}

.faq-item__head.active .faq-item__head-arrow svg {
    transform: rotate(90deg);
}

.faq-item__head-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--seryy);
    width: calc(100% - (26px + 8px));
}

.faq-item__body {
    box-shadow: 0 7px 15px 0 rgba(177, 177, 177, 0.15);
    background: var(--belyy);
    padding: 15px 20px;
    border: 1px solid #efefef;
    display: none;
}

.faq-item__body.show {
    display: block;
}

@media (min-width: 1024px) {
    .faq-item__body {
        padding: 40px 64px;
    }
}

.faq-item__body p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 20px 0;
}

.faq-item__body p:last-child {
    margin: 0;
}

/* end faq */

/* search-page */
.search-page {
    position: relative;
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .search-page {
        padding: 0 0 80px 0;
    }
}

.search-page__row {
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .search-page__row {
        gap: 60px 0;
    }
}

.search-page__head {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .search-page__head {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 40px 0;
    }
}

.search-page__head span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--seryy);
}

.search-page__row .product-item {
    box-shadow: 0 4px 5px 0 rgba(177, 177, 177, 0.15);
}

/* end search-page */

/* article */
.article-inner {
    position: relative;
    min-height: 20vh;
}

.article-inner__content::after {
    content: '';
    clear: both;
    display: block;
}

.article-inner__content {
    padding: 30px 0 0 0;
}

@media (min-wdith: 1024px) {
    .article-inner__content {
        padding: 40px 0 0 0;
    }
}

.article-inner__content h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: var(--chernyy);
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .article-inner__content h3 {
        margin: 0 0 20px 0;
    }
}

.article-inner__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

.article-inner__content p:last-child {
    margin: 0;
}

.article-inner__content ul {
    padding: 0 0 0 20px;
    margin: 0 0 30px 0;
}

.article-inner__content ul li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
}

.article-gallery {
    padding: 60px 0;
    position: relative;
}

@media (min-width: 1024px) {
    .article-gallery {
        padding: 80px 0;
    }
}

/* end article */

/* sizes-page */
.sizes-page {
    position: relative;
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .sizes-page {
        padding: 0 0 80px 0;
    }
}

.sizes-page__wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px 0;
    padding: 40px 0 0 0;
}

@media (min-width: 1024px) {
    .sizes-page__wrapper {
        gap: 90px 0;
    }
}

.sizes-page__item-content h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: var(--chernyy);
    padding: 0;
    margin: 0 0 40px 0;
}

.sizes-page__item-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

.sizes-page__item-content p:last-child {
    margin: 0;
}

.sizes-page__item-content ul {
    padding: 0 0 0 30px;
    margin: 0 0 30px 0;
}

.sizes-page__item-content ul li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
}

.sizes-page__item-table {
    margin: 30px 0 0 0;
}

.sizes-page__item-table table {
    width: 100%;
    border-collapse: collapse;
    border-bottom: 1px solid #efefef;
}

.sizes-page__item-table table tr:nth-child(odd) {
    box-shadow: inset 0 -1px 0 0 #e4e4ef;
    background: var(--colorbezhevyy);
}

.sizes-page__item-table table tr th,
.sizes-page__item-table table tr td {
    padding: 18px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--seryy);
    border-left: 1px solid #efefef;
}

.sizes-page__item-table table tr td {
    font-weight: 400;
}

.sizes-page__item-table table tr td:first-child {
    font-weight: 700;
}

.sizes-page__item-table table tr th:first-child,
.sizes-page__item-table table tr td:first-child {
    border: none;
}

.sizes-page__item-table {
    overflow-x: scroll;
}

@media (min-width: 1200px) {
    .sizes-page__item-table {
        overflow: auto;
    }
}

.sizes-page__item-video {
    margin-top: 30px;
}

@media (min-width: 1024px) {
    .sizes-page__item-video {
        margin-top: 0;
    }
}

/* end sizes-page */

/* contact-page */
.contact-page {
    position: relative;
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .contact-page {
        padding: 0 0 104px 0;
    }
}

.contact-page__wrapper {
    padding: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .contact-page__wrapper {
        padding: 40px 0 0 0;
    }
}

.contact-top__info p {
    margin: 0 0 40px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    opacity: 0.8;
}

.contact-top__img {
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .contact-top__img {
        margin: 0;
    }
}

.contact-top__img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.contact-elements {
    flex-direction: column;
    display: flex;
    gap: 20px 0;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 0 35px;
    margin: 40px 0 0 0;
}

.contact-top__info h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: var(--chernyy);
    margin: 0 0 21px 0;
}

@media (min-width: 1024px) {
    .contact-top__info h2 {
        margin: 0 0 3px 0;
        font-size: 24px;
        line-height: 40px;
    }
}

.contact-social span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.contact-social .social {
    gap: 0 25px;
}

.contact-social .social svg {
    width: 30px;
    height: 30px;
}

.contact-bottom {
    margin: 60px 0 0 0;
}

@media (min-width: 1024px) {
    .contact-bottom {
        margin: 70px 0 0 0;
    }
}

.contact-bottom__row {
    flex-direction: column-reverse;
}

@media (min-width: 1024px) {
    .contact-bottom__row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .contact-bottom__callback-head {
        padding: 0 0 0 71px;
    }
}

.contact-bottom__callback-head h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: var(--chernyy);
    padding: 0;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .contact-bottom__callback-head h2 {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 20px 0;
    }
}

.contact-bottom__callback-head p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--seryy);
    opacity: 0.8;
    margin: 0 0 30px 0;
}

.contact-bottom__map {
    margin-top: 30px;
}

@media (min-width: 1024px) {
    .contact-bottom__map {
        margin-top: 0;
    }
}

.callback-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .callback-form {
        padding: 0 61px;
    }
}

.callback-form__btn {
    max-width: 573px;
    margin: 30px auto 15px auto;
    height: 69px;
}

@media (min-width: 1024px) {
    .callback-form__btn {
        margin-top: 40px;
    }
}

.callback-form .control-form input {
    margin: 0 0 15px 0;
}

@media (min-width: 1024px) {
    .callback-form .control-form input {
        margin: 0 0 20px 0;
    }
}

.control-form input {
    max-width: 537px;
    width: 100%;
    height: 62px;
    display: flex;
    align-items: center;
    padding: 0 35px;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.control-form input::placeholder {
    opacity: 0.6;
}

.control-form textarea {
    max-width: 537px;
    width: 100%;
    text-align: left;
    height: 125px;
    display: block;
    padding: 17px 26px;
    resize: none;
    border: 1px solid #e4e6ea;
    border-radius: 16px;
    background: var(--belyy);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--seryy);
}

.control-form textarea::placeholder {
    opacity: 0.6;
}

.checkbox-custom {
    display: block;
    cursor: pointer;
}

.checkbox-custom span {
    display: flex;
    align-items: center;
    padding: 0 0 0 27px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
    position: relative;
}

.checkbox-custom span::before {
    content: "";
    border: 1px solid var(--seryy);
    border-radius: 2px;
    width: 17px;
    height: 17px;
    display: block;
    position: absolute;
    top: -2px;
    left: 0;
}

.checkbox-custom span::after {
    content: "";
    border: 1px solid var(--kraftovyy);
    border-radius: 2px;
    width: 17px;
    height: 17px;
    display: none;
    position: absolute;
    top: -2px;
    left: 0;
    background-color: var(--kraftovyy);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgNS44NDg2M0w0LjUgOS4zNDg2M0wxMi41IDEuMzQ4NjMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41Ii8+Cjwvc3ZnPgo=");
}

.checkbox-custom input:checked+span::after {
    display: block;
}

/* end contact-page */

/* our-clients */
.our-clients {
    position: relative;
    padding: 0 0 46px 0;
}

.our-clients::before {
    top: 150px;
    left: auto;
    right: -170px;
}

@media (min-width: 1024px) {
    .our-clients {
        padding: 0 0 66px 0;
    }
}

.our-clients__wrapper {
    padding: 30px 0 0 0;
    margin: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .our-clients__wrapper {
        padding: 40px 0 0 0;
        margin: 0 0 40px 0;
    }
}

.our-clients__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 9px;
}

@media (min-width: 1024px) {
    .our-clients__tabs {
        gap: 18px;
    }
}

.our-clients__tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    background: var(--colorbezhevyy);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--chernyy);
    width: 100%;
    max-width: calc(200px - (18px * 2 / 3));
    transition: 0.2s ease-out;
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .our-clients__tab-item {
        max-width: 315px;
    }
}

.our-clients__tab-item.active,
.our-clients__tab-item:hover {
    color: var(--belyy);
    background: var(--kraftovyy);
}

.our-clients__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 60px 0 0 0;
}

@media (min-width: 1024px) {
    .our-clients__row {
        gap: 0;
        padding: 40px 0 0 0;
    }
}

.our-clients__item {
    width: calc(50% - (12px * 2 / 3));
    height: 200px;
}

@media (min-width: 1024px) {
    .our-clients__item {
        width: calc(100% / 3);
        height: 337px;
    }
}

@media (min-width: 1200px) {
    .our-clients__item {
        width: calc(100% / 4);
        height: 337px;
    }
}

.our-clients__item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* end our-clients */

/* catalog-category */
.catalog-category {
    position: relative;
}

.catalog-category--h1 {
    color: #76777b;
}

.catalog-category::before {
    left: unset;
    right: -170px;
    top: 150px;
}

.catalog-category__row {
    gap: 15px 0;
    margin-top: 30px;
}

@media (min-width: 1024px) {
    .catalog-category__row {
        gap: 23px 0;
        margin-top: 40px;
    }
}

.category-inner-item {
    position: relative;
    display: block;
    text-decoration: none;
    height: 128px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .category-inner-item {
        height: 200px;
    }
}

.category-inner-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 77px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 50%);
    width: 100%;
    left: 0;
    right: 0;
    transition: 0.2s ease-in-out;
}

@media (min-width: 1024px) {
    .category-inner-item::before {
        height: 97px;
    }
}

.category-inner-item:hover::before {
    background: linear-gradient(180deg, rgba(206, 179, 143, 0) 0%, #ceb38f 100%);
}

.category-inner-item-img {
    height: 100%;
}

.category-inner-item-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.category-inner-item-title {
    position: absolute;
    bottom: 7px;
    text-align: center;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--kraftovyy);
    z-index: 9;
    transition: 0.2s ease-in;
}

@media (min-width: 1024px) {
    .category-inner-item-title {
        font-size: 18px;
        line-height: 24px;
    }
}

.category-inner-item:hover .category-inner-item-title {
    color: var(--belyy);
}

/* end catalog-category */

/* popular-products */
.popular-products {
    position: relative;
    padding: 60px 0;
}

.popular-products::after {
    right: unset;
    left: -170px;
}

@media (min-width: 1024px) {
    .popular-products {
        padding: 80px 0;
    }
}

.popular-products__row {
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .popular-products__row {
        gap: 60px 0;
    }
}

.popular-products__row .product-item {
    box-shadow: 0 4px 5px 0 rgba(177, 177, 177, 0.15);
}

/* end popular-products */

/* seo-text */
.seo-text {
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .seo-text {
        padding: 0 0 80px 0;
    }
}

.seo-text__cms {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.seo-text__cms.show {
    height: auto;
}

.seo-text__cms::before {
    position: absolute;
    height: 94px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.seo-text__cms.show::before {
    display: none;
}

.seo-text__cms h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: var(--seryy);
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .seo-text__cms h3 {
        margin: 0 0 20px 0;
        font-size: 20px;
        line-height: 20px;
    }
}

.seo-text__cms p {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    margin: 0 0 20px 0;
}

.seo-text__btn {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    width: 100%;
}

.seo-text__btn svg {
    fill: none;
    width: 24px;
    height: 24px;
    stroke: var(--seryy);
    transform: rotate(90deg);
}

.seo-text__btn.active {
    transform: rotate(180deg);
}

/* end seo-text */

/* subcategory */
.subcategory {
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .subcategory {
        padding: 0 0 80px 0;
    }
}

.subcategory__head {
    display: none;
    align-items: center;
    gap: 0 30px;
    padding: 40px 0;
}

@media (min-width: 1024px) {
    .subcategory__head {
        display: flex;
    }
}

.subcategory__head-mobile {
    display: flex;
    margin: 30px 0 60px 0;
    gap: 0 20px;
    position: relative;
}

@media (min-width: 1024px) {
    .subcategory__head-mobile {
        display: none;
    }
}

.subcategory__head-mobile-item {
    width: calc(50% - 10px);
}

.subcategory__head-mobile-left-btn {
    border: 1px solid var(--kraftovyy);
    border-radius: 5px;
    height: 47px;
    background: var(--belyy);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--kraftovyy);
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    justify-content: center;
}

.subcategory__head-mobile-left-btn svg {
    fill: none;
    stroke: var(--kraftovyy);
    width: 10px;
    height: 16px;
    transform: rotate(90deg);
}

.subcategory__head-mobile-filter {
    height: 47px;
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--belyy);
    border: 1px solid var(--seryy);
    border-radius: 5px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.subcategory__head-mobile-item-list {
    position: absolute;
    padding: 0;
    margin: 0;
    top: 100%;
    z-index: 11;
    border: 1px solid #f2f5fc;
    border-radius: 0 0 5px 5px;
    background: var(--belyy);
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease-in;
}

.subcategory__head-mobile-item-list.show {
    opacity: 1;
    visibility: visible;
}

.subcategory__head-mobile-item-list li {
    list-style-type: none;
}

.subcategory__head-mobile-item-list li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 40px;
    text-decoration: none;
}

.subcategory__head-mobile-item-list li a.active {
    background: var(--colorbezhevyy);
    color: var(--kraftovyy);
}

.subcategory__head-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% / 4) - (15px * 3 / 4));
    text-decoration: none;
    border: 1px solid var(--seryy);
    border-radius: 5px;
    height: 47px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--seryy);
    transition: 0.2s ease-in;
    background-color: #fff;
}

.subcategory__head-link.disabled {
    opacity: .4;
    cursor: not-allowed;
}

.subcategory__head-link:hover,
.subcategory__head-link.active {
    border: 1px solid var(--kraftovyy);
    color: var(--kraftovyy);
}

.subcategory__catalog .row {
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .subcategory__catalog .row {
        gap: 40px 0;
    }
}

.subcategory__catalog .row .product-item {
    box-shadow: 0 4px 5px 0 rgba(177, 177, 177, 0.15);
    background: var(--belyy);
}

.subcategory__filter {
    position: sticky;
    top: 120px;
    z-index: 9;
    height: 100%;
    display: none;
}

@media (min-width: 1024px) {
    .subcategory__filter {
        display: block;
    }
}

.subcategory__filter.show {
    position: fixed;
    overflow-y: scroll;
    top: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    display: block;
    background: var(--belyy);
    z-index: 9999;
    padding: 0;
}

/* end subcategory */

/* filter-item */
.subcategory-filter-categories {
    display: none;
}

.filter-item .filter-offer-title {
    display: none !important;
}

@media (min-width: 1024px) {
    .filter-item {
        margin: 0 0 80px 0;
    }
}

.filter-item:last-child {
    margin: 0;
}

.filter-item h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    color: var(--seryy);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    padding: 0 40px;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #f2f5fc;
    height: 52px;
    cursor: pointer;
}

.filter-item h3 span {
    display: none;
}

.filter-item h3 svg {
    fill: none;
    width: 17px;
    height: 17px;
    stroke: var(--seryy);
}

@media (min-width: 1024px) {
    .filter-item h3 {
        padding: 0;
        height: auto;
        border: none;
        margin: 0 0 28px 0;
        font-weight: 700;
        cursor: default;
        display: block;
    }

    .filter-item h3 span {
        font-weight: 500;
        display: inline-block;
    }

    .filter-item h3 svg {
        display: none;
    }
}

.filter-item__price {
    display: none;
    padding: 60px 15px 0 15px;
    gap: 0 10px;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .filter-item__price {
        display: flex;
        gap: 0 35px;
        padding: 0;
    }
}

.filter-item__price input {
    border: 1px solid var(--seryy);
    border-radius: 2px;
    width: 100%;
    max-width: calc(50% - 5px);
    height: 34px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16%;
    color: var(--seryy);
    padding: 0 10px;
}

.mse2_number_slider {
    width: 100%;
    margin-top: 30px;
}

.mse2_number_inputs {
    display: flex;
    gap: 0 35px;
}

@media (min-width: 1024px) {
    .filter-item__price input {
        max-width: 85px;
    }

    .mse2_number_slider {
        max-width: 250px;
    }
}

#mse2_mfilter .hidden.btn-reset {
    display: flex
}

.filter-item__price input::placeholder {
    color: var(--seryy);
}

.filter-item .ui-state-default,
.filter-item .ui-widget-content .ui-state-default {
    width: 10px;
    height: 10px;
    border: none;
    background: #76777B;
    border-radius: 50%;
    top: -4px;
    cursor: pointer;
    display: block;
}

.filter-item .ui-widget.ui-widget-content {
    height: 1px;
    border: none !important;
    background: #76777B
}

.filter-item .ui-slider .ui-slider-range {
    height: 2px !important;
    background: #CEB38F
}

.filter-item__list {
    display: none;
    flex-direction: column;
    gap: 35px 0;
    padding: 38px 37px 0 37px;
}

@media (min-width: 1024px) {
    .filter-item__list {
        display: flex;
        padding: 0;
        gap: 23px 0;
    }
}

.filter-item__list-item .checkbox-custom span {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.filter-item__list-item .checkbox-custom span::before,
.filter-item__list-item .checkbox-custom span::after {
    top: 0;
}

.filter-item__list-item .checkbox-custom.disabled {
    opacity: .5;
    cursor: not-allowed;
}

.subcategory__filter-bottom-btn {
    display: flex;
    align-items: center;
    gap: 0 12px;
    width: 100%;
    position: absolute;
    bottom: 33px;
    left: 0;
    padding: 0 15px;
}

@media (min-width: 1024px) {
    .subcategory__filter-bottom-btn {
        display: none;
    }
}

.btn-reset {
    max-width: calc(50% - 6px);
    height: 47px;
    font-size: 16px;
    line-height: 16px;
    background: var(--belyy);
    color: var(--seryy);
    border-color: var(--seryy);
}

.btn-success {
    max-width: calc(50% - 6px);
    height: 47px;
    font-size: 16px;
    line-height: 16px;
}

.subcategory__filter-head {
    padding: 19px 0;
    position: relative;
    background: var(--colorbezhevyy);
}

@media (min-width: 1024px) {
    .subcategory__filter-head {
        display: none;
    }
}

.subcategory__filter-head span {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    display: block;
    color: var(--kraftovyy);
}

.subcategory__filter-head-btn-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    border: none;
    background: none;
}

.subcategory__filter-head-btn-close svg {
    fill: none;
    stroke: var(--kraftovyy);
    width: 17px;
    height: 17px;
}

.subcategory__filter-head-btn-back {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    border: none;
    background: none;
    display: none;
}

.subcategory__filter-head-btn-back svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--kraftovyy);
    transform: scale(-1);
}

/* end filter-item */

/* block-elements-brend" */
.block-elements-brend {
    position: relative;
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .block-elements-brend {
        padding: 80px 0;
    }
}

.block-elements-brend__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    margin: 30px 0 0 0;
    gap: 30px 0;
}

@media (min-width: 1024px) {
    .block-elements-brend__row {
        height: 660px;
        margin: 40px 0 0 0;
        overflow: hidden;
        gap: 0;
    }

    .block-elements-brend__row:nth-child(2n) {
        flex-direction: row-reverse;
    }

}

.block-elements-brend__img {
    width: 100%;
}

@media (min-width: 1024px) {
    .block-elements-brend__img {
        width: 50%;
    }
}

.block-elements-brend__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-elements-brend__content {
    width: 100%;
}

@media (min-width: 1024px) {
    .block-elements-brend__content {
        width: 50%;
        background: var(--colorbezhevyy);
        padding: 0 40px;
        height: 612px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }
}

.block-elements-brend__content h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .block-elements-brend__content h3 {
        margin: 0 0 40px 0;
        font-size: 24px;
        line-height: 24px;
    }
}

.block-elements-brend__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    margin: 0 0 20px 0;
}

.block-elements-brend__content p:last-child {
    margin: 0;
}

.block-elements-brend__content ul {
    padding: 0 0 0 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

@media (min-width: 1024px) {
    .block-elements-brend__content ul {
        padding: 0 0 0 20px;
    }
}

.block-elements-brend__content ul li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
}

@media (min-width: 1024px) {
    .block-elements-brend__content ul li {}
}

/* end block-elements-brend" */

/* history */
.history {
    position: relative;
}

.history::before {
    top: 306px;
}

.history__list {
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 60px 0;
}

@media (min-width: 1200px) {
    .history__list {
        margin: 80px 0 0 0;
        gap: 120px 0;
    }
}

.history__item {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
}

.history__item-number {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 65px;
    line-height: 65px;
    margin: 0 0 31px 0;
    width: 100%;
    color: var(--kraftovyy);
}

.history__item-number span {
    color: var(--seryy);
}

.history__item-number span.active {
    color: var(--seryy);
    position: absolute;
}

@media (min-width: 1200px) {
    .history__item-number {
        width: calc(40% - 15px);
        font-size: 180px;
        line-height: 180px;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .history__item-number span {
        color: transparent;
    }
}

.history__item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .history__item-content {
        width: calc(60% - 15px);
        display: block;
    }
}

.history__item-content img {
    order: 3;
    margin-bottom: 0;
}

.history__item-content h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 21px;
    color: var(--seryy);
    margin: 0 0 20px 0;
}

@media (min-width: 1200px) {
    .history__item-content h3 {
        font-size: 24px;
        line-height: 24px;
    }
}

.history__item-content p {
    margin: 0;
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--seryy);
}

.history__item-content img {
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 1200px) {
    .history__item-content img {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 30px;
    }
}

/* end history */

/* work */
.work {}

.work__slogan {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    margin: 15px 0 0 0;
}

@media (min-width: 1024px) {
    .work__slogan {
        margin: 30px 0 0 0;
    }
}

.work__row {
    padding-top: 30px;
    padding-bottom: 60px;
    gap: 35px 0;
}

@media (min-width: 1024px) {
    .work__row {
        padding-top: 105px;
        padding-bottom: 170px;
    }
}

.work-item {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0 20px;
    height: 100%;
    position: relative;
}

@media (min-width: 1024px) {
    .work-item {
        gap: 0 10px;
    }
}

.work-item__icon {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .work-item__icon {
        align-items: baseline;
    }
}

.work-item__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--seryy);
    width: calc(100% - (90px + 20px));
}

@media (min-width: 1024px) {
    .work-item__text {
        width: calc(100% - (90px + 10px));
    }
}

.work-item__arrow-first {
    width: 100%;
    margin: 0 0 46px 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .work-item__arrow-first {
        position: absolute;
        top: -70px;
        right: 40%;
        margin: 0;
        text-align: unset;
        width: auto;
    }
}

.work-item__arrow-first img {
    position: relative;
    z-index: 2;
}

.work-item__arrow-first::before {
    content: "";
    display: none;
    position: absolute;
    width: 185px;
    height: 101px;
    background-image: url("../images/about/icon/a-1.svg");
    right: -57px;
}

@media (min-width: 1024px) {
    .work-item__arrow-first::before {
        display: block;
    }
}

.work-item__arrow-two {
    width: 100%;
    text-align: center;
    margin: 0 0 35px 0;
}

@media (min-width: 1024px) {
    .work-item__arrow-two {
        position: absolute;
        bottom: -160px;
        left: 10px;
        margin: 0;
        text-align: unset;
        width: auto;
    }
}

.work-item__arrow-two img {
    position: relative;
    z-index: 2;
}

.work-item__arrow-two::before {
    content: "";
    display: none;
    position: absolute;
    width: 212px;
    height: 182px;
    top: -91px;
    right: -61px;
    background-image: url("../images/about/icon/a-2.svg");
}

@media (min-width: 1024px) {
    .work-item__arrow-two::before {
        display: block;
    }
}

.work-item__arrow-three {
    width: 100%;
    text-align: center;
    margin: 45px 0 0 0;
}

@media (min-width: 1024px) {
    .work-item__arrow-three {
        position: absolute;
        top: -70px;
        right: -5%;
        margin: 0;
        text-align: unset;
        width: auto;
    }
}

.work-item__arrow-three img {
    position: relative;
    z-index: 2;
}

.work-item__arrow-three::before {
    content: "";
    display: none;
    position: absolute;
    width: 211px;
    height: 181px;
    top: -30px;
    right: -85px;
    background-image: url("../images/about/icon/a-3.svg");
}

@media (min-width: 1024px) {
    .work-item__arrow-three::before {
        display: block;
    }
}

.work-item__arrow-four {
    width: 100%;
    text-align: center;
    margin: 43px 0 0 0;
}

@media (min-width: 1024px) {
    .work-item__arrow-four {
        position: absolute;
        bottom: -140px;
        right: 0;
        margin: 0;
        text-align: unset;
        width: auto;
    }
}

.work-item__arrow-four img {
    position: relative;
    z-index: 2;
}

.work-item__arrow-four::before {
    content: "";
    display: none;
    position: absolute;
    width: 209px;
    height: 193px;
    right: 65px;
    bottom: -70px;
    background-image: url("../images/about/icon/a-4.svg");
}

@media (min-width: 1024px) {
    .work-item__arrow-four::before {
        display: block;
    }
}

/* end work */

/* why-us */
.why-us {
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .why-us {
        padding: 60px 0 80px 0;
    }
}

.why-us__wrapper {
    margin: 30px 0 0 0;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.07);
    background: var(--belyy);
    padding: 0 0 40px 0;
}

@media (min-width: 1024px) {
    .why-us__wrapper {
        margin: 40px 0 0 0;
        padding: 0 0 50px 0;
    }
}

.why-us__content h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: var(--seryy);
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .why-us__content h3 {
        font-size: 24px;
        line-height: 24px;
        margin: 0 0 26px 0;
    }
}

.why-us__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--seryy);
    margin: 0;
}

@media (min-width: 1024px) {
    .why-us__content p {
        max-width: 764px;
        margin: 0 auto;
    }
}

.why-us__reviews-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 15px 0;
}

@media (min-width: 1024px) {
    .why-us__reviews-icon {
        margin: 51px 0 37px 0;
    }
}

.why-us__reviews-icon svg {
    fill: none;
    width: 160px;
    height: 35px;
}

.why-us__reviews-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.why-us__reviews-link svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: #76777B
}

.why-us__reviews-link span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--seryy);
}

.why-us__reviews-link:hover span{
    color: var(--kraftovyy)
}

.why-us__reviews-link:hover svg{
    stroke: var(--kraftovyy)
}

.why-us__head {
    display: flex;
    border-bottom: 1px solid var(--seryy);
    margin: 0 0 33px 0;
}

@media (min-width: 1024px) {
    .why-us__head {
        margin: 0 50px 25px 50px;
    }
}

.why-us__head-left {
    width: 50%;
    border-right: 1px solid var(--seryy);
    padding: 34px 15px 40px 0;
}

@media (min-width: 1024px) {
    .why-us__head-left {
        padding: 24px 40px 68px 20px;
    }
}

.why-us__head-left h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: right;
    color: var(--seryy);
    margin: 0 0 15px 0;
}

@media (min-width: 1024px) {
    .why-us__head-left h3 {
        font-size: 24px;
        line-height: 28px;
        padding: 0 0 0 200px;
    }
}

.why-us__head-left p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    color: var(--seryy);
    margin: 0;
}

.why-us__head-right {
    width: 50%;
    padding: 34px 0 40px 15px;
}

@media (min-width: 1024px) {
    .why-us__head-right {
        padding: 24px 20px 68px 40px;
    }
}

.why-us__head-right h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--seryy);
    margin: 0 0 15px 0;
}

@media (min-width: 1024px) {
    .why-us__head-right h3 {
        font-size: 24px;
        line-height: 28px;
    }
}

.why-us__head-right p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--seryy);
    margin: 0;
}

.why-us__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px 0;
    margin: 54px 0 0 0;
}

@media (min-width: 1024px) {
    .why-us__list {
        flex-direction: row;
        gap: 0 80px;
        margin: 30px 0 0 0;
    }
}

.why-us__item-number {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 94px;
    line-height: 94px;
    color: var(--kraftovyy);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us__item-desc {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    text-align: center;
}

@media (min-width: 1024px) {
    .why-us__item-desc {}
}

/* end why-us */

/* js-slider-product */
.js-slider-product {
    padding: 0 0 30px 0;
}

.js-slider-product .swiper-slide{
    height: auto;
}

.mobile-slider-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (min-width: 1024px) {
    .js-slider-product {
        padding: 0 0 42px 0;
    }
}

.js-slider-product__pagination {
    position: absolute;
    bottom: 0 !important;
}

.js-slider-inner-product {
    margin: 0;
    box-shadow: 0 4px 5px 0 rgba(177, 177, 177, 0.15);
    background: var(--belyy);
}

/* end js-slider-product */

/* buy-product */
.buy-product {
    position: relative;
}

/* end buy-product */

/* similar-products */
.similar-products {
    position: relative;
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .similar-products {
        padding: 80px 0;
    }
}

/* end similar-products */

/* product */
.product {
    padding: 0 0 30px 0;
    position: relative;
}

.product::after {
    bottom: unset;
    top: 199px;
}

@media (min-width: 1024px) {
    .product {
        padding: 0 0 80px 0;
    }
}

.product--left-none {
    display: none;
}

@media (min-width: 1200px) {
    .product--left-none {
        display: block;
    }
}

.product__info h1 {
    margin: 0 0 15px 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: var(--seryy);
}

@media (min-width: 1024px) {
    .product__info h1 {
        font-size: 40px;
        line-height: 42px;
        margin: 0 0 20px 0;
    }
}

.product__info-head {
    display: flex;
    align-items: center;
    gap: 0 0;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .product__info-head {
        margin: 0 0 39px 0;
    }
}

.product__info-head-article {
    width: 50%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.product__info-head-order {
    background: var(--seryy);
    border: 1px solid var(--seryy);
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    color: var(--belyy);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 140px;
    height: 28px;
    width: 100%;
}

.product__info-table {
    margin: 0 0 45px 0;
}

.product__info-table table {
    border-collapse: collapse;
    border: none;
    width: 100%;
}

.product__info-table tr td {
    width: 50%;
    padding: 0 0 24px 0;
}

.product__info-table tr td span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 18px;
}

.product__info-table tr td span::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 100%;
    background: var(--kraftovyy);
}

@media (min-width: 1024px) {
    .product__info-table tr td span {
        font-size: 18px;
        line-height: 20px;
    }
}

.product__info-table tr:last-child td {
    padding: 0;
}

.product__info-table tr td:last-child {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--seryy);
}

@media (min-width: 1024px) {
    .product__info-table tr td:last-child {
        font-size: 20px;
        line-height: 20px;
    }
}

@media (min-width: 1024px) {
    .product__info-table tr td:first-child {
        width: 60%;
    }

    .product__info-table tr td {
        width: 40%;
    }
}

.product__info-price {
    display: flex;
    align-items: center;
    gap: 0 31px;
}

@media (min-width: 1024px) {
    .product__info-price {
        gap: 0 36px;
    }
}

.product__info-price .price {
    font-weight: 700;
    font-size: 25px;
    line-height: 25px;
}

.product__info-price .old-price {
    font-size: 20px;
    line-height: 20px;
}

.product__info-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .product__info-bottom {
        gap: 20px 0;
        margin: 40px 0 0 0;
    }
}

.product__info-bottom-small {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: var(--krasnyy);
}

@media (min-width: 1024px) {
    .product__info-bottom-small {
        text-align: left;
    }
}

.product__info-bottom-btn {
    max-width: 100%;
    font-size: 16px;
    line-height: 16px;
    height: 42px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .product__info-bottom-btn {
        height: 56px;
        font-size: 20px;
        line-height: 20px;
    }
}

.product__info-bottom-btn--order {
    background: #f1f2f6;
    color: var(--seryy);
}

.product__info-bottom-btn--order:hover {
    color: var(--seryy);
    border: 1px solid var(--seryy);
}

.product__info-total {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
    gap: 20px 0;
    margin: 25px 0 0 0;
}

@media (min-width: 1024px) {
    .product__info-total {
        margin: 40px 0 0 0;
    }
}

.product__info-total-item { 
    align-items: center;
    gap: 0 60px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
}

.product__info-total-item--price,
.product__info-total-item--custom{
    display: none;
}

.product__info-total-item--price.show,
.product__info-total-item--custom.show{
    display: flex;
}

@media (min-width: 1024px) {
    .product__info-total-item {
        gap: 0 44px;
        justify-content: space-between;
    }
}

.product__info-total-item span {
    width: calc(100% - 60px - 120px);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    text-align: left;
}

.product__info-total-item--fw span {
    font-weight: 500;
}

.product__info-total-items {
    width: 100%;
}

@media (min-width: 1024px) {
    .product__info-total-item span {
        width: calc(100% - 44px - 120px);
        text-align: right;
    }
}

.product__info-total-item strong {
    width: 120px;
    text-align: right;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: var(--chernyy);
}

@media (min-width: 1024px) {
    .product__info-total-item strong {
        width: 95px;
        text-align: right;
    }
}

.product__info-colors {
    margin: 60px 0 0 0;
}

@media (min-width: 1024px) {
    .product__info-colors {
        margin: 40px 0 0 0;
    }
}

.product__info-colors-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .product__info-colors-title {
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 20px 0;
    }
}

.product__info-element-item {
    width: calc((100% / 3) - (10px * 3 / 4));
}

@media (min-width: 1024px) {
    .product__info-element-item {
        width: calc((100% / 4) - (7px * 4 / 5));
    }
}

.product__info-element-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 63px;
    background: #f1f2f6;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    cursor: pointer;
    padding: 0 5px;
    text-align: center;
}

.product__info-element-item input:checked~span {
    border-color: var(--seryy);
}

.product__info-colors-row,
.product__info-yers-list {
    display: flex;
    align-items: center;
    gap: 7px 10px;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {

    .product__info-colors-row,
    .product__info-yers-list {
        gap: 6px 7px;
    }
}

.product__info-slider-mobile {
    display: block;
    margin: 60px 0;
}

.product__info-yers + .product__info-yers{
    margin-top: 50px;
}

@media (min-width: 1200px) {
    .product__info-slider-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .product__info-yers {
        margin: 57px 0 0 0;
    }
}

.product__info-yers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .product__info-yers-head {
        margin: 0 0 20px 0;
    }
}

.product__info-yers-head span {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--seryy);
    font-family: var(--font-family);
}

@media (min-width: 1024px) {
    .product__info-yers-head span {
        font-size: 20px;
        line-height: 20px;
    }
}

.product__info-yers-head-btn {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    font-family: var(--font-family);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--seryy);
}

.product__info-yers-head-btn:hover {
    text-decoration: none;
}

.product__info-other-color {
    display: none;
    width: 100%;
    height: 54px;
    padding: 0 32px;
    margin: 60px 0 0 0;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
    font-family: var(--font-family);
    border: 1px solid var(--seryy);
    border-radius: 5px;
}

@media (min-width: 1200px) {
    .product__info-other-color {
        font-size: 16px;
        line-height: 16px;
        margin: 20px 0 0 0;
    }
}

.input {
    width: 100%;
    height: 54px;
    padding: 0 32px;
    margin: 60px 0 0 0;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
    font-family: var(--font-family);
    border: 1px solid var(--seryy);
    border-radius: 5px;
}

@media (min-width: 1200px) {
    .input {
        font-size: 16px;
        line-height: 16px;
        margin: 20px 0 0 0;
    }
}

.product__info-other-color::placeholder .input::placeholder {
    color: var(--seryy);
}

.product__info-other-color.show {
    display: flex;
}

.product__info-embroidery {
    margin: 60px 0 0 0;
}

@media (min-width: 1024px) {
    .product__info-embroidery {
        margin: 40px 0 0 0;
    }
}

.product__info-embroidery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .product__info-embroidery-head {
        margin: 0 0 20px 0;
    }
}

.product__info-embroidery-head span {
    font-size: 18px;
    line-height: 20px;
    color: var(--seryy);
    font-family: var(--font-family);
    font-weight: 400;
}

@media (min-width: 1024px) {
    .product__info-embroidery-head span {
        font-size: 20px;
        line-height: 20px;
    }
}

.product__info-embroidery-head-btn {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    font-family: var(--font-family);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--seryy);
}

.product__info-embroidery-head-btn:hover {
    text-decoration: none;
}

.product__info-embroidery-content {
    margin: 0 0 34px 0;
}

@media (min-width: 1024px) {
    .product__info-embroidery-content {
        margin: 0 0 26px 0;
    }
}

.product__info-embroidery-content p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    color: var(--seryy);
    font-weight: 400;
}

.product__info-embroidery-content p strong {
    font-weight: 700;
}

.product__info-embroidery-list {
    display: flex;
    flex-direction: column;
    gap: 17px 0;
}

@media (min-width: 1024px) {
    .product__info-embroidery-list {
        gap: 21px 0;
    }
}

.product__info-embroidery-item-input {
    display: none;
    height: 54px;
    align-items: center;
    padding: 0 24px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--seryy);
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
    margin: 15px 0;
}

.product__info-embroidery-item-input::placeholder {
    color: var(--seryy);
}

@media (min-width: 1024px) {
    .product__info-embroidery-item-input {
        font-size: 16px;
        line-height: 16px;
        padding: 0 32px;
        margin: 20px 0 0 0;
    }
}

.product__info-embroidery-item input:checked~input.product__info-embroidery-item-input {
    display: flex;
}

.product__info-embroidery-item-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 0 0 23px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .product__info-embroidery-item-control {
        padding: 0 0 0 30px;
    }
}

.product__info-embroidery-item-control::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    border: 1px solid var(--seryy);
    border-radius: 2px;
    width: 17px;
    height: 17px;
    display: block;
}

.product__info-embroidery-item-control::after {
    content: "";
    border: 1px solid var(--kraftovyy);
    border-radius: 2px;
    width: 17px;
    height: 17px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--kraftovyy);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgNS44NDg2M0w0LjUgOS4zNDg2M0wxMi41IDEuMzQ4NjMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41Ii8+Cjwvc3ZnPgo=");
}

.product__info-embroidery-item input:checked+.product__info-embroidery-item-control::after {
    display: block;
}

.product__info-embroidery-item-control span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--seryy);
}

.product__info-embroidery-item-control strong {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    color: var(--seryy);
}

.mobile-slider {
    position: relative;
    padding: 0 0 27px 0;
}

.mobile-slider-pagination {
    bottom: 0;
    position: absolute;
}

.product__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 11px 7px;
}

.product__gallery-item--first {
    grid-row: 1;
}

.product__gallery-item--large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.product__gallery-item iframe {
    aspect-ratio: 16 / 9;
    /* Видео будет масштабироваться пропорционально */
}

.product__gallery-item img {
    aspect-ratio: 1 / 1;
    /* Квадратные изображения */
    width: 100%;
}

/* end product */

/* basket-page */
.basket {
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .basket {
        padding: 0 0 42px 0;
    }
}

.basket__form {
    display: block;
    width: 100%;
    padding: 30px 0 0 0;
}

@media (min-width: 1200px) {
    .basket__form {
        padding: 40px 0 0 0;
    }
}

.order {
    padding: 0 0 60px 0;
}

@media (min-width: 1200px) {
    .order {
        padding: 0 0 80px 0;
    }
}

.order__form {
    display: block;
    width: 100%;
    padding: 25px 0 0 0;
}

.order__form#msOrder {
    margin-top: 0;
}

@media (min-width: 1200px) {
    .order__form {
        padding: 40px 0 0 0;
    }
}

.order__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px 0;
    margin: 30px 0 0 0;
}

@media (min-width: 1200px) {
    .order__bottom {
        margin: 60px 0 0 0;
    }
}

.order__btn {
    max-width: 100%;
    height: 62px;
    font-size: 20px;
    line-height: 20px;
}

@media (min-width: 1200px) {
    .order__btn {
        font-size: 24px;
        line-height: 24px;
        max-width: 350px;
    }
}

.order__form-info-user {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin: 0 0 60px 0;
}

@media (min-width: 1200px) {
    .order__form-info-user {
        margin: 0 0 50px 0;
    }
}

.order__form-input {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #e7e7e7;
    background: var(--belyy);
    height: 52px;
    padding: 0 50px;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.order__form-input::placeholder {
    color: var(--seryy);
}

@media (min-width: 1200px) {
    .order__form-input {
        width: calc(100% / 3 - (30px * 2 / 3));
        height: 55px;
    }
}

.order__title {
    margin: 0 0 25px 0;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--font-family);
    color: var(--chernyy);
}

@media (min-width: 1200px) {
    .order__title {
        margin: 0 0 20px 0;
    }
}

.order__form-delivery {
    flex-wrap: wrap;
    gap: 15px 30px;
    margin: 0 0 40px 0;
    display: none;
}

.order__form-delivery.show {
    display: flex;
}

@media (min-width: 1200px) {
    .order__form-delivery {
        margin: 0 0 50px 0;
    }
}

.order__form-delivery-type {
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 30px;
}

@media (min-width: 1200px) {
    .order__form-delivery-type {
        margin: 0 0 50px 0;
    }
}

.order__form-delivery-type-item {
    width: 100%;
}

@media (min-width: 1200px) {
    .order__form-delivery-type-item {
        width: calc(100% / 3 - (30px * 2 / 3));
    }
}

.order__form-delivery-type-item--red p {
    margin: 0;
    padding: 0;
    color: var(--krasnyy);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.order__form-delivery-type-item--red p span {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.order__form-item-radio {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid #e7e7e7;
    background: var(--belyy);
    height: 52px;
    border-radius: 16px;
    cursor: pointer;
}

.order__form-item-radio span {
    display: flex;
    align-items: center;
    padding: 0 0 0 35px;
    font-size: 16px;
    line-height: 16px;
    position: relative;
    color: var(--seryy);
    font-family: var(--font-family);
}

.order__form-item-radio span::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid #c7c7c7;
    left: 0;
    top: -2px;
}

.order__form-item-radio span::after {
    content: "";
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 100%;
    background: var(--kraftovyy);
    left: 4px;
    top: 2px;
}

.order__form-item-radio input:checked~span::after {
    display: block;
}

.order__form-payment {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.order__form-payment-item,
.order__form-delivery-item {
    width: 100%;
}

.order__form-payment-item img{
    height: 15px;
    margin: 0 5px;
} 

@media (min-width: 1200px) {

    .order__form-payment-item,
    .order__form-delivery-item {
        width: calc(100% / 3 - (30px * 2 / 3));
    }
}

@media (min-width: 1200px) {
    .order__form-payment-item-2-3 {
        width: calc(100% / 3 * 2 - 10px);
    }
}

.order__form-textarea {
    resize: none;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    width: 100%;
    height: 122px;
    padding: 18px 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.order__form-textarea::placeholder {
    color: var(--seryy);
}

@media (min-width: 1200px) {
    .order__form-textarea {
        padding: 18px 32px;
    }
}

@media (min-width: 1200px) {
    .order__form-payment-item--table {
        padding: 13px 11px 11px 17px;
    }
}

.order__form-payment-table {
    border-collapse: collapse;
    width: 100%;
}

.order__form-payment-table tr td {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
    padding: 0 0 5px 0;
}

.order__form-payment-table tr:last-child td {
    padding: 0;
}

.order__form-payment-table tr td strong {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: var(--chernyy);
}

/* select */

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    display: flex;
    flex-direction: column;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    height: 52px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    cursor: pointer;
}

@media (min-width: 1200px) {
    .custom-select__trigger {
        height: 55px;
    }
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #f2f5fc;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    border-radius: 5px;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 50px;
    font-weight: 400;
    font-size: 16px;
    color: #4c5e78;
    line-height: 49px;
    cursor: pointer;
    transition: all 0.5s;
}

.custom-option:hover {
    cursor: pointer;
    background-color: var(--colorbezhevyy);
    color: var(--kraftovyy);
}

.custom-option.selected {
    color: var(--kraftovyy);
    background-color: var(--colorbezhevyy);
}

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 1px;
    height: 100%;
    transition: all 0.5s;
}

.arrow::before {
    left: -6px;
    transform: rotate(-45deg);
    background-color: var(--seryy);
}

.arrow::after {
    left: 4px;
    transform: rotate(45deg);
    background-color: var(--seryy);
}

.open .arrow::before {
    left: -6px;
    transform: rotate(45deg);
}

.open .arrow::after {
    left: 4px;
    transform: rotate(-45deg);
}

.basket__form-total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 33px 0 0 0;
    gap: 0 66px;
}

@media (min-width: 1200px) {
    .basket__form-total {
        padding: 0 100px 0 0;
    }
}

.basket__form-total span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
}

.basket__form-total strong {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--chernyy);
}

.basket__form-total strong span{
    font-weight: 700;
}

.basket__form-deleted-btn {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

@media (min-width: 1200px) {
    .basket__form-deleted-btn {
        right: 36px;
    }
}

.basket__form-deleted-btn svg {
    fill: none;
    stroke: #888;
    width: 18px;
    height: 18px;
}

.basket__form-product-head {
    display: none;
    align-items: center;
    padding: 0 0 20px 0;
}

@media (min-width: 1200px) {
    .basket__form-product-head {
        display: flex;
    }
}

.basket__form-product-item {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.basket__form-product-list-item:nth-child(2n) {
    background: var(--colorbezhevyy);
}

.basket__form-product-item-info-img {
    display: block;
    max-width: 155px;
}

.basket__form-product-item-info-img img {
    max-width: 100%;
}

.basket__form-product-item-name {
    width: 100%;
    margin: 0 0 26px 0;
}

@media (min-width: 1200px) {
    .basket__form-product-item-name {
        width: 100%;
        max-width: 580px;
        margin: 0;
    }
}

.basket__form-product-item-count {
    width: 50%;
}

@media (min-width: 1200px) {
    .basket__form-product-item-count {
        width: 100%;
        max-width: 218px;
    }
}

.basket__form-product-item-price {
    display: none;
    text-align: center;
}

@media (min-width: 1200px) {
    .basket__form-product-item-price {
        display: block;
        width: 100%;
        max-width: 222px;
    }
}

.basket__form-product-item-total {
    width: 50%;
    text-align: center;
    position: relative;
}

@media (min-width: 1200px) {
    .basket__form-product-item-total {
        width: 100%;
        max-width: 330px;
    }
}

.basket__form-product-list-item {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 25px 0;
    align-items: center;
}

@media (min-width: 1200px) {
    .basket__form-product-list-item {
        padding: 36px 0;
        flex-wrap: nowrap;
    }
}

.basket__form-product-item-total strong {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--chernyy);
}

.basket__form-product-item-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 9px;
}

.basket__form-product-item-info-content h3,
.basket__form-product-item-info-content h3 a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--seryy);
    margin: 0 0 15px 0;
    text-decoration: none;
}

.basket__form-product-item-info-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
    margin: 0 0 10px 0;
}

@media (min-width: 1200px) {
    .basket__form-product-item-info-content p {
        font-size: 16px;
        line-height: 16px;
    }
}

.basket__form-product-item-info-content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 150px;
}

.basket__form-product-item-info-content table tr td:first-child {
    width: 70%;
}

.basket__form-product-item-info-content table tr td {
    width: 30%;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
    padding: 0 0 12px 0;
    vertical-align: bottom;
}

@media (min-width: 1200px) {
    .basket__form-product-item-info-content table tr td {
        font-size: 16px;
        line-height: 16px;
    }
}

.basket__form-product-item-info-content table tr:last-child td {
    padding: 0;
}

.basket__form-product-item-info {
    display: flex;
    gap: 0 12px;
}

@media (min-width: 1200px) {
    .basket__form-product-item-info {
        gap: 0 23px;
    }
}

.basket__form-product-item-info-content-mobile {
    margin: 22px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1200px) {
    .basket__form-product-item-info-content-mobile {
        display: none;
    }
}

.basket__form-product-item-info-content-mobile span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--seryy);
}

.basket__form-product-item-info-content-mobile-price {
    display: flex;
    align-items: center;
    gap: 0 13px;
}

.basket__form-product-item-info-content-mobile-price .price {
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: var(--chernyy);
}

.basket__form-product-item-info-content-mobile-price .old-price {
    font-size: 14px;
    line-height: 14px;
}

.count-elements {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.count-elements-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddcdc;
    border-radius: 2px;
    width: 40px;
    height: 40px;
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 18px;
    color: var(--chernyy);
    cursor: pointer;
    background-color: var(--belyy);
}

.count-elements-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddcdc;
    border-radius: 2px;
    width: 40px;
    height: 40px;
    background-color: var(--belyy);
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 18px;
    color: var(--chernyy);
    cursor: pointer;
}

.count-elements-input {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #dddcdc;
    border-radius: 2px;
    width: 40px;
    height: 40px;
    background-color: var(--belyy);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: var(--chernyy);
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

.order__form-delivery-text {
    margin: 0 0 40px 0;
    display: none;
}

.order__form-delivery-text.show {
    display: block;
}

@media (min-width: 1200px) {
    .order__form-delivery-text {
        margin: 0 0 72px 0;
    }
}

.order__form-delivery-text-item--mt {
    margin: 40px 0;
}

@media (min-width: 1200px) {
    .order__form-delivery-text-item--mt {
        margin: 67px 0 0 0;
    }
}

.order__form-delivery-text-item h4 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    color: var(--kraftovyy);
}

.order__form-delivery-text-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    margin: 0 0 20px 0;
}

.order__form-delivery-text-item p:last-child {
    margin: 0;
}

/* end  basket-page*/

/* popup */
.modal-dialog-custom {
    max-width: 1348px;
    top: 100px;
}

.modal-content {
    border-radius: 16px;
}

.individual-content {
    border-radius: 0;
}

.modal-body {
    padding: 0;
}

.popup {
    position: relative;
    background: #fff;
}

.popup__btn-close {
    position: absolute;
    right: 0;
    top: -26px;
    border: none;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease-in;
    opacity: 1;
    padding: 0;
    background: none;
}

.popup__btn-close svg {
    fill: none;
    width: 15px;
    height: 15px;
    stroke: #fff;
}

.popup-search {
    padding: 39px 15px;
    border-radius: 16px;
}

@media (min-width: 1024px) {
    .popup-search {
        padding: 39px 0;
    }
}

.popup-search-form {
    position: relative;
    width: 100%;
    max-width: 1118px;
    margin: 0 auto;
}

.popup-search-form input {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 69px 0 46px;
    border: 1px solid #e7e7e7;
    height: 51px;
    background: var(--belyy);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--seryy);
}

.popup-search-form input::placeholder {
    color: var(--seryy);
}

.popup-search-form button {
    padding: 0;
    margin: 0;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    background: none;
}

.popup-search-form button svg {
    width: 23px;
    height: 23px;
    fill: var(--chernyy);
}

.popup-individual-content {
    padding: 44px 15px 57px 15px;
}

@media (min-width: 1024px) {
    .popup-individual-content {
        padding: 92px 0 91px 0;
        max-width: 997px;
        margin: 0 auto;
    }
}

.popup-individual-content h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .popup-individual-content h2 {
        margin: 0 0 40px 0;
        font-size: 24px;
        line-height: 24px;
    }
}

.popup-individual-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

.popup-sizes-content {
    padding: 44px 0 59px 0;
}

@media (min-width: 1024px) {
    .popup-sizes-content {
        padding: 73px 0 105px 0;
    }
}

.popup-sizes-content h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--seryy);
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .popup-sizes-content h2 {
        margin: 0 0 40px 0;
        font-size: 24px;
        line-height: 24px;
    }
}

.popup-order-callback-elements {
    max-width: 662px;
    margin: 0 auto;
    padding: 42px 15px 44px 15px;
}

.popup-order-callback-elements h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: var(--seryy);
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .popup-order-callback-elements h2 {
        font-size: 24px;
        line-height: 24px;
        margin: 0 0 30px 0;
    }
}

.popup-order-callback-elements p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: var(--seryy);
    margin: 0 0 0 0;
}

.popup-order-callback-elements p strong {
    display: block;
    color: var(--krasnyy);
}

.popup-order-callback-form {
    display: flex;
    flex-direction: column;
    gap: 13px 0;
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .popup-order-callback-form {
        width: 100%;
        max-width: 430px;
        margin: 30px auto 0 auto;
    }
}

.popup-order-callback-form input {
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    height: 55px;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    padding: 0 23px;
}

.popup-order-callback-form textarea {
    resize: none;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    height: 112px;
    padding: 17px 23px;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
}

.popup-order-callback-form textarea::placeholder,
.popup-order-callback-form input::placeholder {
    color: var(--seryy);
}

.popup-order-callback-form button {
    height: 60px;
    font-size: 16px;
    line-height: 16px;
    max-width: 100%;
}

.popup-order-callback-elements__bottom-text {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--krasnyy);
    margin: 15px 0 0 0;
}

@media (min-width: 1024px) {
    .popup-order-callback-elements__bottom-text {
        font-size: 16px;
        line-height: 20px;
    }
}

/* end popup */

/* elements */
.search-all-btn {
    height: 42px;
    max-width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
}

@media (min-width: 1024px) {
    .search-all-btn {
        max-width: 230px;
    }
}

.search-element {
    display: flex;
    gap: 0 22px;
    width: 100%;
    flex: 0 0 100%;
    background: var(--belyy);
    border-bottom: 1px solid #dddcdc;
    align-items: center;
    padding: 15px 0;
    text-decoration: none;
    transition: 0.2s ease-in;
}

@media (min-width: 1024px) {
    .search-element {
        padding: 0;
    }
}

.search-element:hover {
    background: var(--colorbezhevyy);
}

.search-element__info-text h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--seryy);
    margin: 0 0 8px 0;
}

@media (min-width: 1024px) {
    .search-element__info-text h3 {
        margin: 0 0 13px 0;
    }
}

.search-element:hover .search-element__info-text h3 {
    text-decoration: underline;
}

.search-element__info-text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--seryy);
    margin: 0;
}

.search-element__price {
    display: flex;
    align-items: center;
    gap: 0 17px;
}

@media (min-width: 1024px) {
    .search-element__price {
        gap: 0 27px;
    }
}

.search-element__price .price {
    font-weight: 700;
    font-size: 20px;
    color: #3d3d3d;
}

@media (min-width: 1024px) {
    .search-element__price .price {
        font-size: 22px;
    }
}

.search-element__price .old-price {
    font-weight: 400;
    font-size: 16px;
    color: #3d3d3d;
}

@media (min-width: 1024px) {
    .search-element__price .old-price {
        font-size: 19px;
    }
}

.search-element__info {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .search-element__info {
        gap: 0;
        justify-content: space-between;
        flex-direction: row;
        padding: 0 29px 0 0;
    }
}

.search-element__info-img{
    width: 100px;
}

.search-element__info-img img{
    max-width: 100%;
}

/* end elements */

/* cookies */
.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    background: var(--belyy);
    padding: 22px 0;
    border: 1px solid #efefef;
    z-index: 9999;
}

.cookies__text {
    font-size: 16px;
    line-height: 20px;
    color: var(--seryy);
    text-align: center;
}

.cookies__wrap-btn {
    display: flex;
    gap: 20px 58px;
    margin: 20px 0 0 0;
    justify-content: center;
}

@media (min-width: 1024px) {
    .cookies__wrap-btn {
        margin: 0;
        justify-content: baseline;
    }
}

.cookies__link {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 230px;
    border-radius: 5px;
    background-color: #f1f2f6;
    border: 1px solid #f1f2f6;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    color: var(--seryy);
    transition: 0.2s ease-in;
    text-decoration: none;
}

.cookies__link:hover {
    background-color: #fff;
    color: var(--seryy);
}

.cookies__btn-succes {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 230px;
    border-radius: 5px;
    background-color: var(--kraftovyy);
    border: 1px solid var(--kraftovyy);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    color: var(--belyy);
    transition: 0.2s ease-in;
    text-decoration: none;
}

.cookies__btn-succes:hover {
    background-color: var(--belyy);
    color: var(--kraftovyy);
}

/* end cookies */

.grecaptcha-badge {
    opacity: 0;
}

.product__info-year-item-input,
.product__info-color-item-input {
    display: none;
}

.product__info-year-item-input.show,
.product__info-color-item-input.show {
    display: flex;
}

.btn-preorder,
.btn-order {
    display: none;
}

.btn-preorder.show,
.btn-order.show {
    display: flex;
}

/*
==================================*/
.search-modal-result {
    position: relative;
}

.search-autocomplete {
    width: 100%;
    max-width: 1118px;
    margin: 0 auto;
    display: none;
    padding-bottom: 40px;
}

.ui-autocomplete,
.ui-autocomplete.ui-widget-content {
    border: none !important;
    max-width: 100%;
    padding: 0;
    background-color: #fff;
}

.ui-autocomplete.ui-widget-content {
    display: block !important; 
    max-height: calc(100vh - 220px);
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 0; 
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
}

.ui-autocomplete.ui-widget-content::-webkit-scrollbar {
    width: 2px;
}

.ui-autocomplete.ui-widget-content::-webkit-scrollbar-track {
    background: #F4F0EB;
}

.ui-autocomplete.ui-widget-content::-webkit-scrollbar-thumb {
    background-color: #CEB38F;
}

.ui-menu .ui-menu-item {
    border: none !important;
    background: #fff !important;
}

.search-modal-result .ui-state-active {
    border: none !important;
    background: #fff !important;
    font-weight: normal;
    color: #000 !important;
    margin: 0 !important;
}

.search-modal-result .ui-state-active a:visited {
    color: #000 !important;
}

.ui-menu-icon.ui-icon-caret-1-e {
    display: none;
}

/*
============================*/
.main{
    position: relative;
    z-index: 2;
}

.main-product{
    position: relative;
}

.main-product::after {
    content: "";
    position: absolute;
    display: none;
    bottom: 250px;
    left: -170px;
    width: 600px;
    height: 650px;
    background-image: url("../images/icon-tulip.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

@media (min-width: 1024px) {
    .main-product::after {
        display: block;
    }
}


/*
==================================*/ 
.social-buttons-wrapper{
    position: fixed;
    right: 17px;
    bottom: 150px;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media(min-width: 992px){
    .social-buttons-wrapper{
        display: flex
    }
}

.social-buttons-wrapper .round-btn + .round-btn{
    margin-top: 15px;
}

.round-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: social-anim 2s infinite;
    animation: social-anim 2s infinite;
    background-color: #CEB38F;
    color: #fff;
}

.round-btn svg{
    width: 25px;
    height: 25px;
}
 
/*
====================================*/
@-webkit-keyframes social-anim {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(206, 179, 143, .6);
		box-shadow: 0 0 0 0 rgba(206, 179, 143, .6);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(206, 179, 143, 0);
		box-shadow: 0 0 0 20px rgba(206, 179, 143, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(206, 179, 143, 0);
		box-shadow: 0 0 0 0 rgba(206, 179, 143, 0);
	}
}

@keyframes social-anim {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(206, 179, 143, .6);
		box-shadow: 0 0 0 0 rgba(206, 179, 143, .6);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(206, 179, 143, 0);
		box-shadow: 0 0 0 20px rgba(206, 179, 143, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(206, 179, 143, 0);
		box-shadow: 0 0 0 0 rgba(206, 179, 143, 0);
	}
}

/*
=======================================*/
.overlayp{
    display: none;
}

.overlayp.active {
    margin-right: 0;
    display: block;
}

.overlayp {
    position: fixed;
    z-index: 9999999999;
    right: 0;
    bottom: 50px;
    margin-right: -300px;
    transition: margin-left 1s ease-in;
    -moz-transition: margin-left 1s ease-in;
    -webkit-transition: margin-left 1s ease-in; 
}

.panel_viber {
    position: fixed;
    background: url(../images/viber_bg.png) center left;
    width: 240px;
    height: 340px;
    color: #fff;
    background-size: cover;
}

.panel_wtsp {
    position: fixed;
    background: url(../images/wtsp_bg.png) center left;
    width: 240px;
    height: 340px;
    color: #fff;
    background-size: cover;
}

.panel_telegram {
    position: fixed;
    background: url(../images/telegram_bg.png) center left;
    width: 240px;
    height: 340px;
    color: #fff;
    background-size: cover;
}


.close_panel {
    position: absolute;  
    left: 20px;
    top: 153px;
    z-index: 8;
    padding-left: 20px;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
}

.panel_info {
    position: absolute;
    top: 50px;
    right: 25px;
    height: 180px;
    width: 180px;
    text-align: right;
    line-height: 1;
    font-size: 12px;
    color: #fff;
}

.panel_info img {
    width: 40px;
}

.panel_info h2 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 29px;
}

.panel_info h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
    font-weight: normal;
}

.panel_info h3 a {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 18px;
    text-decoration: none;
}

/*
=======================================*/
.btn-up{
    border: none;
    width: 52px;
    height: 43px;
    padding: 0;
    line-height: 1;
    background-color: #CEB38F; 
    opacity: 0;
    position: fixed;
    right: 17px;
    bottom: 70px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: none
}

.btn-up.active{
    opacity: 1
}

.btn-up svg{
    width: 20px;
    height: 21px;
    fill: none;
    stroke: #fff
}

@media(min-width: 768px){
    .btn-up{
        display: block
    }
}

.nowrap{
    white-space: nowrap
}