.vendor-dashboard{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
}

.vendor-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.vendor-title h1{
    margin:0;
    font-size:36px;
    font-weight:700;
}

.vendor-title p{
    margin:8px 0 0;
    color:#666;
}

.vendor-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.vendor-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.vendor-btn-primary{
    background:#0057ff;
    color:#fff;
}

.vendor-btn-primary:hover{
    background:#0046d1;
}

.vendor-btn-dark{
    background:#111827;
    color:#fff;
}

.vendor-btn-dark:hover{
    background:#000;
}

.vendor-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.stat-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:25px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.stat-card h3{
    margin:0 0 10px;
    font-size:14px;
    text-transform:uppercase;
    color:#6b7280;
}

.stat-card .value{
    font-size:34px;
    font-weight:700;
}

.vendor-grid{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:25px;
}

.vendor-sidebar{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
}

.vendor-sidebar h3{
    margin:0;
    padding:20px;
    background:#f8fafc;
    border-bottom:1px solid #e5e7eb;
}

.vendor-menu{
    list-style:none;
    margin:0;
    padding:0;
}

.vendor-menu li{
    border-bottom:1px solid #f1f5f9;
}

.vendor-menu a{
    display:block;
    padding:14px 20px;
    text-decoration:none;
    color:#111827;
    font-weight:500;
}

.vendor-menu a:hover{
    background:#f8fafc;
}

.vendor-content{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:25px;
}

.vendor-section{
    margin-bottom:40px;
}

.vendor-section h2{
    margin-top:0;
}

.quick-links{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.quick-card{
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:25px;
    text-decoration:none;
    color:#111827;
    transition:.3s;
}

.quick-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.quick-card h4{
    margin:0 0 10px;
}

.quick-card p{
    margin:0;
    color:#6b7280;
}

@media(max-width:991px){

    .vendor-grid{
        grid-template-columns:1fr;
    }

    .vendor-header{
        flex-direction:column;
        align-items:flex-start;
    }

}
