		/* --- БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ --- */
        :root {
            --text-main: #333;
            --text-muted: #888;
            --price-color: #ff2222;
            --green-status: #27ae60;
            --bg-light: #f5f6f8;
            --border-color: #eaeaea;
            --accent-btn: #2c2d31;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* --- ХЕДЕР КАТАЛОГА --- */
        .catalog-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .breadcrumbs {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 5px;
        }
		
		.breadcrumbs a{
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 5px;
        }

        .breadcrumbs span {
            margin: 0 5px;
        }

        .catalog-title h1 {
            font-size: 36px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-image img {
            max-width: 200px;
            height: 100px;
        }

        /* --- ПАНЕЛЬ СОРТИРОВКИ --- */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--bg-light);
            padding: 10px 20px;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .mobile-filter-btn {
            display: none;
            background: #fff;
            border: 1px solid var(--border-color);
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
        }

        .sort-select {
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: #fff;
            color: var(--text-main);
            outline: none;
            cursor: pointer;
        }

        /* --- ОСНОВНОЙ КОНТЕНТ (СЕТКА) --- */
        .main-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
        }

        /* --- ФИЛЬТРЫ (САЙДБАР) --- */
        .sidebar-filters {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .filter-mobile-header {
            display: none;
        }

        .products-count {
            border: 1px solid var(--border-color);
            padding: 15px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
        }

        .filter-block {
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 20px;
        }

        .filter-title {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .filter-list {
            list-style: none;
            max-height: 320px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .filter-list::-webkit-scrollbar {
            width: 4px;
        }
        .filter-list::-webkit-scrollbar-thumb {
            background-color: var(--border-color);
            border-radius: 4px;
        }

        .filter-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
            cursor: pointer;
        }
		
		.filter-item label {
			cursor: pointer;
			display: flex;
			align-items: center;
			width: 100%;
		}

        .filter-item input {
            margin-right: 10px;
            width: 16px;
            height: 16px;
            accent-color: var(--accent-btn);
        }

        /* --- СЕТКА ТОВАРОВ --- */
		.products-grid a{
			text-decoration: none;
			color: inherit;
		}
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: #fff;
            transition: box-shadow 0.2s;
        }

        .product-card:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            font-weight: bold;
        }

        .status-instock {
            color: var(--green-status);
            text-transform: uppercase;
        }

        .favorite-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            color: #b2bec3;
        }
        .favorite-btn.active {
            color: #e74c3c;
        }

        .product-img-wrapper {
            text-align: center;
            margin: 15px 0;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img-wrapper img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .product-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            min-height: 40px;
            line-height: 1.4;
        }

        .card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-info {
            display: flex;
            flex-direction: column;
        }

        .price-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .price-info .info-icon {
            display: inline-block;
            width: 12px;
            height: 12px;
            border: 1px solid var(--text-muted);
            border-radius: 50%;
            text-align: center;
            line-height: 11px;
            font-size: 9px;
            cursor: help;
        }

        .price-value {
            color: var(--price-color);
            font-weight: 700;
            font-size: 16px;
            margin-top: 2px;
        }

        .cart-btn {
            background-color: var(--accent-btn);
            color: #fff;
            border: none;
            border-radius: 4px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .cart-btn:hover {
            background-color: #000;
        }
        
        .cart-btn.in-cart {
            background-color: var(--price-color);
        }

        /* --- ПАГИНАЦИЯ --- */
		.page-item.disabled {
			opacity: 0.4;
			pointer-events: none; /* Отключает кликабельность */
			cursor: default;
		}
        .pagination {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .page-item {
            min-width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid transparent;
            border-radius: 4px;
            text-decoration: none;
            color: var(--text-main);
            font-size: 14px;
            cursor: pointer;
        }

        .page-item.active {
            background-color: var(--price-color);
            color: #fff;
            font-weight: bold;
        }

        .page-item.arrow, .page-item.dots {
            color: var(--text-muted);
        }
        
        .page-item:hover:not(.active):not(.dots) {
            border-color: var(--border-color);
        }

        /* --- МЕДИА-ЗАПРОСЫ (АДАПТИВНОСТЬ) --- */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-layout {
                grid-template-columns: 1fr;
            }

            .header-image {
                display: none; /* Скрываем картинку форсунок сверху на мобилках */
            }

            .mobile-filter-btn {
                display: block; /* Показываем кнопку фильтра */
            }

            /* Выезжающий или всплывающий сайдбар для мобилок */
            .sidebar-filters {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: #fff;
                z-index: 999;
                padding: 20px;
                overflow-y: auto;
                transition: left 0.3s ease;
            }

            .sidebar-filters.open {
                left: 0;
            }

            .filter-mobile-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
                padding-bottom: 10px;
                border-bottom: 1px solid var(--border-color);
            }

            .close-filter-btn {
                background: none;
                border: none;
                font-size: 24px;
                cursor: pointer;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr; /* Одна колонка на самых маленьких экранах */
            }
            .catalog-title h1 {
                font-size: 28px;
            }
        }
		
		