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 (
    11076, 11312, 10245, 11059, 11098, 11113, 
    11262, 11283, 11314, 11010, 11012, 
    11060, 11062, 11115, 10961, 11079, 
    11092, 11116, 11285, 11002, 11061, 
    11063, 11066, 11078
  ) 
  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.00107

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 (11076,11312,10245,11059,11098,11113,11262,11283,11314,11010,11012,11060,11062,11115,10961,11079,11092,11116,11285,11002,11061,11063,11066,11078)) 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
10245 27000.00000000
10961 28000.00000000
11002 30000.00000000
11010 33000.00000000
11012 33000.00000000
11059 35000.00000000
11060 35000.00000000
11061 40000.00000000
11062 40000.00000000
11063 45000.00000000
11066 45000.00000000
11076 45000.00000000
11078 50000.00000000
11079 55000.00000000
11092 60000.00000000
11098 75000.00000000
11113 95000.00000000
11115 95000.00000000
11116 95000.00000000
11262 350000.00000000
11283 1000000.00000000
11285 1985000.00000000
11312 1100000.00000000
11314 1200000.00000000