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 (
    10706, 10707, 10708, 10709, 10710, 10711, 
    10712, 10713, 10714, 10715, 10716, 
    10717, 10718, 10719, 10720, 10721, 
    10722, 10723, 10724, 10725, 10726, 
    10727, 10728, 10729, 10730, 10731, 
    10732, 10733, 10734, 10735, 10736, 
    10737, 10738, 10739, 10740, 10741, 
    10742, 10743, 10744, 10745, 10746, 
    10747, 10748, 10749, 10750, 10751, 
    10752, 10753
  ) 
  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.00142

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": "product_id",
        "used_key_parts": [
          "product_id"
        ],
        "key_length": "3",
        "rows_examined_per_scan": 48,
        "rows_produced_per_join": 9,
        "filtered": "20.00",
        "index_condition": "(`gaseus`.`cscart_product_prices`.`product_id` in (10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753))",
        "cost_info": {
          "read_cost": "32.65",
          "eval_cost": "0.96",
          "prefix_cost": "33.61",
          "data_read_per_join": "230"
        },
        "used_columns": [
          "product_id",
          "price",
          "percentage_discount",
          "lower_limit",
          "usergroup_id"
        ],
        "attached_condition": "((`gaseus`.`cscart_product_prices`.`lower_limit` = 1) and (`gaseus`.`cscart_product_prices`.`usergroup_id` in (0,1)))"
      }
    }
  }
}

Result

product_id price
10706 0.00000000
10707 0.00000000
10708 0.00000000
10709 0.00000000
10710 0.00000000
10711 0.00000000
10712 0.00000000
10713 0.00000000
10714 0.00000000
10715 0.00000000
10716 0.00000000
10717 0.00000000
10718 0.00000000
10719 0.00000000
10720 0.00000000
10721 0.00000000
10722 0.00000000
10723 0.00000000
10724 0.00000000
10725 0.00000000
10726 0.00000000
10727 0.00000000
10728 0.00000000
10729 0.00000000
10730 0.00000000
10731 0.00000000
10732 0.00000000
10733 0.00000000
10734 0.00000000
10735 0.00000000
10736 0.00000000
10737 0.00000000
10738 0.00000000
10739 0.00000000
10740 0.00000000
10741 0.00000000
10742 0.00000000
10743 0.00000000
10744 0.00000000
10745 0.00000000
10746 0.00000000
10747 0.00000000
10748 0.00000000
10749 0.00000000
10750 0.00000000
10751 0.00000000
10752 0.00000000
10753 0.00000000