/* ── Profile photo upload ──────────────────── */
.up-photo-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}
.up-avatar-ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 14px;
}
.up-avatar-ring img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f97316;
    box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}
.up-avatar-edit {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #f97316;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 12px;
    box-shadow: 0 2px 8px rgba(249,115,22,.4);
    cursor: pointer;
}
.up-photo-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 8px;
}
.up-file-input { max-width: 280px; }

/* ── Form card ─────────────────────────────── */
.up-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    overflow: hidden;
}
.up-section-head {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.up-section-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(249,115,22,.1);
    color: #f97316;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.up-section-title { font-size: 13px; font-weight: 700; color: #0f172a; letter-spacing: .2px; }
.up-form-body { padding: 24px; }

/* Form fields */
.up-field { margin-bottom: 18px; }
.up-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 6px;
}
.up-input {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    background: #f8fafc;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.up-input:focus {
    border-color: #f97316;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.up-input:disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}
.up-error {
    font-size: 12px;
    color: #dc2626;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Submit button */
.up-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.up-submit-btn:hover { background: #ea6c0a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.45); }
