 /* --- Scoped Styles for Contacts Page --- */
    .contacts-wrapper {
        --gap: 24px;
        --radius: 12px;
        --main-shadow: 0 4px 20px rgba(0,0,0,0.06);
        --alert-red-bg: #fff5f5;
        --alert-red-text: #c53030;
        --alert-info-bg: #ebf8ff;
        --alert-info-text: #2c5282;

        line-height: 1.6;
        color: #333;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    /* Grid Layouts */
    .contacts-top-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
        margin-bottom: 40px;
    }

    .locations-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
        margin-bottom: 40px;
    }

    /* Cards */
    .contact-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 30px;
        box-shadow: var(--main-shadow);
        border: 1px solid #eee;
    }

    .contact-card h2, .contact-card h3 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
        display: inline-block;
    }

    /* Communication Block */
    .comm-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    .comm-item {
        margin-bottom: 15px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .comm-item a {
        color: #333;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dashed #ccc;
    }
    .comm-item a:hover {
        color: var(--main_color);
        border-color: var(--main_color);
    }
    
    /* Alerts */
    .alert-box {
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 0.95rem;
        margin-bottom: 20px;
        border-left: 4px solid transparent;
    }
    .alert-info {
        background: var(--alert-info-bg);
        color: var(--alert-info-text);
        border-color: #4299e1;
    }
    .alert-danger {
        background: var(--alert-red-bg);
        color: var(--alert-red-text);
        border-color: #f56565;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
    }

    /* Requisites List */
    .req-list {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0.95rem;
        color: #555;
    }
    .req-list li {
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #f9f9f9;
    }
    .req-list li:last-child {
        border-bottom: none;
    }

    /* Location Cards Specifics */
    .loc-card-warehouse {
        border-top: 5px solid var(--main_color);
    }
    .loc-card-office {
        border-top: 5px solid #a0aec0;
        background: #fafafa;
    }

    .loc-address {
        font-size: 1.1rem;
        margin-bottom: 15px;
        font-weight: 600;
    }
    .loc-hours {
        margin-bottom: 15px;
        color: #666;
    }
    .btn-route {
        display: inline-block;
        background: var(--main_color);
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none !important;
        font-weight: 600;
        font-size: 0.9rem;
        transition: opacity 0.2s;
    }
    .btn-route:hover {
        opacity: 0.9;
    }

    /* Map Container */
    .map-wrapper {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--main-shadow);
        margin-bottom: 40px;
        border: 1px solid #eee;
    }

    /* Photo Grid */
    .photo-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
    }
    .photo-grid img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        display: block;
        box-shadow: var(--main-shadow);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    /* Media Queries */
    @media (min-width: 768px) {
        .contacts-top-grid {
            grid-template-columns: 1fr 1fr; /* 2 cols */
        }
        .locations-grid {
            grid-template-columns: 1.5fr 1fr; /* Warehouse larger than office */
        }
        .photo-grid {
            grid-template-columns: 1fr 1fr;
        }
    }



