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 (
    62406, 63202, 61213, 62430, 64775, 65002, 
    65006, 65046, 65014, 65010, 65054, 
    64998, 65042, 65071, 64994, 65066, 
    65125, 65058, 65050, 65018, 65033, 
    65115, 65038, 65110
  ) 
  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.00110

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_product_prices",
      "access_type": "range",
      "possible_keys": ["usergroup", "product_id", "lower_limit", "usergroup_id"],
      "key": "product_id",
      "key_length": "9",
      "used_key_parts": ["product_id", "usergroup_id", "lower_limit"],
      "rowid_filter": {
        "range": {
          "key": "lower_limit",
          "used_key_parts": ["lower_limit", "product_id", "usergroup_id"]
        },
        "rows": 48,
        "selectivity_pct": 1.779095626
      },
      "rows": 48,
      "filtered": 100,
      "index_condition": "cscart_product_prices.lower_limit = 1 and cscart_product_prices.product_id in (62406,63202,61213,62430,64775,65002,65006,65046,65014,65010,65054,64998,65042,65071,64994,65066,65125,65058,65050,65018,65033,65115,65038,65110) and cscart_product_prices.usergroup_id in (0,1)"
    }
  }
}

Result

product_id price
61213 510.000000
62406 525.000000
62430 595.000000
63202 570.000000
64775 315.000000
64994 410.000000
64998 405.000000
65002 415.000000
65006 535.000000
65010 545.000000
65014 535.000000
65018 560.000000
65033 475.000000
65038 485.000000
65042 515.000000
65046 485.000000
65050 465.000000
65054 520.000000
65058 495.000000
65066 465.000000
65071 465.000000
65110 715.000000
65115 725.000000
65125 735.000000