/* Style général */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Bandeau menu */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #000;
}

/* Logo pleine largeur */
.full-width-logo {
    margin-bottom: 20px;
}

.full-width-logo img {
    max-height: 150px;
    object-fit: contain;
}

/* Présentation */
.presentation {
    background-color: #fff;
    margin-bottom: 30px;
}

.presentation h1 {
    color: #2c3e50;
    font-weight: 700;
}

.presentation .lead {
    color: #7f8c8d;
    font-size: 1.25rem;
}

/* Produits */
.products .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.products .card-img-top {
    height: 250px;
    object-fit: cover;
}

.products .btn-primary {
    background-color: #e83e8c;
    border-color: #e83e8c;
}

.products .btn-primary:hover {
    background-color: #d62a7a;
    border-color: #d62a7a;
}

/* Panier */
.cart-icon {
    position: relative;
    margin-left: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e83e8c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pied de page */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}
