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 (
    1941, 1940, 1907, 1938, 1937, 1936, 1935, 
    1934, 1933, 1932, 1931, 1930
  ) 
  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.00095

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "cscart_product_prices.product_id",
      "temporary_table": {
        "table": {
          "table_name": "cscart_product_prices",
          "access_type": "range",
          "possible_keys": [
            "usergroup",
            "product_id",
            "lower_limit",
            "usergroup_id"
          ],
          "key": "usergroup_id",
          "key_length": "6",
          "used_key_parts": ["usergroup_id", "product_id"],
          "rows": 24,
          "filtered": 100,
          "index_condition": "cscart_product_prices.product_id in (1941,1940,1907,1938,1937,1936,1935,1934,1933,1932,1931,1930) and cscart_product_prices.usergroup_id in (0,1)",
          "attached_condition": "cscart_product_prices.lower_limit = 1"
        }
      }
    }
  }
}

Result

product_id price
1907 80000.00000000
1930 23000.00000000
1931 23000.00000000
1932 23000.00000000
1933 23000.00000000
1934 23000.00000000
1935 22500.00000000
1936 23000.00000000
1937 23000.00000000
1938 22500.00000000
1940 62000.00000000
1941 62000.00000000