@import url('components.css');

body {
    margin: auto;
    touch-action: manipulation;
    position: relative;
    -webkit-text-size-adjust: 100%;
}


.errors_form {
    font-family: var(--basic_font_2);
    color: red;
}

.errors_form ul {
    list-style: none;
    text-decoration: none;
}

.href_label_info {
    text-decoration: none;
    color: #0f1346;
}

.href_label_info_footer {
    text-decoration: none;
    color: white;
}

.left_menu_label_info {
    font-size: 13px;
    text-decoration: none;
    color: #0f1346;
}

.body_body_overflow {
    margin: 0px;
    overflow: hidden;
}

#containerr {
    width: 75%;
    transition: 0.5s;
}

.backToTopBtn {
    visibility: hidden;
    opacity: 0;
    /* visibility: hidden; */
    position: fixed;
    /* Фиксированное положение */
    bottom: 50px;
    /* Отступ от нижнего края */
    right: 50px;
    /* Отступ от правого края */
    z-index: 99;
    /* Убедимся, что кнопка поверх других элементов */
    border: none;
    /* Убираем границу */
    outline: none;
    /* Убираем контур */
    background-color: var(--main_color);
    /* Цвет фона */
    color: white;
    /* Цвет текста */
    cursor: pointer;
    /* Курсор в виде указателя */
    padding: 15px;
    /* Внутренний отступ */
    border-radius: 10px;
    /* Закругленные углы */
    font-size: 18px;
    /* Размер текста */
    transition: 0.5s;
}

.fwowwo34 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.title_for_categories {
    font-family: var(--basic_font_2);
}


.recommendations {
    font-family: var(--basic_font_2);
    font-size: 27px;
    margin-left: 10px;
    margin-bottom: -15px;
}

.path {
    font-family: var(--basic_font_2);
    color: rgb(151, 151, 151);
    font-size: 15px;
    margin-bottom: 30px;
}

.product_counter {
    width: 22px;
    /* Минимальный размер */
    position: absolute;
    margin-left: 40px;
    margin-top: -5px;
    height: 22px;
    /* Минимальный размер */
    padding: 5px;
    /* Отступы для увеличения размера под контент */
    background-color: red;
    border-radius: 50%;
    color: white;
    display: none;
    /* Чтобы блок не растягивался на всю ширину */
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    box-sizing: border-box;
}

.product_counter_show {
    display: inline-flex;

}



.product_counter_mobile {
    width: 22px;
    /* Минимальный размер */
    position: absolute;
    margin-left: 15px;
    margin-top: -5px;
    height: 22px;
    /* Минимальный размер */
    padding: 5px;
    /* Отступы для увеличения размера под контент */
    background-color: red;
    border-radius: 50%;
    color: white;
    display: none;
    /* Чтобы блок не растягивался на всю ширину */
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    box-sizing: border-box;
}

.product_counter_show_mobile {
    display: inline-flex;

}





.left_menu {
    z-index: 3000;
    margin-top: 0px;
    width: 0%;
    height: 100%;
    position:fixed;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
}

.left_menu_show {
    z-index: 3000;
    width: 100%;
}

.left_menu_menu_default {
    border-top: 1px solid rgb(192, 192, 192);
    z-index: 3000;
    /* top: 141px; */
    transform: translateX(-100%);
    cursor:default;
    background-color: white;
    width: 450px;
    height: 100%;
    position:fixed;
    padding-left: 20px;
    padding-right: 20px;

}

@keyframes show_left_menu {
    from {transform: translateX(-100%);}
    to {transform: translateX(0);}
}


.left_menu_menu {
    border-top: 1px solid rgb(192, 192, 192);
    z-index: 3000;
    /* top: 141px; */
    position:fixed;
    background-color: white;
    width: 450px;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    animation: hide_left_menu 0.2s forwards;
}

@keyframes hide_left_menu {
    from {transform: translateX(0);}
    to {transform: translateX(-100%);}
}


