body {
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    background-color: #ebe6e6;
    color: #000000;
}

.product-catalog,
.producteur-catalog {
    padding: 20px;
    background-color: #f5f5f5;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
}

.product-catalog h2,
.producteur-catalog h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #26331a;
}

.producteur-catalog .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.producteur-catalog .product-item {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.producteur-catalog .product-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.producteur-catalog .product-item h3 {
    margin-top: 0;
    color: #2a3b12;
}

.producteur-catalog .product-item p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.filters label {
    margin-right: 5px;
    font-weight: bold;
    color: #26331a;
}

.filters select,
.filters input {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.filters button {
    padding: 8px 15px;
    background-color: #26331a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.filters button:hover {
    background-color: #1b2412;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-item {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-item h3 {
    margin-top: 0;
    color: #2a3b12;
}

.product-item p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.product-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
}