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 (
    11501, 11330, 11401, 11496, 11540, 11543, 
    11228, 11459, 11546, 11511, 11011, 
    11567, 11432, 11547, 11373, 11333, 
    11000, 11482, 11154, 11557, 11212, 
    11568, 11464, 11549
  ) 
  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.00109

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "33.61"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "range",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "key": "usergroup",
        "used_key_parts": [
          "product_id",
          "usergroup_id",
          "lower_limit"
        ],
        "key_length": "9",
        "rows_examined_per_scan": 48,
        "rows_produced_per_join": 48,
        "filtered": "100.00",
        "index_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`lower_limit` = 1) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (11501,11330,11401,11496,11540,11543,11228,11459,11546,11511,11011,11567,11432,11547,11373,11333,11000,11482,11154,11557,11212,11568,11464,11549)) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`usergroup_id` in (0,1)))",
        "cost_info": {
          "read_cost": "28.81",
          "eval_cost": "4.80",
          "prefix_cost": "33.61",
          "data_read_per_join": "1K"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ]
      }
    }
  }
}

Result

product_id price
11000 316000.00000000
11011 305750.00000000
11154 312000.00000000
11212 709500.00000000
11228 312000.00000000
11330 306000.00000000
11333 306000.00000000
11373 297000.00000000
11401 349500.00000000
11432 246000.00000000
11459 282000.00000000
11464 300000.00000000
11482 289500.00000000
11496 289500.00000000
11501 306000.00000000
11511 282000.00000000
11540 349500.00000000
11543 324000.00000000
11546 294000.00000000
11547 294000.00000000
11549 246000.00000000
11557 289500.00000000
11567 306000.00000000
11568 372000.00000000