/* =========================
   PROFILE EDIT
   ========================= */

.profile-edit-page{
    padding:40px;
}

.breadcrumb{
    color:var(--text-muted);
    margin-bottom:24px;
}

.breadcrumb span{
    color:var(--primary-hover);
}

.profile-edit-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:34px;
}

.profile-edit-title h1{
    font-size:42px;
    margin-bottom:10px;
}

.profile-edit-title p{
    color:var(--text-light);
}

.profile-user-badge{
    display:flex;
    align-items:center;
    gap:14px;
}

.profile-avatar-small{
    width:46px;
    height:46px;
    border-radius:50%;
    border:2px solid var(--primary-hover);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.profile-image-upload{
    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:35px auto;
}

.edit-panel{
    background:var(--bg-secondary);
    border:1px solid var(--border);
    border-radius:22px;
    overflow:hidden;
}

.edit-section{
    padding:32px;
    border-bottom:1px solid var(--border);
}

.section-title{
    color:var(--primary-hover);
    font-size:20px;
    font-weight:bold;
    margin-bottom:25px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group label{
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input:disabled{
    opacity:.5;
    cursor:not-allowed;
    background:#111827;
}

.action-row{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    padding:28px 32px;
}

.tip-box{
    margin-right:auto;
    max-width:500px;
    padding:16px;
    border-radius:14px;
    background:rgba(139,92,246,.08);
    border:1px solid rgba(139,92,246,.25);
}

@media(max-width:1000px){

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

    .profile-edit-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .action-row{
        flex-direction:column;
    }

    .tip-box{
        margin-right:0;
        max-width:none;
    }
}

.band-profile-header{
    display:flex;
    align-items:center;
    gap:28px;
    margin-bottom:24px;
}

.band-profile-logo{
    width:180px;
    height:110px;
    object-fit:contain;
    background:#111821;
    padding:12px;
    border-radius:16px;
    border:2px solid #8b5cf6;
    flex-shrink:0;
}

@media(max-width:800px){
    .band-profile-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .band-profile-logo{
        width:100%;
        max-width:280px;
    }
}