SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  MIN(
    IF(
      prices.percentage_discount = 0, 
      prices.price, 
      prices.price - (
        prices.price * prices.percentage_discount
      )/ 100
    )
  ) as price, 
  products.product_type, 
  products.parent_product_id, 
  products.rf_stop_update_price, 
  products.rf_stop_update_amount, 
  products.rf_stop_update_status 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
WHERE 
  1 
  AND cscart_categories.category_id IN (7222) 
  AND companies.status IN ('A') 
  AND products.company_id IN (2, 8, 9, 10, 0) 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND products.parent_product_id = 0 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  price desc, 
  products.product_id ASC 
LIMIT 
  0, 96

Query time 0.01285

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "212.04"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.10",
                "prefix_cost": "0.00",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "category_id",
                "usergroup_ids",
                "status",
                "storefront_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "companies",
              "access_type": "range",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "rows_examined_per_scan": 5,
              "rows_produced_per_join": 1,
              "filtered": "33.33",
              "cost_info": {
                "read_cost": "2.10",
                "eval_cost": "0.17",
                "prefix_cost": "2.26",
                "data_read_per_join": "10K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`companies`.`status` = 'A') and (`nuie_scalesta_net`.`companies`.`company_id` in (2,8,9,10,0)))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 274,
              "rows_produced_per_join": 456,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.58",
                "eval_cost": "45.67",
                "prefix_cost": "48.51",
                "data_read_per_join": "7K"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "age_verification",
                "status",
                "idx_parent_product_id",
                "my_supplier_id",
                "supplier_access_time",
                "products_rf_product_code_index",
                "products_rf_manufacturer_code_index"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "nuie_scalesta_net.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 22,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "68.50",
                "eval_cost": "2.28",
                "prefix_cost": "162.68",
                "data_read_per_join": "109K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "usergroup_ids",
                "parent_product_id",
                "rf_stop_update_price",
                "rf_stop_update_amount",
                "rf_stop_update_status"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`products`.`company_id` = `nuie_scalesta_net`.`companies`.`company_id`) and (`nuie_scalesta_net`.`products`.`parent_product_id` = 0) and ((`nuie_scalesta_net`.`products`.`usergroup_ids` = '') or (0 <> find_in_set(0,`nuie_scalesta_net`.`products`.`usergroup_ids`)) or (0 <> find_in_set(1,`nuie_scalesta_net`.`products`.`usergroup_ids`))) and (`nuie_scalesta_net`.`products`.`status` = 'A') and (`nuie_scalesta_net`.`products`.`product_type` <> 'D'))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "nuie_scalesta_net.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 22,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "3.43",
                "eval_cost": "2.28",
                "prefix_cost": "168.39",
                "data_read_per_join": "87K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "usergroup",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "nuie_scalesta_net.products_categories.product_id"
              ],
              "rows_examined_per_scan": 16,
              "rows_produced_per_join": 37,
              "filtered": "9.92",
              "cost_info": {
                "read_cost": "5.81",
                "eval_cost": "3.76",
                "prefix_cost": "212.05",
                "data_read_per_join": "901"
              },
              "used_columns": [
                "product_id",
                "price",
                "percentage_discount",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`prices`.`lower_limit` = 1) and (`nuie_scalesta_net`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name price product_type parent_product_id rf_stop_update_price rf_stop_update_amount rf_stop_update_status
88316 Square Hinged Abstract Bath Screen Roxor 424.17000000 P 0 N N N
88315 Square Screens Square Hinged Bath Screen Roxor 359.17000000 P 0 N N N
91431 Square 8mm Toughened Safety Glass Hinged Shower Bath Screen Roxor 359.17000000 P 0 N N N
88314 Square Hinged Bath Screen Roxor 351.67000000 P 0 N N N
88308 Round Bath Screen With Fixed Panel Roxor 304.17000000 P 0 N N N
88313 Square Bath Screen With Fixed Panel Roxor 304.17000000 P 0 N N N
88320 Square Bath Screen With Fixed Panel & Rail Roxor 304.17000000 P 0 N N N
88322 Round Bath Screen Fixed Panel & Rail Roxor 304.17000000 P 0 N N N
92318 Straight Bath Screen Fixed 1435x1005 Roxor 275.83000000 P 0 N N N
88254 L-Shaped Bath Screen Double Hinged Roxor 270.83000000 P 0 N N N
92319 Curved P Bath Screen 1435x720 Roxor 270.83000000 P 0 N N N
92321 Hinged L Bath Screen 1400x808 Roxor 270.00000000 P 0 N N N
92320 Fixed L Bath Screen 1400x805 Roxor 268.33000000 P 0 N N N
88259 L-Shaped Bath Screen Hinged With Rail Roxor 260.83000000 P 0 N N N
88256 L-Shaped Abstract Bath Screen with Fixed Return Roxor 245.00000000 P 0 N N N
88257 Square Black Framed Bath Screen With Fixed Return Roxor 245.00000000 P 0 N N N
85630 L-Shaped Hinged Bath Screen Roxor 218.33000000 P 0 N N N
88258 Square Bath Screen With Fixed Return Roxor 218.33000000 P 0 N N N
87872 Curved B-Bath Screen with Rail Roxor 215.00000000 P 0 N N N
92317 Square Bath Screen With Rail 1435x790 Roxor 200.83000000 P 0 N N N
88317 Square Abstract Bath Screen Roxor 197.50000000 P 0 N N N
88318 Square Black Framed Bath Screen Roxor 197.50000000 P 0 N N N
88011 P-Bath Curved Hinged Shower Bath Screen Roxor 192.50000000 P 0 N N N
88255 L-Shaped Bath Screen Hinged Roxor 190.83000000 P 0 N N N
88252 Bath Screens Square L Shape 6mm Toughened Safety Glass Bath Screen with Fixed Return Roxor 183.33000000 P 0 N N N
88061 Curved P-Bath Screen with Rail Roxor 181.67000000 P 0 N N N
92316 Straight Bath Screen 1435x790 Roxor 179.17000000 P 0 N N N
87871 Curved B-Bath Screen Roxor 174.17000000 P 0 N N N
88012 Curved P-Bath Screen with Knob Roxor 174.17000000 P 0 N N N
88309 Square Bath Screen Roxor 174.17000000 P 0 N N N
88310 Round Bath Screen Roxor 174.17000000 P 0 N N N
91432 Square 6mm Toughened Safety Glass Shower Bath Screen Roxor 174.17000000 P 0 N N N
88307 Round Screens Round Bath Screen Roxor 173.33000000 P 0 N N N
88253 Bath Screens Square L Shape 6mm Toughened Safety Glass Bath Screen with Fixed Return Roxor 170.83000000 P 0 N N N
88319 Square Bath Screen With Rail Roxor 168.33000000 P 0 N N N
88321 Round Bath Screen With Rail Roxor 168.33000000 P 0 N N N
85639 Square Hinged Bath Screen Roxor 166.67000000 P 0 N N N
88010 Curved P-Bath Screen Roxor 166.67000000 P 0 N N N
88251 L-Shaped Bath Screen Roxor 156.67000000 P 0 N N N
88306 Round Bath Screen Roxor 151.67000000 P 0 N N N
88312 Square Bath Screen Roxor 151.67000000 P 0 N N N
85640 Square Bath Screen Roxor 141.67000000 P 0 N N N
88311 350mm Fixed Bath Screen Roxor 95.00000000 P 0 N N N
93832 NSBS27 Roxor 0.00000000 P 0 N N N
93833 NSBS78 Roxor 0.00000000 P 0 N N N
93836 NSS17 Roxor 0.00000000 P 0 N N N
93837 NSSQ7FL Roxor 0.00000000 P 0 N N N
93838 NSSQ7FLBB Roxor 0.00000000 P 0 N N N
93839 NSSQ7FLBP Roxor 0.00000000 P 0 N N N
93840 NSSQBFC Roxor 0.00000000 P 0 N N N
93841 NSSQGM Roxor 0.00000000 P 0 N N N
94589 BAYE201 Roxor 0.00000000 P 0 N N N
94590 BAYE203 Roxor 0.00000000 P 0 N N N
94591 BAYE204 Roxor 0.00000000 P 0 N N N
94820 PP406 Roxor 0.00000000 P 0 N N N
94821 PP718 Roxor 0.00000000 P 0 N N N
94959 AQVEN6121 Roxor 0.00000000 P 0 N N N
94960 AQVEN6130 Roxor 0.00000000 P 0 N N N
94961 AQVEN6135 Roxor 0.00000000 P 0 N N N
94962 AQVEN6137 Roxor 0.00000000 P 0 N N N
94963 AQVEN6139 Roxor 0.00000000 P 0 N N N
94964 AQVEN6140 Roxor 0.00000000 P 0 N N N
95394 237BK2BCSS Roxor 0.00000000 P 0 N N N
95395 237BK2BCSSTB Roxor 0.00000000 P 0 N N N
95396 237BK2CSS Roxor 0.00000000 P 0 N N N
95397 237BK2CSSNB Roxor 0.00000000 P 0 N N N
95398 237BK2CSSTB Roxor 0.00000000 P 0 N N N
95424 237BS2FCSS1 Roxor 0.00000000 P 0 N N N
95425 237BS2FCSS2 Roxor 0.00000000 P 0 N N N
95426 237BS2HTSSTB Roxor 0.00000000 P 0 N N N
95427 237BS2SS Roxor 0.00000000 P 0 N N N
95428 237BS2SSBB Roxor 0.00000000 P 0 N N N
95429 237BS2SSBP Roxor 0.00000000 P 0 N N N
95430 237BS2SSH Roxor 0.00000000 P 0 N N N
95431 237BS2SSHBB Roxor 0.00000000 P 0 N N N
95432 237BS2SSHK Roxor 0.00000000 P 0 N N N
95433 237BS2SSK Roxor 0.00000000 P 0 N N N
95488 2381500CV Roxor 0.00000000 P 0 N N N
95489 2381500CVBP Roxor 0.00000000 P 0 N N N
95490 2381500CVEXT Roxor 0.00000000 P 0 N N N
95491 2381500CVK Roxor 0.00000000 P 0 N N N
95492 2381500CVTB Roxor 0.00000000 P 0 N N N
95493 2381500CVTBEXT Roxor 0.00000000 P 0 N N N
95497 2381500SQ Roxor 0.00000000 P 0 N N N
95498 2381500SQBP Roxor 0.00000000 P 0 N N N
95499 2381500SQEXT Roxor 0.00000000 P 0 N N N
95500 2381500SQFD1BB Roxor 0.00000000 P 0 N N N
95501 2381500SQFD2BB Roxor 0.00000000 P 0 N N N
95502 2381500SQFD3BB Roxor 0.00000000 P 0 N N N
95503 2381500SQTBEXT Roxor 0.00000000 P 0 N N N
95561 238SHIELD Roxor 0.00000000 P 0 N N N
95562 2398DH760SQ Roxor 0.00000000 P 0 N N N
95563 2398F760SQ Roxor 0.00000000 P 0 N N N
95564 2398H782SQ Roxor 0.00000000 P 0 N N N
95661 AL5SSL10-E5 Roxor 0.00000000 P 0 N N N
95662 ALHSSL12-E5 Roxor 0.00000000 P 0 N N N