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 (
    51, 48, 54, 250, 69, 254, 184, 133, 132, 
    125, 120, 161, 163, 164, 147, 146, 145, 
    117, 113, 148, 149, 68, 6, 249, 248, 140, 
    141, 144, 143, 142, 63, 66
  ) 
  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.00200

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": 36,
          "filtered": 45.91368103,
          "index_condition": "cscart_product_prices.product_id in (51,48,54,250,69,254,184,133,132,125,120,161,163,164,147,146,145,117,113,148,149,68,6,249,248,140,141,144,143,142,63,66)",
          "attached_condition": "cscart_product_prices.lower_limit = 1 and cscart_product_prices.usergroup_id in (0,1)"
        }
      }
    ]
  }
}

Result

product_id price
6 13199.60000000
48 7200.00000000
51 7200.00000000
54 10760.00000000
63 7598.00000000
66 15598.00000000
68 31999.60000000
69 21199.60000000
113 17999.60000000
117 29199.60000000
120 7999.60000000
125 5999.60000000
132 10799.60000000
133 9199.60000000
140 3998.00000000
141 3998.00000000
142 15998.00000000
143 3198.00000000
144 3998.00000000
145 3199.60000000
146 1799.60000000
147 1799.60000000
148 5200.00000000
149 2159.60000000
161 11199.60000000
163 35999.60000000
164 3749.65000000
184 11999.60000000
248 10000.00000000
249 13990.00000000
250 20990.00000000
254 1990.00000000