.corps {
    width: 60%;
    margin: 0 auto;
}

.corps p,
.corps a {
    text-decoration: none;
    color: var(--texte);
}

.corps .ici {
    font-weight: 600;
    color: var(--brun);
}

.corps p a:hover:not(.ici) {
    color: var(--brun);
    text-decoration: underline;
}

.gouts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .7em;
    margin-top: 1em;
}

.gouts>a {
    text-decoration: none;
}

.carte {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 18rem;
    min-height: 25rem;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.carte:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.carte img {
    width: 17.5rem;
    margin-bottom: 1rem;
}

.carte h4 {
    margin: .25rem 0;
    color: var(--texte);
}

.g {
    display: flex;
    align-items: center;
}

.g h3 {
    margin-right: 1em;
}









#conteneur-panier-vide {
    text-align: center;
    margin: 17.5vh 0;
}

.main-panier img {
    width: 1em;
    margin: 0;
    transform: translateY(.15em);
}

#conteneur-panier-vide p {
    font-size: 200%;
    margin-bottom: 1em;
}

#conteneur-panier-vide a,
#payer {
    text-decoration: none;
    color: var(--texte);
    background: var(--jaune);
    padding: .75em 1em;
    font-size: 140%;
    border-radius: 20em;
    border: none;
    margin: 0 auto;
}

.main-panier h2 {
    text-align: center;
    font-size: 250%;
}

.prix-article,
.article-panier h3 {
    text-align: center;
}

.article-panier h3 {
    font-size: 175%;
    margin: .5em 0;
}

.article-panier {
    background: #fff;
    padding: .75em;
    border: solid .1em #ccc;
    border-radius: 2em;
    width: 27.5em;
    margin: 1em auto;
}

.quantite-panier {
    display: flex;
    justify-content: center;
    align-items: center;

}

.main-panier button,
.main-panier input {
    background: #fff;
    border: .1em solid #ccc;
    border-radius: 10em;
    text-align: center;
    height: 3em;
}

.quantite-panier button {
    width: 3em;
    font-size: 125%;
    padding: 0;
}

.quantite-panier input {
    width: 5em;
    margin: 0 .5em;
    font-size: 125%;
}

.main-panier button:hover,
.main-panier input:hover,
.main-panier input:focus {
    background: #e8e8e8;
    outline: none;
}












@media (max-width: 500px) {
    .article-panier {
        background: #fff;
        padding: .75em;
        border: solid .1em #ccc;
        border-radius: 2em;
        width: 90%;
    }
}




@media (max-width: 978px) {
    .corps {
        width: 90%;
    }

}

@media (max-width: 1477px) {
    .corps {
        width: 70%;
    }

}

@media (max-width: 1266px) {
    .corps {
        width: 90%;
    }

}

@media (max-width: 652px) {
    .gouts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .carte img {
        width: 43vw;
        margin-bottom: 1rem;
    }

    .carte {
        width: 46vw;
        min-height: 3.3vw;
    }

    .carte h4 {
        font-size: 3vw;
    }

}