Considering your comment:
I agree but the problem is in the speed and the Sharding/Replication of MongoDB is better then MySQL for example... And I am going to have lot's of the small Order elements (In millions) and here the RDBS will have it's disadvantage... :(
I believe you are looking at this wrong. MongoDB will ONLY be faster than a RDBMS if it fits your scenario in such a manner to make it faster.
Millions of rows is not even shard worthy in most databases and even a commodity server can handle at least a couple of terabytes of information. Sharding comes from a need to increase your write capacity, just like it does in RDBMS technologies, not from the size of your data necessarily.
However as to answer the schema question, I would leave it as it is at the moment except I would remove orders and replace that inside of a client:
{
_id: ObjectId(),
name: 'sammaye',
orders: [
{oid:{},bid:{},cid:{},pid:{}},
{ //etc }
]
}
It is a small and meger object which should not cause too many problems and it won't be increasing by like 100 every day so it shouldn't cause heavy and immediate fragmentation.
If you find it does cause fragmentation on your traffic and order rate you could always just use power of 2 sizes allocation ( http://docs.mongodb.org/manual/reference/command/collMod/ ) to help out, however I should warn this is actually less performant in the short term so do not apply this option without needing it.
That is, with the information you have given us. how I would design that schema.