/* Body and header */
body {
    font-family: Arial, sans-serif;
    padding-top: 60px;
    margin: 0; /* Ajouté pour éviter un décalage si le padding n'est pas assez grand */
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none; /* Assurer qu'il n'y ait pas de soulignement */
}

.round-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ajouté pour centrer le logo et menu */
    padding: 15px;
    background-color: #333;
    color: #fff;
}

.nav-container {
    display: flex;
    align-items: center; /* Centrer les éléments dans le conteneur */
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0; /* Pour éviter un décalage de liste */
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Responsive design pour les petits écrans */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        padding: 10px 0; /* Espacement vertical pour les éléments du menu */
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links li:last-child {
        margin-bottom: 0;
    }
}

/* Product card styles */
.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-card {
    background-color: #f4f4f4;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.product-card p {
    font-size: 14px;
    color: #666;
}

.btn {
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    text-decoration: none; /* Assurer qu'il n'y ait pas de soulignement */
    display: inline-block; /* Important pour bien s'afficher */
}

.btn:hover {
    background-color: #555; /* Ajout d'un effet hover */
}