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 (
    6266, 6261, 5414, 5408, 5411, 6514, 5415, 
    5409, 5422, 6240, 5413, 6235, 5410, 
    6679, 5420, 5417, 5406, 5407, 5412, 
    5416, 5418, 5421, 6522, 6523
  ) 
  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.00084

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 (6266,6261,5414,5408,5411,6514,5415,5409,5422,6240,5413,6235,5410,6679,5420,5417,5406,5407,5412,5416,5418,5421,6522,6523))",
        "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
5406 425000.00000000
5407 425000.00000000
5408 340000.00000000
5409 288750.00000000
5410 68250.00000000
5411 68250.00000000
5412 52500.00000000
5413 52500.00000000
5414 52500.00000000
5415 56500.00000000
5416 62500.00000000
5417 56500.00000000
5418 57750.00000000
5420 295000.00000000
5421 97000.00000000
5422 315000.00000000
6235 652000.00000000
6240 793000.00000000
6261 754000.00000000
6266 841000.00000000
6514 115500.00000000
6522 75000.00000000
6523 70000.00000000
6679 63000.00000000