SELECT 
  product_id, 
  MIN(price) AS min_price 
FROM 
  cscart_product_prices 
WHERE 
  product_id IN (301) 
GROUP BY 
  product_id 
ORDER BY 
  min_price ASC 
LIMIT 
  1

Query time 0.00046

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "1.20"
    },
    "ordering_operation": {
      "using_filesort": false,
      "grouping_operation": {
        "using_filesort": false,
        "table": {
          "table_name": "cscart_product_prices",
          "access_type": "ref",
          "possible_keys": [
            "usergroup",
            "product_id",
            "usergroup_id"
          ],
          "key": "usergroup",
          "used_key_parts": [
            "product_id"
          ],
          "key_length": "3",
          "ref": [
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 1,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "1.00",
            "eval_cost": "0.20",
            "prefix_cost": "1.20",
            "data_read_per_join": "24"
          },
          "used_columns": [
            "product_id",
            "price"
          ]
        }
      }
    }
  }
}

Result

product_id min_price
301 2800.00