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 (
    1013, 1014, 1015, 1024, 1011, 1012, 1023, 
    1025, 1033, 1027, 1026, 1032
  ) 
  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.00054

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_prices",
          "access_type": "range",
          "possible_keys": [
            "usergroup",
            "product_id",
            "lower_limit",
            "usergroup_id"
          ],
          "key": "product_id",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "rows": 12,
          "filtered": 99.67742157,
          "index_condition": "cscart_product_prices.product_id in (1013,1014,1015,1024,1011,1012,1023,1025,1033,1027,1026,1032)",
          "attached_condition": "cscart_product_prices.lower_limit = 1 and cscart_product_prices.usergroup_id in (0,1)"
        }
      }
    ]
  }
}

Result

product_id price
1011 2100.00000000
1012 6020.00000000
1013 5680.00000000
1014 2100.00000000
1015 5040.00000000
1023 4459.00000000
1024 2500.00000000
1025 1499.00000000
1026 1960.00000000
1027 3100.00000000
1032 2000.00000000
1033 2249.00000000