.schedule-item {
    text-align: center;
    padding: 20px;
}
    /* Scoped Styles for About Page */
    .about-page-wrapper {
        --gap: 20px;
        --radius: 8px;
        --shadow: 0 4px 12px rgba(0,0,0,0.05);

        line-height: 1.6;
        color: #333;
        margin: 0 auto;
    }

    /* Typography */
    .about-page-wrapper h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
        color: #000;
        font-weight: 700;
        position: relative;
        padding-left: 15px;
    }
    
    .about-page-wrapper h2::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 5px;
        width: 4px;
        background-color: var(--main_color);
        border-radius: 2px;
    }

    .about-page-wrapper p {
        margin-bottom: 16px;
    }

    .about-page-wrapper a {
        color: var(--main_color);
        text-decoration: none;
        border-bottom: 1px dashed var(--main_color);
    }

    /* Layout Sections */
    .about-section {
        margin-bottom: 60px;
    }

    /* Intro Block */
    .about-intro {
        font-size: 1.1rem;
    }

    /* Benefits Grid (8 причин) */
    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
    }

    .benefit-card {
        background: #fff;
        border: 1px solid #eee;
        border-left: 4px solid var(--main_color);
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: transform 0.2s ease;
    }

    .benefit-card:hover {
        transform: translateY(-3px);
    }

    .benefit-card p {
        margin: 0;
        font-weight: 500;
    }

    /* CTA Block */
    .cta-block {
        background-color: #f8f9fa;
        border-radius: var(--radius);
        padding: 30px;
        text-align: center;
        border: 1px solid #e0e0e0;
    }
    .cta-title {
        color: var(--main_color);
        font-weight: bold;
        font-size: 1.2rem;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: block;
    }

    /* Schedule Grid */
    .schedule-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
        background: #fff;
    }

    .schedule-item strong {
        display: block;
        margin-bottom: 5px;
        color: var(--main_color);
    }

    /* Gallery & Docs Grid */
    .docs-grid, .photo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Mobile: 2 col */
        gap: var(--gap);
    }

    .photo-grid img, .docs-grid img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        border: 1px solid #eee;
        transition: opacity 0.3s;
        object-fit: contain; /* Для документов */
    }
    
    .photo-grid img {
        object-fit: cover; /* Для фото офиса */
        aspect-ratio: 4/3; /* Унификация пропорций */
    }

    .photo-grid img:hover, .docs-grid img:hover {
        opacity: 0.9;
        cursor: pointer; /* Если будет Fancybox */
    }

    /* Media Queries */
    @media (min-width: 768px) {
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .docs-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        .schedule-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .benefits-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
.product__list.tiles .product-item {
    border: 1px solid #f1f1f1!important;
}



    /* --- Scoped Styles for Calculator Page --- */
    .calc-page-wrapper {
        --gap: 24px;
        --radius: 12px;
        --main-shadow: 0 4px 20px rgba(0,0,0,0.06);
        --step-bg: #f8f9fa;
        
        font-family: var(--font-primary, "Helvetica Neue", Arial, sans-serif);
        line-height: 1.6;
        color: #333;

        margin: 0 auto;
        padding-bottom: 50px;
    }

    .calc-intro {
        margin-bottom: 40px;
        max-width: 900px;
        font-size: 1.1rem;
        color: #555;
    }
/* --- Calculator Component Styles --- */
    
    /* Сброс отступов таблицы */
    .calc-list {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 15px; /* Отступ между строками */
    }

    /* Ячейки */
    .calc-list-itm {
        vertical-align: bottom;
        padding: 0 10px;
    }
    
    /* Убираем паддинг у первой и последней ячейки, чтобы ровно по краю */
    .calc-list-itm:first-child { padding-left: 0; }
    .calc-list-itm:last-child { padding-right: 0; }

    /* Лейблы (заголовки полей) */
    .calc-list-itm__label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #666;
        margin-bottom: 8px;
        white-space: nowrap; /* Чтобы текст не прыгал */
    }

    /* Общие стили для Select и Input */
    .calc-list-itm select,
    .calc-list-itm input[type="text"] {
        width: 100%;
        height: 42px; /* Фиксируем высоту */
        padding: 0 12px;
        font-size: 0.95rem;
        font-family: inherit;
        color: #333;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        box-sizing: border-box; /* Важно! */
    }

    /* Кастомная стрелка для Select (убираем старую, рисуем новую) */
    .calc-list-itm select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 16px;
        padding-right: 35px; /* Место под стрелку */
        cursor: pointer;
    }

    /* Состояния фокуса */
    .calc-list-itm select:focus,
    .calc-list-itm input[type="text"]:focus {
        border-color: var(--main_color);
        box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    }

    /* Поля с результатом (Readonly вид) */
    .uf_weight {
        background-color: #f9fafb !important;
        font-weight: 700;
        color: var(--main_color) !important;
    }

    /* Кнопка удаления (крестик) */
    .calc-list-remove {
        vertical-align: bottom;
        padding-bottom: 12px; /* Выравнивание по центру инпута */
        text-align: center;
        width: 40px;
        cursor: pointer;
    }
    .calc-list-remove svg circle {
        transition: fill 0.2s;
    }
    .calc-list-remove:hover svg circle {
        fill: #c53030; /* Более темный красный */
    }

    /* Блок кнопок внизу */
    .calc-block > a {
        margin-top: 20px;
        margin-right: 15px;
    }

    .calc-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        background: #f1f1f1;
        color: #333;
        transition: all 0.2s;
        border: 1px solid #e0e0e0;
    }
    .calc-btn:hover {
        background: #e0e0e0;
        color: #000;
    }

    .calc-btn-green {
        background: var(--main_color);
        color: #fff !important;
        border-color: var(--main_color);
    }
    .calc-btn-green:hover {
        opacity: 0.9;
    }

    /* --- АДАПТИВНОСТЬ (Превращаем таблицу в Grid) --- */
    @media (max-width: 1024px) {
        /* Ломаем табличное поведение */
        .calc-list, .calc-list tbody, .calc-list-line {
            display: block;
            width: 100%;
        }

        .calc-list-line {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 колонки */
            gap: 15px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #eee;
            position: relative;
        }

        /* Ячейки становятся блоками */
        .calc-list-itm {
            display: block;
            width: 100%;
            padding: 0;
        }

        /* Кнопка удаления - абсолютом в угол */
        .calc-list-remove {
            position: absolute;
            top: 10px;
            right: 10px;
            width: auto;
            padding: 0;
        }
    }

    @media (max-width: 600px) {
        .calc-list-line {
            grid-template-columns: 1fr; /* 1 колонка на телефонах */
            gap: 10px;
        }
        
        .calc-btn {
            width: 100%; /* Кнопки на всю ширину */
            margin-right: 0;
            margin-bottom: 10px;
        }
    }
    /* Steps Grid */
    .steps-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step-card {
        background: var(--step-bg);
        padding: 20px;
        border-radius: var(--radius);
        position: relative;
        border: 1px solid #eee;
    }
    
    .step-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--main_color);
        opacity: 0.15;
        position: absolute;
        top: 10px;
        right: 15px;
        line-height: 1;
    }
    
    .step-text {
        position: relative;
        z-index: 2;
        font-weight: 600;
        font-size: 1rem;
    }

    /* Calculator Component Wrapper */
    .calculator-app-container {
        background: #fff;
        padding: 30px;
        border-radius: var(--radius);
        box-shadow: var(--main-shadow);
        border: 1px solid #e0e0e0;
        margin-bottom: 50px;
    }
    .calculator-app-container h3 {
        margin-top: 0;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    /* Tags Cloud */
    .tags-section {
        margin-bottom: 40px;
    }
    .tags-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        display: block;
    }
    .tags-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .tag-btn {
        display: inline-block;
        background: #fff;
        border: 1px solid #ddd;
        padding: 8px 16px;
        border-radius: 50px;
        color: #444;
        text-decoration: none;
        transition: all 0.2s;
        font-size: 0.95rem;
    }
    .tag-btn:hover {
        background: var(--main_color);
        color: #fff;
        border-color: var(--main_color);
        text-decoration: none;
    }

    /* Help Box */
    .help-box {
        background: #e3f2fd; /* Light blue */
        border-left: 5px solid var(--main_color);
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
    }
    .help-box p { margin: 0; margin-bottom: 10px; }
    .help-box p:last-child { margin-bottom: 0; }

    /* Disclaimer */
    .calc-disclaimer {
        font-size: 0.85rem;
        color: #888;
        border-top: 1px solid #eee;
        padding-top: 20px;
        font-style: italic;
    }

    /* Media Queries */
    @media (min-width: 768px) {
        .steps-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (min-width: 1024px) {
        .steps-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
.wrapper-header-bottom .navigation_item a {
    /* color: currentColor; */
    padding: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    width: 134px;
    width: fit-content;
    height: 8px;
    border: 1px solid #C4C4C4;
    border-radius: 6px;
}

 /* --- Scoped Styles for Delivery Page --- */
    .delivery-page-wrapper {
        --gap: 24px;
        --radius: 12px;
        --card-shadow: 0 4px 15px rgba(0,0,0,0.05);
        --card-hover: 0 8px 25px rgba(0,0,0,0.1);
        --icon-bg: #f5f7fa;

        line-height: 1.6;
        color: #333;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .delivery-intro {
        font-size: 1.15rem;
        margin-bottom: 40px;
        max-width: 800px;
        color: #555;
    }

    /* Grid Layout */
    .delivery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
    }

    /* Card Styles */
    .delivery-card {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid #e0e0e0;
        padding: 30px;
        box-shadow: var(--card-shadow);
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .delivery-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-hover);
        border-color: var(--main_color);
    }

    /* Card Header */
    .delivery-header {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
    }

    .delivery-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: var(--icon-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--main_color);
    }
    .delivery-icon svg {
        width: 26px;
        height: 26px;
        fill: currentColor;
    }

    .delivery-title {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1.3;
        padding-top: 5px; /* Visual align with icon */
    }

    /* Card Content */
    .delivery-content {
        flex-grow: 1; /* Pushes footer down */
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .delivery-content p {
        margin-bottom: 12px;
    }

    .delivery-highlight {
        background: #fff8e1; /* Yellowish highlight */
        padding: 8px 12px;
        border-radius: 6px;
        font-weight: 600;
        color: #f57f17;
        display: inline-block;
        margin-top: 5px;
    }

    /* Card Footer / Actions */
    .delivery-footer {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }

    .btn-delivery {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 24px;
        border-radius: 50px;
        text-decoration: none !important;
        font-weight: 600;
        transition: opacity 0.2s;
        font-size: 0.95rem;
    }

    .btn-outline {
        border: 1px solid var(--main_color);
        color: var(--main_color);
    }
    .btn-outline:hover {
        background: var(--main_color);
        color: #fff;
    }
    
    .btn-fill {
        background: var(--main_color);
        color: #fff !important;
        border: 1px solid var(--main_color);
    }
    .btn-fill:hover {
        opacity: 0.9;
    }

    /* List of Partners */
    .partners-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .partner-link {
        display: inline-block;
        background: #f5f5f5;
        padding: 6px 12px;
        border-radius: 4px;
        color: #333;
        text-decoration: none;
        font-size: 0.9rem;
        border: 1px solid #eee;
    }
    .partner-link:hover {
        border-color: var(--main_color);
        color: var(--main_color);
    }

    /* Media Queries */
    @media (min-width: 768px) {
        .delivery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* --- Scoped Styles for Sale Page --- */
    .sale-page-wrapper {
        --gap: 24px;
        --radius: 12px;
        --card-shadow: 0 4px 15px rgba(0,0,0,0.05);
        --card-hover: 0 8px 25px rgba(0,0,0,0.1);
        --alert-bg: #fff4f4;
        --alert-border: #ee1d24;

        line-height: 1.5;
        color: #333;
        margin: 0 auto;
        padding-bottom: 40px;
    }

    /* Alert Box */
    .sale-alert {
        background: var(--alert-bg);
        border: 1px solid #ffcdd2;
        border-left: 5px solid var(--alert-border);
        border-radius: var(--radius);
        padding: 20px 25px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 4px 10px rgba(238, 29, 36, 0.1);
    }
    
    .sale-alert-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        fill: var(--alert-border);
    }

    .sale-alert-text {
        font-size: 1.1rem;
        font-weight: 700;
        color: #c62828;
        text-transform: uppercase;
    }

    /* Grid Layout */
    .sale-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
    }

    /* Category Card */
    .sale-card {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid #eee;
        padding: 25px;
        box-shadow: var(--card-shadow);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: flex;
        flex-direction: column;
    }

    .sale-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--card-hover);
        border-color: #e0e0e0;
    }

    .sale-card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 15px;
    }

    .sale-card-icon {
        width: 28px;
        height: 28px;
        fill: var(--main_color);
        opacity: 0.8;
    }

    .sale-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #222;
        margin: 0;
    }

    /* Link List (Tags style) */
    .sale-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sale-links li {
        margin: 0;
    }

    .sale-link-item {
        display: inline-block;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        padding: 8px 16px;
        border-radius: 50px;
        color: #444;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s;
    }

    .sale-link-item:hover {
        background: var(--main_color);
        color: #fff;
        border-color: var(--main_color);
        text-decoration: none;
    }

    /* Special Highlight for Bosch */
    .sale-link-item.highlight {
        background: #fff8e1;
        border-color: #ffecb3;
        color: #f57f17;
        font-weight: 700;
    }
    .sale-link-item.highlight:hover {
        background: #ffc107;
        color: #000;
        border-color: #ffc107;
    }

    /* Media Queries */
    @media (min-width: 768px) {
        .sale-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns tablet */
        }
    }

    @media (min-width: 1024px) {
        .sale-grid {
            grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
        }
        /* Make the first card (Fasteners) span 2 rows if content is huge, or 2 cols */
        .card-wide {
            grid-column: span 2;
        }
    }


