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 (
    11418, 11529, 11108, 11292, 11230, 11394, 
    11493, 11343, 11406, 11366, 11370, 
    11469, 11592, 11089, 11434, 11490, 
    11006, 11263, 11336, 11110, 11123, 
    11422, 11487, 11505
  ) 
  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": "33.61"
    },
    "grouping_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_product_prices",
        "access_type": "range",
        "possible_keys": [
          "usergroup",
          "product_id",
          "lower_limit",
          "usergroup_id"
        ],
        "key": "usergroup",
        "used_key_parts": [
          "product_id",
          "usergroup_id",
          "lower_limit"
        ],
        "key_length": "9",
        "rows_examined_per_scan": 48,
        "rows_produced_per_join": 48,
        "filtered": "100.00",
        "index_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`lower_limit` = 1) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (11418,11529,11108,11292,11230,11394,11493,11343,11406,11366,11370,11469,11592,11089,11434,11490,11006,11263,11336,11110,11123,11422,11487,11505)) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`usergroup_id` in (0,1)))",
        "cost_info": {
          "read_cost": "28.81",
          "eval_cost": "4.80",
          "prefix_cost": "33.61",
          "data_read_per_join": "1K"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ]
      }
    }
  }
}

Result

product_id price
11006 221750.00000000
11089 288000.00000000
11108 289500.00000000
11110 306000.00000000
11123 306000.00000000
11230 327000.00000000
11263 289500.00000000
11292 247500.00000000
11336 271500.00000000
11343 273000.00000000
11366 246000.00000000
11370 312000.00000000
11394 331500.00000000
11406 798000.00000000
11418 321000.00000000
11422 289500.00000000
11434 294000.00000000
11469 289500.00000000
11487 273000.00000000
11490 327000.00000000
11493 271500.00000000
11505 271500.00000000
11529 264000.00000000
11592 273000.00000000