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 (
    13943, 14023, 13917, 13889, 13926, 13905, 
    13906, 13941, 13936, 14008, 14028, 
    13885, 13904, 14005, 13998, 13933, 
    13884, 13912, 14001, 13892, 13891, 
    13890, 13893, 14027
  ) 
  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.00057

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.061901185,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_prices",
          "access_type": "range",
          "possible_keys": [
            "usergroup",
            "product_id",
            "lower_limit",
            "usergroup_id"
          ],
          "key": "usergroup",
          "key_length": "9",
          "used_key_parts": ["product_id", "usergroup_id", "lower_limit"],
          "loops": 1,
          "rows": 48,
          "cost": 0.04656984,
          "filtered": 49.95539856,
          "attached_condition": "cscart_product_prices.lower_limit = 1 and cscart_product_prices.product_id in (13943,14023,13917,13889,13926,13905,13906,13941,13936,14008,14028,13885,13904,14005,13998,13933,13884,13912,14001,13892,13891,13890,13893,14027) and cscart_product_prices.usergroup_id in (0,1)"
        }
      }
    ]
  }
}

Result

product_id price
13884 11.99000000
13885 12.89000000
13889 12.70000000
13890 14.30000000
13891 14.30000000
13892 14.30000000
13893 14.30000000
13904 11.89000000
13905 11.89000000
13906 7.99000000
13912 5.80000000
13917 5.69000000
13926 6.30000000
13933 7.79000000
13936 7.59000000
13941 7.89000000
13943 7.69000000
13998 11.79000000
14001 11.79000000
14005 11.89000000
14008 5.79000000
14023 3.29000000
14027 4.19000000
14028 6.39000000