body{
    direction:rtl;
    font-family:'Vazirmatn',sans-serif;
    background:#0b0b0b;
    color:var(--text);
}

.admin-container{
    max-width:1400px;
    margin:auto;
    padding:30px;
}

.overhaul-header{
    margin-bottom:30px;
}

.overhaul-header h1{
    color:var(--gold);
    font-size:32px;
}

.overhaul-header p{
    color:var(--text2);
}

.overhaul-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.stat-card{
    background:#111;
    border:1px solid var(--gold);
    border-radius:16px;
    padding:25px;
    text-align:center;
}

.stat-card span{
    color:var(--text2);
}

.stat-card h2{
    color:var(--gold);
    margin-top:10px;
}

.orders-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
    gap:25px;
}

.overhaul-card{
    background:#111;
    border:1px solid #222;
    border-radius:18px;
    padding:25px;
    transition:.3s;
    position:relative;
}

.overhaul-card:hover{
    border-color:var(--gold);
    transform:translateY(-5px);
}

.plan-strip{
    position:absolute;
    top:0;
    right:0;
    left:0;
    height:5px;
}

.plan-gold{
    background:var(--gold);
}

.plan-silver{
    background:#c0c0c0;
}

.plan-bronze{
    background:#b87333;
}

.plan-icon{
    font-size:45px;
    text-align:center;
    margin-bottom:15px;
}

.overhaul-card h3{
    text-align:center;
    margin-bottom:20px;
    color:var(--text);
}

.info-row{
    margin-bottom:12px;
    color:#ddd;
}

.status-badge{
    display:inline-block;
    margin-top:15px;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
}

.status-pending{
    background:#fff3cd;
    color:#856404;
}

.status-processing{
    background:#d1ecf1;
    color:#0c5460;
}

.status-completed{
    background:#d4edda;
    color:#155724;
}

.status-cancelled{
    background:#f8d7da;
    color:#721c24;
}

.status-form{
    margin-top:20px;
}

.status-form select{
    width:100%;
    padding:10px;
    border-radius:10px;
    background:#1a1a1a;
    color:white;
    border:1px solid var(--border);
}

.status-form button{
    width:100%;
    margin-top:10px;
    background:var(--gold);
    color:#000;
    border:none;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
}

.overhaul-card{
    position:relative;
    background:linear-gradient(
        145deg,
        #121212,
        #1b1b1b
    );

    border:1px solid rgba(212,175,55,.15);

    border-radius:24px;

    padding:28px;

    overflow:hidden;

    transition:.35s;

    backdrop-filter:blur(12px);
}

.overhaul-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:
    0 20px 50px rgba(212,175,55,.18);
}

.overhaul-card::before{

    content:'';

    position:absolute;

    top:-80px;
    left:-80px;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(212,175,55,.15),
        transparent
    );
}

.overhaul-card h3{

    text-align:center;

    font-size:22px;

    color:white;

    margin-bottom:25px;
}

.info-row{

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:
    1px solid rgba(255,255,255,.06);

    color:#ddd;
}

.status-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;
}

.status-form button{

    width:100%;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #f6d76d
    );

    color:#111;

    border:none;

    border-radius:14px;

    padding:14px;

    font-weight:700;

    margin-top:12px;

    transition:.3s;
}

.status-form button:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(212,175,55,.35);
}

.stat-card{

    background:
    linear-gradient(
        145deg,
        #121212,
        #1c1c1c
    );

    border:1px solid rgba(212,175,55,.15);

    border-radius:22px;

    text-align:center;

    padding:30px;
}

.stat-card h2{

    font-size:42px;

    color:var(--gold);
}