.__jivoMobileButton {
    margin-bottom: 50px;
}
.social-block {
    display: flex;
    gap: 8px;              /* расстояние между иконками */
    align-items: center;
}

._show__LFram {
    bottom: 50px!important;
}

.top_menu_right .dop-contact-wrp {
    display: none;
}

header .social-block {
    margin-left: 16px;
}

.social-item img {
    width: 30px;
    height: 30px;
    display: block;
}


.stock_buttons {
    display: flex;          /* включаем флекс */
    gap: 10px;              /* расстояние между кнопками */
    /* justify-content: space-between;  если нужно растянуть по ширине */
    /* justify-content: center;         если нужно центрировать */
    align-items: center;
}

.stock_link.left {
    color: rgb(255 251 251);
    border: 1px solid var(--main_color);
    background: var(--main_color);
}

.stock_link.left:hover {
    background-color: var(--yellow-button-hover);
    transition: 0.2s linear;
}

.about-split{
  width: 100%;
}

.about-split__inner{
  margin: 0 auto;
  padding: 52px 16px;
}

.about-split__h2{
  margin: 0 0 44px 0;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
}

.about-split__cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-split__left p{
  margin: 0 0 18px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 35px;
}

.about-split__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  background: #6b6b6b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #4f4f4f;
  margin-top: 18px;
}

