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 (
    4062, 4677, 4505, 4046, 4076, 4242, 4829, 
    4068, 4095, 4469, 4112, 4509, 4702, 
    4665, 4050, 4259, 4330, 4506, 4266, 
    4409, 4691, 4338, 4408, 4521
  ) 
  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.00120

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "16.81"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "range",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "key": "product_id",
        "used_key_parts": [
          "product_id"
        ],
        "key_length": "3",
        "rows_examined_per_scan": 24,
        "rows_produced_per_join": 4,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (4062,4677,4505,4046,4076,4242,4829,4068,4095,4469,4112,4509,4702,4665,4050,4259,4330,4506,4266,4409,4691,4338,4408,4521))",
        "cost_info": {
          "read_cost": "16.33",
          "eval_cost": "0.48",
          "prefix_cost": "16.81",
          "data_read_per_join": "115"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`lower_limit` = 1) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
4046 6000.00000000
4050 8000.00000000
4062 8000.00000000
4068 4000.00000000
4076 7000.00000000
4095 6000.00000000
4112 7000.00000000
4242 15000.00000000
4259 7000.00000000
4266 30000.00000000
4330 15000.00000000
4338 6000.00000000
4408 15000.00000000
4409 15000.00000000
4469 85000.00000000
4505 6000.00000000
4506 7000.00000000
4509 10000.00000000
4521 5000.00000000
4665 5000.00000000
4677 7000.00000000
4691 30000.00000000
4702 6000.00000000
4829 40000.00000000