/*todo la boutique*/
#boutiquePage .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 0 10%;
}

#boutiquePage .gridFooter {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: center;
    padding-bottom: 7%;
}

#boutiquePage .imageAbsoluteBoutique img {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -35%);
    max-height:277px;
    max-width: 70px;
}

#boutiquePage .card {
    min-height: 600px;
    margin-bottom: 10rem;
    border:none;
}

#boutiquePage .inputQuantite {
    max-height: 30px;
    max-width: 100px;
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
}

#boutiquePage .textAbsoluteBoutique {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    top: 17rem;
}

#boutiquePage .titreBoutique{
    margin-top:10rem;
    margin-bottom:12rem;
}

@media (max-width: 454px) {
    #boutiquePage .textAbsoluteBoutique {
        top: 16rem;
    }
    #boutiquePage .titreBoutique{
        margin-top:21rem;
    }
}
@media (min-width: 455px) and (max-width: 529px) {
    #boutiquePage .titreBoutique{
        margin-top:21rem;
    }
}

@media (min-width: 530px) and (max-width: 575px) {
    #boutiquePage .textAbsoluteBoutique {
        top: 18rem;
    }
    #boutiquePage .titreBoutique{
        margin-top:21rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #boutiquePage .gridFooter {
        grid-template-columns: 1fr;
    }
    #boutiquePage .grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 5%;
    }
    #boutiquePage .textAbsoluteBoutique {
        top: 14rem;
    }
    #boutiquePage .titreBoutique{
        margin-top:21rem;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #boutiquePage .gridFooter {
        grid-template-columns: 1fr;
    }
    #boutiquePage .grid {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 5%;
    }
    #boutiquePage .textAbsoluteBoutique {
        top: 12rem;
    }
    #boutiquePage .boutonBoutique {
        padding: 0.5rem 0.3rem;
    }
    #boutiquePage .titreBoutique{
        margin-top:21rem;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    #boutiquePage .grid {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 10%;
    }
    #boutiquePage .textAbsoluteBoutique {
        top: 14rem;
    }
    #boutiquePage .boutonBoutique {
        padding: 0.5rem 0.3rem;
    }
    #boutiquePage .titreBoutique{
        margin-top:13rem;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    #boutiquePage .grid {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 17%;
    }
}

@media (min-width: 1401px) {
    #boutiquePage .gridFooter {
        grid-template-columns: 30% 70%;
        margin-left:5%;
    }
    #boutiquePage .grid {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 20%;
    }
    #boutiquePage .textAbsoluteBoutique {
        top: 14rem;
    }
    #boutiquePage .boutonBoutique{
        padding:0.5rem 1rem;
    }
    #boutiquePage .card {
        min-height:600px;
    }
}