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 (
    7405, 7435, 7388, 7431, 7419, 7417, 7382, 
    7385, 7384, 7416, 7429, 7387, 7418, 
    7399, 7413, 7430, 7407, 7423, 7357, 
    7447, 7361, 7365, 7371, 7408
  ) 
  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.00153

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 (7405,7435,7388,7431,7419,7417,7382,7385,7384,7416,7429,7387,7418,7399,7413,7430,7407,7423,7357,7447,7361,7365,7371,7408))",
        "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
7371 3000.00000000
7382 6000.00000000
7384 11250.00000000
7385 8250.00000000
7387 9250.00000000
7388 5500.00000000
7399 1500.00000000
7405 1500.00000000
7407 2250.00000000
7408 1500.00000000
7413 16500.00000000
7416 11250.00000000
7417 11250.00000000
7418 11250.00000000
7419 11250.00000000
7423 16500.00000000
7429 16500.00000000
7430 9250.00000000
7431 20000.00000000
7435 17750.00000000
7447 1500.00000000