/*@import url('https://fonts.googleapis.com/css2?family=Allan:wght@400;700&family=Arimo:ital,wght@0,400..700;1,400..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Onest:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');*/

/*@import url('https://fonts.googleapis.com/css2?family=Allan:wght@400;700&family=Arimo:ital,wght@0,400..700;1,400..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Onest:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: .3s;
}

body {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #22262A;
}

h1 {
    color: #22262A;
    /*font-family: Unbounded;*/
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 20px;
}

/* Стили модального окна Bootstrap */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    display: none;
}

.modal.show {
    display: block;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    background-color: transparent;
    border: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    cursor: pointer;
}

.modal-header .close:hover {
    opacity: 0.75;
}

.favorite-card {
    position: relative;
}


.favorite-card .js-remove-from-favorite {
    background: transparent;
    width: max-content;
    border: none;
    position: absolute;
    right: 15px;
    top: 15px;
}

.favorite-card .js-remove-from-favorite svg, .favorite-card .js-remove-from-favorite svg path {
    fill: #CF2124;
    stroke: #CF2124;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

/* Адаптивные стили */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }

    .modal-sm {
        max-width: 300px;
    }
}

/* Стили для формы */
.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
    resize: vertical;
}

/* Кнопки */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-block {
    border-radius: 10px;
    display: block;
    width: 100%;
}

.btn-primary {
    color: #fff;
    background-color: #CF2124;
    border-color: #CF2124;
}

.btn-primary:hover {
    color: #fff;
    background-color: #dd0c10;
    border-color: #dd0c10;
}

/* Отступы */
.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.text-primary {
    color: #0d6efd !important;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

/*.container {*/
/*    padding-left: clamp(20px,*/
/*    calc(20px + (130 - 20) * ((100vw - 1000px) / (1920 - 1000))),*/
/*    130px) !important;*/
/*    padding-right: clamp(20px,*/
/*    calc(20px + (130 - 20) * ((100vw - 1000px) / (1920 - 1000))),*/
/*    130px) !important;*/
/*}*/

.container {
    max-width: 1650px;
    padding: 0 20px;
    margin: 0 auto;
}

.red-btn {
    padding: 10px 32px;
    font-size: 18px;
    border-radius: 10px;
    background: #CF2124;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    gap: 3.5px;
    justify-content: center;
}

.grey-btn {
    padding: 16px 40px;
    font-size: 20px;
    color: #22262A;
    background: #F0F0F0;
    border-radius: 20px;
    transition: .3s;
    border: none;
}

.grey-btn:hover,
.grey-btn.active {
    background: #CF2124;
    color: #fff;
}

.grey-btn:hover a {
    color: #fff;
}

.sec-title {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
}

.page-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-title button {
    padding: 11px 20px;
}

.copy-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.copy-toast.show {
    opacity: 1;
}

.text-22 {
    font-size: 22px;
    font-weight: 600;
}

/* header start */

header {
    width: 100%;
    overflow: hidden;
}

header .logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    user-select: none;
}

.header-block > div {
    border-bottom: 1px solid #E5E7EB;
}

.header-top__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-top {
    padding: 10px 0;
    gap: 15px;
}

.header-top__list > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #22262A;

    &.phone {
        white-space: nowrap;
    }
}

.header-top a > span {
    color: #65758B;
}

.header-block > div:nth-child(2n + 1) {
    background: #F9FAFB;
}

.header-middle {
    padding: 16px 0;
    gap: 32px;
}

.header-middle .red-btn {
    margin-left: 4px;
    padding: 17.5px 22px;
}

.header-middle .container > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-bar {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 24px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
}

.header-search-bar img {
    cursor: pointer;
}

.header-search-bar button {
    background: transparent;
    border: none;
    display: flex;
}

.header-search-bar input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 16px;
    background: none;
    outline: none;
    border: none;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #65758B;
}

.header-middle a:not(.red-btn) {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #22252A;
}

.fav-type {
    cursor: pointer;
    position: relative;
}

.fav-type span {
    position: absolute;
    top: -11px;
    right: -11px;
    background: #CF2124;
    color: #FFFFFF;
    border-radius: 50%;
    min-width: 16px;
    min-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    user-select: none;
}

.header-bottom {
    padding: 21px 0;
}

.header-bottom > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-bottom nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #65758B;
}

.header-bottom nav span {
    cursor: pointer;
}

.header-bottom nav a {
    color: #65758B;
}

@media screen and (max-width: 1250px) {
    .header-bottom nav ul {
        gap: 16px;
    }

    .header-bottom nav span,
    .header-bottom nav a {
        font-size: 14px;
    }

    .red-btn {
        padding: 10px 24px;
    }
}

