Stuck product image while scroll

Hello everyone, I need help with my product page. When I scroll through the page, the description and product details is quite lengthy, which creates a lot of white space. I’ve attached a screenshot for reference. Is it possible to make the product image stay fixed (sticky) until I reach the ‘You may also like’ section? Thanks in advance

Strore URL: https://agaati.com/products/gold-raizes-vera-2021

Hi @Digital_Imran

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

@media (min-width: 990px) {
.product__primary-left {
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start !important;
}
}

Result

Best,

Liz