diff --git a/src/QUI/ERP/Products/Product/JsonLd.php b/src/QUI/ERP/Products/Product/JsonLd.php
index 759d6e7d5dd7eda1f6234e6186b4d64f2dace8cd..2cdbc26decf3a33859519ad106489c76aa794320 100644
--- a/src/QUI/ERP/Products/Product/JsonLd.php
+++ b/src/QUI/ERP/Products/Product/JsonLd.php
@@ -207,7 +207,9 @@ protected static function getOffer(ProductInterface $Product, $Locale = null)
 
         // variant parent
         if (!($Product instanceof VariantParent)) {
-            $offers['lowPrice'] = $offers['price'];
+            if (!isset($offers['lowPrice']) && isset($offers['price'])) {
+                $offers['lowPrice'] = $offers['price'];
+            }
 
             return [
                 'offers' => $offers