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 (7166, 7167, 7193) 
  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 
  384, 96

Query time 0.01670

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "12.47"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "range",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 0,
              "filtered": "4.00",
              "cost_info": {
                "read_cost": "1.35",
                "eval_cost": "0.01",
                "prefix_cost": "1.36",
                "data_read_per_join": "320"
              },
              "used_columns": [
                "category_id",
                "usergroup_ids",
                "status",
                "storefront_id"
              ],
              "attached_condition": "((`nuie_scalesta_net`.`cscart_categories`.`category_id` in (7166,7167,7193)) and ((`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`))) and (`nuie_scalesta_net`.`cscart_categories`.`status` in ('A','H')) and (`nuie_scalesta_net`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "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": 0,
              "filtered": "33.33",
              "using_join_buffer": "hash join",
              "cost_info": {
                "read_cost": "0.25",
                "eval_cost": "0.02",
                "prefix_cost": "1.63",
                "data_read_per_join": "1K"
              },
              "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": [
                "nuie_scalesta_net.cscart_categories.category_id"
              ],
              "rows_examined_per_scan": 117,
              "rows_produced_per_join": 23,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.06",
                "eval_cost": "2.35",
                "prefix_cost": "4.05",
                "data_read_per_join": "376"
              },
              "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": 1,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "3.53",
                "eval_cost": "0.12",
                "prefix_cost": "9.93",
                "data_read_per_join": "5K"
              },
              "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": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.18",
                "eval_cost": "0.12",
                "prefix_cost": "10.22",
                "data_read_per_join": "4K"
              },
              "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": 1,
              "filtered": "9.92",
              "cost_info": {
                "read_cost": "0.30",
                "eval_cost": "0.19",
                "prefix_cost": "12.47",
                "data_read_per_join": "46"
              },
              "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
