body{
    text-align: center !important;
    background-color: black !important;
    color: white;
    font-family: 'Cinzel Decorative' !important;  
}

main{
    margin-top: 100px;
}
.sort{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.order{
    max-width: 160px;
}
/* .order option{
    text-align: center;
    margin-left: 0px;
} */

.filtre {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
margin-top: 30px;
}

.filtre label {
margin-right: 10px;
color: white;
font-weight: bold;
margin-bottom: 1rem;
}

.filtre select {
background-color: black;
color: white;
border: 1px solid white;
padding: 5px 10px;
border-radius: 5px;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
outline: none;
font-size: 16px;
}

.filtre select option {
background-color: black;
color: white;
}

/* Ajouter une icône de flèche pour le menu déroulant */
.filtre select::-ms-expand {
display: none; /* Masquer la flèche par défaut dans IE */
}

/* Ajouter une icône de flèche personnalisée */
.filtre select {
position: relative;
padding-right: 25px; /* Espace pour l'icône de flèche */
}

.filtre select::after {
content: "\25BC"; /* Code Unicode pour la flèche vers le bas */
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
pointer-events: none; /* Permet de cliquer à travers l'icône */
color: white;
}


    .productDisplay {
        margin-left: -10px;
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center; 
    }

.product {
width: 43vw;
height: auto;
text-align: center;
margin-bottom: 25px; 
}

@media (min-width: 1000px) {
        .product {
            width: 20vw;
           max-width: 260px;
        }
    }


    .product img {
        width: 100%;
        height: 30vw;
        object-fit: cover;
        border-radius: 50% 50% 0 0;
        
        margin-bottom: -10px
    }

    @media (min-width: 1000px) {
        .product img {
            height: 15vw;
            max-height: 195px;
        }
    }
    .product h2 {
        font-weight: normal;
        font-size: 0.8em;
        margin: 0px 0;
    }
    .product p {
      font-size: 0.9em;
        margin: 5px 0;
    }
    @media (max-width: 500px) {
        .product p {
      font-size: 0.8em;
        margin: 5px 0;
    }
}
    .divRouge{
      height: 100px;
      background-color: #5B0613;
/* padding: 10px; Ajustement du padding pour créer un espace autour du contenu */
padding-top: 20px;
flex: 1; /* Permet au divRouge de prendre toute la hauteur disponible */
display: flex;
flex-direction: column;
justify-content: center;
gap:10px;
align-items: center;
border-bottom-left-radius: 15px; 
border-bottom-right-radius: 15px;
    }

    .titrePage{
color:white;
font-size: clamp(2rem, 7vw, 4rem);
font-weight: normal;
margin-bottom: 0px;
}

.lien{
text-decoration: none;
color: white;
}