
/**-------------------------------------------------------------------------------------------------------------------
HERO BANNER
-------------------------------------------------------------------------------------------------------------------**/




header{
    width: calc(100vw - (100vw - 100%));
    width: calc(100dvw - (100dvw - 100%));
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background-image: url("../../images/homepage/hero_banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    position: relative;
    color: white;
}


header .banner_content{
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 6em;
    padding-left: 8vw;
    padding-right: 8vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2em;
    width: 100%;
}


header .enterprise_main_info{
    padding: 1em;
    /*background: #00000021;*/
    backdrop-filter: blur(5px);
    border-radius: 0.25em;
}




header .enterprise_main_info>.title_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: 'Poiret One', sans-serif;
}

header .enterprise_main_info>.title_container .title{
    font-size: 5em;
    font-weight: 200;
}

header .enterprise_main_info>.title_container .activity{
    margin-left: 0.5em;
    font-size: 1.25em;
    font-weight: 200;
}


header .enterprise_main_info .separator{
    width: 10em;
    height: 2px;
    background: white;
    margin-top: 1em;
    margin-left: 0.5em;
}



header .enterprise_main_info .address_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
    margin: 1em 0;
    padding: 0.5em;
}


header .enterprise_main_info .address_container>span{
    font-size: 1em;
    color: white;
    font-weight: 200;
    font-style: normal;
}



header .enterprise_main_info .phone_container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5em;
    padding: 0.5em 1em;
    color: white;
    border: 1px solid white;
    border-radius: 0.25em;
    width: max-content;
    margin-left: 0.5em;
    font-size: 0.9em;
}


header .enterprise_main_info .phone_container .app_icon{
    width: 1.25em;
    fill: white;
    transform: rotate(90deg);
}















/**-------------------------------------------------------------------------------------------------------------------
PAGE CONTENT
-------------------------------------------------------------------------------------------------------------------**/


#page_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#page_content section{
    width: 100%;
}



#page_content section>.title{
    text-align: center;
    width: 100%;
    font-size: 2em;
    font-weight: 400;
    padding: 1em;
    margin-bottom: 1em;
}







/**ABOUT US SECTION
-------------------------------------------------------------------------------------------------------------------**/


#page_content>section.about_us_section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 100%;
    overflow: hidden;
    background-image: url(../../images/homepage/coming_soon.jpg);
    background-position: center;
    background-size: cover;
    padding: 6em 0;
    margin: 3em auto 0;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
}









#page_content>section.about_us_section .content_container {
    width: 90%;
    max-width: 70em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3em;
    z-index: 2;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(5px);
    padding: 2em min(2em, 5vw);
    border-radius: 0.25em;
    opacity: 0;
    transition: 0.5s opacity, 0.5s transform;
    transform: translate(30%, 30%);
}




#page_content>section.about_us_section.visible .content_container{
    opacity: 1;
    transform: translate(0, 0);
}



#page_content>section.about_us_section .content_container>.title{
    font-size: min(2.25em, 8vw);
    font-weight: 300;
}


#page_content>section.about_us_section .content_container>.content{
    font-size: 1em;
    text-align: left;
    line-height: 2em;
}



#page_content>section.about_us_section .section_info_list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1em;
}


#page_content>section.about_us_section .section_info_list .info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    font-weight: 500;
}

#page_content>section.about_us_section .section_info_list .info .check{
    border-radius: 0.25em;
    background: var(--main-action-color);
    fill: white;
    padding: 0.25em;
    width: 1.4em;
}











/**CATEGORIES LIST
-------------------------------------------------------------------------------------------------------------------**/

#page_content .our_categories{
    width: 100%;
    max-width: 110em;
    margin-top: 5em;
    margin-bottom: 3em;
}


#page_content .our_categories>.title{
    text-align: left;
    margin-bottom: 1em;
}





#page_content .category_list_container{
    max-width: 110em;
}





