
        .cable-filters {
            padding: 20px;
            background: #f5f5f5;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        
        .filter-group {
            margin-bottom: 15px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 15px;
        }
        
        .filter-group h4 {
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: bold;
        }
        
        .filter-checkbox {
            margin-right: 5px;
        }
        
        .filter-buttons {
            margin-top: 20px;
        }
        
        .btn {
            padding: 8px 15px;
            background: #0073aa;
            color: white;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            margin-right: 10px;
        }
        
        .btn:hover {
            background: #005177;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .product-card {
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.2s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-info h3 {
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .product-meta p {
            margin: 5px 0;
            font-size: 14px;
        }
        
        .view-details {
            display: inline-block;
            margin-top: 10px;
            padding: 6px 12px;
            background: #0073aa;
            color: white;
            text-decoration: none;
            border-radius: 3px;
            font-size: 14px;
        }
        
        .view-details:hover {
            background: #005177;
            color: white;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .cable-filters {
                padding: 15px;
            }
        }
    