/* Police d'écriture élégante (optionnel si tu ne charges pas Google Fonts) */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Navigation --- */
.navbar {
    background: linear-gradient(90deg, #2c3e50, #4ca1af) !important; /* Dégradé élégant */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Cartes Produits (Effet Wow) --- */
.card-art {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    overflow: hidden; /* Pour que l'image ne dépasse pas au zoom */
}

.card-art:hover {
    transform: translateY(-10px); /* La carte monte un peu */
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-art:hover img {
    transform: scale(1.1); /* Zoom lent sur l'image */
}

.prix-tag {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

/* --- Boutons --- */
.btn-custom {
    background-color: #2c3e50;
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
}
.btn-custom:hover {
    background-color: #1a252f;
    color: white;
}