94273 ENZW109 Roxor 0.00000000 P 0 N N N
94274 ENZW110 Roxor 0.00000000 P 0 N N N
94275 ENZW111 Roxor 0.00000000 P 0 N N N
94276 ENZW112 Roxor 0.00000000 P 0 N N N
94277 ENZW113 Roxor 0.00000000 P 0 N N N
94278 ENZW114 Roxor 0.00000000 P 0 N N N
94279 ENZW115 Roxor 0.00000000 P 0 N N N
94280 ENZW116 Roxor 0.00000000 P 0 N N N
94281 ENZW117 Roxor 0.00000000 P 0 N N N
94282 ENZW118 Roxor 0.00000000 P 0 N N N
94283 ENZW119 Roxor 0.00000000 P 0 N N N
94284 ENZW120 Roxor 0.00000000 P 0 N N N
94285 ENZW121 Roxor 0.00000000 P 0 N N N
94286 ENZW122 Roxor 0.00000000 P 0 N N N
94287 ENZW123 Roxor 0.00000000 P 0 N N N
94288 ENZW124 Roxor 0.00000000 P 0 N N N
94289 ENZW125 Roxor 0.00000000 P 0 N N N
94290 ENZW126 Roxor 0.00000000 P 0 N N N
94291 ENZW127 Roxor 0.00000000 P 0 N N N
94292 ENZW128 Roxor 0.00000000 P 0 N N N
94293 ENZW129 Roxor 0.00000000 P 0 N N N
94294 ENZW130 Roxor 0.00000000 P 0 N N N
94295 ENZW131 Roxor 0.00000000 P 0 N N N
94296 ENZW132 Roxor 0.00000000 P 0 N N N
94297 ENZW133 Roxor 0.00000000 P 0 N N N
94298 ENZW134 Roxor 0.00000000 P 0 N N N
94299 ENZW135 Roxor 0.00000000 P 0 N N N
94300 ENZW136 Roxor 0.00000000 P 0 N N N
94301 ENZW137 Roxor 0.00000000 P 0 N N N
94302 ENZW138 Roxor 0.00000000 P 0 N N N
94303 ENZW139 Roxor 0.00000000 P 0 N N N
94304 ENZW140 Roxor 0.00000000 P 0 N N N
94305 ENZW141 Roxor 0.00000000 P 0 N N N
94306 ENZW142 Roxor 0.00000000 P 0 N N N
94307 ENZW143 Roxor 0.00000000 P 0 N N N
94308 ENZW144 Roxor 0.00000000 P 0 N N N
94309 ENZW145 Roxor 0.00000000 P 0 N N N
94310 ENZW146 Roxor 0.00000000 P 0 N N N
94311 ENZW147 Roxor 0.00000000 P 0 N N N
94312 ENZW148 Roxor 0.00000000 P 0 N N N
94313 ENZW149 Roxor 0.00000000 P 0 N N N
94314 ENZW150 Roxor 0.00000000 P 0 N N N
94315 ENZW151 Roxor 0.00000000 P 0 N N N
94316 ENZW152 Roxor 0.00000000 P 0 N N N
94317 ENZW153 Roxor 0.00000000 P 0 N N N
94318 ENZW154 Roxor 0.00000000 P 0 N N N
94319 ENZW155 Roxor 0.00000000 P 0 N N N
94320 ENZW156 Roxor 0.00000000 P 0 N N N
94321 ENZW157 Roxor 0.00000000 P 0 N N N
94322 ENZW158 Roxor 0.00000000 P 0 N N N
94323 ENZW159 Roxor 0.00000000 P 0 N N N
94324 ENZW160 Roxor 0.00000000 P 0 N N N
94325 ENZW161 Roxor 0.00000000 P 0 N N N
94326 ENZW162 Roxor 0.00000000 P 0 N N N
94327 ENZW163 Roxor 0.00000000 P 0 N N N
94328 ENZW164 Roxor 0.00000000 P 0 N N N
94329 ENZW165 Roxor 0.00000000 P 0 N N N
94330 ENZW166 Roxor 0.00000000 P 0 N N N
94331 ENZW167 Roxor 0.00000000 P 0 N N N
94332 ENZW168 Roxor 0.00000000 P 0 N N N
94958 AQVEN6106 Roxor 0.00000000 P 0 N N N
95034 AQVEN6270 Roxor 0.00000000 P 0 N N N
95096 AQVEN8191 Roxor 0.00000000 P 0 N N N
95097 AQVEN8192 Roxor 0.00000000 P 0 N N N
95098 AQVEN8193 Roxor 0.00000000 P 0 N N N
95099 AQVEN8227 Roxor 0.00000000 P 0 N N N
95683 ALRM22 Roxor 0.00000000 P 0 N N N
95702 AQVEN8101 Roxor 0.00000000 P 0 N N N
95703 AQVEN8102 Roxor 0.00000000 P 0 N N N
96193 SY-VODA030H Roxor 0.00000000 P 0 N N N
96194 SY-VODA030HC Roxor 0.00000000 P 0 N N N
96841 AQVEN6106-P Roxor 0.00000000 P 0 N N N
96917 AQVEN6270-P Roxor 0.00000000 P 0 N N N
96918 AQVEN8101-P Roxor 0.00000000 P 0 N N N
96919 AQVEN8102-P Roxor 0.00000000 P 0 N N N
96981 AQVEN8191-P Roxor 0.00000000 P 0 N N N
96982 AQVEN8192-P Roxor 0.00000000 P 0 N N N
96983 AQVEN8193-P Roxor 0.00000000 P 0 N N N
96984 AQVEN8227-P Roxor 0.00000000 P 0 N N N
96998 ARM22-P Roxor 0.00000000 P 0 N N N
98538 FIX023-P Roxor 0.00000000 P 0 N N N
98539 FIX024-P Roxor 0.00000000 P 0 N N N
98540 FIX025-P Roxor 0.00000000 P 0 N N N
98541 FIX027-P Roxor 0.00000000 P 0 N N N
98542 FIX030-P Roxor 0.00000000 P 0 N N N
98543 FIX031-P Roxor 0.00000000 P 0 N N N
98544 FIX040-P Roxor 0.00000000 P 0 N N N
98545 FIX041-P Roxor 0.00000000 P 0 N N N
98546 FIX070-P Roxor 0.00000000 P 0 N N N
98547 FIX071-P Roxor 0.00000000 P 0 N N N
98548 FIX080-P Roxor 0.00000000 P 0 N N N
98549 FIX081-P Roxor 0.00000000 P 0 N N N
100923 WRFL18510-P Roxor 0.00000000 P 0 N N N
100924 WRFL18530BB-P Roxor 0.00000000 P 0 N N N
100925 WRFL18530BBHC-P Roxor 0.00000000 P 0 N N N
100926 WRFL18530BP-P Roxor 0.00000000 P 0 N N N