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 (
    10909, 10908, 10962, 10963, 10906, 10964, 
    10965, 10912, 10966, 10967, 10914, 
    10915, 10913, 10911, 10907, 17002
  ) 
  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.00113

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "12.11"
    },
    "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": 18,
        "rows_produced_per_join": 2,
        "filtered": "14.40",
        "index_condition": "(`dev_yourmart_co_bw`.`cscart_product_prices`.`product_id` in (10909,10908,10962,10963,10906,10964,10965,10912,10966,10967,10914,10915,10913,10911,10907,17002))",
        "cost_info": {
          "read_cost": "11.85",
          "eval_cost": "0.26",
          "prefix_cost": "12.11",
          "data_read_per_join": "62"
        },
        "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
10906 4672.58000000
10907 4929.08000000
10908 3803.33000000
10909 3318.83000000
10911 4188.08000000
10912 4188.08000000
10913 5456.33000000
10914 8292.08000000
10915 8292.08000000
10962 1138.58000000
10963 1224.08000000
10964 2093.33000000
10965 2606.33000000
10966 2791.58000000
10967 3076.58000000
17002 2005.15000000