#page_content .category_list .category{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
    align-self: stretch;
    box-shadow: 2px 2px 7px #dddddd;
    padding: 2em;
    min-width: min(28em, 85vw);
    max-width: min(28em, 85vw);
    margin: 0 auto;
    /*background: linear-gradient(346deg, var(--main-action-color) 30%, white 30%);*/
    background-size: 100% 400%;
    background-position-y: 70%;
    transition: 0.25s linear background, 0.25s linear color;
    cursor: pointer;
    font-size: min(1em, 3.5vw);
}

#page_content .category_list .category:hover{
    /*background: linear-gradient(360deg, var(--main-action-color) 30%, white 30%);*/
    background-size: 100% 400%;
    background-position-y: 100%;
    /*color: white;*/
}



#page_content .category_list .category .category_name{
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    color: #5b5b5b;
}


#page_content .category_list .category .category_description{
    text-align: center;
    color: #565656;
    transition: 0.25s linear color;
    line-height: 1.5em;
    margin: auto;
}

#page_content .category_list .category:hover .category_description{
    /*color: white;*/
}


#page_content .category_list .category img{
    width: 90%;
    max-width: min(18em, 55vw);
    aspect-ratio: 1/1;
    margin-top: auto;
    margin-bottom: 2em;
}
















/**FLAGSHIP PRODUCTS
-------------------------------------------------------------------------------------------------------------------**/


#page_content .flagship_products{
    margin: 0 auto;
    margin-bottom: 5em;
}


#page_content .flagship_products .scroller_list_container{
    /*max-width: 60em;*/
    padding: 1em;
}


#page_content .flagship_products>.title{
    text-align: center;
    margin-bottom: 2em;
}


#page_content .product_list{
    width: max-content;
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /*display: flex;
    flex-direction: row;*/
    align-items: center;
    justify-content: flex-start;
    gap: 3em;
}


#page_content .product_list .product_container{
    align-self: stretch;
}


#page_content .product_list .product{
    width: 20em;
    height: 100%;
    padding: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0px 2px 4px 1px #d5d5d5;
    position: relative;
    overflow: hidden;
}




#page_content .product_list .product .product_image_container{
    width: 10em;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin: 0 auto 1em;
}


#page_content .product_list .product .product_image_container .product_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


#page_content .product_list .product .product_info_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
}

#page_content .product_list .product .product_info_container .product_category{
    font-size: 0.9em;
    color: #a4a4a4;
}

#page_content .product_list .product .product_info_container .product_name{
    font-size: 1.5em;
    font-weight: 300;
    color: #000000;
}

#page_content .product_list .product .product_info_container .product_price{
    font-size: 1.15em;
    color: var(--main-action-color);
    font-weight: 400;
}





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

#page_content .product_list .product .add_to_cart.visible{
    transform: translateY(0);
}

#page_content .product_list .product .add_to_cart .label{
    font-size: 1.5em;
    font-weight: 300;
    text-align: center;
}

#page_content .product_list .product .add_to_cart .app_icon{
    min-width: 1.5em;
}























/**DELIVERY SERVICE SECTION
-------------------------------------------------------------------------------------------------------------------**/


#page_content .delivery_service_section{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5em;
    width: 100%;
    overflow: hidden;
    margin: 0 auto 5em;
    padding: 10em 2em 5em;
    background: linear-gradient(179deg, #00a9ff14, transparent);
}


#page_content .delivery_service_section .content_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2em;
    max-width: 50em;
    opacity: 0;
    transform: translateX(-30vw);
    transition: 0.25s opacity, 0.5s transform;
}


#page_content .delivery_service_section.visible .content_container{
    opacity: 1;
    transform: translateX(0);
}


#page_content .delivery_service_section .content_container>.title{
    text-align: left;
    font-size: 2em;
    font-weight: 400;
}


#page_content .delivery_service_section .content_container .content{
    text-align: left;
    line-height: 2em;
    font-size: 1.05em;
}



#page_content .delivery_service_section .image_container{
    width: 25em;
    max-width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0;
    transform: translateX(30vw);
    transition: 0.25s 0.25s opacity, 0.5s 0.25s transform;
}

#page_content .delivery_service_section.visible .image_container{
    opacity: 1;
    transform: translateX(0);
}


#page_content .delivery_service_section .image_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}




















