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 (
    7576, 7600, 7571, 7555, 7665, 7669, 7569, 
    7601, 7572, 7568, 7573, 7579, 7581, 
    7660, 7663, 7664, 7662, 7554, 7667, 
    7661, 7666
  ) 
  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": "14.71"
    },
    "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": 21,
        "rows_produced_per_join": 4,
        "filtered": "19.99",
        "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`cscart_product_prices`.`product_id` in (7576,7600,7571,7555,7665,7669,7569,7601,7572,7568,7573,7579,7581,7660,7663,7664,7662,7554,7667,7661,7666))",
        "cost_info": {
          "read_cost": "14.29",
          "eval_cost": "0.42",
          "prefix_cost": "14.71",
          "data_read_per_join": "100"
        },
        "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
7554 5000.00000000
7555 9500.00000000
7568 9500.00000000
7569 38000.00000000
7571 20500.00000000
7572 45000.00000000
7573 25000.00000000
7576 26000.00000000
7579 32500.00000000
7581 34000.00000000
7600 39500.00000000
7601 64500.00000000
7660 66000.00000000
7661 69000.00000000
7662 76500.00000000
7663 81500.00000000
7664 81750.00000000
7665 88500.00000000
7666 162750.00000000
7667 181500.00000000
7669 191250.00000000