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 (
    11056, 11090, 11179, 11181, 11192, 11243, 
    11328, 11524, 10579, 8636, 8639, 8654, 
    8754, 8774, 8792, 8843, 8860, 8861, 
    8862, 9028, 9069, 9106, 9113, 9133
  ) 
  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.00133

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "26.71"
    },
    "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": 46,
        "rows_produced_per_join": 9,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (11056,11090,11179,11181,11192,11243,11328,11524,10579,8636,8639,8654,8754,8774,8792,8843,8860,8861,8862,9028,9069,9106,9113,9133))",
        "cost_info": {
          "read_cost": "25.79",
          "eval_cost": "0.92",
          "prefix_cost": "26.71",
          "data_read_per_join": "220"
        },
        "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
8636 61500.00000000
8639 568500.00000000
8654 37500.00000000
8754 17500.00000000
8774 146250.00000000
8792 18000.00000000
8843 85000.00000000
8860 71250.00000000
8861 71250.00000000
8862 429000.00000000
9028 50500.00000000
9069 135500.00000000
9106 150000.00000000
9113 100000.00000000
9133 55250.00000000
10579 66750.00000000
11056 165000.00000000
11090 294000.00000000
11179 900000.00000000
11181 1300000.00000000
11192 145000.00000000
11243 1290000.00000000
11328 60000.00000000
11524 306000.00000000