.about-split__right{
  display: flex;
  justify-content: stretch;
}

.about-split__box{
  width: 100%;
  border: 2px solid #cfcfcf;
  padding: 28px 28px 24px 28px;
  background: #fff;
}

.about-split__box-title{
  margin: 0 0 20px 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.about-split__feature{
  position: relative;
  padding-left: 24px;   /* место под галочку */
  margin: 0 0 18px 0;
}

.about-split__feature::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 700;
  font-size: 16px;
}

.about-split__feature-title{
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 6px 0;
}

.about-split__feature-text{
  font-size: 15px;
  line-height: 1.65;
  color: #111;
}

@media (max-width: 1024px){
  .about-split__h2{ font-size: 28px; }
  .about-split__cols{ gap: 28px; }
  .about-split__box-title{ font-size: 24px; }
}

@media (max-width: 768px){
  .about-split__h2{
    font-size: 24px;
    text-align: left;
  }
  .about-split__cols{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-split__box{
    padding: 18px;
  }
}





/* =========================
   B2B TERMS (layout only)
   ========================= */

.b2b-terms {
  width: 100%;
}


.b2b-terms .block_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 10px;
}

.b2b-terms .distribution_subtitle {
    margin-bottom: 18px!important;
}



.b2b-terms__inner{
  margin: 0 auto;
  padding: 32px 16px;
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;   /* заголовок | пункты */
  column-gap: 148px;
  row-gap: 24px;
  align-items: start;
}

