.category_main_wrapper {
    display: grid;

    grid-template-columns: 1fr 2fr;
    justify-content: center;
    align-items: center;
    gap: 2em;
    padding: 1em;
    margin-top: 5em;
    background-color: var(--red_default);
    
    
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
}
.category_img > img {
    height: 15em;
    width: 100%;
    object-fit: cover;
    border-radius: 2em;
}
.category_description {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.filters_row {
    position: sticky;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    gap: 1em;
    padding: 0.5em;
    background-color: var(--grey);
}
.filter_select {
    padding: 1em;
    border-radius: 1em;
    background-color: var(--red_default);
    cursor: pointer;
}
.products_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    padding: var(--outer_spacing);
    background-color: black;
    padding-top: 2em;
    padding-bottom: 2em;
}
.pagination
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    padding: 1em;
    background-color: var(--grey);
}
.current_page {
    background-color: var(--red_default);
    color: var(--white);
    padding: 0.5em;
    border-radius: 1em;
}
@media screen and (max-width: 768px) {
    .category_main_wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
}
@media screen and (max-width: 600px) {
    .category_main_wrapper {
        grid-template-columns: 0.7fr 1fr;
    }
    .products_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap:0.5em;
        row-gap: 1em;
        
        
    }
    .products_wrapper >.productcard {
    
        
        font-size: 3vw;
        
        
    }
    
}
@media screen and (max-width: 500px) {
    .category_main_wrapper {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .category_img   {
        display: flex;
        justify-content: center;
    }
    .category_img > img {
        height: 5em;
        width: 100%;
        border-radius: 0;
    }
    .category_description {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 2em;
        padding-right: 2em;
        padding-bottom: 1.5em;
    }
    .products_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap:0.5em;
        
    }
    
}