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 (
    2310, 2336, 2333, 2335, 1600, 3131, 1609, 
    3109, 1615, 2942, 2315, 2351, 2307, 
    2403, 2347, 2324, 1619, 2332, 2361, 
    2378, 3166, 2320, 2331, 2348
  ) 
  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.00102

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 (2310,2336,2333,2335,1600,3131,1609,3109,1615,2942,2315,2351,2307,2403,2347,2324,1619,2332,2361,2378,3166,2320,2331,2348))",
        "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
1600 105000.00000000
1609 57000.00000000
1615 173000.00000000
1619 264000.00000000
2307 45000.00000000
2310 65000.00000000
2315 57000.00000000
2320 284000.00000000
2324 105000.00000000
2331 37000.00000000
2332 48000.00000000
2333 48000.00000000
2335 60000.00000000
2336 62000.00000000
2347 114000.00000000
2348 43000.00000000
2351 60000.00000000
2361 60000.00000000
2378 119000.00000000
2403 220000.00000000
2942 45000.00000000
3109 122000.00000000
3131 43000.00000000
3166 36000.00000000