

.shop-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative; z-index: 10;
}
.nav-right { display: flex; align-items: center; gap: 20px; font-weight: 600; font-size: 1.2rem;}

.btn-outline {
    background: transparent; border: 1px solid var(--saffron-primary); color: #fff;
    padding: 8px 20px; border-radius: 4px; cursor: pointer; transition: 0.3s;
    font-family: 'Orbitron';
}
.btn-outline:hover { background: var(--saffron-primary); color: #000; }

.dashboard-container {
    max-width: 1200px; margin: 40px auto; padding: 0 20px; position: relative; z-index: 10;
}

.overview-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.stat-card h3 { margin: 0 0 10px 0; color: #ccc; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px;}
.stat-card p { margin: 0; font-size: 2.5rem; font-weight: 700; color: var(--saffron-primary); font-family: 'Orbitron'; }
.stat-card.pending p { color: #e74c3c; }

.glass-panel {
    background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px);
}
.glass-panel h3 { font-family: 'Orbitron'; margin-top: 0; margin-bottom: 20px; font-size: 1.5rem;}

.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; }
th, td { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
th { background: rgba(0,0,0,0.3); color: var(--saffron-primary); font-weight: 600; text-transform: uppercase; font-size: 0.9rem;}
tr:hover { background: rgba(255,255,255,0.05); }

.status-badge {
    padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
}
.status-paid { background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; }
.status-pending { background: rgba(231, 76, 60, 0.2); color: #e74c3c; border: 1px solid #e74c3c; }
