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 (
    7401, 7394, 7377, 7462, 7376, 7420, 7379, 
    7380, 7375, 7400, 7441, 7374, 7410, 
    7412, 7378, 7393, 7402, 7409, 7404, 
    7396, 7406, 7395, 7403, 7405
  ) 
  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.00114

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 (7401,7394,7377,7462,7376,7420,7379,7380,7375,7400,7441,7374,7410,7412,7378,7393,7402,7409,7404,7396,7406,7395,7403,7405))",
        "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
7374 3000.00000000
7375 3000.00000000
7376 3000.00000000
7377 3000.00000000
7378 3000.00000000
7379 3000.00000000
7380 3000.00000000
7393 1500.00000000
7394 0.00000000
7395 1500.00000000
7396 1500.00000000
7400 1500.00000000
7401 1500.00000000
7402 1500.00000000
7403 1500.00000000
7404 1500.00000000
7405 1500.00000000
7406 2500.00000000
7409 1500.00000000
7410 1500.00000000
7412 4500.00000000
7420 1500.00000000
7441 1500.00000000
7462 1500.00000000