/* Admin Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #000000;
    --secondary: #FFD700;
    --accent: #B8860B;
    --light: #1a1a1a;
    --dark: #000000;
    --text: #ffffff;
    --text-light: #cccccc;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --card-bg: #2a2a2a;
}

body {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: var(--text);
    min-height: 100vh;
}

/* Admin Login */
.admin-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.9) 100%);
}

.login-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.login-container h2 {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text);
}

.form-group input:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Admin Dashboard */
.admin-dashboard {
    min-height: 100vh;
}

.admin-header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.admin-nav h1 {
    color: var(--secondary);
    font-size: 1.8rem;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

#adminWelcome {
    color: var(--text-light);
}

.admin-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Sidebar */
.admin-sidebar {
    width: 250px;
    background: var(--card-bg);
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 15px;
}

.nav-btn {
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.nav-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary);
    transform: translateX(5px);
}

.nav-btn.active {
    background: linear-gradient(45deg, rgba(255,215,0,0.2), rgba(184,134,11,0.2));
    color: var(--secondary);
    border-left: 4px solid var(--secondary);
}

/* Main Content */
.admin-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
}

.stat-info h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--text-light);
}

/* Mobile Responsive for Admin Stats */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .stat-info h3 {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .stat-info p {
        font-size: 0.85rem;
    }
    
    /* Make action buttons smaller on mobile */
    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .action-buttons .btn {
        padding: 12px 15px;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    /* Adjust modern card padding on mobile */
    .modern-card {
        padding: 15px;
    }
    
    /* Make vendor request cards more compact */
    .vendor-request {
        padding: 15px;
    }
    
    .vendor-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    /* Adjust verification card for mobile */
    .verification-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .verification-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .verification-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .orders-progress {
        width: 100%;
        text-align: center;
    }
    
    .btn-verify {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 12px;
        gap: 10px;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-info h3 {
        font-size: 1.3rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
}

/* Quick Actions */
.quick-actions {
    margin-top: 40px;
}

.quick-actions h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    text-align: left;
    justify-content: flex-start;
}

.action-buttons .btn i {
    font-size: 1.2rem;
}

/* Vendor Requests */
.vendor-requests {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vendor-request {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--warning);
}

.vendor-request.approved {
    border-left-color: var(--success);
}

.vendor-request.rejected {
    border-left-color: var(--danger);
}

.vendor-info {
    margin-bottom: 15px;
}

.vendor-info h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.vendor-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.vendor-detail {
    display: flex;
    flex-direction: column;
}

.vendor-detail label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.vendor-detail span {
    color: var(--text-light);
}

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

/* Vendor Verification Card */
.verification-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(184,134,11,0.05));
    border: 1px solid rgba(255,215,0,0.3);
    margin-bottom: 30px;
}

.verification-card.verified {
    background: linear-gradient(135deg, rgba(39,174,96,0.1), rgba(46,204,113,0.05));
    border-color: rgba(39,174,96,0.3);
}

.verification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.verification-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.verification-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,215,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,215,0,0.5);
}

.verification-card.verified .verification-badge {
    background: rgba(39,174,96,0.15);
    color: #27ae60;
}

.verification-text h3 {
    margin: 0 0 0.5rem 0;
    color: #FFD700;
    font-size: 1.5rem;
}

.verification-card.verified .verification-text h3 {
    color: #27ae60;
}

.verification-text p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.verification-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.orders-progress {
    background: rgba(0,0,0,0.4);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.2);
}

.progress-count {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.progress-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

.btn-verify {
    background: linear-gradient(45deg, #FFD700, #B8860B);
    color: #000;
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.4);
}

/* Recent Orders & Notifications */
.recent-orders,
.recent-notifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-order-item,
.recent-notification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.recent-order-item:hover,
.recent-notification-item:hover {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
    transform: translateX(5px);
}

.recent-order-icon,
.recent-notification-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFD700;
}

.recent-order-content,
.recent-notification-content {
    flex: 1;
}

.recent-order-content h4,
.recent-notification-content h4 {
    margin: 0 0 0.25rem 0;
    color: #FFD700;
    font-size: 1rem;
}

