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 (
    8084, 8085, 8115, 8117, 8119, 8153, 8154, 
    8158, 8170, 8177, 8180, 8182, 8194, 
    8206, 8249, 8253, 8283, 8546, 8555, 
    8608, 8630, 8646, 8752, 8758
  ) 
  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.00138

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 (8084,8085,8115,8117,8119,8153,8154,8158,8170,8177,8180,8182,8194,8206,8249,8253,8283,8546,8555,8608,8630,8646,8752,8758))",
        "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
8084 54000.00000000
8085 34250.00000000
8115 88500.00000000
8117 226000.00000000
8119 226000.00000000
8153 199000.00000000
8154 199000.00000000
8158 199000.00000000
8170 666750.00000000
8177 164000.00000000
8180 145000.00000000
8182 119000.00000000
8194 75000.00000000
8206 70000.00000000
8249 161250.00000000
8253 87000.00000000
8283 58500.00000000
8546 95000.00000000
8555 94000.00000000
8608 98000.00000000
8630 42000.00000000
8646 258750.00000000
8752 160000.00000000
8758 271250.00000000