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 (
    4115, 4297, 4269, 4185, 4587, 4212, 4280, 
    4602, 4347, 4454, 4207, 4130, 4312, 
    4254, 4346, 4500, 4290
  ) 
  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.00120

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "11.91"
    },
    "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": 17,
        "rows_produced_per_join": 3,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (4115,4297,4269,4185,4587,4212,4280,4602,4347,4454,4207,4130,4312,4254,4346,4500,4290))",
        "cost_info": {
          "read_cost": "11.57",
          "eval_cost": "0.34",
          "prefix_cost": "11.91",
          "data_read_per_join": "81"
        },
        "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
4115 155000.00000000
4130 119000.00000000
4185 110000.00000000
4207 120000.00000000
4212 73000.00000000
4254 88000.00000000
4269 80000.00000000
4280 199000.00000000
4290 79000.00000000
4297 99000.00000000
4312 70000.00000000
4346 170000.00000000
4347 108000.00000000
4454 78000.00000000
4500 155000.00000000
4587 84000.00000000
4602 328000.00000000