.homeProducts{
    min-width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}

.homeProductsWelcome{
    width: 100%;
    display: flex;
    min-height: 75px;
}

.homeProductsWelcomeText{
    margin: auto;
    color: var(--titles-white);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.homeProductsRecommended{
    /*background-color: lightgreen;/**/
    min-height: 250px;
    display: flex;
    flex-direction: column;
    margin: 0 30px;
    /*border: var(--debug);/**/
}

.homeProductsRecommendedText{
    margin: auto;
}

.homeProductsRecommendedTextItem{
    color: var(--titles-white);
    font-size: 20px;
    font-weight: bold;
}


.homeProductsRecommendedList{
    margin: 30px 0;
    display: flex;
    flex-direction: row;
}

.homeProductsRecommendedList>*{
    margin: auto;
}



/*Some more store products*/

.homeProductsList{
    margin: 0 30px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    margin: 0 30px;
    /*border: var(--debug);/**/
    /*background-color: lightgreen;/**/
}

.homeProductsListText{
    margin: auto;
}

.homeProductsListTextItem{
    color: var(--titles-white);
    font-size: 20px;
    font-weight: bold;
}


.homeProductsListList{
    margin: 30px 0;
    display: flex;
    flex-direction: row;
}

.homeProductsListList>*{
    margin: auto;
}


/*Redir button*/

.storeRedirButton{
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 30px auto;

}

.storeRedirButton a{
    display: flex;
    flex-direction: column;
}

.storeRedirButtonTitle{
    color: var(--titles-white);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.storeRedirButtonItem{
    padding: 15px 50px;
    background-color: var(--button-background-white);
    color: var(--button-text-white);
    font-weight: bold;
    font-size: 25px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, scale 0.3s ease;
}



/*Hover animations*/

.storeRedirButtonItem:hover {
    background-color: var(--button-hover-white);
    color: var(--button-text-hover-white);
    scale: 1.05;
    transition: background-color .5s ease, color 0.3s ease, scale 0.3s ease;
}

@media (max-width: 768px) {
    
/*    .homeProductsRecommendedList{
        height: 300px;
        overflow-x: scroll;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }

    .homeProductsRecommendedList>* {
        margin: auto;
        margin-bottom: 10px;
        margin-right: 60px !important;
        max-width: 150px !important;
        max-height: 350px !important;
    }*/

    .homeProductsRecommendedList{
        /*border: red dotted 2px; /* For debugging purposes */
        margin: 30px 0;
        display: flex;
        flex-direction: row;
        width: 100%;
        overflow-x: scroll;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }

    .homeProductsRecommendedList>*{
        margin: 0;
        min-width: 150px !important;
        min-height: 350px !important;
        height: 350px !important;
        margin-right: 20px !important;
    }


    .storeRedirButtonTitle{
        color: var(--titles-white);
        font-size: 25px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }

    .storeRedirButtonItem{
        padding: 15px 50px;
        background-color: var(--button-background-white);
        color: var(--button-text-white);
        font-weight: bold;
        font-size: 20px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, scale 0.3s ease;
    }

    .homeProductsWelcomeText{
        margin: auto;
        color: var(--titles-white);
        font-size: 25px;
        font-weight: bold;
        text-align: center;
    }


    .homeProductsWelcome{
        width: 100%;
        display: flex;
        min-height: 35px;
    }

}
