#page_content.product_list_page{
    width: 100%;
}


#page_content.product_list_page #page_title{
    padding: 1em 2em;
    font-size: min(3.5em, 10vw);
    font-weight: 200;
    text-align: center;
}






#product_list_component{
    width: 100%;
    max-width: 110em;
    margin: 2em auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1em;
    padding-top: 0;
}


#product_list_component .list_category_container{
    position: sticky;
    top: 0;
    z-index: 5;
    width: 100%;
    overflow: auto;
    padding: 1em 0.5em;
    background: white;
}


#product_list_component .list_category_container .list_category{
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


#product_list_component .list_category_container .list_category .category{
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 0.25em;
    font-size: 0.9em;
}

#product_list_component .list_category_container .list_category .category:not(.selected):hover{
    background: #eeeeee;
}

#product_list_component .list_category_container .list_category .category.selected{
    background: #3f3f3f;
    color: white;
}






#product_list_component .search_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 2em;
    background: white;
    z-index: 5;
}


#product_list_component .search_container input{
    padding: 0.5em;
    width: 20em;
    max-width: 50vh;
    border: 1px solid #8f8f8f;
    border-radius: 0.25em;
}







#product_list_component .list_category_product{
    margin-top: 3em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

#product_list_component .list_category_product>section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 5em;
}

#product_list_component .list_category_product>section>.title{
    font-size: 1.5em;
    font-weight: 300;
    color: #676767;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    padding: 0;
}



#product_list_component .list_category_product>section .list_product{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1em;
    flex-wrap: wrap;
    width: 100%;
    margin: 3em auto;
}


#product_list_component .list_category_product .product_container{
    align-self: stretch;
    width: 100%;
}



@media screen and (min-width: 750px) {

    #product_list_component .list_category_product .product_container{
        width: calc(50% - 1em);
    }

}

@media screen and (min-width: 1250px) {

    #product_list_component .list_category_product .product_container{
        width: calc(33% - 1em);
    }

}




#product_list_component .list_category_product .product_container .product{
    width: 100%;
    height: 100%;
    padding: 1em 2em;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 2em;
    background: white;
    box-shadow: 0 0 2px 1px #d5d5d5;
    border-radius: 0.25em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


#product_list_component .list_category_product .product_container .product .product_image_container{
    min-width: min(10em, 25vw);
    max-width: min(10em, 25vw);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: 0 auto 1em;
}


#product_list_component .list_category_product .product_container .product .product_image_container .product_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


#product_list_component .list_category_product .product_container .product .product_info_container{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
}



#product_list_component .list_category_product .product_container .product .product_info_container .product_name{
    font-size: 1.25em;
    font-weight: 400;
    color: #000000;
}

#product_list_component .list_category_product .product_container .product .product_info_container .product_description{
    font-size: 1em;
    font-weight: 300;
    color: #3b3b3b;
    margin: 0.5em 0;
}


#product_list_component .list_category_product .product_container .product .product_info_container .product_price{
    font-size: 1.15em;
    font-weight: 300;
    color: var(--main-action-color);
}





#product_list_component .list_category_product .product .add_to_cart{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 1em;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 0;
    bottom: 0;
    left: 0;
    color: white;
    fill: white;
    background: #00000069;
    backdrop-filter: blur(5px);
    /*transform: translateY(100%);*/
    transition: 0.25s max-width;
    cursor: pointer;
}

#product_list_component .list_category_product .product .add_to_cart.visible{
    max-width: 100%;
}

#product_list_component .list_category_product .product .add_to_cart .label{
    font-size: 1.5em;
    font-weight: 300;
    text-align: center;
    opacity: 0;
    transition: 0.25s 0.1s opacity;
}

#product_list_component .list_category_product .product .add_to_cart.visible .label{
    opacity: 1;
}

#product_list_component .list_category_product .product .add_to_cart .app_icon{
    min-width: 1.5em;
    opacity: 0;
    transition: 0.25s 0.1s opacity;
}

#product_list_component .list_category_product .product .add_to_cart.visible .app_icon{
    opacity: 1;
}
