body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ab272e;
    padding: 1px;
    text-align: center;
    font-size: 14px;
    color: white;
}

#banniere {
    position: relative;
    width: 100%;
    height: 300px; /* Ajuste la hauteur de la bannière selon tes besoins */
    background-color: #f4f4f4;
    overflow: hidden;
}

#banniere img {
    width: 100%;
}

.slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Pour que le texte soit lisible sur l'image */
    width: 70%;
}

nav {
    background-color: #f4f4f4;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.produits-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 20px;
    justify-content: space-around; /* Espace égal entre les produits */
}

.produit {
    border: 1px solid #ddd;
    padding: 10px;
    width: 150px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin: 10px;
}

.produit img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.produit h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0 5px;
}

.produit p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.produit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.filtres button {
    margin: 5px;
    padding: 10px 20px;
    background-color: #f4a261;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.filtres button:hover {
    background-color: #e76f51;
}

.filtres button:active {
    background-color: #d9534f;
}
