diff --git a/src/pages/GrowTentKonfigurator.js b/src/pages/GrowTentKonfigurator.js index cf153d6..a96f8fb 100644 --- a/src/pages/GrowTentKonfigurator.js +++ b/src/pages/GrowTentKonfigurator.js @@ -520,8 +520,8 @@ class GrowTentKonfigurator extends Component { // Apply bundle discount let discountPercentage = 0; if (itemCount >= 3) discountPercentage = 15; // 15% for 3+ items - if (itemCount >= 5) discountPercentage = 24; // 24% for 5+ items - if (itemCount >= 7) discountPercentage = 36; // 36% for 7+ items + if (itemCount >= 5) discountPercentage = 22; // 22% for 5+ items + if (itemCount >= 7) discountPercentage = 28; // 28% for 7+ items const discountedTotal = total * (1 - discountPercentage / 100); this.setState({ totalPrice: discountedTotal }); @@ -597,8 +597,8 @@ class GrowTentKonfigurator extends Component { // Progressive discount based on number of selected items let discountPercentage = 0; if (itemCount >= 3) discountPercentage = 15; // 15% for 3+ items - if (itemCount >= 5) discountPercentage = 24; // 24% for 5+ items - if (itemCount >= 7) discountPercentage = 36; // 36% for 7+ items + if (itemCount >= 5) discountPercentage = 22; // 22% for 5+ items + if (itemCount >= 7) discountPercentage = 28; // 28% for 7+ items const savings = originalTotal * (discountPercentage / 100); @@ -1288,7 +1288,7 @@ class GrowTentKonfigurator extends Component { - 24% + 22% {/* Note: Translation key would be: product.discount.from5Products */} @@ -1297,7 +1297,7 @@ class GrowTentKonfigurator extends Component { - 36% + 28% {/* Note: Translation key would be: product.discount.from7Products */}