span.product-price-count {
    font-weight: bold;
    font-size: 20px;
}
header .site_header__worktime {
    margin: 0px 0px 10px 0px;
}
header .site_header__phones {
	padding-bottom: 0px;
}
.site_header__callback a {
    border: 1px solid #f77088;
    text-decoration: none;
    padding: 3px 5px;
}


        /* =========================================
           CSS СЛАЙДЕРА (Префикс ml-)
           ========================================= */

        /* Контейнер */
        .ml-slider-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
            user-select: none;
            -webkit-user-select: none;
            box-sizing: border-box;
            margin: 0 auto;
        }

        /* Заголовок */
        .ml-slider-heading {
            font-size: 28px;
            color: #333;
            margin: 0 0 25px 0;
            font-weight: 700;
        }

        /* Окно просмотра */
        .ml-slider-viewport {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        /* Трек (лента) */
        .ml-slider-track {
            display: flex;
            gap: 20px; /* Отступ */
            cursor: grab;
            touch-action: pan-y;
            will-change: transform;
            margin: 0;
            padding: 0;
        }

        .ml-slider-track:active {
            cursor: grabbing;
        }

        /* Карточка */
        .ml-slide-card {
            min-width: calc((100% - 60px) / 4); /* 4 слайда минус отступы */
            height: 100px;
            background-color: #f7f7f7;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            box-sizing: border-box;
            -webkit-user-drag: none;
        }

        /* Изображение */
        .ml-slide-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0.6;
            transition: all 0.3s ease;
            pointer-events: none; /* Пропускаем клики сквозь картинку */
            -webkit-user-drag: none;
            display: block;
        }

        .ml-slide-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Навигация */
        .ml-slider-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 25px;
        }

        .ml-nav-btn {
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #333;
            padding: 5px 10px;
            display: flex;
            align-items: center;
            font-weight: 500;
            transition: color 0.2s;
            font-family: inherit;
        }

        .ml-nav-btn:hover {
            color: #000;
        }

        .ml-nav-btn.ml-is-disabled {
            color: #ccc;
            cursor: default;
            pointer-events: none;
        }

        /* Адаптивность */
        @media (max-width: 900px) {
            .ml-slide-card {
                min-width: calc((100% - 20px) / 2); /* 2 слайда */
            }
        }

        @media (max-width: 500px) {
            .ml-slide-card {
                min-width: 100%; /* 1 слайд */
            }
        }