.recent-order-content p,
.recent-notification-content p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.recent-order-time,
.recent-notification-time {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: rgba(255,255,255,0.5);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state p {
    margin: 0;
    font-size: 0.95rem;
}

/* Products List */
.products-list {
    margin-top: 20px;
}

.product-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-info h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-meta span {
    display: block;
    margin: 2px 0;
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* Payments List */
.payments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-info h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.payment-details {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.payment-details span {
    display: block;
    margin: 2px 0;
}

.payment-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary);
}

/* Photos Moderation */
.moderation-info {
    background: rgba(255,215,0,0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,215,0,0.3);
    margin-bottom: 20px;
    color: var(--text-light);
}

.photos-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.photo-item {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-content {
    padding: 15px;
}

.photo-caption {
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.4;
}

.photo-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.photo-actions {
    display: flex;
    gap: 10px;
}

/* Reviews Moderation */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer {
    font-weight: bold;
    color: var(--secondary);
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-vendor {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.review-text {
    margin: 10px 0;
    line-height: 1.5;
    color: var(--text);
}

.review-date {
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: right;
}

.review-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.btn-approve {
    background: var(--success);
    color: white;
}

.btn-approve:hover {
    background: #219653;
    transform: translateY(-2px);
}

.btn-reject {
    background: var(--danger);
    color: white;
}

.btn-reject:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-view {
    background: var(--secondary);
    color: var(--primary);
}

.btn-view:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Status Badges */
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.status-badge.pending {
    background: var(--warning);
    color: var(--primary);
}

.status-badge.approved {
    background: var(--success);
    color: white;
}

.status-badge.rejected {
    background: var(--danger);
    color: white;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-header h3 {
    color: var(--secondary);
    margin: 0;
}

.modal-header .close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-header .close:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Modern Card Styles */
.modern-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modern-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

.admin-search-section {
    margin-bottom: 20px;
}

.search-bar {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-bar:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Welcome Section */
.welcome-section {
    padding: 1.5rem;
    text-align: center;
}

.welcome-section h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.welcome-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    min-width: 120px;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.stat-item span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-danger {
    color: var(--danger);
}

/* Mobile-First Design (Kano Restaurant Style) */
@media (max-width: 768px) {
    /* Admin Header - Mobile Style */
    .admin-header {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        padding: 1rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .admin-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        flex-direction: row;
        gap: 0;
    }

    .admin-brand {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
    }

    .admin-brand i {
        color: #FFD700;
        font-size: 1.5rem;
    }

    .admin-brand span {
        color: #FFD700;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .back-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 10px;
        color: #FFD700;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .back-button:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateX(-3px);
    }

    .admin-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .admin-welcome {
        display: none; /* Hide on mobile to save space */
    }

    .admin-actions .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Admin Container - Mobile Layout */
    .admin-container {
        flex-direction: column;
        padding-top: 80px; /* Account for fixed header */
        min-height: 100vh;
    }

    /* Sidebar - Mobile Style (Horizontal Scroll) */
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        padding: 0.5rem 0;
        background: rgba(0, 0, 0, 0.95);
        position: sticky;
        top: 80px;
        z-index: 999;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-btn {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        min-width: 140px;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-btn:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
    }

    .nav-btn.active {
        background: rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.5);
        border-left: none;
        border-bottom: 3px solid #FFD700;
        color: #FFD700;
    }

    .nav-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #e74c3c;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    /* Main Content - Mobile Style */
    .admin-main {
        padding: 1rem;
        width: 100%;
    }

/* Stats Grid - Mobile Style (2 columns like laptop view - smaller) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: auto;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 0.2rem;
}

.stat-info h3 {
    font-size: 1rem;
    color: #FFD700;
    margin-bottom: 0.1rem;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    margin: 0;
}

    /* Quick Actions - Mobile Style */
    .quick-actions {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .quick-actions h3 {
        font-size: 1.25rem;
        color: #FFD700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .action-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .action-buttons .btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        text-align: center;
        justify-content: center;
        font-size: 0.85rem;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 10px;
        color: #FFD700;
    }

    .action-buttons .btn:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateY(-2px);
    }

    /* Modern Cards - Mobile Style */
    .modern-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 1rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .modern-card:hover {
        border-color: rgba(255, 215, 0, 0.3);
    }

    .modern-card h3 {
        font-size: 1.25rem;
        color: #FFD700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Search Section - Mobile Style */
    .admin-search-section {
        margin-bottom: 1.5rem;
    }

    .search-bar {
        width: 100%;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 12px;
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .search-bar:focus {
        border-color: #FFD700;
        outline: none;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }

    /* Vendor Requests - Mobile Style */
    .vendor-requests {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .vendor-request {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1rem;
        border-left: 4px solid #f39c12;
    }

    .vendor-request.approved {
        border-left-color: #27ae60;
    }

    .vendor-request.rejected {
        border-left-color: #e74c3c;
    }

    .vendor-details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .vendor-actions {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    /* Verification Card - Mobile Style */
    .verification-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .verification-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .verification-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .orders-progress {
        width: 100%;
        text-align: center;
    }

    .btn-verify {
        width: 100%;
    }

    /* Products List - Mobile Style */
    .products-list {
        margin-top: 1rem;
    }

    .product-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-actions {
        width: 100%;
        justify-content: flex-start;
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    /* Photos List - Mobile Style */
    .photos-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .photo-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        overflow: hidden;
    }

    .photo-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Payment Items - Mobile Style */
    .payment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .payment-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Tab Content - Mobile Style */
    .tab-content {
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens - Keep 2 columns for better layout */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.5rem;
        gap: 0.3rem;
    }
    
    .stat-icon {
        font-size: 1rem;
    }
    
    .stat-info h3 {
        font-size: 0.9rem;
    }
    
    .stat-info p {
        font-size: 0.65rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
}

    .stat-card {
        padding: 0.75rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-info h3 {
        font-size: 1.25rem;
    }

    .admin-actions .btn {
        padding: 0.5rem 0.75rem;
    }


/* Kano Restaurant Style Components */
.kano-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(184, 134, 11, 0.1) 100%);
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1.5rem;
}

.kano-hero h1 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    color: #FFD700;
}

.kano-hero p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem 0;
}

.delivery-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.delivery-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    font-size: 0.85rem;
}

.delivery-badge.normal {
    border: 1px solid #3498db;
    color: #3498db;
}

.delivery-badge.express {
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.search-box i {
    color: #FFD700;
    margin-right: 0.75rem;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Restaurant Cards */
.restaurant-admin-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.restaurant-admin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(42, 42, 42, 0.8);
}

.restaurant-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.restaurant-basic-info h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.restaurant-basic-info p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.restaurant-admin-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 120px;
}

.restaurant-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.restaurant-status.active {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.restaurant-status.inactive {
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.restaurant-products {
    font-size: 1rem;
    font-weight: bold;
    color: var(--secondary);
}

.restaurant-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Product Cards */
.product-admin-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-admin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(42, 42, 42, 0.8);
}

.product-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.product-basic-info h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-basic-info p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.product-admin-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 120px;
}

.product-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-status.active {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.product-status.inactive {
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.product-status.reported {
    background: rgba(243, 156, 18, 0.2);
    color: var(--warning);
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary);
}

.product-time {
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: right;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    color: var(--secondary);
    margin: 0;
}

/* Order Cards */
.order-admin-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.order-admin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(42, 42, 42, 0.8);
}

.order-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.order-basic-info h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.order-basic-info p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.order-admin-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 120px;
}

.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.pending {
    background: rgba(243, 156, 18, 0.2);
    color: var(--warning);
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.order-status.confirmed {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.order-status.completed {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.order-status.cancelled {
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.order-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary);
}

.order-items-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.order-item-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.order-more-items {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Order Details */
.order-detail-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.order-detail-section:last-child {
    border-bottom: none;
}

.order-detail-section h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item label {
    font-weight: 600;
    color: var(--text-light);
    min-width: 120px;
}

.detail-item span {
    color: white;
    text-align: right;
}

.unique-id {
    font-family: monospace;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--secondary);
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.item-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-info {
    flex: 1;
}

.item-info strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 5px;
}

.item-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-info small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.item-category {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.item-price {
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.1rem;
}

.order-summary {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Mobile-First Design (Kano Restaurant Style) - Updated */
@media (max-width: 768px) {
    /* Admin Header - Mobile Style */
    .admin-header {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        padding: 0.75rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .admin-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .admin-brand {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        text-decoration: none;
        flex: 1;
        min-width: 0;
    }

    .admin-brand i {
        color: #FFD700;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .admin-brand span {
        color: #FFD700;
        font-size: 0.9rem;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
        background: none;
        border: none;
        color: #FFD700;
        font-size: 1.3rem;
        cursor: pointer;
        padding: 0.35rem 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 215, 0, 0.1);
    }

    .admin-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .back-button {
        display: none;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 10px;
        color: #FFD700;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .back-button:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateX(-3px);
    }

    .admin-welcome {
        display: none; /* Hide on mobile to save space */
    }

    .admin-actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Mobile Sidebar */
    .admin-sidebar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-right: 1px solid rgba(255, 215, 0, 0.3);
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .admin-sidebar.mobile-open {
        left: 0;
    }

    .sidebar-nav {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        overflow-y: auto;
        max-height: calc(100vh - 100px);
    }

    .nav-btn {
        width: 100%;
        text-align: left;
        padding: 1rem;
        border-left: 4px solid transparent;
        border-bottom: none;
        min-width: auto;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-btn:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
    }

    .nav-btn.active {
        background: rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.5);
        border-left: 4px solid #FFD700;
        color: #FFD700;
    }

    /* Admin Container - Mobile Layout */
    .admin-container {
        flex-direction: column;
        padding-top: 80px; /* Account for fixed header */
        min-height: 100vh;
    }

    /* Main Content - Mobile Style */
    .admin-main {
        padding: 1rem;
        width: 100%;
    }

    /* Platform Stats - Mobile */
    .platform-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .platform-stat {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
    }

/* Stats Grid - Mobile Style (2 columns like laptop view - MINI BOXES) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 70px;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 1rem;
    color: #FFD700;
    margin-bottom: 0.2rem;
}

.stat-info h3 {
    font-size: 0.9rem;
    color: #FFD700;
    margin-bottom: 0.1rem;
    line-height: 1;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    margin: 0;
    line-height: 1;
}

    /* Quick Actions - Mobile Style */
    .quick-actions {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .quick-actions h3 {
        font-size: 1.25rem;
        color: #FFD700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .action-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .action-buttons .btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        text-align: center;
        justify-content: center;
        font-size: 0.85rem;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 10px;
        color: #FFD700;
    }

    .action-buttons .btn:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateY(-2px);
    }

    /* Modern Cards - Mobile Style */
    .modern-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 1rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .modern-card:hover {
        border-color: rgba(255, 215, 0, 0.3);
    }

    .modern-card h3 {
        font-size: 1.25rem;
        color: #FFD700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Activity Items - Mobile */
    .activity-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .activity-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .activity-content p {
        font-size: 0.9rem;
    }

    .activity-content small {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens - Keep compact layout */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .nav-btn {
        min-width: 110px;
        padding: 0.6rem 0.6rem;
        font-size: 0.75rem;
    }

    .admin-main {
        padding: 0.5rem;
    }

    .modern-card {
        padding: 0.75rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 0.5rem;
        gap: 0.3rem;
    }

    .stat-icon {
        font-size: 1rem;
    }

    .stat-info h3 {
        font-size: 0.9rem;
    }

    .stat-info p {
        font-size: 0.65rem;
    }

    .admin-actions .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .login-container {
        padding: 15px;
        margin: 15px;
    }
    
    .admin-main {
        padding: 10px;
    }

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

    .order-admin-meta {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        margin-top: 8px;
    }

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

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .detail-item label {
        min-width: auto;
    }

    .detail-item span {
        text-align: left;
    }

    .item-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .item-price {
        align-self: flex-end;
    }
}

/* Kano Restaurant Style Components - Updated */
.kano-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(184, 134, 11, 0.1) 100%);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1.5rem;
}

.hero-content {
    text-align: center;
}

.kano-hero h1 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.platform-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.platform-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    min-width: 180px;
}

.platform-stat i {
    font-size: 2rem;
    color: #FFD700;
}

.platform-stat h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0;
}

.platform-stat p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.85rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.search-box i {
    color: #FFD700;
    margin-right: 0.75rem;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Recent Activity Styles */
.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.activity-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFD700;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-content p {
    margin: 0 0 0.25rem 0;
    color: white;
    font-size: 0.95rem;
}

.activity-content small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.activity-empty {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.activity-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.activity-empty p {
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Menu Toggle - Desktop Hidden */
.mobile-menu-toggle {
    display: none;
}

/* Desktop Sidebar */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .admin-sidebar {
        width: 250px;
        background: var(--card-bg);
        border-right: 1px solid rgba(255, 215, 0, 0.2);
        padding: 20px 0;
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .sidebar-nav {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0 15px;
    }

    .nav-btn {
        padding: 15px 20px;
        background: transparent;
        border: none;
        color: var(--text-light);
        text-align: left;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .nav-btn:hover {
        background: rgba(255, 215, 0, 0.1);
        color: var(--secondary);
        transform: translateX(5px);
    }

    .nav-btn.active {
        background: linear-gradient(45deg, rgba(255,215,0,0.2), rgba(184,134,11,0.2));
        color: var(--secondary);
        border-left: 4px solid var(--secondary);
    }

    .nav-badge {
        position: absolute;
        right: 15px;
        background: #e74c3c;
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .admin-container {
        display: flex;
        min-height: calc(100vh - 80px);
    }

    .admin-main {
        flex: 1;
        padding: 30px;
        overflow-y: auto;
    }
}

/* Mobile Menu Toggle - Mobile Visible */
/* Mobile Menu Toggle - Visible on phones and many tablets */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block !important;
    }

    /* Make header more compact on tablets/phones */
    .admin-header, .admin-vendors-header {
        padding: 0.65rem 0;
    }

    .admin-brand span {
        font-size: 0.9rem;
    }

    .back-button {
        display: none;
    }

    /* Sidebar open/close state for mobile */
    .admin-sidebar {
        position: fixed;
        top: 60px;
        left: -320px;
        width: 280px;
        height: calc(100% - 60px);
        background: rgba(10,10,10,0.98);
        z-index: 2000;
        transition: left 0.28s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.6);
    }

    .admin-sidebar.mobile-open {
        left: 0;
    }

    /* When sidebar is open, push main content slightly */
    .admin-container.mobile-sidebar-open .admin-main {
        margin-left: 280px;
    }
}
