SELECT 
  cscart_product_prices.product_id, 
  MIN(
    IF(
      cscart_product_prices.percentage_discount = 0, 
      cscart_product_prices.price, 
      cscart_product_prices.price - (
        cscart_product_prices.price * cscart_product_prices.percentage_discount
      )/ 100
    )
  ) AS price 
FROM 
  cscart_product_prices 
WHERE 
  cscart_product_prices.product_id IN (
    7379, 10086, 11141, 8573, 6941, 3871, 
    4352, 4885, 5185, 5315, 5353, 6485, 
    7121, 3786, 4237, 4296, 5199, 5308, 
    5312, 5326
  ) 
  AND cscart_product_prices.lower_limit = 1 
  AND cscart_product_prices.usergroup_id IN (0, 1) 
GROUP BY 
  cscart_product_prices.product_id

Query time 0.00088

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "15.36"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "range",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "key": "product_id",
        "used_key_parts": [
          "product_id"
        ],
        "key_length": "3",
        "rows_examined_per_scan": 23,
        "rows_produced_per_join": 4,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (7379,10086,11141,8573,6941,3871,4352,4885,5185,5315,5353,6485,7121,3786,4237,4296,5199,5308,5312,5326))",
        "cost_info": {
          "read_cost": "14.90",
          "eval_cost": "0.46",
          "prefix_cost": "15.36",
          "data_read_per_join": "110"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`lower_limit` = 1) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
3786 4500.00000000
3871 12000.00000000
4237 6000.00000000
4296 115000.00000000
4352 50000.00000000
4885 349000.00000000
5185 243000.00000000
5199 172000.00000000
5308 17000.00000000
5312 17000.00000000
5315 17000.00000000
5326 17000.00000000
5353 20000.00000000
6485 102000.00000000
6941 8000.00000000
7121 24500.00000000
7379 3000.00000000
8573 59000.00000000
10086 1360000.00000000
11141 289500.00000000