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 (
    7377, 7376, 7379, 7380, 7375, 7374, 7412, 
    7378, 7427, 7419, 7417, 7382, 7385, 
    7384, 7416, 7429, 7387, 7418, 7413, 
    7430, 7423, 7357, 7361, 7365
  ) 
  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.00091

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 (7377,7376,7379,7380,7375,7374,7412,7378,7427,7419,7417,7382,7385,7384,7416,7429,7387,7418,7413,7430,7423,7357,7361,7365))",
        "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
7357 3000.00000000
7361 9500.00000000
7365 12000.00000000
7374 3000.00000000
7375 3000.00000000
7376 3000.00000000
7377 3000.00000000
7378 3000.00000000
7379 3000.00000000
7380 3000.00000000
7382 6000.00000000
7384 11250.00000000
7385 8250.00000000
7387 9250.00000000
7412 4500.00000000
7413 16500.00000000
7416 11250.00000000
7417 11250.00000000
7418 11250.00000000
7419 11250.00000000
7423 16500.00000000
7427 17500.00000000
7429 16500.00000000
7430 9250.00000000