/**SCHEDULE SECTION
-------------------------------------------------------------------------------------------------------------------**/


#page_content .schedule_section{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5em 1em;
    position: relative;
    color: white;
    margin-bottom: 5em;
}


#page_content .schedule_section>.title{
    color: white;
}


#page_content .schedule_section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: skewY(-6deg);
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #575757;
}


#page_content .schedule_section .schedule_container{
    width: 100%;
    max-width: 70em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3em;
}


#page_content .schedule_section .schedule_container .schedule_raw{
    width: 10em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
}

#page_content .schedule_section .schedule_container .schedule_raw .day_of_week{
    width: 100%;
    padding: 0.5em;
    border-bottom: 1px solid #9b9b9b;
    font-weight: 500;
}


#page_content .schedule_section .schedule_container .schedule_raw .schedules{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
    padding: 0.5em;
}

#page_content .schedule_section .schedule_container .schedule_raw .schedules .schedule{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
    font-size: 0.9em;
}
























/**REVIEW SECTION
-------------------------------------------------------------------------------------------------------------------**/


#page_content .review_section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em;
    position: relative;
}

#page_content .review_section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    transform: skewY(4deg);
    z-index: -1;
}

#page_content .review_section .star{
    stroke: none;
    stroke-width: 0;
    fill: #dfdfdf;
}

#page_content .review_section .star.complete{
    fill: #ffb400;
}


#page_content .review_section>.title{
    margin-bottom: 0;
}


#page_content .review_section .rating_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}


#page_content .review_section .rating_container .star_counter{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}


#page_content .review_section .rating_container .star_counter .decimal_star_container{
    position: relative;
    width: 1.5em;
    aspect-ratio: 1/1;
}

#page_content .review_section .rating_container .star_counter .decimal_star_container .star{
    position: absolute;
    top: 0;
    left: 0;
}


#page_content .review_section .rating_container .total_rating_count{
    font-size: 0.9em;
    color: #727272;
}




#page_content .review_section .review_list_scroller{
    position: relative;
    padding: 0 2em;
    max-width: 75em;
}

#page_content .review_section .review_list_scroller .nav_selector{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0.25em;
    background: var(--main-action-color);
    opacity: 0.6;
    fill: white;
    width: 2em;
    aspect-ratio: 1/1;
    padding: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#page_content .review_section .review_list_scroller .nav_selector:hover:not(.disabled){
    opacity: 1;
}

#page_content .review_section .review_list_scroller .nav_selector .app_icon{
    stroke-width: 2px;
    stroke: white;
}

#page_content .review_section .review_list_scroller .nav_selector.prev{
    left: 0;
}

#page_content .review_section .review_list_scroller .nav_selector.next{
    right: 0;
}


#page_content .review_section .review_list_container{
    position: relative;
    margin: 5em auto;
}




#page_content .review_section .review_list .review{
    min-width: 20em;
    max-width: 20em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1em;
    padding: 2em;
    border-radius: 0.5em;
    background: white;
    box-shadow: 1px 1px 5px silver;
}


#page_content .review_section .review_list .review .author_container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
}


#page_content .review_section .review_list .review .author_container .image_container{
    width: 5em;
    aspect-ratio: 1/1;
    overflow: hidden;
}


#page_content .review_section .review_list .review .author_container .image_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



#page_content .review_section .review_list .review .author_container .author_name_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25em;
}


#page_content .review_section .review_list .review .author_container .author_name_container .author_name{
    font-weight: 500;
}

#page_content .review_section .review_list .review .author_container .author_name_container .date_review{
    font-size: 0.8em;
    color: silver;
}


#page_content .review_section .review_list .review .review_content{
    font-size: 0.9em;
    line-height: 1.75em;
}


#page_content .review_section .review_list .review .author_rating{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
    font-size: 0.9em;
}



















/**-------------------------------------------------------------------------------------------------------------------
MEDIA QUERIES
-------------------------------------------------------------------------------------------------------------------**/





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

    #page_content .product_list{
        grid-template-columns: repeat(2, 1fr);
    }

}








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

    #page_content .product_list{
        grid-template-columns: repeat(3, 1fr);
    }

}