/* Пункты в 2 колонки */
.b2b-terms__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 56px;
}

.b2b-terms__item {
  display: grid;
  grid-template-columns: 56px 1fr; /* иконка | текст */
  gap: 16px;
  align-items: start;
}

/* Иконка: БЕЗ серого фона (как просили) */
.b2b-terms__icon {
  width: 56px;
  height: 56px;
  background: transparent;
  display: grid;
  place-items: center;
  border-radius: 2px;
  overflow: hidden;
}

.b2b-terms__icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* CTA под блоком */
.b2b-terms__cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* =========================
   Badge (absolute right-bottom)
   ========================= */

/*.b2b-terms__badge-col {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
} */

.b2b-terms__badge{
  background: #ff7a00;
    border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  width: 300px;     /* подгони под макет */
  min-height: 56px; /* чтобы не схлопывалось */
}

.b2b-terms__badge-icon{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: url("/local/img/officals.svg") center / contain no-repeat;
}

.b2b-terms__badge-text{
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
  text-align: left;
  margin: 0;
}



/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
  .b2b-terms__inner {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-right: 16px;
    padding-bottom: 24px;
  }

  /* было 1fr — делаем 2 колонки */
  .b2b-terms__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 16px;
  }

  .b2b-terms__item {
    grid-template-columns: 44px 1fr; /* компактнее в 2 колонки */
    gap: 10px;
  }

  .b2b-terms__icon {
    width: 44px;
    height: 44px;
  }

  .b2b-terms__badge-col {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }

  .b2b-terms__badge-text {
    font-size: 13px;
  }

