/* GENERAL STORE SECTION */

#store{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#store .store_title_texts{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
}

#store .products_and_filters_container{
    display: flex;
    flex-direction: column;
    

}



/* store_title_texts */

.store_title_texts h1{
    text-transform: capitalize;
    font-size: 4rem;
    color: #0a111f;
    align-self: center;
    text-align: center;
    font-weight: 700;
}

.store_title_texts h2{
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 400;
    color: #606063;
    align-self: center;
    text-align: center;
}


/* products_store_container */


.category_selection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    
}

.category_selection button.category_button{
    border: 2px solid #fca311;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 1.25rem;
    font-weight: 500;
    background-color: transparent;
    text-transform: capitalize;
    color: #0a111f;
    cursor: pointer;
    transition: 0.15s ease-in;

}

.category_selection button.active_category{
    background-color: #fb960f;
    color: #f2f2f2;
}
