.category-title {
    margin: 30px 0;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
}

.category-info {
    width: 100%;
    text-align: right;
}

.results-area {
    display: grid;
    grid-template-columns: 200px 1fr;
    width: 100%;    
    margin: 15px 0;
    gap: 15px;
}

.filter-area {
    display: grid;
    grid-template-columns: 1fr;
    height: min-content;
    gap: 15px;
}

.filter-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.filter-list .filter-list-title{
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: #212121;
}

.filter-list label {
    display: flex;
    align-items: center;
    justify-content: flex-start;    
    margin-bottom: 0;
}

.filter-list label input {
    margin-right: 5px;
}

.msg-filter {
    display: flex;
    align-items: center;
}

.msg-filter span {
    margin-right: 5px;
}

.msg-filter a {
    font-weight: 700;
}

.msg-filter .filter-item {
    font-size: 13px;
    padding: 2px 5px;
    border: 1px solid #212121;
    border-radius: 2px;
    margin-right: 5px;
}

.products-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.no-products {
    font-size: 18px;
    margin-bottom: 25px;
}

.pagination {
    width: 100%;
}

.pagination .page-link {
    color: #212121;
}

.pagination .page-item.active .page-link {
    background-color: #212121;
    border-color: #212121;
    color: #fff;
}

@media (max-width: 600px) {
    .products-area {
        display: grid;
        grid-template-columns: repeat(2, 1fr);        
        justify-content: center;
    }

    li.page-item {
        display: none;
    }

    .page-item:first-child,
    .page-item:nth-child(2),
    .page-item:nth-last-child(2),
    .page-item:last-child,
    .page-item.active,
    .page-item.disabled {
        display: block;
    }

    .results-area {
        grid-template-columns: 1fr;
    }
}