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 (
    13561, 13032, 13150, 16559, 16560, 15895, 
    16556, 16558, 16557, 16553, 13097, 
    13096, 15911, 16554, 4335, 4334
  ) 
  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.00180

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "19.31"
    },
    "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": 34,
        "rows_produced_per_join": 4,
        "filtered": "14.40",
        "index_condition": "(`dev_yourmart_co_bw`.`cscart_product_prices`.`product_id` in (13561,13032,13150,16559,16560,15895,16556,16558,16557,16553,13097,13096,15911,16554,4335,4334))",
        "cost_info": {
          "read_cost": "18.82",
          "eval_cost": "0.49",
          "prefix_cost": "19.31",
          "data_read_per_join": "117"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`dev_yourmart_co_bw`.`cscart_product_prices`.`lower_limit` = 1) and (`dev_yourmart_co_bw`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
4334 26243.23000000
4335 25624.86000000
13032 2906.40000000
13096 186.55000000
13097 62.18000000
13150 1435.99000000
13561 1076.84000000
15895 476.00000000
15911 147.00000000
16553 4267.50000000
16554 396.20000000
16556 225.45000000
16557 203.60000000
16558 467.20000000
16559 119.50000000
16560 1568.60000000