.left_menu_menu_active {
    border-top: 1px solid rgb(192, 192, 192);
    z-index: 3000;
    /* top: 141px; */
    cursor:default;
    background-color: white;
    width: 450px;
    height: 100%;
    position: fixed;
    padding-left: 20px;
    padding-right: 20px;
    animation: show_left_menu 0.2s forwards;
    
}

@keyframes show_left_menu {
    from {transform: translateX(-100%);}
    to {transform: translateX(0);}
}

.list_left_menu {
    z-index: 3000;
    margin-top: 0px;
    list-style: none;
    font-weight: 500;
    font-family: var(--basic_font_2);
    padding-left: 0px;
}

.list_left_menu a {
    text-decoration: none;
    color: black;
}

.list_left_menu li {
    z-index: 3000;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 10px;
    display: block;
    border-bottom: 1px solid rgb(211, 211, 211);
    cursor: pointer;
}

.list_left_menu li:hover {
    color: var(--main_color);
}

.arrow {
    margin-top: 25px;
    float: right;
    opacity: 0.5;
    cursor: pointer;
}


@media screen and (max-width: 500px) {
    .left_menu_menu_active{
        width: 90%;
        overflow-y: scroll;
        height: 80%;
        
    }
}

@media screen and (max-width: 400px) {
    .left_menu_menu_active{
        height: 78%;
    }
}

@media screen and (max-width: 330px) {
    .left_menu_menu_active{
        height: 89%;
    }
}

.pages {
   display: block;
   font-family: var(--basic_font_2);
   color: black;
   text-decoration: none;
   margin-top: 6px;
   font-weight: 400;
}

.pages:hover {
   color: var(--hover_main_color);
}







.burger {
    width: 25px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;

    left: 0;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger span:nth-child(3) {
    bottom: 0;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
    margin-top: -1px;
}

.message_info {
    background-color: rgb(255, 250, 176);
    font-family: var(--basic_font_2);
    padding: 15px;
    margin-top: 20px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 18px;
}

@media screen and (max-width: 450px) {
    .backToTopBtn {
        padding: 9px;
        right: 25px;
        bottom: 25px;
    }
}



@media screen and (max-width: 1000px) {
    .fkjh39f {
        display: none;
    }
    .title_for_categories {
        margin-left: 9px;
    }
    .fwowwo34 {
        margin-left: 9px;
        padding-bottom: 0px;
    }
}

/* Компактное меню */
.user-menu-compact {
    position: absolute;
    top: 65px;
    right: 20px;
    width: 220px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.user-menu-compact.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Заголовок меню */
.menu-header {
    padding: 12px 16px;
    background-color: #101113;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Список пунктов меню */
.menu-items {
    list-style: none;
    padding: 1px 0;
    max-height: 320px;
    overflow-y: auto;
}

.menu-items::-webkit-scrollbar {
    width: 4px;
}

.menu-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.menu-items::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 2px;
}

.menu-item {
    margin: 2px 0;
}

.menu-item a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #1c1f24;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.menu-item a:hover {
    background: #f9fafb;
    color: #4f46e5;
    border-left-color: #4f46e5;
    padding-left: 20px;
}

.menu-item i {
    width: 18px;
    margin-right: 10px;
    font-size: 14px;
    text-align: center;
    color: #6b7280;
}

.menu-item a:hover i {
    color: #4f46e5;
}

.menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 6px 16px;
}

