"Buy with Prime" Button HTML code issue

I am trying to add “Buy with Prime” button code given by Amazon to put on my Wix Editor site. The instructions from Amazon are

How to install the code on other ecommerce providers

  1. Locate where the product detail page template file is stored for your site.
  2. Identify the naming convention of the SKU identifier in that template. For example, “product.sku”.
  3. In the Buy with Prime button code, find the line data-sku=“{{product.sku}}”.
  4. Replace product.sku with the naming convention of the SKU identifier from your site template from Step 2.
  5. Paste the Buy with Prime button code below the add to cart or payment options on the page.Tip: Try searching for “payment” or “cart” to find the place in the code.
  6. Preview your site before publishing the changes.

I have followed the instructions by adding a “Embed HTML” in the Wix Editor using their code below. I replaced the “product.sku” with the Amazon product sku and no luck. Any coders welcome to give insight on how to solve this. For line 1 and 9 there are < and > at beginning and end of the line but for some reason this forum does not properly show this.

1 !-- Beginning of Buy With Prime Widget –
2 <script async fetchpriority=‘high’ 3 src=‘https://code.buywithprime.amazon.com/bwp.v1.js’>
3 <div
4 id=“amzn-buy-now”
5 data-site-id=“lcmnz1423m”
6 data-widget-id=“w-JDMn4s3Y91aQb7pTEEowj6”
7 data-sku=“{{product.sku}}”
8 >
9 !-- End of Buy With Prime Widget –