Add related items in cart drawer in spotlight theme

As the title says how can I add related items to cart drawer? I am using spotlight theme

Hi,

Identify cart drawer section (something like cart-drawer.liquid or cart.liquid. ) and insert related products logic
Code example

{% for product in cart.items %}
  {% assign recommendations = product.recommendations %}
  {% if recommendations.size > 0 %}
    
      ### Related Products
      
      {% for recommendation in recommendations %}
        - {{ recommendation.title }}

          
        
      {% endfor %}
      

    

  {% endif %}
{% endfor %}

Use CSS for customization and enable product recommendations feature