.category-items-and-tools-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}



.close-btn-category-page {
    position: fixed;
    top: 0%;
    transform: translate(-80vw, 0px);
    font-size: 50px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    display: none;
}

/* ************************************* */

.products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}


.category-left-grid-products {
    width: 70%;
}



@media (max-width:1024px) {
    #show-category-right-tools-col {
        display: block;
        margin-right: 10px;
    }

    .close-btn-category-page {
        display: block;
    }


    /* ************************************** */
    .category-items-and-tools-container {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
    }

    .category-left-grid-products {
        width: 95%;
        margin-inline: auto;
    }


}