@media (max-width: 480px) {

    .demo-container {
        max-width: 100%;
        padding: 15px;
    }

    .user-icon-compact {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 15px;
        right: 15px;
    }

    .user-menu-compact {
        width: calc(100vw - 30px);
        max-width: 280px;
        right: 15px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .user-menu-compact {
        width: calc(100vw - 20px);
        max-width: 260px;
    }

    .menu-item a {
        padding: 8px 12px;
        font-size: 12px;
    }

    .menu-header {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* Анимация для пунктов меню */
.menu-item {
    opacity: 0;
    transform: translateX(10px);
    animation: slideInRight 0.2s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Закрытие при клике вне меню */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 99;
    display: none;
}

.menu-overlay.active {
    display: block;
}

.average_header_scroll {
    display: none;
    backdrop-filter: blur(10px);
    background-color: rgba(243, 243, 243, 0.692);
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%; /* Шапка займёт всю ширину окна браузера */
    z-index: 5000;
}

.average_header_scroll input {
    margin-top: 15px;
}


.ul_header {
    list-style: none;
    padding: 0; 
    margin: 0;
    display: flex;
    font-family: var(--basic_font_2);
    font-size: 16px;
    cursor: pointer;
}

.ul_header a {
    text-decoration: none;
    color: black;
}





.related-link {
    font-family: var(--basic_font_2);
    color: var(--main_color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-link:hover {
    text-decoration: underline;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.fdgsh {
    font-family: "Great Vibes";
    color: #154399;
    font-size: 35px;
    margin-top: 0px;
    display: block;
    float: left;
    /*margin-top: 45px;*/
    /*margin-left: -20px;*/
    margin-top: 40px; 
    margin-left: -18px;
}

.ul_header li {
    margin-left: 15px;
    margin-top: 12px;
}

.ul_header li:hover {
    color: var(--main_color);
}

.telephone {
    font-family: var(--basic_font_2);
}

.post {
    font-family: var(--basic_font_2);
    margin-top: 15px; 
    margin-left: 35px;
    color: black;
    margin-top: 14px;
    display: block;
}

.down {
    width: 11px;
    height: 11px;
    margin-left: 5px;
    transition: transform 0.5s;
    margin-top: 19px;
}

.order_call, .order_call_contact_info {
    background-color: var(--main_color);
    color: white;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
    border-radius: 8px;
    width: 125px;
    height: 28px;
    border: 0px;
    transition: 0.2s;
}

.order_call_contact_info {
    width: 100%;
    height: 40px;
    font-size: 16px;
    margin-top: 35px;
}

.order_call_contact_info:hover {
    background-color: var(--hover_main_color);
}

.order_call:hover {
    background-color: var(--hover_main_color);
}

.upper_header {
    height: 50px;
    border-bottom: 1px solid rgb(228, 227, 227);
}

.average_header {
    height: 90px;
    box-shadow: 4px 3px 4px rgb(235, 235, 235);
}

.logo {
    width: 90px;
    height: 90px;
    float: left;
}

.logo2 {
    width: 80px;
    height: 80px;
    margin-bottom: -15px;
}

.logo_scroll {
    width: 80px;
    height: 80px;
    float: left;
}

.catalog_button, .catalog_button_scroll {
    border: 0px;
    background-color: var(--main_color);
    width: 125px;
    height: 48px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
    margin-right: 20px;
    transition: 0.2s;
    margin-top: 20px;
}

.catalog_button:hover {
    background-color: var(--hover_main_color);
}

.catalog_button_scroll:hover {
    background-color: var(--hover_main_color);
}

.inscription {
    margin-left: 40px;
    float: left;
    font-size: 14px;
    margin-top: 2px;
}

.form_search {
    border: 1px solid rgb(180, 180, 180);
    border-radius: 10px;
    width: 65%;
    height: 48px;
    padding-right: 30px;
    float: left;
    margin-top: 20px;
    font-family: var(--basic_font_2);
    font-size: medium;
}

.button_search, #button_search {
    border: 0px;
    background-color: rgba(0, 0, 0, 0);
    float: left;
    margin-left: 0px;
    height: 38px;
    margin-top: 25px;
    cursor: pointer;
}


#button_search {
    margin-top: 20px;
}

.icon_search {
    margin-left: 0px;
    height: 38px;
    margin-top: 0px;
    cursor: pointer;
}

.holder_icon {
    margin-top: 20px;
    height: 48px;
    width: 100%;   
}

.holder_icon a {
    text-decoration: none;
    color: black;
}

.holder_holder_icon:hover span{
    color: #4271c9;
}

.holder_name {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.holder_holder_icon_user:hover .span_icon{
    color: #4271c9;
}

.fffffff {
    fill: rgb(0, 0, 0);
    width: 25px;
    height: 25px;
    display: block;
    margin-left : auto; 
    margin-right : auto;
    margin-bottom: -15px; 
}


.holder_holder_icon:hover .fffffff {
    fill: var(--main_color);
}

.holder_holder_icon_user:hover .fffffff {
    fill: var(--main_color);
}

.holder_icon_scroll {
    margin-top: 13px;
}

.holder_icon_scroll a {
    text-decoration: none;
    color: black;
}

.holder_holder_icon_user {
    max-width: 100px;
    height: 48px;
    font-family: var(--basic_font_2);
    float: right;
    font-size: 14px;
    size: 10px;
    margin-left: 12px;
    margin-right: 0px; 
    cursor: pointer;   
    text-overflow: ellipsis;
}

.holder_holder_icon, .holder_holder_icon_scroll {
    height: 48px;
    font-family: var(--basic_font_2);
    float: right;
    font-size: 14px;
    size: 10px;
    margin-left: 12px; 
    cursor: pointer;   
    text-overflow: ellipsis;
}


.holder_holder_icon img {
    display: block;
    margin-left : auto; 
    margin-right : auto;
    margin-bottom: -15px; 
}

.holder_holder_icon_scroll img {
    display: block;
    margin-left : auto; 
    margin-right : auto;
    margin-bottom: -15px; 
}

.order_call_background {
    display: none;
    background: rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5000;
    place-items: center;
}

.order_call_background_active {
    display: block;
}

.container_order_call {
    z-index: 5000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* центрирование по горизонтали */
    align-items: center;    /* центрирование по вертикали */
}

.div_order_call {
    z-index: 5000;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    width: 400px;
    height: 370px;
    padding: 25px;
}

.div_order_call_active {
    display: block;
}

.ewfwe2398fkj {
    display: block;
    font-family: var(--basic_font_2);
    font-size: 23px;
    font-weight: 600;
}

.send {
    background-color: var(--main_color);
    width: 100%;
    border: 0px;
    border-radius: 5px;
    padding: 10px;
    font-size: medium;
    color: white;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.container_order_call form {
    font-family: var(--basic_font_2);
}

#name {
    display: block;
    width: 280px;
    font-size: 1rem;
    height: 35px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: border 0.2s;
    margin-bottom: 20px;
}

#name:focus {
    outline: none;
    border-color: #dadce0;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

#phone2 {
    font-size: 1rem;
    width: 240px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: border 0.2s;
    margin-bottom: 20px;
}

#phone2:focus {
    outline: none;
    border-color: #dadce0;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

#phone3 {
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: -10px;
}

#phone {
    height: 35px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgb(126, 126, 126);
    margin-bottom: 20px;
    font-size: 15px;
    /* font-weight: 600; */
    font-family: var(--basic_font_2);
}

@media screen and (max-width: 495px) {
    .div_order_call, .container_order_call {
        width: 85%;
    }
}

@media screen and (max-width: 330px) {
    .div_order_call, .container_order_call {
        width: 82%;
    }
}

.send:hover {
    background-color: var(--hover_main_color);
    transition: 0.2s;
}

.text_order_call {
    font-family: var(--basic_font_2);
    color: #a5a5a5;
    font-size: 16px;
    display: block;
}







#container_mobile {
    width: 100%;
}

.mobile_header {
    width: 100%;
    display: none;
    position: relative;
    padding-bottom: 55px;
}

.upper_mobile_header {
    width: 100%;
    height: 55px;
    position: fixed;
    background-color: white;
    border-bottom: 1px solid rgb(226, 226, 226);
    z-index: 3100;
}

.logo_mobile {
    height: 50px;
    width: 50px;
    float: left;
    margin-left: -5px;
}

.holder_holder_icon_mobile, .holder_holder_icon_mobile_order_call {
    height: 48px;
    font-family: var(--basic_font_2);
    float: right;
    size: 10px;
    margin-left: 14px;
    cursor: pointer; 
    margin-top: 12px;
}

.fdgfd {
    width: 30px;
    height: 30px;
}

.average_mobile_header {
    height: 55px;
    /* border: 1px solid black; */
    box-shadow: 4px 3px 4px rgb(235, 235, 235);
}

.catalog_button_mobile {
    padding: 10px;
    margin-top: 7px;
    margin-left: 2px;
    margin-right: 10px;
    border: 0px;
    background-color: var(--main_color);
    border-radius: 8px;
    cursor: pointer;
    float: left;
}

.form_search_mobile {
    border: 1px solid rgb(180, 180, 180);
    border-radius: 10px;
    margin-top: 6px;
    width: 80%;
    height: 42px;
    padding-right: 30px;
    float: left;
}

.button_search_mobile {
    float: left;
    margin-left: 0px;
    height: 38px;
    margin-top: 5px;
    cursor: pointer;
}








.pop_up_menu_phone {
    height: 40px;
    width: 202px;
    border-radius: 20px;
    transition: transform 0.5s;
    margin-top: 0px;
    float: left;
    cursor: pointer;
    z-index: 3000;
}

.pop_up_menu_phone_2 {
    border-radius: 20px;
    margin-top: 7px;
    background-color: white;
    padding-left: 20px;
    padding-top: 15px;
    height: 0px;
    width: 202px;
    opacity:0;
    transition: 0.3s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    cursor: auto;
    z-index: 3000;
    position: fixed;
}

.pop_up_menu_phone_work {
    display: inline-block;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    margin-top: 10px;
    color: #808080;
}

.line {
    margin-right: 20px;
    margin-top: 25px;
    color: #a7a7a7;
    border-top: 1px;
}

.post_pop_up_menu {
    font-family: var(--basic_font_2);
    color: black;
    font-size: 14px;
}

.address {
    font-family: var(--basic_font_2);
    font-size: 13px;
}

.social_header_2 {
    height: 40px;
    width: 40px;
    margin-right: 17px;
    margin-top: 15px;
}

.phone:hover~.pop_up_menu_phone {
    height: 600px;
}

.phone:hover~.pop_up_menu_phone_2 {
    opacity: 1;
    height: 450px;
}

.pop_up_menu_phone:hover .pop_up_menu_phone_2 {
    opacity: 1;
    height: 450px;
}

.pop_up_menu_phone:hover .down {
    transform: rotate(180deg);
}

.down:hover {
    transform: rotate(180deg);
}

.phone:hover~.down {
    transform: rotate(180deg);
}








.pop_up_menu_phone_user {
    border-radius: 10px;
    margin-top: 0px;
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    height: 0px;
    width: 270px;
    opacity:0;
    transition: 0.3s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    cursor: auto;
    z-index: 1000;
    position: fixed;
    margin-left: -240px;
    /* margin-left: -15%; */
    /* margin-left: calc((-100) + (-100)); */
    /* margin-right: 270px; */
    visibility: hidden;
}

.pop_up_menu_phone_user a {
    text-decoration: none;
    color: black;
}

.pop_up_menu_phone_user img {
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.pop_up_menu_phone_user ul {
    margin-top: 0px;
    list-style: none;
    font-family: var(--basic_font_2);
    font-size: 16px;
    margin-left: 0px;
    padding: 0; 
}

.pop_up_menu_phone_user li {
    cursor: pointer;
    display: block;
    margin-left: 0px;
    border-radius: 5px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.pop_up_menu_phone_user li:hover {
    background-color: rgb(240, 240, 240);
}

.holder_holder_icon_user:hover .pop_up_menu_phone_user {
    opacity: 1;
    height: 200px;
    visibility:inherit;
}

.user {
    height: 60px;
    width: auto;
    border-radius: 5px;
    padding: 6px;
    cursor: pointer;

    
}

.holder_user {
    /* border: 1px solid black; */
    width: 70%;
    height: 38%;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.name_user {
    display: block;
    font-family: var(--basic_font_2);
    color: rgb(71, 71, 71);
}

.user img {
    width: 60px;
    height: 60px;
    float: left;
}

.user:hover {
    background-color: rgb(240, 240, 240);
}









.contact_information_mobile {
    display: none;
    background: rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    place-items: center;
}

.contact_information_mobile_active {
    display: block;
}

.container_contact_information {
    z-index: 2000;
    position: fixed;
    display: none;
    padding-top: 35px;
    padding-right: 75px;
    padding-left: 75px;
    padding-bottom: 35px;
    left: 0;
    right: 0;
    top: 0;
    background-color: white;
    margin-top: 55px;
}

.container_contact_information_active {
    display: block;
}

.close, .close_contact_information {
    width: 40px;
    height: 40px;
    float: right;
    cursor: pointer;
}

.container_contact_information h2 {
    font-family: var(--basic_font_2);
    margin-top: 0px;
}

.label_contact_information {
    font-family: var(--basic_font_2);
    color: #8d8d8d;
    font-size: 17px;
}

.label_info {
    display: block;
    color: black;
    font-family: var(--basic_font_2);
    font-size: 18px;
    margin-bottom: 0px;
}

footer {
	left: 0;
	bottom: 0;
	width: 100%;
    background-color: black;
    color: white;
    padding-top: 60px; 
    padding-bottom: 40px;
}

.ul_footer {
    font-size: 14px;
    list-style: none;
    font-family: var(--basic_font_2);
    padding-left: 0px;
}

.ul_footer li {
    margin-right: 10px;
    margin-bottom: 10px;
}

.ul_footer a {
    text-decoration: none;
    color: white;
    transition: 0.2s;
}

.ul_footer a:hover {
    color: #8d8d8d;
}

.sections {
    font-family: var(--basic_font_2);
    font-size: 20px;
}

.footer_number {
    font-family: var(--basic_font_2);
}

.post_footer {
    font-family: var(--basic_font_2);
    font-size: 14px;
    color: white;
}

.hr_footer {
    margin-top: 30px;
    border: none;
    border-top: 1px solid #494949;
    margin-bottom: 30px;
}

#div_legal_information {
    padding-left: 15px; 
    padding-right: 15px;
}

.footer_banner {
    width: 90%
}

.legal_information {
    font-family: var(--basic_font_2);
    color: #6d6d6d;
    font-size: 13px;
}




@media screen and (max-width: 600px) {
    .container_contact_information {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 1600px) {
    #containerr {
        width: 100%;
    }
}

@media screen and (max-width: 1240px) {
    .order_call {
        display: none;
    }
    .pop_up_menu_phone {
        float: right;
    }
    .form_search {
        width: 60%;
    }
}


@media screen and (max-width: 1190px) {
    .post {
        margin-left: 5px;
    }
    .ul_header {
        font-size: 16px;
        margin-right: 5px;
    }

    .ul_header li{
        margin-left: 0px;
    }
    .logo, .logo_scroll {
        margin-left: -15px;
    }
}

@media screen and (max-width: 1100px) {
    .slider_holder_thumbs {
        display: none;
    }
    #swiper_main_slider {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .regular_header {
        display: none;
    }
    .mobile_header {
        display: block;
    }
    #div_legal_information, #sections_footer {
        padding-left: 30px;
        padding-right: 30px;
    }
    .ul_footer {
        margin-bottom: 40px;
    }
    .product_information_2 {
        margin-top: 20px;
    }
}

@media screen and (max-width: 800px) {
    .product_information {
        margin-top: 25px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .slider_holder_gallery, .recommendations {
        margin-left: 20px;
    }
}

@media screen and (max-width: 600px) {
    .form_search_mobile {
        width: 70%;
    }
}



@media screen and (max-width: 420px) {
    .fdgsh_mobile {
        display: none;
    }
}

@media screen and (max-width: 340px) {
    .holder_holder_icon_mobile {
        margin-left: 15px;
    }

    .fdgfd {
        width: 26px;
        height: 26px;
    }

    .holder_holder_icon_mobile, .holder_holder_icon_mobile_order_call {
        margin-top: 15px;
    }

    .catalog_button_mobile {
        padding: 8px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 320px) {
    #container_mobile {
        width: 320px;
    }
}















.header-block {
    height: auto;
    background-color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.logo_left_menu {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.close-btn {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.1);
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ff0000;
    top: 50%;
    left: 0;
    border-radius: 2px;
}

.close-btn::before {
    transform: translateY(-50%) rotate(45deg);
}

.close-btn::after {
    transform: translateY(-50%) rotate(-45deg);
}

/* Кастомная полоса прокрутки */
::-webkit-scrollbar {
    width: 6px;
    /* Узкая полоса прокрутки */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.burger-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #3498db;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.burger-btn:hover {
    background-color: #f0f0f0;
}

/* Темный оверлей, который блокирует контент */
.menu-overlay_2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6900;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    -webkit-overflow-scrolling: touch;
}

.menu-overlay_2.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    /* Гарантируем, что контент достаточно длинный для прокрутки */
    min-height: calc(100dvh - 100px);
}

/* Боковое меню - отдельный элемент, выезжает с левой стороны */
.sidebar-menu {
    font-family: var(--basic_font_2);
    position: fixed;
    top: 0;
    left: 0;
    /* Начальная позиция за экраном */
    width: 100%; /* На мобильных 100% ширины */
    max-width: 450px; /* Максимальная ширина на десктопе */
    /* Ширина на больших экранах */
    height: 100dvh;
    background-color: white;
    z-index: 7000;
    overflow-y: auto;
    overflow-x: hidden;
    /* Скрыть горизонтальную прокрутку */
    scrollbar-width: thin;
    padding-bottom: 30px;
    /* Для Firefox */
    scrollbar-color: #c1c1c1 #f1f1f1;
    /* Для Firefox */
    
    min-height: -webkit-fill-available; /* Фикс для iOS Safari */
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    transform: translateX(-100%);
    transition: transform 0.3s;
    will-change: transform;
    /* Важно для производительности */
}

.sidebar-menu.active {
    transform: translateX(0);
}

/* Верхняя часть меню (без header) */
.menu-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.menu-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.menu-section {
    border-bottom: 1px solid #eee;
    padding: 0 0 15px 0;
    margin-bottom: 20px;
}

.menu-section a {
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.menu-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

/* Стили для категорий */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    cursor: pointer;
    border-bottom: 1px solid #2e2c2c;
    transition: background-color 0.2s;
}

.category-item:hover .category-name {
    color: var(--main_color);
}

.category-item:hover {
    background-color: #f8f9fa;
}

.category-item:last-child {
    border-bottom: none;
}

.category-name {
    font-size: 15px;
    color: #272727;
}

.category-arrow {
    color: #7f8c8d;
    font-size: 14px;
    transition: transform 0.3s;
}

.category-arrow.open {
    transform: rotate(90deg);
    /* Стрелка поворачивается вправо при открытии */
}

/* Контактная информация */
.contact-info-left-menu {
    padding: 0 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: #3498db;
    margin-right: 15px;
    font-size: 17px;
    width: 22px;
    text-align: center;
    margin-top: 2px;
}

.contact-text {
    font-size: 16px;
    color: #333;
}

/* Ссылки на страницы */
.page-link {
    display: block;
    padding: 14px 30px;
    text-decoration: none;
    color: #272727;
    font-size: 16px;
    transition: background-color 0.2s, color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.page-link:hover {
    background-color: #f8f9fa;
    color: var(--main_color);
}

.page-link:last-child {
    border-bottom: none;
}

/* Блокировка скролла при открытом меню */
body.menu-open {
    overflow: hidden;
}

/* Адаптивность */
@media (max-width: 768px) {
    .sidebar-menu {
        width: 100%;
    }

    .header-block {
        padding: 0 10px;
    }

    .main-content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 24px;
    }

    .menu-header,
    .category-item,
    .contact-info-left-menu,
    .page-link {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {

    .burger-btn {
        font-size: 22px;
    }

    .logo {
        font-size: 20px;
    }

    .menu-header {
        padding: 20px 15px 15px;
    }

    .category-item,
    .contact-info-left-menu,
    .page-link {
        padding-left: 15px;
        padding-right: 15px;
    }
}
