@import url('https://fonts.googleapis.com/css2?family=Arsenal:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');

@font-face {
    font-family: "Cambria";
    src: url("../fonts/Cambria.ttf") format("OpenType");
}

:root {
    --primary-color: #0030a1;
    --secondary-color: #ff0000;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Arsenal';
    font-size: 18px;
    font-weight: 400;
    /* адаптив */
    /* background: url('../images/bg_main.jpg') no-repeat center bottom / cover; */
    background-attachment: fixed;
    /* padding-top: 120px; */
}

main {
    flex: 1;
}

.bg_white {
    background-color: #FFF;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

a {
    color: #FFF;
    text-decoration: none;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.p_h_elem {
    padding: 15px;
}

.header_bg_color {
    /* position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; */
    background-color: #0030a1;
}

header {
    display: flex;
    flex-wrap: wrap;
    background: #0030a1;
    height: 120px;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 23px 15px 0 15px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    /* Скрыт на десктопе */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    /* Фиксированная ширина */
    height: 21px;
    /* Фиксированная высота */
    cursor: pointer;
    box-sizing: border-box;
    /* Отступ от логотипа */
    flex-shrink: 0;
    /* Запрещаем сжатие */
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    /* Занимает всю ширину родителя (30px) */
    background-color: white;
    transition: all 0.3s ease;
}

.info_h {
    display: flex;
    flex-direction: column;
}

.tel:before {
    content: "\f095 ";
    font-family: FontAwesome;
    font-size: 16px;
}

.adr:before {
    content: "\f041";
    font-family: FontAwesome;
    font-size: 18px;
    font-weight: 100;
}

.soc_icons {
    display: flex;
    margin-left: auto;
}

.soc_icon_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc_icon {
    margin-right: 7px;
}

.search_box {
    display: flex;
    align-items: center;
    position: relative;
}

.search_mobile_section {
    display: none;
    background-color: #fff;
}

.search_box_mobile {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
    padding: 0;
}

.search_input {
    font-family: 'Arsenal';
    font-size: 18px;
    font-weight: 400;
    padding: 10px 43px 10px 15px;
    border: #FFF;
    border-radius: 15px;
    width: 258px;
    outline: none;
}

.search_input_mobile {
    font-family: 'Arsenal';
    font-size: 18px;
    font-weight: 400;
    padding: 10px 26px 10px 15px;
    border: #FFF;
    border-radius: 15px;
    width: 100%;
    outline: none;
}

.lupa {
    position: absolute;
    opacity: 0;
    z-index: 9999999;
    left: 77%;
    width: 48px;
    height: 40px;
    cursor: pointer;
}

.lupa_mobile {
    position: absolute;
    opacity: 0;
    z-index: 9999999;
    right: 0;
    width: 53px;
    height: 68px;
    cursor: pointer;
}

.search_box::after {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 23px;
    font-weight: 100;
    color: #000;
    z-index: 1000;
    position: relative;
    right: 35px;
}

.search_box_mobile::after {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 23px;
    font-weight: 100;
    color: #000;
    z-index: 1000;
    position: relative;
    right: 15px;
}

.shopping-cart {
    position: relative;
    display: inline-block;
    /* Добавлено для правильного позиционирования */
    padding-right: 15px;
    /* Место для бейджа */
}

.shopping-cart::before {
    content: "\f07a";
    font-family: FontAwesome;
    font-size: 20px;
    /* Немного уменьшено */
    font-weight: 100;
    color: #fff;
}

.shopping-cart .shopping-cart-badge {
    position: absolute;
    top: 7px;
    right: 4px;
    padding: 2px 6px;
    border-radius: 50%;
    background: #ff0000;
    color: white;
    font-size: 11px;
    line-height: 1;
    z-index: 10;
}

.nav_bg_color {
    background: #ffffff;
}

nav {
    display: flex;
    background: #ffffff;
    justify-content: space-around;
    font-weight: 700;
}

.nav_link {
    transition: all 0.3s ease;
    padding: 12px 22px;
    color: #0030a1;
}

.nav_link:hover {
    background: #e0e9ff;
    color: #0043df;
}

.bg_header {
    background: url('../images/bg_blur1.webp') no-repeat center bottom / cover;
    padding: 85px 60px 130px 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo_h1 {
    font-family: "Cambria";
    font-weight: 700;
    font-size: 100px;
    margin-bottom: 7px;
    color: #fff;
}

.mission {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.mission_steps {
    font-size: 24px;
    margin-bottom: 65px;
}

.mission_steps li {
    margin: 0 0 13px 24px;
}

.btn_to_catalog {
    transition: all 0.3s ease;
    background: #FF0000;
    font-size: 36px;
    font-weight: 700;
    padding: 25px 40px;
    border: #FF0000;
    border-radius: 15px;
    margin-bottom: 65px;
}

.btn_to_catalog:hover {
    background: #FF3D3D;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mg46 {
    margin: 46px 0;
}

.mg46_21 {
    margin: 46px 0 21px 0;
}

.mgb46 {
    margin-bottom: 46px;
}

.section_title {
    font-size: 28px;
    font-weight: 700;
}

.mb21 {
    margin-bottom: 21px;
}

.txt_cntr {
    text-align: center;
}

.zavody_section {
    padding: 1px 20px;
}

.zavody {
    display: flex;
    justify-content: space-between;
}

.zav_logo img {
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

.zavod_li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 348px;
}

.types_goods {
    overflow: hidden;
    border-radius: 20px;
}

.type_good {
    display: flex;
    justify-content: space-between;
}

.type_desc {
    padding: 27px;
    /* width: 100%; */
    display: flex;
    flex-direction: column;
}

.see_in_ctlg {
    transition: all 0.3s ease;
    background: #FF0000;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 20px;
    border: #FF0000;
    border-radius: 10px;
    margin-top: auto;
    margin-left: auto;
}

.see_in_ctlg:hover {
    background: #FF3D3D;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.recommendation {
    text-align: center;
    padding: 1px 0;
}

.recs,
.goods_wrapper {
    /* display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 45px; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 45px;
}

.good_card {
    transition: all 0.3s ease;
}

.good_min {
    display: flex;
    border-radius: 15px;
    flex-direction: column;
    height: 100%;
}

.good_img_container {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    border-radius: 10px;
}

.good_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.good_info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.good_title {
    font-size: 18px;
    font-weight: 700;
}

.good_min_param {
}

.good_price {
    color: #AE0000;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: auto;
}

.good_more_btn {
    background: #0030a1;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.good_card:hover .good_img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.good_card:hover .good_more_btn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #0043df;
}

.btn_to_catalog2 {
    transition: all 0.3s ease;
    background: #FF0000;
    font-size: 28px;
    font-weight: 700;
    padding: 15px 25px;
    border: #FF0000;
    border-radius: 15px;
    margin-bottom: 0px;
}

.btn_to_catalog2:hover {
    background: #FF3D3D;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rec_sec {
    padding-bottom: 45px;
}

.uslugi_img {
    overflow: hidden;
    border-radius: 20px;
    background: url('../images/ukladka.png') no-repeat center bottom / cover;
    padding-bottom: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uslugi_text {
    width: 60%;
}

.masters {
    padding: 46px;
    text-align: center;
}

.masters_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.master {
    background-color: #FFF;
    border-radius: 20px;
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    box-shadow: 13px 16px 20px 4px rgba(0, 0, 0, 0.25);
}

.master_img_container {
    padding: 10px;
}

.master_img {
    border-radius: 12px;
    filter: drop-shadow(0px 4px 27px rgba(0, 0, 0, 0.25));
    object-fit: cover;
    width: 100%;
}

.master_info {
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bold {
    font-weight: 700;
}

.flex_row {
    display: flex;
    flex-direction: row;
}

.master_name {
    font-size: 28px;
    font-weight: 700;
}

.mb16 {
    margin-bottom: 16px;
}

.master_city {
    margin-bottom: 38px;
}

.master_call {
    background: #FF0000;
    font-size: 28px;
    font-weight: 700;
    padding: 15px 25px;
    border: #FF0000;
    border-radius: 15px;
    margin-bottom: 0px;
    transition: all 0.3s ease;

}

.master_call:hover {
    background: #FF3D3D;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.choose_sec {
    overflow: hidden;
    border-radius: 20px;
    padding: 0 70px 30px;
    background: url('../images/choose.png') no-repeat center bottom / cover;
    /* height: 485px; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFF;
}

.choose_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}

.choose_item {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.choose_icon {
    margin-right: 18px;
    object-fit: scale-down;
}

.choose_desc {
    text-align: left;
    max-width: 360px;
}

.callback_and_photo {
    display: flex;
    justify-content: space-around;
}

.callback_and_photo::before {
    content: '';
    background: url('../images/operator.png') no-repeat left bottom / contain;
    display: flex;
    width: 500px;
}

.callback_sec {
    padding: 1px 0 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.callback_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.callback_input {
    font-family: 'Arsenal';
    font-size: 18px;
    font-weight: 400;
    padding: 17px 20px;
    border: 0;
    border-radius: 15px;
    width: 500px;
    outline: none;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 16px;
}

.callback_confidentiality {
    max-width: 540px;
    margin-bottom: 16px;
}

.callback_confidentiality a {
    color: #0030a1;
}

.callback_confidentiality a:hover {
    color: #0043df;
}

.question_area {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
    resize: none;
    outline: none;
    font-family: 'Arsenal';
    font-size: 18px;
    font-weight: 400;
    padding: 17px 20px;
    border: 0;
    border-radius: 15px;
    width: 500px;
    height: 150px;
    margin-bottom: 16px;
}

.send_question_btn {
    background: #FF0000;
    font-family: 'Arsenal';
    font-size: 28px;
    font-weight: 700;
    padding: 17px 20px;
    border: #FF0000;
    border-radius: 15px;
    margin-bottom: 0px;
    color: #FFF;
    width: 542px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;

}

.send_question_btn:hover {
    background: #FF3D3D;
    box-shadow: 1px 1px 21px rgba(0, 0, 0, 0.25);
}

.footer_bg_color {
    background-color: #0030a1;
    margin-top: auto;
}

footer {
    background-color: #0030a1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    position: absolute;
    left: 45.8%;
}

.soc_icons2 {
    display: flex;
}

.soc_icon2 {
    margin-right: 7px;
}


/* * * * * * * * */


/*  Product.html */


/* * * * * * * * */

.bg_col1 {
    background-color: #F5F5F5;
}

.breadcrumbs {
    padding: 12px;
    background-color: #FFFFFF;
    display: flex;
}

.breadcrumbs:before {
    content: "\f015 ";
    font-family: FontAwesome;
    font-size: 23px;
    margin-right: 5px;
}

/* Удаляем старые стили */
.product_main {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-gallery,
.product_main_right {
    display: flex;
    flex-direction: column;
}

.product-gallery {
    gap: 15px;
}

.product_desc {
    margin-bottom: 20px; /* Добавляем отступ */
}

/* Восстанавливаем стилизацию кнопки */
.order_btn {
    background: #FF0000;
    color: white;
    font-family: 'Arsenal';
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 24px;
}

.order_btn:hover {
    background: #FF3D3D;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-image-container {
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5;
}

/* .main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
} */

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
}

.thumbnail {
    width: calc(100% / 4 - 20px);
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #333;
}

.product_main_right {
    gap: 20px;
}

.attributes-group {
    margin: 15px 0;
}

.attributes-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.attribute-item {
    display: flex;
    flex-direction: column;
}

.attribute-name {
    color: #777;
    font-size: 0.9em;
}

.attribute-value {
    font-weight: 500;
}

.amount_price {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 24px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s;
}

.amount {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1em;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
}

.price_m2 {
    font-weight: 700;
    color: #AE0000;
    font-size: 1.1em;
}

.two_btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.est_vopros,
.usloviya_delivery {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.est_vopros {
    background: #0030A1;
    font-size: 18px;
    padding: 13px 15px;
    border: #0030A1;
    border-radius: 10px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 190px;
    margin-bottom: 16px;
    margin-right: 20px;
}

.est_vopros::before {
    content: "\f025";
    font-family: FontAwesome;
    font-size: 25px;
    font-weight: 100;
    margin-right: 5px;
}

.usloviya_delivery {
    background: #0030A1;
    font-size: 18px;
    padding: 13px 15px;
    border: #0030A1;
    border-radius: 10px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 190px;
    margin-bottom: 16px;
}

.usloviya_delivery::before {
    content: "\f0d1";
    font-family: FontAwesome;
    font-size: 25px;
    font-weight: 100;
    margin-right: 5px;
}

/* Анимация бейджа */
.badge.pulse {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Стили для уведомления */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}


/* * * * * * * * */


/*  catalog.html */


/* * * * * * * * */

.category-tree {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 15px;
}

.tree {
    list-style: none;
    padding-left: 0;
}

.tree-node,
.tree-item {
    position: relative;
    /* padding-left: 25px; */
    margin-bottom: 5px;
}

.tree-header {
    padding: 0 15px;
    cursor: pointer;
    font-weight: 600;
    color: #0030a1;
    position: relative;
    transition: background-color 0.2s;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.tree-header:hover {
    background-color: #f0f7ff;
}

.tree-toggle {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-right: 4px;
}

.tree-toggle::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #0030a1;
    transition: transform 0.3s;
}

.tree-node.expanded > .tree-header .tree-toggle::before {
    transform: translateY(-50%) rotate(90deg);
}

.tree-subnodes {
    list-style: none;
    padding-left: 20px;
    display: none;
    margin-left: 10px;
    border-left: 1px solid #e0e0e0;
}

.tree-node.expanded > .tree-subnodes {
    display: block;
}

.tree-item {
    margin-left: 38px;
    font-weight: 600;
}

.tree-item a,
.tree-category-link {
    color: #0030a1;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}

.tree-category-link {
    flex-grow: 1;
}

.tree-item a:hover,
.tree-category-link:hover {
    color: #ff0000;
    text-decoration: underline;
}

/* Иконка для конечных элементов */
.tree-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 10px;
    height: 1px;
    background-color: #ccc;
}

/* Добавить в style.css */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-direction: row;
}

.pagination-prev,
.pagination-next,
.pagination-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: #0030A1;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover,
.pagination-page:hover {
    background-color: #e0e9ff;
}

.pagination-page.active {
    background-color: #0030A1;
    color: white;
    cursor: default;
}

.pagination-ellipsis {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #888;
}

.pagination-info {
    color: #666;
    font-size: 16px;
}

/* Стили для иконок */
.pagination-prev svg,
.pagination-next svg {
    transition: stroke 0.3s ease;
}

.pagination-prev:hover svg,
.pagination-next:hover svg {
    stroke: #FF0000;
}


/* * * * * * * * */


/*  manufacturers.html */


/* * * * * * * * */

.bg_header_manuf {
    background: url('../images/manuf-bg.png') no-repeat center bottom / cover;
    padding: 230px 61px 230px 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.partners_section {
    padding: 1px 20px;
}

.partners {
    display: flex;
    margin-bottom: 38px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.partners_logo {
    display: flex;
    flex-direction: column;
}

.partners_li {
    width: 348px;
}

.technology-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.technology-section:hover {
    transform: translateY(-5px);
}

.section-header {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.section-title {
    font-size: 28px;
    color: #000;
}

.subsection {
    padding: 20px;
    border-radius: 8px;
    background-color: #f8faff;
}

.subsection-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #000;
}

.content-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.content-text {
    flex: 1;
}


.ul_advantages {
    padding-left: 20px;
}

.li_advantages {
    margin-bottom: 8px;
    position: relative;
}


.content-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.content-image img {
    min-width: 100%;
    height: auto;
}

.pros-cons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.pros,
.cons {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
}

.pros {
    background-color: rgba(0, 128, 0, 0.1);
    border-left: 4px solid green;
}

.cons {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 4px solid red;
}

.pros h4,
.cons h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pros h4 i {
    color: green;
    margin-right: 8px;
}

.cons h4 i {
    color: red;
    margin-right: 8px;
}


/* * * * * * * * */


/*  cart.html */


/* * * * * * * * */

/* Обновленные стили для корзины */

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-header {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #0030a1;
}

.cart-items {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.checkout-cart-items {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Шапка таблицы (скрыта на мобильных) */
.cart-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 0.5fr;
    padding: 16px 20px;
    background: #f8faff;
    font-weight: 700;
    color: #0030a1;
}

.checkout-cart-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.5fr 1fr;
    padding: 16px 20px;
    background: #f8faff;
    font-weight: 700;
    color: #0030a1;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 0.5fr;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}


.cart-item:hover {
    background-color: #f8faff;
}

.checkout-cart-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.5fr 1fr;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}


.checkout-cart-item:hover {
    background-color: #f8faff;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkout-cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-name {
    font-weight: 600;
    color: #0030a1;
    transition: color 0.3s;
}

.cart-item-name:hover {
    color: #ff0000;
}

.checkout-cart-item-name {
    font-weight: 600;
    color: #0030a1;
    transition: color 0.3s;
}

.checkout-cart-item-name a {
    font-weight: 600;
    color: #0030a1;
    transition: color 0.3s;
}

.checkout-cart-item-name:hover {
    color: #ff0000;
}

.checkout-cart-item-name a:hover {
    color: #ff0000;
}

.cart-item-price {
    font-weight: 600;
    color: #333;
}

.checkout-cart-item-price {
    font-weight: 600;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.cart-item-total {
    font-weight: 700;
    color: #333;
}

.checkout-cart-item-total {
    font-weight: 700;
    color: #333;
}

.remove-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #ff0000;
    cursor: pointer;
    transition: transform 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.1);
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart-total {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0030a1;
}

.cart-actions {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Arsenal';
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-confirm {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Arsenal';
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-clear {
    background: #f8f8f8;
    color: #ff0000;
}

.btn-clear:hover {
    background: #ffebeb;
}

.btn-checkout {
    background: #ff0000;
    color: white;
}

.btn-checkout:hover {
    background: #e00000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-primary {
    color: #fff;
    background-color: #0030A1;
    border-color: #0030A1;
}

.btn-success {
    color: #fff;
    background-color: #0030A1;
    border-color: #0030A1;
}

.btn-danger {
    color: #fff;
    background-color: #FF0000;
    border-color: #FF0000;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item {
    animation: fadeIn 0.4s ease-out;
}


/* * * * * * * * */


/*  checkout.html */


/* * * * * * * * */

/* Стили для страницы оформления заказа */
.checkout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto 30px;
    /* max-width: 1200px; */
}

.checkout-column {
    flex: 1;
    min-width: 300px;
}

.form-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 22px;
    color: #0030a1;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0030a1;
}

.form-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Arsenal';
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #0030a1;
    box-shadow: 0 0 0 2px rgba(0, 48, 161, 0.2);
}

.checkout-order-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.checkout-order-summary h3 {
    font-size: 22px;
    color: #0030a1;
    margin-bottom: 25px;
    text-align: center;
}

.checkout-cart-item-quantity {
    font-weight: 600;
    color: #333;
    text-align: center;
}

.checkout_confidentiality {
    max-width: unset;
    margin-bottom: 16px;
}

.checkout_confidentiality a {
    color: #0030a1;
}

.checkout_confidentiality a:hover {
    color: #0043df;
}


/* * * * * * * * */


/*  success.html */


/* * * * * * * * */


.thank_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
    padding: 20px;
}

/* .thank-content {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
} */

.thank-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-text {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}


/* * * * * * * * */


/*  promo.html */


/* * * * * * * * */

.promotions-section {

    margin: 20px 0;
}

.promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.promo-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.promo-image-container {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image {
    transform: scale(1.05);
}

.promo-content {
    padding: 20px;
}

.promo-title {
    color: #0030a1;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-description {
    color: #333;
    line-height: 1.6;
}

.no-promotions {
    text-align: center;
    padding: 50px 20px;
    color: #666;
    font-size: 18px;
}


/* Медиазапросы для разных разрешений */
/* Большие экраны (1440px и выше) - стили по умолчанию */

/* Ноутбуки (1024px - 1439px) */
@media (max-width: 1439px) {
    .container {
        padding: 0 20px;
    }

    .recs,
    .goods_wrapper {
        gap: 20px;
    }

}

@media (max-width: 1369px) {
    .recs .good_card:nth-child(n+9) {
        display: none;
    }
}

@media (max-width: 1099px) {

    .recs .good_card:nth-child(n+9) {
        display: block;
    }

    .recs .good_card:nth-child(n+7) {
        display: none;
    }
}

/* Планшеты (768px - 1023px) */
@media (max-width: 1023px) {

    body {
        padding-top: 156px;
    }

    .header_bg_color {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
    }

    .header_bg_color.hide {
        transform: translateY(-100%);
    }

    .info_h {
        display: none;
    }

    nav {
        flex-wrap: wrap;
    }

    .nav_link {
        padding: 8px 12px;
        font-size: 16px;
    }

    .zavody,
    .choose_wrap {
        flex-direction: column;
        align-items: center;
    }

    .zavod_li {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }

    .recs,
    .goods_wrapper {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .recs .good_card:nth-child(n+7) {
        display: block;
    }

    .recs .good_card:nth-child(n+9) {
        display: none;
    }

    .type_good {
        flex-direction: column;
    }

    .type_good:nth-child(even) {
        flex-direction: column-reverse;
        /* Обратный порядок */
    }

    .type_good img {
        width: 100%;
        height: auto;
    }

    .product_main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-image-container {
        max-height: 400px;
    }

    .attributes-list {
        grid-template-columns: 1fr;
    }

    .callback_and_photo {
        flex-direction: column;
    }

    .callback_and_photo::before {
        display: none;
    }

    .callback_input,
    .question_area {
        width: 90%;
        max-width: 500px;
    }

    .send_question_btn {
        width: 100%;
        max-width: 500px;
    }

    .cart-header-row {
        grid-template-columns: 2fr 1fr 1.5fr 0.5fr 1fr;
    }

    .checkout-cart-header-row {
        grid-template-columns: 2fr 1fr 1.5fr 0.5fr 1fr;
    }

    .cart-item {
        grid-template-columns: 2fr 1fr 1.5fr 0.5fr 1fr;
    }

    .partners {
        flex-direction: column;
        align-items: center;
    }

    .partners_li {
        width: 80%;
        max-width: 500px;
        margin-bottom: 30px;
    }

    .technology-section {
        padding: 15px;
    }

    .content-row {
        flex-direction: column;
    }

    .pros-cons {
        gap: 20px;
    }

    .promotions-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 899px) {
    .recs .good_card:nth-child(n+9) {
        display: block;
    }

    .recs .good_card:nth-child(n+7) {
        display: none;
    }
}


/* Мобильные устройства (480px - 767px) */
@media (max-width: 767px) {
    header {
        height: 80px;
        padding: 0;
        /* Элементы прижимаем к началу */
    }

    /* Добавьте отступ для body, чтобы контент не прыгал */
    body {
        padding-top: 123px;
        /* Высота вашего header */
    }

    .logo_h1 {
        font-size: 60px;
    }

    .logo {
        padding: 10px 0 0 0;
    }

    .logo svg {
        height: 70px;
        width: 154px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .soc_icons {
        display: none;
    }

    .search_box {
        display: none;
    }

    .search_mobile_section {
        display: block;
        width: 100%;
        /* Добавляем отступы по бокам для лучшего вида */
        box-sizing: border-box;
    }

    .search_mobile_section .search_input {
        width: 100%;
        /* Растягиваем поле ввода на всю доступную ширину */
        box-sizing: border-box;
        /* Учитываем padding в общей ширине */
    }

    .search_box_mobile {
        /* Учитываем padding в общей ширине */
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    /* Кнопка меню и корзина */
    .header-right {
        gap: 10px;
        margin-left: auto;
    }

    .container_nav {
        padding: 0;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav.active {
        display: flex;
    }

    .nav_link {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .nav_bg_color {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .mission,
    .mission_steps {
        font-size: 18px;
    }

    .btn_to_catalog {
        font-size: 24px;
        padding: 15px 25px;
    }

    .section_title {
        font-size: 24px;
    }

    .recs,
    .goods_wrapper {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);

    }

    .masters_list {
        flex-direction: column;
        align-items: center;
    }

    .masters {
        padding: 0;
        margin-bottom: 50px;
    }

    .master {
        flex: 0 0 calc(50% - 20px);
        /* 2 колонки вместо 4 */
        margin-bottom: 30px;
        height: auto;
        max-width: unset;
        width: calc(100% - 20px);
        /* Сброс фиксированной высоты */
    }


    footer {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        position: static;
        margin: 15px 0;
    }

    .soc_icons2 {
        justify-content: center;
        margin-bottom: 15px;
    }

    .product_main {
        padding: 15px;
    }

    .main-image-container {
        max-height: 300px;
    }

    .amount_price {
        flex-direction: column;
        align-items: flex-start;
    }

    .order_btn,
    .two_btns .est_vopros,
    .two_btns .usloviya_delivery {
        width: 100%; /* Растягиваем на всю ширину */
        box-sizing: border-box; /* Учитываем padding в ширине */
        max-width: unset;
    }

    .two_btns {
        width: 100%; /* Гарантируем, что контейнер занимает всю ширину */
    }

    /* Добавляем отступы по бокам для контейнера формы */
    .two_btns {
        flex-direction: column;
        gap: 10px;
    }

    .est_vopros,
    .usloviya_delivery {
        width: 100%;
    }

    .cart-header-row {
        display: none;
    }

    .checkout-cart-header-row {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        grid-template-areas:
            "product"
            "price"
            "quantity"
            "total"
            "remove";
        gap: 15px;
        padding: 15px;
        position: relative;
    }

    .checkout-cart-item {
        grid-template-columns: 1fr;
        grid-template-areas:
            "checkout-image"
            "checkout-name"
            "checkout-price"
            "checkout-quantity"
            "checkout-total";
        gap: 15px;
        padding: 15px;
        position: relative;
    }

    .product-info {
        grid-area: product;
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-cart-item-image {
        grid-area: checkout-image;
    }

    .cart-item-price {
        grid-area: price;
        font-size: 18px;
    }

    .checkout-cart-item-name {
        grid-area: checkout-name;
        font-size: 18px;
    }

    .checkout-cart-item-price {
        grid-area: checkout-price;
        font-size: 18px;
    }

    .quantity-selector {
        grid-area: quantity;
        justify-content: flex-start;
    }

    .checkout-cart-item-quantity {
        grid-area: checkout-quantity;
        text-align: left;
    }

    .cart-item-total {
        grid-area: total;
        font-size: 18px;
    }

    .checkout-cart-item-total {
        grid-area: checkout-total;
        font-size: 18px;
    }


    .remove-btn {
        grid-area: remove;
        position: absolute;
        top: -45px;
        right: 8px;
    }

    .cart-actions {
        flex-direction: column-reverse;
        align-items: center;
    }

    .btn {
        width: 88%;
        text-align: center;
    }

    .btn-continue-shopping {
        width: unset;
    }

    /* Мобильные устройства */
    .bg_header_manuf {
        padding: 120px 20px;
    }

    .logo_h1 {
        font-size: 36px;
        text-align: center;
    }

    .partners_li {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .subsection-title h3 {
        font-size: 20px;
    }

    .technology-section {
        padding: 20px 15px;
    }

    .pros-cons {
        flex-direction: column;
    }

    .btn-confirm {
        width: 100%;
        text-align: center;
    }

    .thank-icon {
        font-size: 60px;
    }

    .thank-text {
        font-size: 18px;
    }

    .promotions-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-title {
        font-size: 20px;
    }
}

/* Маленькие мобильные устройства (до 479px) */
@media (max-width: 479px) {
    .logo_h1 {
        font-size: 48px;
    }

    .bg_header {
        padding: 40px 20px;
    }

    .mission_steps li {
        margin-left: 15px;
        font-size: 16px;
    }

    .btn_to_catalog,
    .btn_to_catalog2,
    .master_call {
        font-size: 20px;
        padding: 12px 20px;
        display: flex;
        justify-content: center;
    }

    .see_in_ctlg {
        font-size: 18px;
        padding: 8px 15px;
    }

    .search_input {
        width: 100%;
    }

    .uslugi_text {
        width: 90%;
    }

    .thumbnail {
        width: calc(100% / 2 - 20px);
    }

    .two_btns {
        flex-direction: column;
    }

    .content-image img {
        max-height: 200px;
    }

    .promo-content {
        padding: 15px;
    }

    .promo-title {
        font-size: 18px;
    }

    .promo-description {
        font-size: 16px;
    }
}

@media (max-width: 330px) {
    .recs,
    .goods_wrapper {
        grid-template-columns: 1fr;
    }
}