.b2b-terms .block_title {
    font-size: 19px;
}
    .stock_link {
        width: 200px;
    }
    .b2b-terms .stock_link {
        width: 230px;
    }
}

/* супер-узкие экраны — можно снова в 1 колонку, чтобы не ломалось */
@media (max-width: 420px) {
  .b2b-terms__grid {
    grid-template-columns: 1fr;
  }
}



.top_menu_catalog {
    grid-column-gap: 10px!important;
}
.sub-catalog-menu a {
    margin-bottom: 5px!important;
}
.subcat-toggle {
    cursor: pointer;
    border-radius: 8px;
    text-decoration: underline!important;
    background: #fff;
    font-size: 14px;
}

.logo img {
    width: 200px;
}
.distribution_head {
    width: 80%;
}


.main_sales-item.main_sales-stock {
    padding: 40px 50px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
a[data-name="razprodazha"] {
  /* стили для активного состояния */
 border: 1px solid #EA1100!important;
 color: #EA1100!important;
}

a[data-name="razprodazha"].active {
  /* стили для активного состояния */
    border: 1px solid #EA1100!important;
    background-color: #EA1100!important;
    color: #fff !important;
}

a[data-name="rec"] {
  /* стили для активного состояния */
 border: 1px solid #0BA72A!important;
 color: #0BA72A!important;
}

a[data-name="rec"].active {
  /* стили для активного состояния */
    border: 1px solid #0BA72A!important;
    background-color: #0BA72A!important;
    color: #fff !important;
}


a[data-name="tekhnika-dlya-doma"] {
  /* стили для активного состояния */
 border: 1px solid #0072bc!important;
 color: #0072bc!important;
}

a[data-name="tekhnika-dlya-doma"].active {
  /* стили для активного состояния */
    border: 1px solid #0072bc!important;
    background-color: #0072bc!important;
    color: #fff !important;
}


    .block_after_banner:after {
        display: none;
    }

a[data-name="tsifrovye-tovary"] {
  /* стили для активного состояния */
 border: 1px solid #FCBD00!important;
 color: #FCBD00!important;
}

a[data-name="tsifrovye-tovary"].active {
  /* стили для активного состояния */
    border: 1px solid #FCBD00!important;
    background-color: #FCBD00!important;
    color: #fff !important;
}

.mode {
     margin-left: 67px;
}


.header_bottom-slider .swiper-wrapper {
    justify-content: space-between;
}

.header_bottom-slider a[href="/calculator/"] {
    color: #fff!important;
    background: #ff7a00;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 16px 14px;
    height: 30px;
    text-decoration: none; /* чтобы убрать подчеркивание */
}


.about-stats {
    display: flex;
    justify-content: space-between; /* равномерное растяжение */
    align-items: center;
    width: 100%;
 flex-wrap: wrap;   /* важно: разрешаем перенос */
    gap: 20px;
margin-top: 60px;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1 1 22%;     /* примерно 4 в ряд на больших экранах */
    text-align: center;
}
@media (max-width: 768px) {
    .stat-item {
        flex: 1 1 calc(50% - 20px); /* 2 в ряд с учётом gap */
    }
}


.block_about_info_dop_info .value {
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 8px;
}
.block_about_info_dop_info .description {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
}

@media (max-width: 576px) {
    .stock_link {
        width: 200px;
        padding-right: 25px;
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    .blocks_after_banner_wrapper {
        padding-bottom: 24px;
        padding-bottom: 24px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 24px;
        grid-column-gap: 16px;
    border-bottom: unset!important;
    }

}