How do I remove a specific section from my Shopify using Craft theme?

I have a section on shopify which shows “products you have viewed recently” and I want this section removed from my website, I am using craft theme and here is the attachment below

Hello @Rebi

Please provide your store URL and, if it is password protected, please share the password so I can review it and provide a solution.

https://galaxifurniture.com/

Hello @Rebi

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.AkTopPin {
    display: none;
}

IT is still showing that section

Hello @Rebi

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.AkTopPin .AkTopPin__container {
    display: none;
}

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
#ak-wrap-top-pin-products {
display: none!important;
}