body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #6c5ce7;
    padding: 15px 20px;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 40px;
}

.search-form {
    display: flex;
    gap: 5px;
}

.search-form input {
    padding: 8px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.search-form button {
    padding: 8px 12px;
    border: none;
    background-color: #fd79a8;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

h1 {
    text-align: center;
    padding: 20px 0;
    color: #2d3436;
}

.produits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.produit {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 280px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    text-align: center;
}

.produit:hover {
    transform: translateY(-5px);
}

.produit img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.produit h2 {
    font-size: 18px;
    color: #6c5ce7;
}

.produit p {
    font-size: 14px;
    margin: 5px 0;
}

.produit a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #00b894;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.produit a:hover {
    background-color: #019874;
}