/* =========================
   ADMIN PAGE
========================= */
.admin-dashboard{
    max-width:1300px;
    margin:120px auto 60px;
    padding:0 24px;
}
/* =========================
   HEADER
========================= */
.dashboard-header{
    margin-bottom:40px;
}
.dashboard-header h1{
    font-size:42px;
    color:var(--text);
    margin-bottom:10px;
    font-weight:700;
}
.dashboard-header p{
    color:var(--text-light);
    font-size:17px;
}
/* =========================
   STATS
========================= */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}
.stat-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}
.stat-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.stat-card h3{
    font-size:38px;
    color:var(--primary);
    margin-bottom:10px;
}
.stat-card p{
    color:var(--text-light);
}
/* =========================
   SECTIONS
========================= */
.admin-section{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    margin-bottom:35px;
}
.section-header{
    margin-bottom:25px;
}
.section-header h2{
    color:var(--text);
    font-size:26px;
}
/* =========================
   LISTINGS / SERVICES
========================= */
.admin-listing-card,
.admin-service-card,
.admin-user-card{
    background:var(--background);
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px;
    margin-bottom:18px;
    transition:.3s;
}
.admin-listing-card:hover,
.admin-service-card:hover,
.admin-user-card:hover{
    transform:translateY(-2px);
    border-color:var(--primary);
}
.admin-listing-card h3,
.admin-service-card h3,
.admin-user-card h3{
    color:var(--text);
    margin-bottom:10px;
    font-size:20px;
}
.admin-listing-card p,
.admin-service-card p,
.admin-user-card p{
    color:var(--text-light);
    margin-bottom:8px;
}
/* =========================
   ACTION BUTTONS
========================= */
.admin-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}
.btn-admin{
    background:#10B981;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}
.btn-admin:hover{
    transform:translateY(-2px);
}
.btn-suspend{
    background:#F59E0B;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}
.btn-suspend:hover{
    transform:translateY(-2px);
}
.btn-delete{
    background:#EF4444;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}
.btn-delete:hover{
    transform:translateY(-2px);
}
/* =========================
   MOBILE
========================= */
@media(max-width:900px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:650px){
    .admin-dashboard{
        margin-top:95px;
        padding:0 15px;
    }
    .stats-grid{
        grid-template-columns:1fr;
    }
    .dashboard-header h1{
        font-size:32px;
    }
    .admin-actions{
        flex-direction:column;
    }
    .btn-admin,
    .btn-suspend,
    .btn-delete{
        width:100%;
    }
}