@charset "UTF-8";
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,
:active {
    outline: none;
}
a:focus,
a:active {
    outline: none;
}
aside,
nav,
footer,
header,
section {
    display: block;
}
html,
body {
    height: 100%;
}
body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
input::-ms-clear {
    display: none;
}
button {
    cursor: pointer;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
a,
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}
/*---------MY--------*/
body {
    font-family: 'roboto', sans-serif;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}
.container-mini {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}
img {
    max-width: 100%;
}
p {
    font-size: 14px;
    color: #171718;
    line-height: 20px;
}
.error-page {
        text-align: center;
        font-size: 22px;
        line-height: 1.5;
        height: 30vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .error-page p strong {
        display: inline-block;
        font-size: 32px;
        line-height: 1.2;
    }

    .error-page .btn {
        font-size: 18px;
    }
/*-------------------------*/
/* Закрепление шапки сайта */
.header-top {
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    /* Цвет фона шапки */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    /* Тень шапки */
}
/* Стиль блоков в шапке */
.header-top__blocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* Отступы внутри блоков */
    border-bottom: 2px solid #f4f4f4;
}
.header-top__blocks .header-bottom__icons {
    display: none;
}
/* Стиль логотипа */
.header-top__logo {
    display: flex;
    align-items: center;
}
.header-top__logo img {
    height: 50px;
    margin-right: 15px;
    /* Отступ между логотипом и текстом */
}
.header-top__logo p {
    color: #696969;
    font-size: 18px;
}
/* Стиль информации в шапке */
.header-top__info {
    display: flex;
    align-items: center;
}
.header-top__info p {
    font-size: 16px;
    margin: 0 20px;
}
.header-top__info p a {
    color: #fff;
    font-weight: 600;
}
.header-top__info p a:hover {
    color: #fff;
}
.header-top__info_feedback a {
    border: 2px solid #ffbe00;
    padding: 9px 31px;
    background-color: #FFA000;
    color: #fff;
    border-radius: 35px;
}
/* Мобильная версия шапки */
.header-top-mobile {
    display: none;
    /* Скрываем мобильную шапку (можно изменить в зависимости от дизайна) */
}
/* Закрепление меню навигации */
.header-bottom {
    margin-top: 10px;
    /* Измените значение по мере необходимости */
    z-index: 999;
    /* Уровень z-index для обеспечения видимости над шапкой */
    /*position: fixed;*/
    top: 60px;
    /* Высота шапки сайта */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    /* Цвет фона меню */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    /* Тень меню */
}
/* Стиль блоков в меню */
.header-bottom__blocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* Отступы внутри блоков */
}
/* Стиль пунктов меню */
.header-bottom__menu ul {
    display: flex;
    padding: 10px 0;
    /* Отступы внутри меню */
}
.header-bottom__menu ul li {
    margin-right: 20px;
}
.header-bottom__menu ul li a {
    text-transform: uppercase;
    color: #696969;
    font-size: 16px;
    font-weight: 500;
}
.header-bottom__menu ul li a:hover,
.header-bottom__menu ul li.current-menu-item a,
.header-bottom__menu ul li.current-menu-parent a,
.header-bottom__menu ul li.current-category-ancestor a,
.header-bottom__menu ul li.active a {
    color: #ffbe00;
}
/* Стиль иконок в меню */
.header-bottom__icons ul {
    display: flex;
}
.header-bottom__icons ul li {
    margin-left: 20px;
}
.header-bottom__icons ul li a {
    color: #696969;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
}
.header-bottom__icons ul li a:hover,
.header-bottom__icons ul li.active a {
    color: #ffbe00;
}
.header-bottom__icons ul li a i {
    margin-right: 10px;
}
/*------Стили для шапки сайта-------*/
.header-top__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px solid #f4f4f4;
}
.header-top__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
}
.header-top__logo img {
    border-right: 3px solid #ffbe00;
    height: 50px;
    padding-right: 25px;
    margin-right: 25px;
}
.header-top__logo p {
    color: #696969;
    font-size: 18px;
}
.header-top__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.header-top__info p {
    font-size: 16px;
    margin: 0 20px;
}
.header-top__info p a {
    color: #171718;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}
.header-top__info p a:hover {
    color: #000;
}
.header-top__info_feedback {
    margin-right: 0 !important;
}
.header-top__info_feedback a {
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    padding: 9px 31px;
    border-radius: 35px;
}
.header-bottom__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-bottom__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
}
.header-bottom__menu ul li {
    margin-right: 20px;
}
.header-bottom__menu ul li a {
    text-transform: uppercase;
    color: #696969;
    font-size: 16px;
    font-weight: 500;
}
.header-bottom__menu ul li a:hover,
.header-bottom__menu ul li.active a {
    color: #ffbe00;
}
.header-bottom__icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
        flex-wrap: wrap;
    gap: 5px;
}
.header-bottom__icons ul li {
    margin-left: 20px;
}
.header-bottom__icons ul li a {
    color: #696969;
    font-size: 16px;
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-bottom__icons ul li a:hover,
.header-bottom__icons ul li.active a {
    color: #ffbe00;
}
.header-bottom__icons ul li a i {
    margin-right: 10px;
}
.header-top-mobile {
    display: none;
}
.nav-menu {
    padding: 20px;
}
.nav-menu ul li {
    margin-bottom: 10px;
}
.nav-menu ul li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
/* Top icons
----------------------------------------*/
.top-icons {
    display: flex;
    align-items: center;
}
.top-icons li {
    position: relative;
}
.top-icons li:not(:last-child) {
    margin-right: 10px;
}
.top-icons i {
    font-size: 24px;
    color: #696969;
}
.top-icons li.active i {
    color: #ffbe00;
}
.top-icons__count {
    position: absolute;
    top: -7px;
    right: -7px;
    background-color: red;
    color: #fff;
    padding: 3px 5px;
    font-size: 10px;
    border-radius: 6px;
    min-width: 15px;
    text-align: center;
}
/*-----mobile-menu-------*/
.nav-buttons {
    display: none;
}
.nav-buttons {
    padding: 10px 15px;
    display: none;
    background-color: #ffbe00;
}
.nav-buttons--filter {
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}
.nav-buttons__button {
    background: none;
    border: 1px solid #fff;
    padding: 5px 0;
    border-radius: 15px;
    color: #fff;
    position: relative;
}
.nav-buttons__button--active {
    background-color: #fff;
    border-color: #fff;
    color: inherit;
}
.nav-buttons__icon {
    position: absolute;
    font-size: 18px;
    left: 10px;
    color: inherit;
    margin-top: -10px;
    top: 50%;
}
.nav {
    padding: 0 0;
    background-color: #ffbe00;
    display: none;
}
.page__left {
    padding: 0 0;
    display: none;
}
/*-------Основной слайдер--------*/
.main-slider {
    height: 600px;
}
.main-carousel-item {
    display: block;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.main-carousel .owl-dots {
    bottom: 70px;
    position: relative;
    display: flex;
    justify-content: center;
}
.main-carousel .owl-dots .owl-dot span {
    width: 30px !important;
    height: 30px !important;
    background-color: #86979100 !important;
    border-radius: 50% !important;
    border: 4px solid #696969;
    display: block;
    margin: 0 5px;
}
.main-carousel .owl-dots .owl-dot span:hover {
    border: 4px solid #ffbe00;
}
.main-carousel .owl-dots .owl-dot.active span {
    background-color: #86979100 !important;
    border: 4px solid #ffbe00;
}
/*-----Заголовки-------*/
.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #222035;
    padding: 0 0 40px 0;
    text-align: center;
}
/*------Преимущества--------*/
.main-benefits {
    background: #f4f4f4;
    padding: 60px 0;
    margin-bottom: 60px;
}
.main-benefits__block {
    grid-gap: 15px;
    grid-template-columns: repeat(5, 1fr);
    display: grid;
}
.benefits-block__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    transition: transform 0.3s ease;
}
.benefits-block__item:hover {
    transform: scale(1.05);
    /* Увеличивает размер блока при наведении мыши */
}
.benefits-block__item img {
    height: 110px;
}
.benefits-block__item p {
    font-size: 16px;
    color: #ffffff;
}
.navy-blue-bg {
    background: #01366a;
}
.light-green-bg {
    background: #95c93d;
}
.orange-bg {
    background: #ffbe00;
}
.ocean-blue-bg {
    background: #009fe3;
}
.light-blue-bg {
    background: #4472c4;
}
/*---------Каталог на главной-------*/
.main-catalog__block {
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}
.catalog-block__item {
    text-align: center;
    margin-bottom: 60px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.catalog-block__item:hover img {
    -webkit-transform: scale(1.1);
}
.catalog-block__item:hover p {
    color: #ffbe00;
}
.catalog-block__item img {
    height: 180px;
    margin-bottom: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.catalog-block__item p {
    font-size: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
/*----------О нас на главной-------*/
.main-about {
    background: #f4f4f4;
    padding: 60px 0;
}
.main-about__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-block__info {
    width: calc(50% - 30px);
}
.about-block__info img {
    height: 80px;
    margin-bottom: 25px;
}
.about-block__info p {
    font-size: 18px;
    line-height: 28px;
}
.about-block__img {
    width: calc(50% - 30px);
}
.about-block__img img {
    width: 100%;
}
/*---------Партнёры на главной--------*/
.main-partners {
    padding: 60px 0;
}
.partners-carousel {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.partners-carousel-item img {
    height: 70px;
    width: auto !important;
    margin: 0 auto;
}
/*-------Отзывы на главной--------*/
.main-reviews {
    padding: 60px 0;
}
.main-serts {
    padding: 60px 0;
    background: #f4f4f4;
}
.reviews-carousel-item img {
    height: 280px;
    width: auto !important;
    margin: 0 auto;
    border: 2px solid #ffbe00;
    padding: 7px;
    object-fit: contain;
}
.reviews-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.reviews-carousel .owl-nav button {
    pointer-events: all;
    background: none;
    border: none;
    font-size: 40px !important;
    color: #ffbe00 !important;
}
.reviews-carousel .owl-nav button span,
.reviews-carousel .owl-nav button i {
    font-size: 40px !important;
}
/*-----Хлебные крошки внутри карточки товара----------*/
.breadcrumb {
    background: #f4f4f4;
    padding: 16px 0 16px;
}
.breadcrumb a {
    color: #696969;
    font-size: 16px;
}
.breadcrumb a:hover {
    color: #ffbe00;
}
.breadcrumb span {
    margin: 0 3px;
    color: #696969;
}
.breadcrumb strong {
    color: #171718;
}
/*---------Галерея и информация о товаре---------*/
.cart-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 100px 0 30px 0;
    position: relative;
}
.cart-block__images {
    width: 550px;
    padding-right: 30px;
}
/*------Галерея товаров---------*/
.cart-block__gallery {
    position: relative;
    cursor: pointer;
}
.cart-block__gallery i {
    position: absolute;
    color: #d7d7d7;
    z-index: 2;
    font-size: 35px;
}
.gallery-product-item {
    height: 400px;
    width: 450px !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
}
.owl-thumb-item {
    border: 3px solid transparent;
    border-radius: 6px;
    background: #fff;
    height: 60px;
    width: 60px;
}
.owl-item.active .owl-thumb-item {
    border-color: #cccac4;
}
.owl-item.active.synced button {
    border: 3px solid #ffbe00 !important;
}
.owl-thumb-item img {
    height: 40px;
}
.navigation-thumbs {
    margin-top: 25px;
}
.navigation-thumbs .owl-item {
    margin-right: 0 !important;
}
/*--------Информация о товаре--------*/
.cart-block__info {
    flex: 1;
}
.cart-block__info strong {
    color: #696969;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
}
.cart-block__icon ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.cart-block__icon ul li {
    margin: 0 5px;
}
.cart-block__icon ul li a {
    font-size: 35px;
    color: #696969;
}
.cart-block__icon ul li a:hover,
.cart-block__icon ul li a.active {
    color: #ffbe00;
}
.cart-info__price {
    margin-bottom: 15px;
}
.cart-info__price p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}
.cart-info__price span {
    color: #696969;
    margin-bottom: 10px;
    display: block;
}
.cart-info__add {
    margin-bottom: 20px;
}
.cart-info__add a {
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    padding: 9px 31px;
    border-radius: 35px;
    display: inline-block;
    color: #171718;
}
.cart-info__add a:hover {
    color: #ffbe00;
}
.cart-info__text {
    margin-bottom: 20px;
}
.cart-info__text p {
    color: #696969;
    display: block;
}
.cart-info__feedback {
    padding: 20px 0;
}
.cart-info__feedback ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.cart-info__feedback ul li {
    margin-right: 20px;
}
.cart-info__feedback ul li:first-child a img {
    height: 55px;
}
.cart-info__feedback ul li a img {
    height: 45px;
}
.info-feedback__link {
    font-weight: 300 !important;
    border: 2px solid #00a435;
    padding: 9px 66px;
    border-radius: 35px;
    display: inline-block;
    color: #171718;
    margin-top: 10px;
}
.info-feedback__link:hover {
    color: #00a435;
}
/*---------Табы в карточке товара-------*/
.cart-tabs {
    background: #f4f4f4;
    padding: 40px 0;
}
.idTabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.idTabs ul {
    background: #ebebeb;
    float: left;
}
.idTabs li {
    list-style: none;
    float: left;
}
.idTabs a {
    display: block;
    background: #ebebeb;
    color: snow;
}
.idTabs a.selected {
    background: #FFF;
    color: #000;
}
.items>div {
    display: none;
    float: left;
}
.idTabs ul {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.idTabs ul li a {
    padding: 20px 40px;
    font-size: 18px;
    color: #696969;
    font-weight: 500;
    border-top-left-radius: 7px;
}
.idTabs ul li a.selected {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.idTabs .items {
    background: #fff;
    padding: 40px 40px;
}
.idTabs .items div {
    width: 100%;
}
.idTabs .items p {
    color: #696969;
}
.idTabs .items p:not(:last-of-type) {
    margin-bottom: 20px;
}
.idTabs .items table {
    width: 50%;
}
.idTabs .items table tr {
    background: #f2f2f2;
    color: #696969;
    font-weight: 500;
}
.idTabs .items table tr:nth-child(2n) {
    background: #fff;
}
.idTabs .items table tr td {
    padding: 10px;
}
.idTabs .items a {
    background: #fff;
    color: #1200ff;
    font-weight: 500;
    display: inline;
    font-size: 20px;
}
.idTabs .items section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.idTabs .items section iframe {
    margin: 0 10px;
}
.idTabs .items .ytp-chrome-top.ytp-show-cards-title {
    display: none;
}
/*-------Страница товаров и фильтр---------*/
.archive-products {
    /*margin-top: 100px;*/
    background: #f4f4f4;
    padding: 10px 0 50px 0;
}
.archive-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.archive-list__heading {
    display: flex;
}
.archive-block__description {
    padding-top: 25px;
    font-size: 16px !important;
}
.archive-block__description * {
    font-size: 16px !important;
}
/*---Фильтр продуктов---*/
.archive-list__filter {
    width: calc(19.16667% - 30px);
}
.archive-list__filter h4 {
    color: #696969;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}
.archive-list__filter ul {
    /*margin-top: 20px;*/
}
.archive-list__filter ul li:not(:last-child) {
    padding-bottom: 15px;
}
.archive-list__filter ul li a {
    color: #696969;
    font-size: 16px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
}
.archive-list__filter ul li a:hover,
.archive-list__filter ul li.current-menu-item a,
.archive-list__filter ul li.active a {
    color: #ffbe00;
}
.filter-reset {
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    padding: 12px 31px;
    border-radius: 35px;
    display: block;
    text-align: center;
    margin-bottom: 25px;
    color: #171718;
}
.filter-reset:hover {
    color: #ffbe00;
}
/*--------Аккордеон меню-------*/
.filter-accordion {
    margin-bottom: 15px;
}
.accordion-btn {
    position: relative;
    width: 100%;
    color: #696969;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #f4f4f4;
}
.accordion-btn i {
    color: #cecece;
    font-size: 20px;
    margin-bottom: 15px;
}
.accordion-btn:hover {
    color: #ffbe00;
}
.accordion-btn:hover i {
    color: #ffbe00;
}
.accordion-btn span {
    position: absolute;
    background: #ffffff;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.accordion-line:nth-child(1) {
    top: 50%;
    right: 44px;
    width: 16px;
    height: 4px;
}
.accordion-line:nth-child(2) {
    top: 39%;
    right: 50px;
    width: 4px;
    height: 16px;
}
.accordion-line.active:nth-child(1) {
    opacity: 0;
}
.accordion-line.active:nth-child(2) {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.accordion-list,
.accordion-list-js {
    background: #f7f7f7;
    color: #333333;
}
.accordion-list {
    display: none;
    margin-bottom: 20px;
}
.accordion-list-js {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.accordion-list-js.open {
    height: 275px;
    opacity: 1;
    visibility: visible;
}
.accordion-item {
    padding: 8px 15px;
    background: #f4f4f4;
}
.accordion-item a {
    color: #696969;
}
.accordion-item a:hover {
    color: #ffbe00;
}
/*-----------------------------*/
/*-----------Список продуктов--------*/
.archive-list__product {
    width: calc(79.16667% - 30px);
}
.archive-list__product h1 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    flex: 1;
}
.list-products {
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    margin-bottom: 15px;
}
.item-product {
    background: #fff;
    text-align: center;
    position: relative;
    padding: 40px 20px 30px 20px;
    display: flex;
    flex-direction: column;
}
.item-product img {
    height: 140px;
    margin-bottom: 20px;
}
.item-product p {
    font-size: 18px;
    color: #696969;
    font-weight: 500;
    margin-bottom: 15px;
    min-height: 80px;
}
.list-product-name {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}
.item-product__more {
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    padding: 12px 31px;
    border-radius: 35px;
    display: inline-block;
    text-align: center;
    color: #171718;
}
.item-product a:hover {
    color: #ffbe00;
}
.item-product__tops {
    position: absolute;
    top: 7px;
    left: 7px;
    background: #ffbe00;
    color: #fff;
    padding: 5px 19px;
    font-size: 17px;
    border-radius: 6px;
}
.item-product__icons {
    position: absolute;
    top: 10px;
    right: 7px;
}
.item-product__icons ul li a {
    border: none;
    padding: 0;
    font-size: 25px;
    color: #696969;
}
.item-product__icons ul li a.active {
    color: #ffbe00;
}
.list-product-attrs{display: flex;flex-direction: column;gap: 8px;flex: 1;
    margin-bottom: 15px;}
.list-product-attr{display: flex;gap: 7px;
    font-size: 14px;
    color: #696969;
    font-weight: 400;}
.list-product-attr > div{text-align: left;}
.list-product-attr > div:nth-child(2){flex: 1}
.list-product-price{
    text-align: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}
/*---------Корзина-------*/
.basket {
    background: #f4f4f4;
}
.basket-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 40px;
}
.basket-block h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.basket-list {
    width: calc(66.66667% - 30px);
}
.basket-list ul {
    margin-bottom: 10px;
}
.basket-list ul li {
    border-bottom: 3px solid #f4f4f4;
}
.basket-list ul li:last-child {
    border-bottom: none;
}
.basket-order {
    width: calc(33.33333% - 30px);
}
.basket-list__product {
    background: #fff;
}
.basket-list__clear {
    color: #ffbe00;
    padding: 25px;
    display: inline-block;
    font-weight: 600;
}
.basket-list__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.basket-list__block-one {
    width: calc(50% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.basket-list__block-two {
    width: calc(25% - 30px);
}
.basket-list__block-three {
    width: calc(25% - 30px);
    text-align: center;
}
.basket-list__blocks {
    padding: 15px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.basket-list__blocks p {
    color: #696969;
    font-size: 16px;
}
.basket-list__blocks img {
    height: 100px;
    margin-right: 20px;
}
.basket-list__name {
    font-size: 20px !important;
    font-weight: 700;
    color: #000 !important;
}
.basket-list__qant {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.basket-list__change {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    background: #f4f4f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 7px;
    border-radius: 50px;
}
.basket-list__qant span {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    background: #f4f4f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 7px;
    border-radius: 50px;
}
.basket-list__qant span:nth-child(2) {
    background: #fff;
    cursor: inherit;
}
.basket-list__remove {
    font-size: 25px;
    cursor: pointer;
    margin-left: 20px;
    color: #000;
}
.basket-list__price {
    font-size: 20px !important;
    font-weight: 700;
    color: #000 !important;
}
.basket-order__block {
    background: #fff;
    padding-bottom: 25px;
}
.basket-order__head {
    border-bottom: 3px solid #f4f4f4;
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.basket-order__qant {
    color: #696969;
    font-size: 16px;
}
.basket-order__price {
    font-weight: 700;
    font-size: 16px;
}
.basket-order__pay {
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.basket-order__pay p {
    font-weight: 700;
}
.basket-pay__peice {
    font-size: 18px;
}
.basket-order__add {
    text-align: center;
    display: block;
}
.basket-order__add {
    display: block;
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    padding: 9px 31px;
    border-radius: 35px;
    color: #171718;
    margin: 0 17px 25px 17px;
}
.basket-order__add:hover {
    color: #ffbe00;
}
.basket-order__feedback {
    text-align: center;
    display: block;
    font-weight: 300 !important;
    border: 2px solid #00a435;
    padding: 9px 31px;
    border-radius: 35px;
    color: #171718;
    margin: 0 17px 0 17px;
}
.basket-order__feedback:hover {
    color: #00a435;
}
.basket-order__social {
    text-align: center;
    margin-bottom: 20px;
}
.basket-order__social p {
    color: #696969;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
}
.basket-order__social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.basket-order__social ul li {
    margin: 0 7px;
}
/*--------Стили для подвала сайта------*/
footer {
    padding: 40px 0;
}
.footer-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-block__item {
    width: calc(21.66667% - 30px);
}
.footer-block__item img {
    height: 70px;
    margin-bottom: 20px;
}
.footer-block__item p {
    color: #696969;
    font-size: 18px;
}
.footer-block__item p strong {
    color: #171718;
    margin-bottom: 10px;
    display: block;
}
.footer-block__item p span {
    color: #171718;
    margin-bottom: 10px;
    display: block;
}
.footer-block__item p a {
    color: #171718;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
    font-family: 'Roboto', sans-serif;
}
.footer-block__item p a:hover {
    color: #ffbe00;
}
.footer-block__item ul li {
    margin-bottom: 5px;
    list-style: square;
}
.footer-block__item ul li a {
    color: #171718;
}
.footer-block__item ul li a:hover,
.footer-block__item ul li.current-menu-item a,
.footer-block__item ul li.current-category-ancestor a,
.footer-block__item ul li.active a {
    color: #ffbe00;
}
.footer-block__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}
.footer-block__social li {
    margin-right: 10px;
    list-style: none !important;
}
.footer-block__social li a img {
    height: 25px;
    width: auto;
}
.footer-block__time {
    font-weight: 500;
    color: #171718 !important;
}
.footer-block__number {
    margin-top: 20px;
}
.footer-block__number a {
    color: #171718;
    font-size: 20px;
    margin-bottom: 0 !important;
    line-height: 5px;
}
.footer-block__feedback {
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    padding: 17px 50px;
    border-radius: 35px;
    display: inline-block;
    background-color: #FFA000;
    color: #000;
}
/* Pagination
----------------------------------------*/
.pagination {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination >* {
    background-color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    min-width: 40px;
    min-height: 40px;
}
.pagination .prev>,
.pagination .next> {
    font-size: 18px;
}
.pagination .current {
    color: #fff;
    background-color: #ffbe00;
}
/* Page
----------------------------------------*/
.page {
    margin-top: 100px;
    min-height: 400px;
    border-bottom: 48px #f4f4f4 solid;
    padding: 30px 0;
}
.page__title {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 25px;
}
.page__form {
    width: 40%;
}
/* Left filter
----------------------------------------*/
.left-filter__query {
    width: 100%;
    border: 2px solid #cdcdcd;
    padding: 10px;
    border-radius: 20px;
    color: #696969;
    margin-bottom: 25px;
}
.left-filter__label {
    display: flex;
    align-items: center;
}
.left-filter__input {
    margin-right: 10px;
}
.left-filter__name {
    cursor: pointer;
    font-size: 14px;
}
.left-filter__name:hover {
    text-decoration: underline;
}
.left-filter__input:checked+.left-filter__name {
    text-decoration: underline;
}
.left-filter__hidden {
    display: none;
}
/* Product gallery
----------------------------------------*/
.product-gallery {
    margin-bottom: 40px;
    max-width: 450px;
}
.product-gallery__main {
    height: 400px;
    background: no-repeat 50% / contain;
    margin-bottom: 30px;
    display: block;
}
.product-gallery__list {
    grid-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    display: grid;
}
.product-gallery__thumb {
    height: 65px;
    cursor: pointer;
    border: 2px solid #cccac4;
    padding: 5px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery__thumb-image {
    background: no-repeat 50% / contain;
    width: 45px;
    height: 45px;
}
.product-gallery__thumb--active {
    border-color: #ffbe00;
}
/* Nprogress
----------------------------------------*/
#nprogress .bar {
    background-color: #ffbe00;
}
#nprogress .peg {
    box-shadow: 0 0 10px #ffbe00, 0 0 5px #ffbe00;
}
/* Compare
----------------------------------------*/
.compare__row {
    display: flex;
}
.compare__left {
    width: auto;
    position: relative;
    z-index: 2;
    box-shadow: 2px 0 4px rgba(0, 0, 0, .12);
}
.compare__right {
    flex: 1;
    overflow-x: auto;
}
/* Compare table
----------------------------------------*/
.compare-table {
    border-collapse: collapse;
}
.compare-table .compare-table__value,
.compare-table td {
    padding: 15px;
    font-size: 14px;
    border: 1px solid #d9d9d9;
}
.compare-table .compare-table__value{border-bottom: none;border-left: none;border-right: none;}
.compare__right .compare-table td{padding: 0}
.compare-table--value td {
    border-left: none !important;
}
.compare-table tr:nth-child(even) td,
.compare-table .compare-table__value:nth-child(even) {
    background-color: #f2f2f2;
}
.compare-table__key {
    width: 250px;
}
.compare-table__value {
    text-align: center;
    font-weight: 700;
}
/* Compare heading
----------------------------------------*/
.compare-heading {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.compare-heading__add {
    font-weight: 300;
    border: 2px solid #ffbe00;
    padding: 9px 31px;
    border-radius: 35px;
    display: inline-block;
    color: #171718;
}
.compare-heading__add:hover {
    color: #ffbe00;
}
.compare-heading__link {
    color: #000;
    display: inline-block;
}
/* Compare product
----------------------------------------*/
.compare-product {
    text-align: center;
    min-width: 236px;
    padding: 25px 15px 15px 15px;
    position: relative;
    min-height: 250px;
}
.compare-product__image {
    height: 100px;
    margin-bottom: 20px;
    width: auto;
}
.compare-product__name {
    color: #696969;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 20px;
}
.compare-product__price {
    font-weight: 700;
    line-height: 20px;
}
.compare-product__remove {
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    color: #696969;
}
.compare-product__remove:hover {
    color: #ffbe00;
}
/* Site form
----------------------------------------*/
.site-form__item {
    margin-bottom: 25px;
}
.site-form__label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}
.site-form__input {
    width: 100%;
    max-width: 100%;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.site-form__button {
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    padding: 12px 31px;
    border-radius: 35px;
    display: inline-block;
    text-align: center;
    margin-bottom: 25px;
    color: #171718;
    background-color: transparent;
    font-size: 14px;
}
.site-form__button:hover {
    color: #ffbe00;
}
.site-form__button--gray {
    border-color: #ccc;
    color: #000;
}
.site-form__button--gray:hover {
    text-decoration: underline;
}
.site-form__button:not(:last-child) {
    margin-right: 5px;
}
.site-form__error:not(:empty) {
    color: #e53935;
    padding-top: 5px;
    font-size: 14px;
}
.site-form__captcha {
    height: 50px;
    margin-bottom: 10px;
}
/* Typography
----------------------------------------*/
.typography,
.typography * {
    line-height: 1.5;
    font-size: 14px;
}
.typography>p {
    margin-bottom: 15px;
}
.typography h2 {
    font-size: 1.5em !important;
    font-weight: 600;
    margin-bottom: 15px;
}
.typography>*:last-child {
    margin-bottom: 0;
}
.typography table {
    width: 100% !important;
    table-layout: fixed;
    margin-bottom: 20px;
}
.typography ul,
.typography ol {
    float: none;
    background: none;
    padding-left: 30px;
    margin-bottom: 20px;
}
.typography li {
    float: none;
    list-style: inherit;
}
.typography li:not(:last-child) {
    margin-bottom: 10px;
}
/* Empty cart
----------------------------------------*/
.empty-cart {
    text-align: center;
}
.empty-cart__text {
    font-size: 20px;
    margin-bottom: 20px;
}
.empty-cart__button {
    font-weight: 300 !important;
    border: 2px solid #ffbe00;
    display: inline-block;
    padding: 12px 31px;
    border-radius: 35px;
    text-align: center;
    margin-bottom: 25px;
    color: #171718;
    background-color: transparent;
    font-size: 14px;
}
.empty-cart__button:hover {
    color: #ffbe00;
}
/* Select sorter
----------------------------------------*/
.select-sorter__input {
    border: 2px solid #cdcdcd;
    padding: 9px 10px;
    border-radius: 20px;
}
.cart-block__title h1,
.cart-block__title h2 {
    color: #171718;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}
/* Product accordion
----------------------------------------*/
.product-acc .items {
    padding: 0 !important;
}
.product-acc .items>div {
    display: block;
    float: none;
}
.product-acc__heading {
    color: #696969;
    font-weight: 500;
    padding: 12px 13px;
    font-size: 12px;
    text-align: center;
    background: #ebebeb;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.product-acc__item--active .product-acc__heading {
    background: #fff;
    color: #000;
}
.product-acc__body {
    display: none;
    padding: 15px;
}
.product-acc__body .typography {
    color: #696969;
}
/* Main video
----------------------------------------*/
.main-video {
    /*margin-top: 100px; */
    /* Замените 100px на высоту вашей шапки */
    height: 31.5vw;
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.main-video__mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .65);
    z-index: 2;
}
.main-video__logo {
    width: 200px;
    position: relative;
    z-index: 3;
    margin-bottom: 15px;
}
.main-video__heading {
    position: relative;
    z-index: 3;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1.7;
}
.main-video__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Alert
----------------------------------------*/
.alert {
    padding-top: 15px;
}
.alert-text {
    padding: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.alert-success .alert-text {
    background-color: #66bb6a;
}
.alert-danger .alert-text {
    background-color: #ef5350;
}
.helper {
    max-width: 500px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 20px -10px #333;
    box-shadow: 0 0 20px -10px #333;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    background: #fff;
    position: fixed;
    right: 30px;
    bottom: 120px;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    visibility: 0;
    z-index: -1;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.helper.active {
    opacity: 1;
    visibility: 1;
    z-index: 99;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.helper__close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    width: 15px;
}
.helper__close:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.helper__manager {
    width: 18%;
    margin-right: 4%;
}
.helper__inner {
    width: 78%;
}
.helper__title {
    font-weight: 800;
    text-transform: uppercase;
}
.helper__text {
    margin: .4rem 0;
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
}
.helper__button {
    background-color: #323232;
    text-transform: uppercase;
    font-size: .8rem;
}
.helper__button:hover {
    border-color: #000;
}
.helper__contacts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.helper__contacts-item {
    color: #323232;
    font-size: 1.8rem;
    margin-left: 1rem;
}
.helper__contacts-item:hover {
    color: #000;
}
.mychats-wrapper {
    position: fixed;
    width: 72px;
    bottom: calc(10% - 4.2px);
    right: calc(7% - 4.2px);
    outline: 0;
    outline-offset: 0;
    z-index: 995;
}
.mychats-wrapper a {
    -webkit-tap-highlight-color: transparent;
}
.mychats-wrapper .mybtn-chats {
    width: 72px;
    height: 72px;
    position: absolute;
    bottom: 0;
    background-size: 100% auto;
    cursor: pointer;
    transition: 0.5s;
    display: block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.mychats-wrapper .mybtn-chats-main {
    background-image: url("../img/is_online.webp");
    z-index: 996;
    background-repeat: no-repeat;
    background-position: bottom center;
    animation: 2s ease 0s infinite normal none running pulsate;
    border-radius: 50%;
}
.mychats-wrapper .mybtn-chats-main.online {
    background-position: top center;
}
.mychats-wrapper .mybtn-chats:hover {
    transform: scale(1.05);
}
.mychats-wrapper .mybtn-chats .c-text-info {
    font-family: SamsungOne, arial, sans-serif;
    position: absolute;
    font-size: 13px;
    border: 1px solid #e2e2e2;
    padding: 4px 9px 6px;
    margin: auto 14px auto 0;
    border-radius: 4px;
    color: #333;
    background: #fff;
    top: 12px;
    right: 52px;
    box-shadow: rgb(0 0 0 / 20%) 2px 2px 5px;
    white-space: nowrap;
    z-index: 997;
    line-height: 15px;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
    display: block;
}
.mychats-wrapper .mybtn-chats:hover .c-text-info {
    opacity: 1;
    visibility: visible;
}
.mychats-wrapper .mybtn-chats:not(.mybtn-chats-main) {
    opacity: 0;
    width: 56px;
    height: 56px;
    left: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.mychats-wrapper .mybtn-chats-main .c-text-info {
    opacity: 1;
    visibility: visible;
    padding-right: 24px;
    right: 100%;
    top: 6px;
}
.mychats-wrapper .mybtn-chats.fade-in {
    animation: fadeIn 1s;
    opacity: 1;
}
.mychats-wrapper .mybtn-chats-fb {
    background-image: url("../img/icons/chat_youtube_icon.png");
}
.mychats-wrapper .mybtn-chats-tel {
    background-image: url("../img/icon/chat_tel_icon.png");
}
.mychats-wrapper .mybtn-chats-telegram {
    background-image: url("../img/icon/telegram-icon.svg");
}
.mychats-wrapper .mybtn-chats-instagram {
    background-image: url("../img/icon/telegram-icon.svg");
}
.mychats-wrapper .mybtn-chats-wpp {
    background-image: url("../img/icon/whatsap-icon.svg");
}
.css-fq4u93 {
    position: relative;
    flex: 0 0 auto;
    height: 8px;
    width: 8px;
    fill: rgb(255, 255, 255);
}
.mychats-wrapper .mybtn-chats-main .c-text-info-close {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    position: absolute;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 0;
    background-color: #313131;
    height: 16px;
    width: 16px;
    top: 4px;
    right: 4px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes pulsate {
    from {
        box-shadow: rgba(0, 195, 22, .6) 0 0 0 0;
    }
    to {
        box-shadow: rgba(0, 195, 22, 0) 0 0 0 10px;
    }
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.modal-window {
    background: #fff;
    padding: 40px 30px 30px 30px;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    position: relative;
}
.modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 26px;
}
.page {
    margin-top: 0;
    border-bottom: none;
    padding: 0;
}
.page__form {
    width: 100%;
}
#callback-message.success {
    color: #1c8b2c;
    font-weight: bold;
}
#callback-message.error {
    color: #b70000;
    font-weight: bold;
}


.how-we-work {
  padding: 60px 0;
  background: #f4f4f4;
}

.how-we-work__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.how-we-work__title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
  text-align: left;
}

.how-we-work__subtitle {
  margin: 0 0 30px;
  max-width: 640px;
  color: #666;
}

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

.how-we-work__step {
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.how-we-work__step-number {
  font-size: 20px;
  font-weight: 700;
  color: #ffbe00;
  margin-bottom: 10px;
}

.how-we-work__step-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.how-we-work__step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 1024px) {
  .how-we-work__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .how-we-work {
    padding: 40px 0;
  }

  .how-we-work__title {
    font-size: 26px;
  }

  .how-we-work__steps {
    grid-template-columns: 1fr;
  }
}

.questions-block {
  padding: 60px 0;
  background: #111827;
  color: #fff;
}

.questions-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.questions-block__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
}

.questions-block__subtitle {
  margin: 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.7);
}

/* CF7 в этом блоке */
.questions-block .wpcf7-form > span {
  margin-bottom: 12px;
}

.questions-block .wpcf7-form-control-wrap {
  display: block;
}

.questions-block input[type="text"],
.questions-block input[type="tel"],
.questions-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 14px;
}

.questions-block textarea {
  min-height: 110px;
  resize: vertical;
}

.questions-block input[type="text"]::placeholder,
.questions-block input[type="tel"]::placeholder,
.questions-block textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.questions-block input[type="submit"] {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  background: #ff6b00;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.questions-block input[type="submit"]:hover {
  background: #ff7f24;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
  transform: translateY(-1px);
}

.questions-block input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}
.faqs_bloks{display: flex;flex-direction: column;gap: 10px;}
.faq_bloks{background: #f4f4f4;border-radius: 10px;}
.faq_name{cursor: pointer;display: flex;justify-content: space-between;gap: 20px;padding: 20px;color: #000000;font-size: 22px;font-weight: 400;line-height: 30.8px;}
.faq_name svg path{transition: all .5s;stroke:#ffbe00;}
.faq_bloks.activ .faq_name svg path{stroke:#ffbe00;}
.faq_bloks .faq_name svg {transition: all .5s;}
.faq_bloks.activ .faq_name svg {transform: rotate(180deg);}
.faq_ansver{padding: 0 20px 20px;color: #000000;}
.faq_ansver p{color: #000000;font-size: 18px;font-weight: 400;line-height: 27px;}
.main-title + .articles{margin-top: 0}
.articles {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.article {
    width: 100%;
    box-shadow: 0px 0px 14.5px 0px #E07B1C1F;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    max-width: 345px;
}
.article > a >img {
    display: block;
    margin-bottom: 20px;
    border-radius: 20px;
    width: 100%;
    height: auto;
}
.article_info_left {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
}
.article_name {
    font-weight: 700;
    font-size: 20px;
    line-height: 114%;
    color: #E07B1C;
    margin-bottom: 10px;
    display: block;
}
.article_desc {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #1A2022;
    margin-bottom: 30px;
}
.article_date {
    font-size: 14px;
    line-height: 20px;
    color: #1A202299;
    padding-left: 25px;
    background: url(../img/solar_calendar-outline.svg) no-repeat center left;
}
.availability {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 27px;
    text-align: center;
    color: #969696;
}
.availability span {
    background: #19E075;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    margin-right: 8px;
}
.availability div{margin-left: 5px}
.availabilitys{display: flex;}
.availability.availability_no span{background: #e01919;}
.availability.availability_pod span{background: #e0b919;}
.item-product .availabilitys {
    position: absolute;
    top: 9px;
}
.wpcr3_button_1{width: auto!important;}
blockquote {
    position: relative;
    padding: 20px 90px;
    font-size: 2.5rem;
    font-style: italic;
    color: #4d5255;
    min-height: 120px;
}
blockquote:before {
    position: absolute;
    content: "«";
    font-size: 7rem;
    left: 0;
    top: -37px;
    opacity: .2;
    font-style: normal;
}
blockquote:after {
    content: "»";
    font-size: 7rem;
    right: 0;
    position: absolute;
    bottom: 0;
    opacity: .2;
    font-style: normal;
}
blockquote, q {
    quotes: "" "";
}
#searchform {
    position: relative;
    width: 100%;
    max-width: 280px;
}
#searchform input {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 11.5px 25px;
    color: #333;
}
#searchform button {
    background: transparent;
    border: none;
    position: absolute;
    right: 20px;
    top: 13px;
    padding: 0;
}
@media (max-width: 900px) {
  .questions-block__inner {
    grid-template-columns: 1fr;
  }

  .questions-block__title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
.faq_section {padding: 30px 0 0;}
.faq_name{font-size: 17px;line-height: 23.8px;padding: 15px;}
.faq_ansver p{font-size: 16px;line-height: 24px;}
.faq_bloks .faq_name svg{width: 30px}
}