
        /* ========== CATALOG PAGE - СПЕЦИФИЧНЫЕ СТИЛИ ========== */
        
        /* Заголовок страницы */
        .catalog-header {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 40px 0 40px;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 40px;
        }
        
        .catalog-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }
        
        .catalog-desc {
            color: #475569;
            font-size: 1.1rem;
            max-width: 700px;
        }
        
        /* Фильтры */
        .filters-section {
            background: white;
            border-radius: 24px;
            padding: 24px;
            margin-bottom: 40px;
            border: 1px solid #eef2ff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.03);
        }
        
        .filters-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-end;
        }
        
        .filter-group {
            flex: 1;
            min-width: 180px;
        }
        
        .filter-group label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 8px;
            color: #475569;
        }
        
        .filter-select, .filter-input {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.2s;
        }
        
        .filter-select:focus, .filter-input:focus {
            outline: none;
            border-color: #E31E24;
            box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
        }
        
        .filter-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .btn-reset {
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .btn-reset:hover {
            background: #e2e8f0;
        }
        
        /* Счётчик товаров */
        .catalog-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .products-count {
            color: #64748b;
            font-size: 0.9rem;
        }
        
        .sort-select {
            padding: 8px 14px;
            border: 1px solid #cbd5e1;
            border-radius: 40px;
            font-family: inherit;
            background: white;
            cursor: pointer;
        }
        
        /* Сетка товаров */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }
        
        /* Карточка товара */
        .product-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #eef2ff;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
            border-color: #E31E24;
        }
        
        .product-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            background-color: #f1f5f9;
            position: relative;
        }
        
        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #E31E24;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        
        .product-info {
            padding: 24px;
        }
        
        .product-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0f172a;
        }
        
        .product-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.85rem;
        }
        
        .spec-item {
            background: #f1f5f9;
            padding: 4px 10px;
            border-radius: 20px;
            color: #475569;
        }
        
        .product-desc {
            color: #475569;
            margin-bottom: 20px;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .product-price {
            font-weight: 800;
            font-size: 1.5rem;
            color: #E31E24;
            margin-bottom: 16px;
        }
        
        .card-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        /* Пагинация */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .page-link {
            padding: 10px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            text-decoration: none;
            color: #475569;
            transition: all 0.2s;
        }
        
        .page-link:hover, .page-link.active {
            background: #E31E24;
            border-color: #E31E24;
            color: white;
        }
        
        /* Состояние "нет товаров" */
        .no-products {
            text-align: center;
            padding: 60px;
            background: #f8fafc;
            border-radius: 32px;
            color: #64748b;
        }
        
        @media (max-width: 768px) {
            .catalog-grid {
                grid-template-columns: 1fr;
            }
            .filters-grid {
                flex-direction: column;
            }
            .filter-buttons {
                width: 100%;
            }
            .filter-buttons button {
                flex: 1;
            }
        }