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 (
    4539, 4359, 4035, 4324, 4657, 4360, 4548, 
    4662, 4062, 4677, 4505, 4046, 4076, 
    4242, 4829, 4068, 4095, 4469, 4112, 
    4509, 4702, 4665, 4050, 4259, 4330, 
    4506, 4266, 4409, 4691, 4697, 4338, 
    4408, 4521, 4692, 4407, 4381, 4523, 
    4241, 4274, 4507, 4520, 4361, 4676, 
    4061, 4413, 4237, 4538, 4512, 4537, 
    4658, 4540
  ) 
  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.00121

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "35.71"
    },
    "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": 51,
        "rows_produced_per_join": 10,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (4539,4359,4035,4324,4657,4360,4548,4662,4062,4677,4505,4046,4076,4242,4829,4068,4095,4469,4112,4509,4702,4665,4050,4259,4330,4506,4266,4409,4691,4697,4338,4408,4521,4692,4407,4381,4523,4241,4274,4507,4520,4361,4676,4061,4413,4237,4538,4512,4537,4658,4540))",
        "cost_info": {
          "read_cost": "34.69",
          "eval_cost": "1.02",
          "prefix_cost": "35.71",
          "data_read_per_join": "244"
        },
        "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
4035 4000.00000000
4046 6000.00000000
4050 8000.00000000
4061 28000.00000000
4062 8000.00000000
4068 4000.00000000
4076 7000.00000000
4095 6000.00000000
4112 7000.00000000
4237 6000.00000000
4241 5000.00000000
4242 15000.00000000
4259 7000.00000000
4266 30000.00000000
4274 40000.00000000
4324 20000.00000000
4330 15000.00000000
4338 6000.00000000
4359 30000.00000000
4360 30000.00000000
4361 10000.00000000
4381 5000.00000000
4407 3000.00000000
4408 15000.00000000
4409 15000.00000000
4413 7000.00000000
4469 85000.00000000
4505 6000.00000000
4506 7000.00000000
4507 6000.00000000
4509 10000.00000000
4512 5000.00000000
4520 7000.00000000
4521 5000.00000000
4523 15000.00000000
4537 5000.00000000
4538 5000.00000000
4539 5000.00000000
4540 6000.00000000
4548 6000.00000000
4657 200000.00000000
4658 5000.00000000
4662 30000.00000000
4665 5000.00000000
4676 7000.00000000
4677 7000.00000000
4691 30000.00000000
4692 30000.00000000
4697 10000.00000000
4702 6000.00000000
4829 40000.00000000