/* --------------------------------------------- */
/* -------------------- ALL -------------------- */
/* --------------------------------------------- */


/* ---------------------------------------------------------------------------------------- */
/* ---------------------------------------- MOBILE ---------------------------------------- */
/* ---------------------------------------------------------------------------------------- */

/* ---------------------------------------------- */
/* -------------------- MAIN -------------------- */
main{
    h1{
        font-family: "Parisienne", serif;
        text-align: center;
        padding: 3% 0;
        color: #8b5e3c;
    }
    #linkCart{
        padding: 3%;
        width: 100%;
        text-align: end;
        a{
            font-family: "Parisienne", serif;
            color: #6DD96D;
            font-size: 1.2rem;
            #cartQuantity{
                background-color: #6DD96D;
                color: #8b5e3c;
                border-radius: 50%;
                padding: 1% 2%;
                font-size: 12px;
            }
        }
    }
    #products{
        width: 90%;
        margin: 5% auto 7% auto;
        #shop{
            margin-bottom: 15%;
            #nameProduct{
                padding-bottom: 3%;
                font-family: "Parisienne", serif;
                font-size: 1.3rem;
            }
            #divImgProduct{
                width: 100%;
                img{
                    width: 100%;
                    object-fit: cover;
                    height: 237px;
                }
            }
            #descriptionProduct{
                p{
                    padding: 2% 0;
                    font-size: 12px;
                }
            }
            form{
                label{
                    font-size: 12px;
                }
                button{
                    all: unset;
                    color: #6DD96D;
                    padding: 2%;
                    background-color: #8b5e3c;
                    border: solid 1px #6DD96D;
                    border-radius: 20px;
                    margin-left: 5%;
                    font-size: 12px;
                }
            }
        }
    }
    #noProduct{
        width: 90%;
        margin: 5% auto 7% auto;
        p:nth-of-type(1){
            margin-bottom: 3%;
        }
    }
}

/* ---------------------------------------------------------------------------------------- */
/* ---------------------------------------- TABLET ---------------------------------------- */
/* ---------------------------------------------------------------------------------------- */
@media screen and (min-width:768px) and (max-width:1024px) {
    /* ---------------------------------------------- */
    /* -------------------- MAIN -------------------- */
    main{
        #linkCart{
            a{
                font-size: 1.5rem;
                #cartQuantity{
                    padding: 1% 2%;
                    font-size: 1rem;
                }
            }
        }
        #products{
            width: 80%;
            #shop{
                margin-bottom: 10%;
                #nameProduct{
                    font-size: 1.5rem;
                }
                #divImgProduct{
                    img{
                        height: 300px;
                    }
                }
                #descriptionProduct{
                    p{
                        padding: 1% 0;
                        font-size: 1rem;
                    }
                }
                form{
                    label{
                        font-size: 1rem;
                    }
                    button{
                        padding: 1% 2%;
                    }
                }
            }
        }
    }
}

/* ----------------------------------------------------------------------------------------- */
/* ---------------------------------------- DESKTOP ---------------------------------------- */
/* ----------------------------------------------------------------------------------------- */
@media screen and (min-width:1024px) {
    /* ---------------------------------------------- */
    /* -------------------- MAIN -------------------- */
    main{
        #linkCart{
            padding: 1% 3%;
            a{
                font-size: 1.7rem;
                #cartQuantity{
                    padding: 1% 1.3%;
                }
            }
        }
        #products{
            width: 80%;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 5% auto 5% auto;
            #shop{
                margin-bottom: 5%;
                width: 45%;
                #nameProduct{
                    padding-bottom: 2%;
                    font-size: 1.5rem;
                }
                #divImgProduct{
                    width: 100%;
                    img{
                        height: 369px;
                    }
                }
                #descriptionProduct{
                    p{
                        font-size: 1rem;
                    }
                }
                form{
                    label{
                        font-size: 1rem;
                    }
                    button{
                        padding: 1% 2%;
                        transition: all .5s linear;
                        font-size: 1rem;
                        &:hover{
                            color: #8b5e3c;
                            background-color: #6DD96D;
                            border: solid 1px #8b5e3c;
                        }
                    }
                }
            }
        }
        #noProduct{
            width: 80%;
            margin: 5% auto 5% auto;
        }
    }

}