        .category-header {
            background: transparent;
            padding: 24px 0 18px;
            color: #1f2937;
            margin-bottom: 24px;
        }

        .category-header h1 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #111827;
        }

        .category-header p {
            margin: 0;
            max-width: 720px;
            font-size: 0.98rem;
            line-height: 1.6;
            color: #6b7280;
        }

        .category-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0 0 6px 0;
            border-radius: 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .category-header .breadcrumb-item,
        .category-header .breadcrumb-item a {
            color: #6b7280;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .category-header .breadcrumb-item a:hover {
            color: #111827;
        }

        .category-header .breadcrumb-item.active {
            color: #111827;
            font-weight: 600;
        }

        .category-header .breadcrumb-item+.breadcrumb-item::before {
            content: "›";
            color: #9ca3af;
            font-weight: 600;
            padding: 0 6px;
        }

        @media (max-width: 768px) {
            .category-header {
                padding: 20px 0 16px;
            }
        }

        .products-header {
            background: white;
            padding: 20px 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .products-count {
            font-size: 1rem;
            color: #4a5568;
        }

        .products-count strong {
            color: #2d3748;
            font-weight: 600;
        }

        .products-controls {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .search-filter-inline {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .search-filter-inline input {
            padding: 8px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 0.9rem;
            min-width: 200px;
        }

        .sort-select {
            padding: 8px 35px 8px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 0.9rem;
            color: #4a5568;
            background: white;
            cursor: pointer;
        }

        .no-products {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 12px;
        }

        .no-products i {
            font-size: 4rem;
            color: #cbd5e0;
            margin-bottom: 20px;
        }

        .no-products h4 {
            color: #4a5568;
            margin-bottom: 10px;
        }

        .no-products p {
            color: #718096;
        }

        .pagination-wrapper {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        .pagination {
            gap: 5px;
        }

        .pagination .page-link {
            border: 1px solid #e2e8f0;
            color: #4a5568;
            padding: 8px 15px;
            border-radius: 6px;
            margin: 0 2px;
        }

        .pagination .page-link:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .pagination .page-item.active .page-link {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .search-filter-inline input {
                min-width: 150px;
            }
        }
