header img {
    max-width: 600px; /* Ajustez la largeur */
    height: auto; /* Maintient les proportions */
  }


body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.wishlist-container {
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.wishlist-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.wishlist-item img {
    max-width: 100%;
    border-radius: 8px;
}

.wishlist-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.wishlist-item p {
    font-size: 16px;
    color: #666;
}

.btn {
    background: black;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover {
    background: #333;
}

.remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: red;
}

footer {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: white;
    margin-top: 40px;
}

.footer-section {
    text-align: center;
}

.search-icon img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.location-icon img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
