
    @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
    body { background: #f9fafc; display: flex; flex-direction: column; min-height: 100vh; font-family: "Open Sans", sans-serif; font-weight: 400; font-style: normal;}
    .main-container { flex: 1;}
    .hero { background: linear-gradient(90deg, #0d6efd, #198754); color: white; padding: 50px 0; text-align: center;}
    .hero h1 { font-weight: 700; font-size: 2.2rem;}
    .vendor-card { border: none; border-radius: 15px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; cursor: pointer; background: white;}
    .vendor-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);}
    .vendor-card img.cover { height: 180px; width: 100%; object-fit: cover;}
    .vendor-logo { width: 80px; height: 80px; border-radius: 50%; border: 3px solid white; margin-top: -40px; object-fit: cover; background: #f8f9fa;}
    .vendor-card h5 { font-weight: 600; margin-top: 10px;}
    .vendor-card p { color: #6c757d;}
    
    /* ====== CARD GLOBALE ====== */
.vendor-card {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding-bottom: 10px;
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* ====== IMAGE DE COUVERTURE ====== */
.vendor-card img.cover {
    height: 120px;            /* ← réduit */
    width: 100%;
    object-fit: cover;
}

/* ====== LOGO ====== */
.vendor-logo {
    width: 60px;              /* ← réduit */
    height: 60px;             /* ← réduit */
    margin-top: -30px;        /* ← ajuste le chevauchement */
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    background: #f1f1f1;
}

/* ====== TEXTES ====== */
.vendor-card h5 {
    font-size: 0.95rem;       /* ← plus compact */
    font-weight: 600;
    margin: 6px 0;
    color: #8282d5;
}

.vendor-card p {
    font-size: 0.80rem;       /* ← plus petit */
    color: #6c757d;
    margin: 2px 0;
    line-height: 1.2;
}

/* Meilleure gestion du spacing */
.vendor-card .p-3 {
    padding: 10px !important;
}

    /* 5 colonnes sur PC */
@media (min-width: 992px) {
    .col-lg-5th {
        width: 20%;
        flex: 0 0 20%;
    }
}

