/* SCARAL GLOBAL NAVIGATION - Marketplace Brand Layer */
/* 🛡️ Structural Governance moved to system/layout/header.css (EDP v5.1) */


/* GLOBAL MOBILE OVERLAY (SIDEBAR) */
.sc-mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #030712;
    z-index: 95000 !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 1024px) {
    .sc-mobile-overlay {
        display: block !important;
    }
}

.sc-mobile-overlay.active {
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 95001;
}

.overlay-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: white;
}

.overlay-logo {
    height: 40px;
}

.overlay-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.overlay-content {
    padding: 25px;
    overflow-y: auto;
    height: calc(100% - 90px);
}

.overlay-user-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.user-avatar-placeholder {
    font-size: 2.5rem;
    color: #00f2ff;
}

.user-name {
    font-weight: 800;
    color: white;
}

.user-status {
    font-size: 0.75rem;
    color: #94a3b8;
}

.overlay-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.menu-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.menu-tile i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
    color: #00f2ff;
}

.overlay-nav-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.overlay-nav-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    color: #cbd5e1;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-weight: 500;
}

.overlay-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    padding-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.social-links a {
    font-size: 1.8rem;
    color: #94a3b8;
}

.version-tag {
    font-size: 0.75rem;
    color: #475569;
}