Retrieve the whole widget sidebar and pass it inside an html

So after some tests, I finally got this working.
Thanks to some guidelines from @Tom J Nowell I achieved to pass a sidebar inside a side-draw without the use of any plugin.
What I was trying to achieve was very simple, as most of the WordPress themes out there have the sidebar below or on top of the main shop archive page.
So the conclusion was simple as that

<div class="drawer-cont">
           <?php dynamic_sidebar('shop-sidebar'); ?> 
</div> 

Where (‘shop-sidebar’) was the name of my sidebar on the widgets’ area.
If someone else is in that position, then just simply try to add the name of your sidebar with the ‘-‘ in the spaces. As specified on the WordPress codex:

If your theme specifies the ‘id’ or ‘name’ parameter for its
registered sidebars you can pass an ID or name as the $index
parameter. Otherwise, you can pass in a numerical index to display the
sidebar at that index.

So in other words, if your themes use the name parameter to register sidebars, you can pass the name of the sidebar with the dash in place of the spaces. In most cases, this will work.