.burger-btn {
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.burger-btn img {
    width: 28px;
    height: 28px;
    display: block;
}

.burger-btn .icon-close {
    display: none;
}

.is-menu-open .burger-btn .icon-burger {
    display: none;
}

.is-menu-open .burger-btn .icon-close {
    display: block;
}

/* ===== Overlay ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9998;
}

/* ===== Mobile menu panel ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: #ffffff;
    color: #000000;
    z-index: 9999;
    transform: translateX(105%);
    transition: transform .25s ease;
    padding: 16px;
    box-shadow: -12px 0 30px rgba(0, 0, 0, .35);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.is-menu-open .mobile-menu {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mobile-menu__title {
    font-size: 18px;
    font-weight: 700;
}

.mobile-menu__close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 6px 8px;
}

.mobile-menu__search {
    margin: 14px 0 10px;
}

.mobile-menu__search input {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 0 12px;
    outline: none;
}

.mobile-menu__list {
    list-style: none;
    margin: 10px 0 16px;
    padding: 0;
}

.mobile-menu__list a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    color: #000000;
    text-decoration: none;
    transition: background .15s ease;
}

.mobile-menu__list a:hover {
    background: rgba(255, 255, 255, .08);
}

.mobile-menu__footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.mobile-menu__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #CF2124;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.mobile-menu__contacts {
    p {
        &:not(:last-child) {
            margin-bottom: 6px;
        }

        b {
            font-family: 'Mulish', sans-serif;
            font-weight: 400;
            font-size: 16px;
            color: #22262A99;
        }
    }

    a {
        color: #22262A;
    }

    div {
        margin-bottom: 20px;
    }
}

body.is-menu-open {
    overflow: hidden;
}

@media (min-width: 992px) {
    .burger-btn {
        display: none;
    }

    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }
}

/* header end */

/* main start */

main {
    padding: 40px 0 120px 0;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-swiper {
    margin-top: 40px;
}

.intro-top {
    position: relative;
    min-height: clamp(380px,
    calc(380px + (730 - 380) * ((100vw - 1000px) / (1920 - 1000))),
    730px);
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 80px;
    border-radius: 40px;
    background-image: url(./images/intro-bg.png);
    background-size: cover;
    width: 100%;
}

.intro-top > img {
    max-width: 671px;
    width: clamp(349px,
    calc(349px + (671 - 349) * ((100vw - 1000px) / (1920 - 1000))),
    671px);
    height: clamp(349px,
    calc(349px + (671 - 349) * ((100vw - 1000px) / (1920 - 1000))),
    671px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 58px;
}

.intro-top h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 60px;
    text-align: right;
    color: #fff;
    white-space: pre-line;
    margin-bottom: 24px;
}

.intro-top h2 span {
    color: #CF2124;
}

.intro-top > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.intro-top p {
    color: #FFF;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.intro-top_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 615px;
    margin-top: 54px;
}

.intro-top_block img {
    max-width: 62px;
    object-fit: cover;
}

.intro-top_block > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.intro-top_block p {
    margin-top: 6px;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
}

.intro-top_block span {
    font-family: "JetBrains Sans";
    font-weight: 500;
    font-size: 24px;
    color: #FFF;
    white-space: nowrap;
}

.main-swiper {
    margin-bottom: 20px;

    .swiper-slide {
        height: auto;
        display: flex;
        align-items: stretch;
    }

    .main-banner {
        background-repeat: no-repeat;
        background-size: cover;
        height: -webkit-fill-available;
        padding: 60px;
        width: 100%;
        border-radius: 40px;
    }

    .main-banner__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .main-banner__title {
        font-size: 60px;
    }

    .main-banner__text {
        font-size: 20px;
    }

    .type1 {
        justify-content: end;

        .main-banner__title {
            color: #FFF;
            font-family: Mulish;
            font-style: normal;
            font-weight: 400;
            margin-bottom: 16px;
        }

        .main-banner__text {
            color: rgba(255, 255, 255, 0.60);
            font-family: Mulish;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 32px;
        }

        .main-banner__button {
            border-radius: 20px;
            background: #65758B;
            padding: 16px 40px;
            color: #FFF;
            font-family: Mulish;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            width: fit-content;
        }
    }

    .type2 {
        .main-banner__title {
            color: #22262A;
            font-family: Mulish;
            font-style: normal;
            font-weight: 700;
            line-height: 60px;
            margin-bottom: 16px;
        }

        .main-banner__text {
            color: rgba(34, 38, 42, 0.40);
            font-family: Mulish;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .main-banner__button {
            color: #FFF;
            font-family: Mulish;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            border-radius: 20px;
            background: #CF2124;
            padding: 16px 40px;
            width: fit-content;
        }
    }

    .type3 {
        .main-banner__title {
            color: #FFF;
            font-family: Unbounded;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 24px;
        }

        .main-banner__text {
            color: #FFF;
            font-family: Mulish;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .main-banner__button {
            color: #FFF;
            font-family: Mulish;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            padding: 20px 60px;
            border-radius: 20px;
            background: #008CFF;
            box-shadow: 0 20px 24px 0 rgba(255, 255, 255, 0.45) inset, 0 5px 16px 0 rgba(17, 4, 54, 0.14);
            width: fit-content;
        }
    }
}


@media screen and (max-width: 1700px) {
    .intro-top h2 {
        font-size: 48px;
    }

    .intro-top_block p {
        font-size: 20px;
    }

    .intro-top_block span {
        font-size: 16px;
    }
}

@media screen and (max-width: 1370px) {
    .intro-top h2 {
        font-size: 36px;
    }
}

.intro-bottom {
    display: flex;
    gap: 20px;
    /* justify-content: space-between; */
    flex-wrap: no-wrap;
    overflow-x: auto;
}

.intro-bottom-cart {
    max-width: 220px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    cursor: pointer;
}

.intro-bottom-cart.active {
    border: 2px solid #E5E7EB;
    border-radius: 10px;
}

.intro-bottom-cart p {
    font-size: 18px;
    text-align: center;
}

.intro-bottom-cart > img {
    width: auto;
    height: 100px;
    object-fit: contain;
    max-width: 100%;
}

.products_home:not(:has(> div .products_home)), .products_home .products_home {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.products_home > div {
    width: 100%;
}

.products {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 32px;
}

.products_home .card-type-image {
    height: 196px;

    img {
        max-width: 100%;
        max-height: 100%;
    }

    a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.card-type {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.card-type-title {
    text-align: center;
}

.products .card-type {
    max-width: 360px;
}

.products .card-type > div {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.products .card-type img {
    width: 100%;
    object-fit: cover;
}

.card-type p a {
    font-weight: 600;
    font-size: 22px;
    color: #22262a;
}

.about {
    margin-top: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.about .card-type {
    gap: 14px;
    padding: 20px 32px 32px 32px;
}

.about .card-type > div {
    margin: auto;
}

.about .card-type img {
    max-width: 100%;
    object-fit: cover;
}

.about .card-type p {
    text-align: center;
    font-size: 26px;
    margin-top: 18px;
}

.about .card-type span {
    color: #22262A99;
    font-size: 18px;
    text-align: center;
}

.network {
    margin-top: 80px;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB
}

.network .card-type {
    width: 100%;
    padding: 32px;
    gap: 10px;
}

.network p {
    font-size: 18px;
    color: #CF2124;
}

.network h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
}

.network h3 span {
    color: #CF2124;
}

.network ul {
    padding-left: 10px;
    list-style: '*';
}

.network ul li {
    color: #22262A66;
}

.network h4 {
    margin: auto;
    font-weight: 700;
    font-style: Bold;
    font-size: 90px;
    line-height: 100%;
    text-align: center;
    color: #CF2124;
}

.events {
    margin-top: 120px;
}

.events-block {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events-block > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.events-block .events-block_bottom {
    grid-template-columns: 1fr 1fr 1fr;
}

.events .card-type p {
    font-weight: 600;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.events .card-type span {
    font-weight: 600;
    font-size: 16px;
    color: #22262A80;
    word-break: break-all;
}

.events .card-type > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.events .card-type img {
    width: 100%;
    object-fit: cover;
}

.events .card-type button {
    margin-top: 40px;
}

/* main end */

/* footer start */

footer {
    margin-top: 100px;
}

.footer__wrapper {
    padding: 20px;
}

footer h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    color: #fff;
}

footer > div {
    border-radius: 40px;
    background: #191919;
    padding: 60px 110px 22px 110px;
}

.footer-top {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    padding-right: clamp(60px,
    calc(60px + (364 - 60) * ((100vw - 1000px) / (1920 - 1000))),
    364px);
}

footer ul {
    max-width: 250px;
    list-style: none;
}

footer li, footer ul > li:first-child a {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

footer ul li:first-of-type {
    padding-bottom: 6px;
    margin-top: 0;
    flex-direction: column;
}

.header_mess {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    min-width: 65px;
    margin-left: 10px;
}

.header_mess a {
    width: 30px;
}

footer li a {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF80;
}

.footer-bottom {
    padding-top: 22px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #FFFFFF1A;
}

.footer-bottom a,
.footer-bottom p {
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF80;
}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* footer end */

/* articles start */

.articles {
    margin-top: 0px;
}

.bread-crumb {
    margin-top: 10px;
    margin-bottom: 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bread-crumb li {
    color: #CF2124;
}

.bread-crumb li a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #22262A33;
}

.bread-crumb li a::after {
    content: '/';
}

.main-not-home {
    padding-bottom: 0;
    padding-top: 0;
}

.pagination {
    width: fit-content;
    margin: auto;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .pages {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination a:disabled, .pagination button:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pagination .dots {
    pointer-events: none;
    background: transparent;
    border: none;
}

.pagination a, .pagination button {
    width: 51px;
    height: 43px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid #65758B33;
    background: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a.active, .pagination button.active {
    background: #CF2124;
    color: #fff;
}

.article-detail .article-graph {
    display: flex;
}

.pagination > a, .pagination > button {
    height: 30px;
}

/* articles end */

/* equipment start */

.eq-block {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.eq-left {
    width: 400px;
    flex-shrink: 0;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-count {
    font-family: 'Unbounded', sans-serif;
    color: #22262A99;
}

.grey-filter-type {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border: 1px solid #65758B33;
    background: #F7F7F7;
    border-radius: 10px;
    font-size: 18px;
    color: #22262A;
}

.checkbox-wrapper-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-type-1 {
    appearance: none;
    -webkit-appearance: none;
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: #F2F2F2;
    border: 1px solid rgba(101, 117, 139, 0.2);
    cursor: pointer;
    position: relative;
}

.checkbox-type-1:checked::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #65758B;
    border-radius: 3px;
}

.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 58px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F2F2F2;
    border: 1px solid #65758B33;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 20px;
    border-radius: 105px;
    left: 0.27em;
    /* bottom: 0.25em; */
    top: 50%;
    transform: translateY(-50%);
    background-color: #adb5bd;
    transition: .4s;
}

input:checked + .slider:before {
    transform: translateY(-50%) translateX(1.6em);
    background-color: #CF2124;
}

.grey-filter-type img {
    width: 32px;
    height: 32px;
}

.eq-filters {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.eq-filter-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.filter-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.eq-left p,
.eq-left li {
    font-size: 18px;
}

.eq-left ul {
    list-style: none;
}

.eq-select {
    width: 100%;
    background: #F2F2F2;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.eq-select.active {
    gap: 10px;
}

.eq-right > button {
    width: 100%;
    border: 1px solid #65758B33;
    border-radius: 10px;
    margin-top: 20px;
}

.eq-right > .pagination {
    margin-top: 20px;
}

.select-title {
    gap: 10px;
}

.select-title,
.select-block ul > li {
    cursor: pointer;
}

.select-title img {
    width: 17px;
    transition: .3s;
}

.active .select-title img {
    transform: rotate(180deg);
    transition: .3s;
}

.select-block {
    width: 100%;
    transition: max-height .4s ease,
    opacity .4s ease,
    transform .4s ease,
    margin-top .4s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;

    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;

    transform: rotateX(-90deg);
    transform-origin: top;
}

.active > .select-block {
    max-height: 700px;
    opacity: 1;
    margin-top: 10px;

    transform: rotateX(0deg);
}

.eq-select-sec .select-block li {
    padding: 10px;
}

.eq-select-sec .select-block li.active {
    background: #EDEDED;
    border-radius: 10px;
}

/* .select-block label {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    background: #F7F7F7;
    border: 1px solid #65758B33;
    border-radius: 10px;
    cursor: pointer;
} */

.eq-filter-lonely {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.eq-right {
    flex-grow: 1;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    .category-item {
        flex: 1 1 calc(16.6666666% - 12.5px);
        border-radius: 10px;
        outline: 1px solid #E5E7EB;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

        &:hover {
            outline: 2px solid #CF2124;
        }
    }

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

    .category-title {
        color: #22262A;
        text-align: center;
        font-family: Mulish;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}

.prod-layout-filter {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    background: #F7F7F7;
    border: 1px solid #65758B33;
    border-radius: 10px;
}

.prod-layout-filter span {
    padding: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-layout-filter span.active {
    padding: 9px;
    border: 1px solid #65758B33;
    background: #F2F2F2;
    border-radius: 5px;
}

.prod-layout-filter img {
    width: 22px;
    object-fit: cover;
}

.eq-product-title p {
    font-weight: 600;
    font-size: 24px;
}

.eq-product-title span {
    font-weight: 600;
    font-size: 18px;
    margin-top: 6px;
}

.eq-product-code .article-copy-btn {
    color: #65758B;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border: none;
    background: none;
}

.eq-product-code p {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.green-href {
    text-decoration: underline;
    color: #21CF5B;
}

.red-href {
    text-decoration: underline;
    color: #CF2124;
}

.eq-product-code > div {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.eq-products-buttons button {
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
}

.eq-products-buttons .grey-btn {
    border: 1px solid #65758B33;
    margin-top: 10px;
}

.eq-product-title {
    color: #22262A;
    flex: 1 1 auto;
}

.eq-product-image {
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;

    a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.eq-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.no-photo-placeholder {
    img {
        max-width: 100%;
    }
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.favorites-page {
    .grid-layout {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.list-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-layout .eq-products-buttons {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.list-layout .eq-product-code {
    width: 200px;
    flex-shrink: 0;
}

.list-layout > div {
    flex-direction: row;
}

@media screen and (max-width: 1600px) {

    .eq-filters .grey-filter-type {
        font-size: 16px;
    }
}

@media screen and (max-width: 1500px) {
    .eq-filters .grey-filter-type {
        font-size: 16px;
        padding: 10px;
    }

    .eq-left {
        max-width: 300px;
        width: 300px;
    }
}

@media screen and (max-width: 1400px) {
    .list-layout .eq-products-buttons {
        width: 190px;
    }

    .list-layout .card-type {
        padding: 20px 10px;
        gap: 10px;
    }

    .list-layout .eq-product-title p {
        font-size: 20px;
    }

    .list-layout .eq-product-title span {
        font-size: 14px;
    }

    .list-layout .eq-product-code {
        width: 165px;
    }
}


/* equipment end */

/* product start */

.prod-title {
    font-weight: 600;
    font-size: 32px;
}

.product-right {
    padding-top: 20px;
}

.product-right ul {
    list-style: none;
    padding-bottom: 8px;
    max-height: 390px;
    overflow-y: hidden;
    transition: all .3s ease-in-out;
}

.product-right ul li {
    padding-top: 30px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
}

.wrap_descr .product-card-actions {
    padding: 40px 24px 40px 40px;
    height: max-content;
    max-width: 400px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .25);
}

.attr_wrap-link {
    margin: 15px 0 30px;
    color: #CF2124;
    display: block;
    cursor: pointer;
    font-weight: 400;
    text-decoration: underline;
}

.wrap_descr {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

.wrap_descr .price_wrap {
    gap: 6px;
    row-gap: 10px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.wrap_descr .eq-products-buttons {
    padding-right: 16px;
}

.wrap_descr .price {
    font-size: 60px;
    font-weight: 600;
    line-height: 45px;
}

.wrap_descr .stock-status {
    font-weight: 400;
    color: #21CF5B;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.wrap_descr .stock-status.red {
    color: #CF2124;
}

.product-right ul li:first-of-type {
    padding-top: 0;
}

.product-right ul li:last-of-type {
    margin-bottom: 10px;
}

.product-right ul p {
    font-weight: 600;
    font-size: 20px;
    color: #22262A;
}

.product-right p,
.product-right li {
    color: #22262A99;
}

.product-right p span, .product-right p b {
    font-weight: 600;
    color: #22262A;
}

.product-right h3 {
    font-weight: 600;
    font-size: 22px;
}

.product-right > p {
    margin-top: 10px;
}

.product-description-bottom {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-right_top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-right_top > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products .eq-product-code {
    display: flex;
    align-items: center;
    gap: 18px;
}

.products .eq-product-code div {
    margin: 0;
}

.product-hrefs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-hrefs svg, product-hrefs svg path {
    transition: all .3s ease-in-out;
    stroke: #22262A;
}

.product-hrefs .active svg, product-hrefs .active svg path {
    fill: #CF2124;
    stroke: #CF2124;
}


.product-top {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 20px;
}

.product-left {
    width: 540px;
    display: grid;
    column-gap: 10px;
    grid-template-columns: 1fr;
}

.product-left:has(> .mySwiper) {
    grid-template-columns: 1fr 120px;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}

.mySwiper2 {
    width: 100%;
    height: 380px;
}

.mySwiper .swiper-wrapper {
    /*overflow-x: auto;*/
}

.mySwiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mySwiper {
    margin-top: 10px;
    height: 120px;
}

.mySwiper.swiper-vertical {
    margin-top: 0;
    height: 380px;
}

.mySwiper .swiper-slide {
    /*max-width: 120px !important;*/
    /*width: 120px !important;*/
    height: 120px;
    display: flex;
    border: 2px solid #f3f3f3;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    border-radius: 10px;
    overflow: hidden;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.mySwiper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.recommendations {
    margin-top: 120px;
}

.sec-title-2 {
    font-weight: 600;
    font-size: 32px;
}

.recommendations-block {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.recommendations-item {
    border: 2px solid #E5E7EB;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.recommendations-item > img {
    width: 100%;
    object-fit: cover;
}

.recommendations-item > div {
    flex-grow: 1;
    margin-top: 24px;
    padding: 0 10px 10px 10px;
}

.recommendations-item h3 {
    font-weight: 600;
    font-size: 22px;
}

.recommendations-item > button {
    width: fit-content;
    margin-top: 10px;
}

.thereis {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #289F00;
    margin-top: 10px;
}

.rec-prod-prices {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rec-prod-prices p {
    font-weight: 600;
    font-size: 22px;
}

.rec-prod-prices span {
    font-weight: 400;
    font-size: 18px;
    color: #22262A99;
}

.comment-item {
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 24px 20px;
}

.comment-item > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.stars .star-item {
    cursor: pointer;
}

.comment-item span {
    font-weight: 600;
    color: #22262A80;
}

.comment-item p {
    margin-top: 12px;
    margin-bottom: 4px;
}

.comments-swiper {
    margin-top: 40px;
}

.to-comment {
    margin-top: 40px;
}

.form-type {
    gap: 20px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.form-type label {
    background: #F7F7F7;
    padding: 22px 40px;
    border-radius: 10px;
    border: 1px solid #65758B33;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-type .checkbox-wrapper-1 {
    padding: 18px 20px;
    width: fit-content;
    flex-direction: row;
}

.form-type p {
    color: #22262A99;
}

.input-type-1 {
    background: none;
    border: none;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #22262A;
    outline: none;
}

.gray-btn {
    background: #65758B;
    color: #fff;
    border-radius: 10px;
    padding: 10px 32px;
}

.form-type > div.form-type-1_btns,
.form-type > div.form-type-row {
    flex-direction: row;
}

.form-type > div.form-type-row label {
    width: 50%;
}

.form-type button {
    width: fit-content;
}

.form-type > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-description-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-description-tabs button {
    border-radius: 10px;
}

.product-description-block {
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
}

.product-description-content {
    display: flex;
    width: 700%;
    transform: translateX(calc(-0 * (100% / 7)));

    table {
        max-width: 100%;

        td {
            padding: 10px;
        }
    }
}

.product-description-content > div {
    width: calc(100% / 7);
    max-height: 0px;
    visibility: hidden;
}

.product-description-content > div.active {
    max-height: 5000px;
    visibility: visible;
}

.attention {
    margin-top: 32px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 20px;
    background: #F7F7F7;
    border: 1px solid #65758B33;
    border-radius: 10px;
}

.attention p {
    font-size: 9px;
}

.description-1 {
    max-width: 1104px;
    width: 100%;
}

.description-1 span, .description-1 p,
.description-1 li {
    color: #22262A99;
}

.product-description-content h3 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}

.description-1 > div,
.description-1 > ul {
    margin-top: 32px;
}

.description-1 > ul {
    padding-left: 20px;
}

.description-1 > div > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.char-files {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.char-file {
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    align-items: center;
    padding: 20px 10px;
    text-align: center;
    color: #000;

    img {
        width: 100px;
    }
}

.description-2 {
    background: #FAFAFA;
    border: 1px solid #E1E1E1;
    border-radius: 20px;
    list-style: none;
    overflow: hidden;
}

.description-2 p {
    font-weight: 600;
    font-size: 22px;
}

.description-eq p:not(:first-of-type), .description-eq span:not(:first-of-type) {
    /*text-align: center;*/
}

.description-2 li {
    padding: 20px;
}

.description-2 li:nth-of-type(2n) {
    background: #F5F5F5;
}

.description-2 li > div {
    width: 100%;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
}

.description-eq li > div {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.description-eq img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    max-width: 100%;
    /*margin: 0 auto;*/
}

.mobile__right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-menu__soc {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 8px;
}

.mobile-menu__soc .bas .bx-basket-block {
    padding-left: 5px;
}

.mobile-menu__soc img {
    width: 22px;
    height: auto;
    object-fit: contain;
}

.mobile-menu__soc .bx-basket-block a {
    display: block;
    height: 100%;
}

.description-2 span,
.description-4 span,
.description-5 span,
.description-5 li {
    white-space: pre-line;
    color: #22262A99;
}

.description-4 form {
    margin-top: 32px;
}

.description-5 > span {
    display: block;
    margin-top: 20px;
}

.description-5 ul {
    padding-left: 20px;
}

.description-5 > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.description-5 > div:first-of-type {
    margin-top: 0;
}

.description-5 h3 {
    font-weight: 600;
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #22262AEB;
}

.description-6 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.description-6 > div {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid #65758B1A;
    overflow: hidden;
}

.description-6 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.basket-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', Arial, sans-serif;
}

.basket-sidebar.open {
    right: 0;
}

.basket-header {
    padding: 24px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.basket-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0 8px;
    line-height: 1;
}

.basket-close:hover {
    color: #333;
}

.basket-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.basket-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.basket-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 16px;
    border-radius: 4px;
}

.basket-item-info {
    flex: 1;
}

.basket-item-title {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-decoration: none;
    display: inline-block;
}

.basket-item-title:hover {
    color: #cf2124;
}

.basket-item-price {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.basket-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background: #f9f9f9;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e9e9e9;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-input {
    width: 40px;
    height: 32px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.delete-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
}

.delete-item:hover {
    color: #cf2124;
}

.basket-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.basket-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 16px;
}

.basket-total-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.basket-checkout-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: #cf2124;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s;
}

.basket-checkout-btn:hover {
    background: #b01a1c;
    color: white;
}

.basket-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 16px;
}

.basket-item-controls {
    display: flex;
}

.basket-item-controls .basket-item-remove {
    margin-left: auto;
    border: none;
    background: transparent;
}

.basket-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    left: 0;
    top: 0;
    background: #000000b3;
    transition: all .3s ease;
}

.basket-bg.active {
    opacity: 1;
    z-index: 10;
}

@media (max-width: 480px) {
    .basket-sidebar {
        width: 100% !important;
        right: -100% !important;
    }
}

/* product end */

/* article start */

.article-box span,
.article-box li {
    font-weight: 600;
    color: #22262A80;
}

.article-box ul {
    padding-left: 20px;
}

.red {
    color: #CF2124 !important;
}

.article-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-box > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-graph {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.article-graph img {
    max-height: 500px;
    max-width: 100%;
    object-fit: cover;
}

/* article end */

/* contact start */

.contact-top {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-auto-rows: 1fr;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item div {
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.contact-item ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-block span {
    color: #22262A99;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-map {
    width: 100%;
    overflow: hidden;
    max-height: 680px;
    min-height: 480px;
}

.contact-bottom {
    margin-top: 80px;
}

.contact-bottom ul {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-bottom li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* contact end */

/* service start */

.service-block {
    display: flex;
    gap: 20px;
    align-items: center;
}

.service-right {
    width: 40%;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-right img {
    width: 100%;
    object-fit: cover;
}

.service-block {
    margin-top: 40px;
}

.service-left span {
    color: #22262A80;
    display: block;
    margin-top: 10px;
}

.service-left > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
}

.service-left button {
    margin-top: 40px;
}

.products-service {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 120px;
}

.products-service .products_home {
    margin-top: 0;
}

.products-service .products_home .card-type {
    max-width: 400px;
}

.products_home .card-type > .card-type-image {
    border-radius: 10px;
}

.products-service .products_home img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
}

/* service end */

.burger-block,
.eq-left_mb-btn {
    display: none;
}

.socials-mb {
    display: none !important;
}

/* ===== Callback modal ===== */
.callback-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.callback-modal.is-open {
    display: block;
}

.callback-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.callback-modal__content {
    position: relative;
    width: 460px;
    max-width: calc(100% - 24px);
    background: #fff;
    border-radius: 12px;
    padding: 26px 22px;
    margin: 10vh auto 0;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
}

.callback-modal__title {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.25;
}

.callback-modal__close {
    position: absolute;
    right: 14px;
    top: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 36px;
    cursor: pointer;
    opacity: 0.75;
}

.callback-modal__close:hover {
    opacity: 1;
}

/* form */
.callback-form__label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: #444;
}

.callback-form__label span {
    display: inline-block;
    margin-bottom: 6px;
}

.callback-form__input,
.callback-form__textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.callback-form__textarea {
    min-height: 90px;
    resize: vertical;
}

.callback-form__input:focus,
.callback-form__textarea:focus {
    border-color: #b1b1b1;
}

.callback-form__submit {
    width: 100%;
    margin-top: 6px;
    cursor: pointer;
}

.callback-form__note {
    margin-top: 10px;
    font-size: 12px;
    color: #777;
}

/* honeypot invisible */
.callback-form__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* success / error blocks */
.callback-success__title,
.callback-error__title {
    font-size: 18px;
    margin-bottom: 8px;
}

.callback-success__text,
.callback-error__text {
    color: #555;
    margin-bottom: 14px;
}

.callback-success__btn {
    width: 100%;
}

/* small screens */
@media (max-width: 520px) {
    .callback-modal__content {
        margin-top: 6vh;
        padding: 20px 16px;
    }
}

@media screen and (max-width: 1400px) {
    .products_home:not(:has(> div .products_home)), .products_home .products_home {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1300px) {
    .wrap_descr {
        grid-template-columns: 1fr;
    }

    .wrap_descr .product-card-actions {
        grid-row-start: 1;
    }
}

@media screen and (max-width: 1200px) {
    .main-swiper {
        .main-banner__title {
            font-size: 50px;
        }
    }

    .intro-top_block {
        gap: 10px;
        max-width: 450px;
    }

    .product-top {
        grid-template-columns: 1fr 1fr;
    }

    .products_home:not(:has(> div .products_home)), .products_home .products_home {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1000px) {
    main {
        padding-top: 0;
    }

    /*  */
    .burger-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 30px;
        gap: 10px;

        .logo {
            color: #22252A;
        }
    }


    .product-top {
        grid-template-columns: 1fr;
    }

    h1 {
        width: 100%;
    }

    .header-search-bar {
        width: 100%;
        flex: 1 1 auto;
    }

    .burger-btn {
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 22px;
        background: #CF2124;
        border-radius: 10px;
        border: none;
    }

    .burger-btn img:last-of-type {
        display: none;
    }

    .burger-btn.active img:first-of-type {
        display: none;
    }

    .burger-btn.active img:last-of-type {
        display: block;
    }

    .header-block {
        width: 100%;
        display: grid;
        z-index: 11;
        grid-template-columns: 1fr;
        left: 0;
        top: 150px;
        position: absolute;
        border: 1px solid #E5E7EB;
        background: #F9FAFB;
        transform: rotateX(-180deg);
        transform-origin: top;
        backface-visibility: hidden;
        height: calc(100vh - 148px);
        overflow-y: auto;
    }

    .header-block.active {
        transform: rotateX(0deg);
    }

    .desk {
        display: none !important;
    }

    .header-block > div,
    .header-top > div {
        width: 100%;
        border: none;
        flex-direction: column;
    }

    .no-scroll {
        overflow: hidden;
    }

    .header-bottom nav ul {
        flex-direction: column;
    }

    .header-block .red-btn {
        margin-left: 0;
        width: 100%;
    }

    .header-middle {
        grid-row: 1/2;
    }

    .header-middle > div {
        width: 100%;
    }

    .header-middle > div:last-of-type a {
        flex-grow: 1;
    }

    .header-bottom {
        grid-row: 2/3;
    }

    .header-bottom nav {
        width: 100%;
    }

    .header-block nav ul {
        align-items: flex-start;
    }

    .header-block > div.header-top {
        flex-direction: column-reverse;
    }

    .header-top > div {
        align-items: flex-start;
    }

    .header-top a.location-mb {
        width: 100%;
        display: grid;
        grid-template-columns: 16px 1fr;
        gap: 4px;
    }

    .header-top a.location-mb img {
        grid-row: 1/3;
    }

    .header-top a.location-mb span {
        grid-column: 2/3;
    }

    .header-top > div:last-of-type {
        flex-direction: column-reverse;
    }

    .header-top > div:first-of-type {
        margin-top: 14px;
        gap: 14px;
    }

    .header-bottom > div {
        display: none;
    }

    .header-block > div.socials-mb {
        display: flex !important;
        gap: 10px;
        flex-direction: row;
        align-items: center;
        padding: 30px 0;
        justify-content: center;
    }

    .header-block .socials-mb a {
        width: fit-content;
        width: 40px;
        height: 40px;
        padding: 0;
    }

    /*  */
    .about {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .network .card-type:last-of-type {
        display: none;
    }

    .network {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .events-block .events-block_bottom {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        padding-right: 0;
        justify-content: start;
        flex-wrap: wrap;
        gap: 40px;
    }

    .intro-top h2 {
        font-size: 32px;
    }

    .intro-top p {
        font-size: 18px;
    }

    .intro-top > img {
        left: 20px;
    }

    .eq-right_top {
        gap: 10px;
    }

    .eq-left {
        max-width: 279px;
    }

    .recommendations-block {
        grid-template-columns: 1fr 1fr;
    }

    .product-top {
        flex-direction: column;
    }

    .product-left {
        width: 100%;
    }

    .form-type label {
        padding: 20px;
    }

    .description-2 li {
        overflow-x: auto;
    }

    .contact-top {
        grid-template-columns: 1fr;
    }

    .contact-map img {
        width: 100%;
    }

    .service-block {
        flex-direction: column;
    }

    .service-block:last-of-type {
        flex-direction: column-reverse;
    }

    .service-right {
        width: 100%;
    }

    .main-swiper {
        .main-banner__title {
            font-size: 40px;
        }
    }

    .wrap_descr {
        grid-template-columns: 1fr 1fr;
    }

    .wrap_descr .product-card-actions {
        grid-row-start: unset;
    }

    .wrap_descr .product-card-actions {
        max-width: 100%;
    }
}

@media screen and (max-width: 860px) {
    .intro-top > img {
        display: none;
    }

    .intro-top {
        justify-content: start;
    }

    .intro-top h2 {
        text-align: left;
    }

    .intro-top > div {
        align-items: start;
    }

    .main-swiper {
        margin-top: 0;
    }


    .wrap_descr {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 769px) {
    .intro-top > img {
        display: none;
    }

    .product-left {
        grid-template-columns: 1fr;
    }

    .product-left:has(> .mySwiper) {
        grid-template-columns: 1fr;
    }

    .intro-top_block {
        margin-top: 40px;
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .products_home:not(:has(> div .products_home)), .products_home .products_home {
        grid-template-columns: 1fr 1fr;
    }

    .intro-top > div {
        align-items: flex-start;
    }

    .intro-top h2 {
        text-align: left;
    }

    .intro-top_block > div {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .main-swiper {
        width: calc(100% + 40px);
        left: -20px;

        .main-banner {
            padding: 80px 20px;
            border-radius: 0;
            background-position-x: -40px;
        }

        .main-banner__title {
            font-size: 32px;
        }

        .type1 {
            justify-content: start;
        }
    }

    .intro-top h2 {
        margin-bottom: 0;
    }

    .intro-top {
        padding: 80px 20px;
    }

    .intro {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .intro-top {
        border-radius: 0;
        justify-content: start;
    }

    .intro-top p {
        margin-top: 20px;
        text-align: left;
    }

    .intro-bottom {
        padding-left: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .intro-bottom-cart {
        min-width: 220px;
        width: calc(100% + 20px);
        margin-right: -20px;
    }

    .card-type p, .card-type p a {
        font-size: 18px;
    }

    .products_home,
    .about {
        grid-template-columns: 1fr;
    }

    .network {
        padding-top: 0;
    }

    .network h3 {
        font-size: 24px;
    }

    main {
        padding: 0 0 80px 0;
    }

    .events-block > div,
    .events-block .events-block_bottom {
        grid-template-columns: 1fr;
    }

    footer > div {
        padding: 40px 20px;
    }

    .footer-bottom > div {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        gap: 20px;
        flex-direction: column;
        padding-top: 40px;
        margin-top: 40px;
    }

    .sec-title {
        font-size: 24px;
    }

    footer {
        margin-top: 80px;
    }

    .footer__wrapper {
        padding: 20px 0;
    }

    footer > div {
        border-radius: 0;
    }

    footer ul {
        max-width: 100%;
    }

    .eq-block {
        flex-direction: column;
    }

    .eq-right_top {
        flex-direction: column;
    }

    .eq-right_top > div {
        width: 100%;
    }

    .prod-layout-filter {
        padding: 10px 40px;
        justify-content: space-between;
    }

    .eq-left {
        width: 100%;
        max-width: 100%;
    }

    .grid-layout {
        justify-content: center;
    }

    .eq-left_mb-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 46px;
        border-radius: 10px;
        background: #CF2124;
        position: absolute;
        left: 0;
        z-index: 11;
        /* bottom: 20px; */
        top: 426px;
        cursor: pointer;
        transition: .3s;
    }

    .eq-left_mb-btn.active {
        top: 426px;
        /* right: 0; */
        left: 100%;
        transform: translateX(-100%);
    }

    .eq-left_mb-btn img {
        transition: .3s;
    }

    .eq-left_mb-btn.active img {
        transform: rotateY(180deg);
    }

    .eq-left {
        padding: 20px;
        border: 1px solid #E5E7EB;
        background: #F9FAFB;
        border-radius: 10px;
        width: calc(100% - 20px);
        position: absolute;
        left: 0;
        top: 446px;
        display: none;
    }

    .eq-left.active {
        display: flex;
    }

    .eq-filters .grey-filter-type {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        width: 100%;
    }

    .page-title {
        flex-direction: column;
        align-items: flex-start;
        font-size: 28px;
    }

    .pagination .pages {
        gap: 5px;
    }

    .recommendations-block {
        grid-template-columns: 1fr;
    }

    .products .eq-product-code,
    .products .eq-product-code div {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-right_top > div {
        align-items: flex-start;
    }

    .product-right ul li {
        justify-content: space-between;
    }

    .product-description-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .product-description-tabs button {
        width: 100%;
    }

    .description-1 > div > div {
        flex-direction: column;
    }

    .description-2 li > div {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .description-2 {
        overflow-x: auto;
    }

    .attention {
        flex-direction: column;
    }

    .form-type > div.form-type-1_btns,
    .form-type > div.form-type-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-type-1_btns button,
    .form-type > div.form-type-row label {
        width: 100%;
    }

    .article-graph img {
        max-height: 320px;
    }

    .contact-left {
        grid-template-columns: 1fr;
    }

    .contact-bottom li {
        flex-direction: column;
        font-size: 16px;
        align-items: flex-start;
    }

    .contact-bottom {
        margin-top: 40px;
    }

    .service-left > div {
        grid-template-columns: 1fr;
    }

    .service-block {
        margin-top: 20px;
    }

    .products_home {
        justify-items: center;
    }

    .products-service {
        margin-top: 60px;
    }

    .card-type {
        padding: 10px;
    }

    .grid-layout {
        gap: 10px;
    }
}

@media (max-width: 570px) {
    ul.description-2 > li:first-child {
        display: none;
    }

    div:has(> .description-eq) {
        overflow-x: auto;
    }
}

@media screen and (max-width: 500px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 450px) {
    .products_home:not(:has(> div .products_home)), .products_home .products_home {
        grid-template-columns: 1fr;
    }

    .product-right ul li {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .burger-btn {
        padding: 10px 5px;
    }

    .burger-block {
        .logo {
            font-size: 17px;
        }
    }
}

.bx-hdr-profile {
    display: flex;
}

.fav-type .bx-basket-block {
    padding-bottom: 0;
}

.fav-type .bx-basket {
    display: flex;
}