/*
    ABD LUXURY | EXECUTIVE PROFILE HEADER
    World-Class Professional Identity System
*/

.executive-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background: #FFFFFF;
    border: 1.5px solid #D1D5DB;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.executive-profile:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.avatar-container {
    position: relative;
    width: 42px;
    height: 42px;
}

.avatar-frame {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #8A6D3B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.avatar-frame i {
    color: #000000;
    width: 22px;
    height: 22px;
}

.status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    font-size: 11px;
    font-weight: 800;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.profile-role {
    font-size: 8px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .executive-profile {
        padding: 4px 10px;
        gap: 10px;
    }
    .avatar-container {
        width: 36px;
        height: 36px;
    }
    .profile-name { font-size: 10px; }
    .profile-role { font-size: 7px; }
}
