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 (
    2307, 3653, 3919, 2403, 3348, 2347, 2287, 
    2324, 3559, 3917, 5170, 1619, 2288, 
    2332, 2361, 2306, 2378, 2297, 3166, 
    2320, 2331, 2348, 2318, 2321
  ) 
  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.00157

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "16.81"
    },
    "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": 24,
        "rows_produced_per_join": 4,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (2307,3653,3919,2403,3348,2347,2287,2324,3559,3917,5170,1619,2288,2332,2361,2306,2378,2297,3166,2320,2331,2348,2318,2321))",
        "cost_info": {
          "read_cost": "16.33",
          "eval_cost": "0.48",
          "prefix_cost": "16.81",
          "data_read_per_join": "115"
        },
        "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
1619 264000.00000000
2287 36000.00000000
2288 25000.00000000
2297 31000.00000000
2306 36000.00000000
2307 45000.00000000
2318 210000.00000000
2320 284000.00000000
2321 477000.00000000
2324 105000.00000000
2331 37000.00000000
2332 48000.00000000
2347 114000.00000000
2348 43000.00000000
2361 60000.00000000
2378 119000.00000000
2403 220000.00000000
3166 36000.00000000
3348 45000.00000000
3559 47000.00000000
3653 60000.00000000
3917 89000.00000000
3919 92000.00000000
5170 35750.00000000