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 (
    7083, 7197, 6861, 7971, 7346, 7353, 7901, 
    8064, 8057, 8251, 8072, 7987, 8067, 
    7504, 8022, 8055, 7895, 8070, 8018, 
    8226, 7940, 8294, 7259, 7889
  ) 
  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.00090

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 (7083,7197,6861,7971,7346,7353,7901,8064,8057,8251,8072,7987,8067,7504,8022,8055,7895,8070,8018,8226,7940,8294,7259,7889))",
        "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
6861 153000.00000000
7083 121500.00000000
7197 169500.00000000
7259 79000.00000000
7346 83500.00000000
7353 359000.00000000
7504 239750.00000000
7889 126000.00000000
7895 250000.00000000
7901 175750.00000000
7940 52000.00000000
7971 540500.00000000
7987 132000.00000000
8018 217000.00000000
8022 192000.00000000
8055 322000.00000000
8057 155000.00000000
8064 157500.00000000
8067 190000.00000000
8070 170000.00000000
8072 170000.00000000
8226 240000.00000000
8251 131500.00000000
8294 165000.00000000